diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-08-07 03:57:04 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-08-07 03:57:04 +1200 |
commit | d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd (patch) | |
tree | d3b2783c17fd2141baf7cb5416cf2ee5e64b4e2f /dev-perl | |
parent | dev-perl/Ace: Cleanup old 1.920.0-r{3,4,5} (diff) | |
download | gentoo-d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd.tar.gz gentoo-d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd.tar.bz2 gentoo-d80009fe6ffc3469ca472adeb8f5b5c7528cc0fd.zip |
dev-perl/Alien-LibGumbo: Cleanup old 0.50.0-r1
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
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 deleted file mode 100644 index 3e5aca8a29bc..000000000000 --- a/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=RUZ -DIST_VERSION=0.05 -inherit perl-module - -DESCRIPTION="Gumbo parser library" - -SLOT="0" -KEYWORDS="~amd64" - -# Alien-Build for Alien::Base -RDEPEND=" - >=dev-perl/Alien-Build-0.5.0 - >=dev-perl/File-ShareDir-1.30.0 - >=dev-perl/Path-Class-0.13.0 -" -DEPEND=" - dev-perl/Module-Build -" -BDEPEND="${RDEPEND} - >=dev-perl/Alien-Base-ModuleBuild-0.5.0 - >=dev-perl/Module-Build-0.420.0 -" -src_test() { - local MODULES=( - "Alien::LibGumbo ${DIST_VERSION}" - "Alien::LibGumbo::ConfigData" - "Alien::LibGumbo::Install::Files" - ) - local failed=() - for dep in "${MODULES[@]}"; do - ebegin "Compile testing ${dep}" - perl -Mblib="${S}/blib" -M"${dep} ()" -e1 - eend $? || failed+=( "$dep" ) - done - if [[ ${failed[@]} ]]; then - echo - eerror "One or more modules failed compile:"; - for dep in "${failed[@]}"; do - eerror " ${dep}" - done - die "Failing due to module compilation errors"; - fi - # Currently useless - # perl-module_src_test -} |