Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/libmaus2/
Date: Mon, 28 Sep 2020 07:31:37
Message-Id: 1601278106.6b93c27115efc381ba6dc195e2a4d32b98a23177.chymera@gentoo
1 commit: 6b93c27115efc381ba6dc195e2a4d32b98a23177
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Mon Sep 28 07:28:26 2020 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 28 07:28:26 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6b93c271
7
8 sci-libs/libmaus2: dropped old version
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 sci-libs/libmaus2/libmaus2-2.0.587.ebuild | 42 -------------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/sci-libs/libmaus2/libmaus2-2.0.587.ebuild b/sci-libs/libmaus2/libmaus2-2.0.587.ebuild
17 deleted file mode 100644
18 index 9be955b71..000000000
19 --- a/sci-libs/libmaus2/libmaus2-2.0.587.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 2019-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit autotools
28 -
29 -release_data="20190122104826"
30 -DESCRIPTION="Library for biobambam2"
31 -HOMEPAGE="https://github.com/gt1/libmaus"
32 -SRC_URI="https://gitlab.com/german.tischler/${PN}/-/archive/${PV}-release-${release_data}/${P}-release-${release_data}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="BSD-2 GPL-2 GPL-3 MIT ZLIB" # BUG: incomplete list of licenses, see AUTHORS
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2"
38 -
39 -DEPEND="
40 - app-arch/snappy
41 - sci-libs/fftw
42 - sci-libs/hdf5
43 - net-libs/gnutls
44 - dev-libs/nettle"
45 -# --with-daligner
46 -# --with-irods
47 -S="${WORKDIR}/${P}-release-${release_data}"
48 -
49 -src_configure(){
50 - local CONFIG_OPTS
51 - use cpu_flags_x86_ssse3 && CONFIG_OPTS+=( --enable-ssse3 )
52 - ( use cpu_flags_x86_sse4_1 || use cpu_flags_x86_sse4_2 ) && CONFIG_OPTS+=( --enable-sse4 )
53 - econf --with-snappy $CONFIG_OPTS \
54 - --with-lzma --with-gnutls --with-nettle --with-hdf5 --with-gmp --with-fftw
55 - # --with-io_lib
56 - # will require >=sci-libs/io_lib-1.14.11 which is not yet available in ::gentoo
57 -}
58 -
59 -pkg_postinst(){
60 - einfo "The snappy dependency is not strictly needed"
61 - einfo "but were forced for optimal libmaus2 performance."
62 - einfo "igzip is only used if gzip level is set to 11."
63 -}