summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-02-19 19:41:36 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-19 19:43:36 +0100
commitaa19eee8a41de5940cfb8e8da8e7f60e37559641 (patch)
tree0326a2b87720b56f98a1184258cfd5e99ccec21b /sci-biology
parentsci-biology/rebase: Drop to unstable (diff)
downloadgentoo-aa19eee8a41de5940cfb8e8da8e7f60e37559641.tar.gz
gentoo-aa19eee8a41de5940cfb8e8da8e7f60e37559641.tar.bz2
gentoo-aa19eee8a41de5940cfb8e8da8e7f60e37559641.zip
sci-biology/rebase: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3937
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/rebase/Manifest1
-rw-r--r--sci-biology/rebase/rebase-1612.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/sci-biology/rebase/Manifest b/sci-biology/rebase/Manifest
index cc30e1674adb..8f095bcbb40c 100644
--- a/sci-biology/rebase/Manifest
+++ b/sci-biology/rebase/Manifest
@@ -1,2 +1 @@
-DIST rebase-1612.tar.xz 122519992 SHA256 eb94346564c43244c5959b5948fe59f0ebe9e2590978f1ec8787a3395e918368 SHA512 3936749465f828d1b5922b4c75635a678e2e865cef88084d819291227bd1404e56edbc208e986a7373c32ff0172709cfcb8c4343f8512fbdacf39666f97c5026 WHIRLPOOL 729aa68437b48e3bcbaaf3747feaaf7090a612d2a05658a28ca74b8c58b3227718b0ca9d17a9d5caba42ba02cb6d11fe8bc34796bf385a8310bed2aecae20985
DIST rebase-1701.tar.xz 120604368 SHA256 cc8cf90f874dcb179b9f7654780ff783066fa6a67fffb90d6ac08d2917fa671b SHA512 1833db9d78508bbd5317f9b42b0e8129096f1695d5a14d5e2b6043bc94091a76ac404c576ad622be4e32c46aff7975a7ec3e36c3da71ce3ce1665868ee0d77cb WHIRLPOOL 641b755b92e8aa9ca2d9a69760d0414a95f38512fa235a9856a953398d5ab0c853bb4743f6790aada1d90f968bfaa76c0651aadea842fff9700941c506a29ecd
diff --git a/sci-biology/rebase/rebase-1612.ebuild b/sci-biology/rebase/rebase-1612.ebuild
deleted file mode 100644
index 65d4fbb4d658..000000000000
--- a/sci-biology/rebase/rebase-1612.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-MY_PV=${PV#1}
-
-DESCRIPTION="A restriction enzyme database"
-HOMEPAGE="http://rebase.neb.com"
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="emboss minimal"
-
-RDEPEND="emboss? ( >=sci-biology/emboss-5.0.0 )"
-DEPEND="${RDEPEND}"
-
-RESTRICT="binchecks strip"
-
-src_compile() {
- if use emboss; then
- echo; einfo "Indexing Rebase for usage with EMBOSS."
- mkdir REBASE || die
- EMBOSS_DATA="." rebaseextract -auto -infile withrefm.${MY_PV} \
- -protofile proto.${MY_PV} -equivalences \
- || die "Indexing Rebase failed."
- echo
- fi
-}
-
-src_install() {
- if ! use minimal; then
- insinto /usr/share/${PN}
- doins withrefm.${MY_PV} proto.${MY_PV}
- fi
- newdoc REBASE.DOC README
- if use emboss; then
- insinto /usr/share/EMBOSS/data/REBASE
- doins REBASE/embossre.{enz,ref,sup}
- insinto /usr/share/EMBOSS/data
- doins REBASE/embossre.equ
- fi
-}