Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/patchutils/
Date: Fri, 27 Jan 2017 22:34:17
Message-Id: 1485556412.f8f3fc131ee6c2e2892895651186c7cac1a04f41.monsieurp@gentoo
1 commit: f8f3fc131ee6c2e2892895651186c7cac1a04f41
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 22:33:32 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 27 22:33:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f3fc13
7
8 dev-util/patchutils: fix tests.
9
10 Gentoo-Bug: https://bugs.gentoo.org/605952
11
12 Package-Manager: portage-2.3.0
13
14 dev-util/patchutils/patchutils-0.3.4.ebuild | 10 +++++++---
15 1 file changed, 7 insertions(+), 3 deletions(-)
16
17 diff --git a/dev-util/patchutils/patchutils-0.3.4.ebuild b/dev-util/patchutils/patchutils-0.3.4.ebuild
18 index 25ae2c8..a225494 100644
19 --- a/dev-util/patchutils/patchutils-0.3.4.ebuild
20 +++ b/dev-util/patchutils/patchutils-0.3.4.ebuild
21 @@ -13,11 +13,15 @@ SLOT="0"
22 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
23 IUSE="test"
24
25 -RDEPEND=""
26 -# The testsuite makes use of gendiff(1) that comes from rpm, thus if
27 -# the user wants to run tests, it should install that too.
28 +# testsuite makes use of gendiff(1) that comes from rpm, thus if the user wants
29 +# to run tests, it should install that package as well.
30 DEPEND="test? ( app-arch/rpm )"
31
32 PATCHES=(
33 "${FILESDIR}/${PN}-0.3.3-format-security.patch"
34 )
35 +
36 +src_test() {
37 + # See bug 605952.
38 + make check || die
39 +}