summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-07-02 15:22:44 +0000
committerSam James <sam@gentoo.org>2022-07-02 15:32:10 +0000
commit0cb0c7938b85081551f1a75a7cb04cddd5e9b2bf (patch)
tree5fcdf09a3a5dd9c2a9b1f1f6ea35d037fe0ce34b /dev-perl/librg-utils-perl
parentdev-perl/librg-utils-perl: update EAPI 6 -> 8 (diff)
downloadgentoo-0cb0c7938b85081551f1a75a7cb04cddd5e9b2bf.tar.gz
gentoo-0cb0c7938b85081551f1a75a7cb04cddd5e9b2bf.tar.bz2
gentoo-0cb0c7938b85081551f1a75a7cb04cddd5e9b2bf.zip
dev-perl/librg-utils-perl: drop 1.0.43-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-perl/librg-utils-perl')
-rw-r--r--dev-perl/librg-utils-perl/librg-utils-perl-1.0.43-r1.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-perl/librg-utils-perl/librg-utils-perl-1.0.43-r1.ebuild b/dev-perl/librg-utils-perl/librg-utils-perl-1.0.43-r1.ebuild
deleted file mode 100644
index 88b8d7cf6e04..000000000000
--- a/dev-perl/librg-utils-perl/librg-utils-perl-1.0.43-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit perl-module
-
-DESCRIPTION="Parsers and format conversion utilities used by (e.g.) profphd"
-HOMEPAGE="http://rostlab.org/"
-SRC_URI="ftp://rostlab.org/librg-utils-perl/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
- dev-perl/List-MoreUtils"
-DEPEND="${RDEPEND}
- sci-libs/profphd-utils
- dev-perl/Module-Build
-"
-PATCHES=("${FILESDIR}/${P}-defined-array.patch")
-src_configure() {
- econf
- perl-module_src_configure
-}
-
-src_install() {
- rm mat/Makefile* || die
- perl-module_src_install
- insinto /usr/share/${PN}
- doins -r mat
- exeinto /usr/share/${PN}
- doexe *.pl dbSwiss
- doman blib/libdoc/*
-}
-src_test() {
- local MODULES=(
- "RG::Utils::Conv_hssp2saf"
- "RG::Utils::Hssp_filter"
- "RG::Utils::Copf"
- )
- 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
- perl-module_src_test
-}