From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CDB41581CA for ; Thu, 12 Jun 2025 22:08:06 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 16935342462 for ; Thu, 12 Jun 2025 22:08:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C2EDE1104DB; Thu, 12 Jun 2025 22:07:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B19421104DB for ; Thu, 12 Jun 2025 22:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EF3F34244B for ; Thu, 12 Jun 2025 22:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A6CD29AA for ; Thu, 12 Jun 2025 22:07:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1749765959.75fc331e6196f32383b52e411a6d16cfb5d36fe5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/totem/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/totem/totem-43.1.ebuild media-video/totem/totem-43.2.ebuild X-VCS-Directories: media-video/totem/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 75fc331e6196f32383b52e411a6d16cfb5d36fe5 X-VCS-Branch: master Date: Thu, 12 Jun 2025 22:07:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dab282f1-3528-4740-b629-308c1e2205dd X-Archives-Hash: 0d596d793eda2b33ac6db874e31d68a3 commit: 75fc331e6196f32383b52e411a6d16cfb5d36fe5 Author: Lukas Schmelting posteo com> AuthorDate: Thu Jun 12 19:39:24 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 12 22:05:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75fc331e media-video/totem: Reorder src functions src_* functions are now in execution order. Thanks @thesamesam Signed-off-by: Lukas Schmelting posteo.com> Part-of: https://github.com/gentoo/gentoo/pull/42537 Signed-off-by: Sam James gentoo.org> media-video/totem/totem-43.1.ebuild | 8 ++++---- media-video/totem/totem-43.2.ebuild | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/media-video/totem/totem-43.1.ebuild b/media-video/totem/totem-43.1.ebuild index a5d48353bea6..2b5617dc29eb 100644 --- a/media-video/totem/totem-43.1.ebuild +++ b/media-video/totem/totem-43.1.ebuild @@ -112,6 +112,10 @@ src_configure() { meson_src_configure } +src_test() { + virtx meson_src_test +} + src_install() { local -x GST_PLUGIN_SYSTEM_PATH_1_0= # bug 812170 meson_src_install @@ -129,7 +133,3 @@ pkg_postrm() { xdg_pkg_postrm gnome2_schemas_update } - -src_test() { - virtx meson_src_test -} diff --git a/media-video/totem/totem-43.2.ebuild b/media-video/totem/totem-43.2.ebuild index d809e4610be0..b981099698ba 100644 --- a/media-video/totem/totem-43.2.ebuild +++ b/media-video/totem/totem-43.2.ebuild @@ -113,6 +113,10 @@ src_configure() { meson_src_configure } +src_test() { + virtx meson_src_test +} + src_install() { local -x GST_PLUGIN_SYSTEM_PATH_1_0= # bug 812170 meson_src_install @@ -130,7 +134,3 @@ pkg_postrm() { xdg_pkg_postrm gnome2_schemas_update } - -src_test() { - virtx meson_src_test -}