Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bowtie/
Date: Tue, 19 Feb 2019 11:26:25
Message-Id: 1550575574.b6846dd42e04e42c0103983272b6db0db248f75a.mmokrejs@gentoo
1 commit: b6846dd42e04e42c0103983272b6db0db248f75a
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Tue Feb 19 11:26:14 2019 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Tue Feb 19 11:26:14 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b6846dd4
7
8 sci-biology/bowtie: removing not working -1.2.2 ebuild
9
10 Package-Manager: Portage-2.3.61, Repoman-2.3.12
11 Signed-off-by: Martin Mokrejs <mmokrejs <AT> fold.natur.cuni.cz>
12
13 sci-biology/bowtie/bowtie-1.2.2.ebuild | 77 ----------------------------------
14 1 file changed, 77 deletions(-)
15
16 diff --git a/sci-biology/bowtie/bowtie-1.2.2.ebuild b/sci-biology/bowtie/bowtie-1.2.2.ebuild
17 deleted file mode 100644
18 index cae085bff..000000000
19 --- a/sci-biology/bowtie/bowtie-1.2.2.ebuild
20 +++ /dev/null
21 @@ -1,77 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit flag-o-matic toolchain-funcs
28 -
29 -DESCRIPTION="Popular short read aligner for Next-generation sequencing data"
30 -HOMEPAGE="http://bowtie-bio.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/bowtie-bio/${P}-src.zip"
32 -
33 -LICENSE="Artistic"
34 -SLOT="1"
35 -KEYWORDS=""
36 -
37 -IUSE="examples +tbb"
38 -
39 -RDEPEND="tbb? ( dev-cpp/tbb )"
40 -DEPEND="${RDEPEND}
41 - sci-biology/seqan:1.4
42 - app-arch/unzip"
43 -
44 -DOCS=( AUTHORS NEWS TUTORIAL doc/README )
45 -HTML_DOCS=( doc/{manual.html,style.css} )
46 -
47 -PATCHES=(
48 - "${FILESDIR}/${P}-_ContextLss-1.1-1.4.patch"
49 - "${FILESDIR}/${P}-fix-Intel-compilation.patch"
50 - "${FILESDIR}/${P}-unbundle-seqan.patch"
51 -)
52 -# other patches to be still considered
53 -# "${FILESDIR}/${P}-fix-setBegin-call.patch"
54 -# "${FILESDIR}/${P}-seqan-popcount.patch"
55 -# "${FILESDIR}/${P}-seqan-rename-ChunkPool.patch"
56 -# "${FILESDIR}/${P}-seqan-rename-fill-to-resize.patch"
57 -# "${FILESDIR}/${P}-spelling.patch"
58 -# "${FILESDIR}/${P}-tbb-tinythread-missing.patch"
59 -#)
60 -
61 -src_prepare() {
62 - default
63 -
64 - # remove bundled libraries, use system seqan 1.4
65 - rm -rf SeqAn-1.1/ third_party/ || die
66 -
67 - # innocuous non-security flags, prevent log pollution
68 - append-cxxflags \
69 - -Wno-unused-local-typedefs \
70 - -Wno-unused-but-set-variable \
71 - -Wno-unused-variable
72 -}
73 -
74 -src_compile() {
75 - emake \
76 - CC="$(tc-getCC)" \
77 - CPP="$(tc-getCXX)" \
78 - CFLAGS="" \
79 - CXXFLAGS="" \
80 - EXTRA_FLAGS="${LDFLAGS}" \
81 - RELEASE_FLAGS="${CXXFLAGS}" \
82 - WITH_TBB="$(usex tbb 1 0)"
83 -}
84 -
85 -src_install() {
86 - dobin ${PN} ${PN}-*
87 -
88 - exeinto /usr/libexec/${PN}
89 - doexe scripts/*
90 -
91 - newman MANUAL ${PN}.1
92 - einstalldocs
93 -
94 - if use examples; then
95 - insinto /usr/share/${PN}
96 - doins -r genomes indexes
97 - fi
98 -}