From 9473a1d20aa819dfa43544b2b14dd27772ca43fc Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 12 Jul 2022 03:47:31 +0100 Subject: [PATCH] app-office/gtg: use canonical phase ordering To match execution, per devmanual. See: https://github.com/gentoo/gentoo/pull/26269 Signed-off-by: Sam James --- app-office/gtg/gtg-0.6.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-office/gtg/gtg-0.6.ebuild b/app-office/gtg/gtg-0.6.ebuild index e55a20f164bf3..7fe456bf39452 100644 --- a/app-office/gtg/gtg-0.6.ebuild +++ b/app-office/gtg/gtg-0.6.ebuild @@ -46,13 +46,13 @@ BDEPEND=" ) " +src_test() { + sed -e "s|@VCS_TAG@|${PV}|" GTG/core/info.py.in > GTG/core/info.py || die + nosetests -v || die +} + src_install() { meson_src_install python_fix_shebang "${ED}"/usr/bin/gtg python_optimize } - -src_test() { - sed -e "s|@VCS_TAG@|${PV}|" GTG/core/info.py.in > GTG/core/info.py || die - nosetests -v || die -}