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-libs/htslib/
Date: Sun, 28 Oct 2018 20:25:08
Message-Id: 1540758273.85fad26e8efb7e2fc01de49e59a0d7e0b210c5bc.soap@gentoo
1 commit: 85fad26e8efb7e2fc01de49e59a0d7e0b210c5bc
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 20:24:33 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 20:24:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85fad26e
7
8 sci-libs/htslib: Version bump to 1.9
9
10 Bug: https://bugs.gentoo.org/647714
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13
14 sci-libs/htslib/Manifest | 1 +
15 sci-libs/htslib/htslib-1.9.ebuild | 45 +++++++++++++++++++++++++++++++++++++++
16 2 files changed, 46 insertions(+)
17
18 diff --git a/sci-libs/htslib/Manifest b/sci-libs/htslib/Manifest
19 index 6841d0a69fb..e818f35f147 100644
20 --- a/sci-libs/htslib/Manifest
21 +++ b/sci-libs/htslib/Manifest
22 @@ -1 +1,2 @@
23 DIST htslib-1.5.tar.bz2 1051132 BLAKE2B 90c6aeeaa2a2692228aa1f530d775a6e81f9275d321e8b2d6005b86b9a25e5967acca19dd898311a5bc4f3c17d4e8ea36d18da4602e18fadee47666350122077 SHA512 fd58552ddbd178f9797123fdaf47914ccd0e2aefd055fc6557ac8f479c600775616107cfa871c3acd93079f45974a19f443941a79f2acfd2a8c2983ef35b8917
24 +DIST htslib-1.9.tar.bz2 1178859 BLAKE2B a0229313d3572717101f4f23d39fa124f3bb38d8b2e65055f4f801dbb5f1549df95115e8beadd8fa024171b3ff8a874d20087bf71819c36700666f168dbe41ab SHA512 ddb0e2d970e4c2c27e203b064898f95cb7c187cd497c02fc7b4312dcea25669d0b6063d537687521e7a065f6daefa1ae897add2df4981037a187b499d08fdef7
25
26 diff --git a/sci-libs/htslib/htslib-1.9.ebuild b/sci-libs/htslib/htslib-1.9.ebuild
27 new file mode 100644
28 index 00000000000..69df48a332f
29 --- /dev/null
30 +++ b/sci-libs/htslib/htslib-1.9.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="C library for high-throughput sequencing data formats"
38 +HOMEPAGE="http://www.htslib.org/"
39 +SRC_URI="mirror://sourceforge/samtools/${PV}/${P}.tar.bz2"
40 +
41 +SLOT="0/2"
42 +LICENSE="MIT"
43 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 +IUSE="+bzip2 curl +lzma static-libs"
45 +
46 +RDEPEND="
47 + bzip2? ( app-arch/bzip2:= )
48 + curl? ( net-misc/curl )
49 + lzma? ( app-arch/xz-utils:= )"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_prepare() {
53 + default
54 +
55 + # upstream injects LDFLAGS into the .pc file,
56 + # which is a big nono for QA
57 + sed 's/private_LIBS=$LDFLAGS/private_LIBS=""/g' -i configure || die
58 +}
59 +
60 +src_configure() {
61 + econf \
62 + --disable-gcs \
63 + --disable-plugins \
64 + --disable-s3 \
65 + $(use_enable bzip2 bz2) \
66 + $(use_enable curl libcurl) \
67 + $(use_enable lzma)
68 +}
69 +
70 +src_install() {
71 + default
72 +
73 + if ! use static-libs; then
74 + find "${D}" -name '*.a' -delete || die
75 + fi
76 +}