commit: 350d0ca3fd58115cb60d59e6d648148d84c903bf Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jan 25 11:36:16 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Jan 25 11:36:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=350d0ca3
dev-python/polib: Fix variable order Closes: https://bugs.gentoo.org/922884 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/polib/polib-1.2.0.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/polib/polib-1.2.0.ebuild b/dev-python/polib/polib-1.2.0.ebuild index 5764d76c5cae..67021aaf0c07 100644 --- a/dev-python/polib/polib-1.2.0.ebuild +++ b/dev-python/polib/polib-1.2.0.ebuild @@ -21,18 +21,18 @@ KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" IUSE="test" RESTRICT="!test? ( test )" -distutils_enable_sphinx docs - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.7-BE-test.patch -) - BDEPEND=" test? ( <sys-devel/gettext-0.22 ) " +distutils_enable_sphinx docs + +PATCHES=( + "${FILESDIR}"/${PN}-1.0.7-BE-test.patch +) + python_test() { "${EPYTHON}" tests/tests.py -v || die "Tests failed under ${EPYTHON}" }
