sci-biology/repeatmasker: treeclean

Closes: https://bugs.gentoo.org/828701
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
Jakov Smolić
2022-02-10 10:16:56 +01:00
parent 5830a52c10
commit c00ae3c8ea
4 changed files with 0 additions and 73 deletions

View File

@@ -251,12 +251,6 @@ dev-python/intreehooks
# Removal on 2022-02-12. Bug #828703.
sci-chemistry/povscript+
# Jakov Smolić <jsmolic@gentoo.org> (2022-01-12)
# Outdated, using EAPI 5, multiple open bugs, compile
# and test failures. No other major distro is packaging this.
# Removal on 2022-02-11. Bug #828706. Bug #828701.
sci-biology/repeatmasker
# Brian Evans <grknight@gentoo.org> (2022-01-07)
# The main consumer, phpunit, does not initiate the new timer correctly
# This is likely to cause issues in tests; Unmask if using for other purposes

View File

@@ -1 +0,0 @@
DIST RepeatMasker-open-4-0-1.tar.gz 84077910 BLAKE2B 45598d46ef1c0e1233ed5ce10c2d29e4b2ef1a6843846970df2d0f997a22657eeed7dd7c851418d6f751468b22327b47f3b72105fdcfa56bbebe97395946ab37 SHA512 6b710a02b2964bca6acb25cc918bd56f7caba7b80b3b683972f0584180bf0fd3704f657d7ee341187a4ac86d9883e62eb4f09da237fa8ef1b481137d1a89963e

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>sci-biology@gentoo.org</email>
<name>Gentoo Biology Project</name>
</maintainer>
</pkgmetadata>

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_PV=${PV//\./-}
DESCRIPTION="Screen DNA sequences for interspersed repeats and low complexity DNA"
HOMEPAGE="http://repeatmasker.org/"
SRC_URI="http://www.repeatmasker.org/RepeatMasker-open-${MY_PV}.tar.gz"
LICENSE="OSL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="
sci-biology/rmblast
sci-biology/trf
sci-biology/repeatmasker-libraries"
S="${WORKDIR}/RepeatMasker"
src_configure() {
sed -i -e 's/system( "clear" );//' \
-e 's|> \($rmLocation/Libraries/RepeatMasker.lib\)|> '${D}'/\1|' "${S}/configure" || die
echo "
env
/usr/share/${PN}
/usr/bin
2
/opt/rmblast/bin
Y
5" | "${S}/configure" || die "configure failed"
sed -i -e 's|use lib $FindBin::RealBin;|use lib "/usr/share/'${PN}'/lib";|' \
-e 's|".*\(taxonomy.dat\)"|"/usr/share/'${PN}'/\1"|' \
-e '/$REPEATMASKER_DIR/ s|$FindBin::RealBin|/usr/share/'${PN}'|' \
"${S}"/{DateRepeats,ProcessRepeats,RepeatMasker,DupMasker,RepeatProteinMask,RepeatMaskerConfig.pm,Taxonomy.pm} || die
}
src_install() {
exeinto /usr/share/${PN}
for i in DateRepeats ProcessRepeats RepeatMasker DupMasker RepeatProteinMask; do
doexe $i
dosym /usr/share/${PN}/$i /usr/bin/$i
done
dodir /usr/share/${PN}/lib
insinto /usr/share/${PN}/lib
doins "${S}"/*.pm
insinto /usr/share/${PN}
doins -r util Matrices Libraries taxonomy.dat *.help
keepdir /usr/share/${PN}/Libraries
dodoc README INSTALL *.help
}