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:24:32
Message-Id: 1550575458.51f9e3636c1422b40200dcc11c4122f356cfe4de.mmokrejs@gentoo
1 commit: 51f9e3636c1422b40200dcc11c4122f356cfe4de
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Tue Feb 19 11:24:18 2019 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Tue Feb 19 11:24:18 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=51f9e363
7
8 sci-biology/bowtie: removing -9999 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-9999.ebuild | 81 -----------------------------------
14 1 file changed, 81 deletions(-)
15
16 diff --git a/sci-biology/bowtie/bowtie-9999.ebuild b/sci-biology/bowtie/bowtie-9999.ebuild
17 deleted file mode 100644
18 index d54d0a544..000000000
19 --- a/sci-biology/bowtie/bowtie-9999.ebuild
20 +++ /dev/null
21 @@ -1,81 +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 git-r3
28 -
29 -DESCRIPTION="Popular short read aligner for Next-generation sequencing data"
30 -HOMEPAGE="http://bowtie-bio.sourceforge.net/"
31 -EGIT_REPO_URI="https://github.com/BenLangmead/bowtie.git"
32 -EGIT_BRANCH="bug_fixes"
33 -
34 -LICENSE="Artistic"
35 -SLOT="1"
36 -KEYWORDS=""
37 -
38 -IUSE="examples +tbb"
39 -
40 -RDEPEND="tbb? ( dev-cpp/tbb )"
41 -DEPEND="${RDEPEND}
42 - sci-biology/seqan:1.4
43 - app-arch/unzip"
44 -
45 -DOCS=( AUTHORS NEWS TUTORIAL doc/README )
46 -HTML_DOCS=( doc/{manual.html,style.css} )
47 -
48 -PATCHES=( "${FILESDIR}/bowtie-9999-fix-isa-return-type.patch" )
49 -# not needed
50 -# "${FILESDIR}/${P}-fix-Intel-compilation.patch", obsoleted by https://github.com/BenLangmead/bowtie/commit/d8b661fb36c129cb9899fcd3689b3618036f8c7b
51 -#PATCHES=(
52 -# "${FILESDIR}/${P}-_ContextLss-1.1-1.4.patch"
53 -# "${FILESDIR}/${P}-fix-Intel-compilation.patch"
54 -# "${FILESDIR}/${P}-unbundle-seqan.patch"
55 -#)
56 -# other patches to be still considered
57 -# "${FILESDIR}/${P}-fix-setBegin-call.patch"
58 -# "${FILESDIR}/${P}-seqan-popcount.patch"
59 -# "${FILESDIR}/${P}-seqan-rename-ChunkPool.patch"
60 -# "${FILESDIR}/${P}-seqan-rename-fill-to-resize.patch"
61 -# "${FILESDIR}/${P}-spelling.patch"
62 -# "${FILESDIR}/${P}-tbb-tinythread-missing.patch"
63 -#)
64 -
65 -src_prepare() {
66 - default
67 -
68 - # remove bundled libraries, use system seqan 1.4
69 - # rm -rf SeqAn-1.1/ third_party/ || die
70 -
71 - # innocuous non-security flags, prevent log pollution
72 - append-cxxflags \
73 - -Wno-unused-local-typedefs \
74 - -Wno-unused-but-set-variable \
75 - -Wno-unused-variable
76 -}
77 -
78 -src_compile() {
79 - emake \
80 - CC="$(tc-getCC)" \
81 - CPP="$(tc-getCXX)" \
82 - CFLAGS="" \
83 - CXXFLAGS="" \
84 - EXTRA_FLAGS="${LDFLAGS}" \
85 - RELEASE_FLAGS="${CXXFLAGS}" \
86 - WITH_TBB="$(usex tbb 1 0)"
87 -}
88 -
89 -src_install() {
90 - dobin ${PN} ${PN}-*
91 -
92 - exeinto /usr/libexec/${PN}
93 - doexe scripts/*
94 -
95 - newman MANUAL ${PN}.1
96 - einstalldocs
97 -
98 - if use examples; then
99 - insinto /usr/share/${PN}
100 - doins -r genomes indexes
101 - fi
102 -}