Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/zziplib/
Date: Thu, 17 Sep 2020 06:12:46
Message-Id: 1600323158.3e1e7081591def0a66e3d072a5546b0937f56c9e.sam@gentoo
1 commit: 3e1e7081591def0a66e3d072a5546b0937f56c9e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 17 06:09:10 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 17 06:12:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e1e7081
7
8 dev-libs/zziplib: restrict tests (for now)
9
10 We've needed to stabilise this package a few times
11 recently and leaving known-broken tests enabled is asking for trouble
12 for the next time that comes around.
13
14 Package-Manager: Portage-3.0.4, Repoman-3.0.1
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild | 9 ++++++---
18 1 file changed, 6 insertions(+), 3 deletions(-)
19
20 diff --git a/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild b/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild
21 index a4e536480be..0c6dda1bd7f 100644
22 --- a/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild
23 +++ b/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild
24 @@ -16,8 +16,11 @@ LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
25 SLOT="0/13"
26 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
27 IUSE="sdl static-libs test"
28 -
29 -RESTRICT="!test? ( test )"
30 +# Tests fail for now, only recently added.
31 +# Restricted to avoid blocking stabilisations.
32 +# https://github.com/gdraheim/zziplib/issues/97
33 +RESTRICT="test"
34 +#RESTRICT="!test? ( test )"
35
36 BDEPEND="
37 ${PYTHON_DEPS}
38 @@ -65,5 +68,5 @@ src_configure() {
39
40 src_test() {
41 cd "$S"/test/ || die
42 - ${EPYTHON} "$S"/test/zziptests.py || die
43 + "${EPYTHON}" "$S"/test/zziptests.py || die "Tests failed with ${EPYTHON}"
44 }