Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/tophat/
Date: Tue, 27 Sep 2016 16:52:51
Message-Id: 1474995072.982e9dfdf15d8bc9da0c795d93278de2bae027d2.soap@gentoo
1 commit: 982e9dfdf15d8bc9da0c795d93278de2bae027d2
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 16:51:12 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 16:51:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982e9dfd
7
8 sci-biology/tophat: Remove old and ancient 1.0 ebuilds
9
10 Package-Manager: portage-2.3.1
11
12 sci-biology/tophat/Manifest | 1 -
13 sci-biology/tophat/tophat-1.0.12.ebuild | 38 ---------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/sci-biology/tophat/Manifest b/sci-biology/tophat/Manifest
17 index 2bf8121..a0a9b79 100644
18 --- a/sci-biology/tophat/Manifest
19 +++ b/sci-biology/tophat/Manifest
20 @@ -1,2 +1 @@
21 -DIST tophat-1.0.12.tar.gz 468781 SHA256 f67b3f89aa79c7e14b40bcdba87f5aba6d322f869ca4260503e64ffcd2b621b2 SHA512 275e14cb6fb5f7a0874adcf843aabfda6c6868f835faa2d03e6561646ca1fc80804fe1887c51a375125f2f5ed6242e304f97ff12774a7d676b4964614d4a5bf1 WHIRLPOOL ea62ce14aae28dc0cc2b18fde870a0d3c021d9fb0c2ffb728b02b008b5f5bd416f29176fe81ed2ad8b1a41014f8a7114e2b8032426e2767effe9cc6933417cee
22 DIST tophat-2.1.1.tar.gz 2259554 SHA256 37840b96f3219630082b15642c47f5ef95d14f6ee99c06a369b08b3d05684da5 SHA512 e2e0943a6f3d34b83922e6e403b65a3bee480a2b2bb4bf2de0cae7e0ef5bb166b66fec923316c2b643e8550e43c842f0f1bcc2ca7249d20fbcf5a4733fbdeabc WHIRLPOOL 1e0d2bc4031eaa56a3b77ca5966c2ed439a85c9b05f028f69f4477d517e51371156bbe73d499536148eb42d60641af7f294641ee79bc855fcc4df74d70dae26c
23
24 diff --git a/sci-biology/tophat/tophat-1.0.12.ebuild b/sci-biology/tophat/tophat-1.0.12.ebuild
25 deleted file mode 100644
26 index 88870c9..00000000
27 --- a/sci-biology/tophat/tophat-1.0.12.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI="2"
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="A fast splice junction mapper for RNA-Seq reads"
39 -HOMEPAGE="http://tophat.cbcb.umd.edu/"
40 -SRC_URI="http://tophat.cbcb.umd.edu/downloads/${P}.tar.gz"
41 -
42 -LICENSE="Artistic"
43 -SLOT="0"
44 -IUSE=""
45 -KEYWORDS="amd64 x86"
46 -
47 -DEPEND=""
48 -RDEPEND="sci-biology/bowtie"
49 -
50 -src_prepare() {
51 - # fix missing includes
52 - sed -i '/#include <string>/ a #include <stdio.h>' "${S}/src/gff_juncs.cpp" || die
53 - sed -i \
54 - -e '/#include <stdio.h>/ a #include <unistd.h>' \
55 - "${S}/src/prep_reads.cpp" \
56 - "${S}/src/extract_reads.cpp" || die
57 - # fix parallel make race
58 - sed -i -e 's/\$(top_builddir)\/src\///g' src/Makefile.am || die
59 - # remove broken arch-dependent CFLAGS setting
60 - perl -i -ne 'print unless /case "\${host_cpu}-\${host_os}" in/../^esac/' configure.ac || die
61 - eautoreconf
62 -}
63 -
64 -src_install() {
65 - einstall || die
66 - dodoc AUTHORS NEWS THANKS
67 -}