Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Alien-LibGumbo/
Date: Thu, 06 Aug 2020 16:05:05
Message-Id: 1596729424.d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd.kentnl@gentoo
1 commit: d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 6 15:57:04 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 15:57:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d80009fe
7
8 dev-perl/Alien-LibGumbo: Cleanup old 0.50.0-r1
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.22
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 .../Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild | 50 ----------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild b/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild
17 deleted file mode 100644
18 index 3e5aca8a29b..00000000000
19 --- a/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -DIST_AUTHOR=RUZ
28 -DIST_VERSION=0.05
29 -inherit perl-module
30 -
31 -DESCRIPTION="Gumbo parser library"
32 -
33 -SLOT="0"
34 -KEYWORDS="~amd64"
35 -
36 -# Alien-Build for Alien::Base
37 -RDEPEND="
38 - >=dev-perl/Alien-Build-0.5.0
39 - >=dev-perl/File-ShareDir-1.30.0
40 - >=dev-perl/Path-Class-0.13.0
41 -"
42 -DEPEND="
43 - dev-perl/Module-Build
44 -"
45 -BDEPEND="${RDEPEND}
46 - >=dev-perl/Alien-Base-ModuleBuild-0.5.0
47 - >=dev-perl/Module-Build-0.420.0
48 -"
49 -src_test() {
50 - local MODULES=(
51 - "Alien::LibGumbo ${DIST_VERSION}"
52 - "Alien::LibGumbo::ConfigData"
53 - "Alien::LibGumbo::Install::Files"
54 - )
55 - local failed=()
56 - for dep in "${MODULES[@]}"; do
57 - ebegin "Compile testing ${dep}"
58 - perl -Mblib="${S}/blib" -M"${dep} ()" -e1
59 - eend $? || failed+=( "$dep" )
60 - done
61 - if [[ ${failed[@]} ]]; then
62 - echo
63 - eerror "One or more modules failed compile:";
64 - for dep in "${failed[@]}"; do
65 - eerror " ${dep}"
66 - done
67 - die "Failing due to module compilation errors";
68 - fi
69 - # Currently useless
70 - # perl-module_src_test
71 -}