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: Mon, 03 Aug 2020 16:56:07
Message-Id: 1596473660.5e82d24704dfce8efb91971c96031756d46fe0c2.soap@gentoo
1 commit: 5e82d24704dfce8efb91971c96031756d46fe0c2
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 16:54:20 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 16:54:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e82d247
7
8 sci-libs/htslib: Bump to version 1.10.2
9
10 Bug: https://bugs.gentoo.org/725270
11 Package-Manager: Portage-3.0.1, Repoman-2.3.23
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sci-libs/htslib/Manifest | 1 +
15 sci-libs/htslib/htslib-1.10.2.ebuild | 51 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 52 insertions(+)
17
18 diff --git a/sci-libs/htslib/Manifest b/sci-libs/htslib/Manifest
19 index e818f35f147..dce2a3b0b7b 100644
20 --- a/sci-libs/htslib/Manifest
21 +++ b/sci-libs/htslib/Manifest
22 @@ -1,2 +1,3 @@
23 +DIST htslib-1.10.2.tar.bz2 1306320 BLAKE2B f877bd9c160921f498f4160f687094a1a369732bc9f61cd94a3c9ca311fa9f865505a205e38e0d348a1010b627f1ef07b590cd7e69c945df1d804133b17b2fd1 SHA512 3ecb83b0abccf731cd42b889e352e10dd922524f6e78bcafb04f8c6c71457b0dc1f5f22690b36f03cce7d97a6a905db286243ef4858138068dcac368e4ae1075
24 DIST htslib-1.5.tar.bz2 1051132 BLAKE2B 90c6aeeaa2a2692228aa1f530d775a6e81f9275d321e8b2d6005b86b9a25e5967acca19dd898311a5bc4f3c17d4e8ea36d18da4602e18fadee47666350122077 SHA512 fd58552ddbd178f9797123fdaf47914ccd0e2aefd055fc6557ac8f479c600775616107cfa871c3acd93079f45974a19f443941a79f2acfd2a8c2983ef35b8917
25 DIST htslib-1.9.tar.bz2 1178859 BLAKE2B a0229313d3572717101f4f23d39fa124f3bb38d8b2e65055f4f801dbb5f1549df95115e8beadd8fa024171b3ff8a874d20087bf71819c36700666f168dbe41ab SHA512 ddb0e2d970e4c2c27e203b064898f95cb7c187cd497c02fc7b4312dcea25669d0b6063d537687521e7a065f6daefa1ae897add2df4981037a187b499d08fdef7
26
27 diff --git a/sci-libs/htslib/htslib-1.10.2.ebuild b/sci-libs/htslib/htslib-1.10.2.ebuild
28 new file mode 100644
29 index 00000000000..67a341be70e
30 --- /dev/null
31 +++ b/sci-libs/htslib/htslib-1.10.2.ebuild
32 @@ -0,0 +1,51 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit toolchain-funcs
39 +
40 +DESCRIPTION="C library for high-throughput sequencing data formats"
41 +HOMEPAGE="http://www.htslib.org/"
42 +SRC_URI="mirror://sourceforge/samtools/${PV}/${P}.tar.bz2"
43 +
44 +LICENSE="MIT"
45 +SLOT="0/3"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="+bzip2 curl +lzma"
48 +
49 +RDEPEND="
50 + bzip2? ( app-arch/bzip2:= )
51 + curl? ( net-misc/curl )
52 + lzma? ( app-arch/xz-utils:= )"
53 +DEPEND="${RDEPEND}"
54 +
55 +src_prepare() {
56 + default
57 +
58 + # upstream injects LDFLAGS into the .pc file,
59 + # which is a big nono for QA
60 + sed -e '/^\(static_l\|Libs.private\|Requires.private\)/d' \
61 + -i htslib.pc.in || die
62 +}
63 +
64 +src_configure() {
65 + econf \
66 + --disable-gcs \
67 + --disable-plugins \
68 + --disable-s3 \
69 + $(use_enable bzip2 bz2) \
70 + $(use_enable curl libcurl) \
71 + $(use_enable lzma)
72 +}
73 +
74 +src_compile() {
75 + emake AR="$(tc-getAR)"
76 +}
77 +
78 +src_install() {
79 + default
80 +
81 + # doesn't use libtool, can't disable static libraries
82 + find "${ED}" -name '*.a' -delete || die
83 +}