diff options
author | Kent Fredric <kentnl@gentoo.org> | 2018-06-08 17:20:03 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2018-06-08 23:59:28 +1200 |
commit | 1589c003c1fe297a6121412884fe2a41b604885d (patch) | |
tree | aaafe1e78225ee92cf77d52acde46c00763493f2 /dev-perl/Ace | |
parent | virtual/w3m: restore s390 keyword (diff) | |
download | gentoo-1589c003c1fe297a6121412884fe2a41b604885d.tar.gz gentoo-1589c003c1fe297a6121412884fe2a41b604885d.tar.bz2 gentoo-1589c003c1fe297a6121412884fe2a41b604885d.zip |
dev-perl/Ace: Cleanup old version 1.920.0-r{1,2}
Package-Manager: Portage-2.3.29, Repoman-2.3.9
Diffstat (limited to 'dev-perl/Ace')
-rw-r--r-- | dev-perl/Ace/Ace-1.920.0-r1.ebuild | 22 | ||||
-rw-r--r-- | dev-perl/Ace/Ace-1.920.0-r2.ebuild | 96 |
2 files changed, 0 insertions, 118 deletions
diff --git a/dev-perl/Ace/Ace-1.920.0-r1.ebuild b/dev-perl/Ace/Ace-1.920.0-r1.ebuild deleted file mode 100644 index 1f3f631aa1c5..000000000000 --- a/dev-perl/Ace/Ace-1.920.0-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_PN=AcePerl -MODULE_AUTHOR=LDS -MODULE_VERSION=1.92 -inherit perl-module - -DESCRIPTION="Object-Oriented Access to ACEDB Databases" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="virtual/perl-Digest-MD5 - dev-perl/Cache-Cache" -RDEPEND="${DEPEND}" - -# online tests -RESTRICT=test diff --git a/dev-perl/Ace/Ace-1.920.0-r2.ebuild b/dev-perl/Ace/Ace-1.920.0-r2.ebuild deleted file mode 100644 index d08d72d1c779..000000000000 --- a/dev-perl/Ace/Ace-1.920.0-r2.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_NAME=AcePerl -DIST_AUTHOR=LDS -DIST_VERSION=1.92 -DIST_EXAMPLES=("examples/*") -inherit perl-module - -DESCRIPTION="Object-Oriented Access to ACEDB Databases" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="virtual/perl-Digest-MD5 - dev-perl/Cache-Cache - dev-perl/GD -" -DEPEND="${RDEPEND}" - -src_prepare() { - sed -i 's/", "1")/", "3")/' "${S}/Makefile.PL" || die "Can't patch config" - perl-module_src_prepare -} -src_test() { - local MODULES=( - "Ace ${DIST_VERSION}" - "Ace::Freesubs 1.00" - "Ace::Graphics::Fk" # NO VERSION - "Ace::Graphics::Glyph" - "Ace::Graphics::Glyph::anchored_arrow" - "Ace::Graphics::Glyph::arrow" - "Ace::Graphics::Glyph::box" - "Ace::Graphics::Glyph::crossbox" - "Ace::Graphics::Glyph::dot" - "Ace::Graphics::Glyph::ex" - "Ace::Graphics::Glyph::graded_segments" - "Ace::Graphics::Glyph::group" - "Ace::Graphics::Glyph::line" - "Ace::Graphics::Glyph::primers" - "Ace::Graphics::Glyph::segments" - "Ace::Graphics::Glyph::span" - "Ace::Graphics::Glyph::toomany" - "Ace::Graphics::Glyph::transcript" - "Ace::Graphics::Glyph::triangle" - "Ace::Graphics::GlyphFactory" - "Ace::Graphics::Panel" - "Ace::Graphics::Track" - "Ace::Iterator 1.51" - "Ace::Local 1.05" - "Ace::Model 1.51" - "Ace::Object 1.66" - "Ace::Object::Wormbase" - "Ace::RPC 1.00" - "Ace::Sequence 1.51" - "Ace::Sequence::Feature" - "Ace::Sequence::FeatureList" - "Ace::Sequence::GappedAlignment 1.20" - "Ace::Sequence::Gene" - "Ace::Sequence::Homol" - "Ace::Sequence::Multi" - "Ace::Sequence::Transcript" - "Ace::SocketServer 1.01" - "GFF::Filehandle" -# Need Ace::Browser -# "Ace::Browser::AceSubs ${DIST_VERSION}" -# "Ace::Browser::GeneSubs ${DIST_VERSION}" -# "Ace::Browser::SearchSubs ${DIST_VERSION}" -# "Ace::Browser::SiteDefs ${DIST_VERSION}" -# "Ace::Browser::TreeSubs ${DIST_VERSION}" - ) - local failed=() - for dep in "${MODULES[@]}"; do - ebegin "Compile testing ${dep}" - perl -Mblib="${S}" -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 - if ! has "network" "${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}"; then - ewarn "This package needs network access to run its full test suite" - ewarn "For details, see:" - ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-nodes/dev-perl/Ace" - else - perl-module_src_test - fi -} |