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/samtools/
Date: Sun, 03 Oct 2021 17:41:50
Message-Id: 1633282897.e728877de767757bdff23a79092cf0fa15cf5d8a.soap@gentoo
1 commit: e728877de767757bdff23a79092cf0fa15cf5d8a
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 3 17:41:37 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 3 17:41:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e728877d
7
8 sci-biology/samtools: add 1.13
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sci-biology/samtools/Manifest | 1 +
13 sci-biology/samtools/samtools-1.13.ebuild | 47 +++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/sci-biology/samtools/Manifest b/sci-biology/samtools/Manifest
17 index 622e57502c3..2128bb6db9c 100644
18 --- a/sci-biology/samtools/Manifest
19 +++ b/sci-biology/samtools/Manifest
20 @@ -1,2 +1,3 @@
21 DIST samtools-0.1.20.tar.gz 566387 BLAKE2B a62d74c408877754af50f5e5fea0e2289ec1e0c9f25013ed0d039bfe8ef61108600d917f8c9d356e98aca632795b4eb0f01ea1b54526a652577fb74a38a433c2 SHA512 15bd8cf401d14c1ab4faa591b6054f5ea9731c4e966f37f71d33d9081a270cfeb91e8a3d80c631e0725b49da81387f824c206e8c21553ad554d0cfc5c238a6e5
22 DIST samtools-1.10.tar.bz2 4721173 BLAKE2B 103c71ec5740eac151a4fc40d67286ee00123c7befd5f654cf5c89812bda44f82b38ab662a4a3216ac84434cabab49500b903612137f97f89a7ea38063e8fc08 SHA512 828ec2638592b440e06b81eafc57634416ab54dac6caaecb06f22a90e9bf99da1fd8bb54509cb98591899c4e097ac9038ee5d57ea7bfe1a18967cde4018d840a
23 +DIST samtools-1.13.tar.bz2 7984998 BLAKE2B e46161c43d4ea51c3ef1d9ed74c40c21b70aef80aa903a49b94b3d468f9211e9147281204eb61b9843c071f09ead08c924e3d624d4df76a1d02ba9ceb318399a SHA512 647fbad2935dfc3e4f85da257a6ee59af40078024a3b77f117dada5f55846e381a096db3cf62a63c04ae95dfc9fadb1d515b8d618e6388bc93f0b2ac85eaf6ea
24
25 diff --git a/sci-biology/samtools/samtools-1.13.ebuild b/sci-biology/samtools/samtools-1.13.ebuild
26 new file mode 100644
27 index 00000000000..3165c7b7381
28 --- /dev/null
29 +++ b/sci-biology/samtools/samtools-1.13.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Utilities for analysing and manipulating the SAM/BAM alignment formats"
39 +HOMEPAGE="http://www.htslib.org/"
40 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos"
45 +
46 +RDEPEND="
47 + dev-lang/perl
48 + =sci-libs/htslib-${PV}*:=
49 + sys-libs/ncurses:=[unicode(+)]
50 + sys-libs/zlib"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="virtual/pkgconfig"
53 +
54 +src_prepare() {
55 + default
56 +
57 + # remove bundled htslib
58 + rm -r htslib-* || die
59 +}
60 +
61 +src_configure() {
62 + econf \
63 + --with-ncurses \
64 + --with-htslib=system \
65 + CURSES_LIB="$($(tc-getPKG_CONFIG) --libs ncursesw || die)"
66 +}
67 +
68 +src_compile() {
69 + emake AR="$(tc-getAR)"
70 +}
71 +
72 +src_install() {
73 + default
74 +
75 + dodoc -r examples
76 + docompress -x /usr/share/doc/${PF}/examples
77 +}