Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/io_lib/
Date: Fri, 14 Apr 2017 22:40:57
Message-Id: 1492209640.ce93e9503628e17d4644c85fff89c49c1a3e4e50.mmokrejs@gentoo
1 commit: ce93e9503628e17d4644c85fff89c49c1a3e4e50
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Apr 14 22:40:40 2017 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Apr 14 22:40:40 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ce93e950
7
8 sci-libs/io_lib: version bump, support for alternative zlib implementations
9
10 It is not enabled in the ebuild but the sources are ready to links against
11 a different implementation
12
13 CloudFlare: https://github.com/cloudflare/zlib
14 Intel: https://github.com/jtkukunas/zlib
15 Zlib-ng: https://github.com/Dead2/zlib-ng
16 Package-Manager: Portage-2.3.5, Repoman-2.3.2
17
18 sci-libs/io_lib/io_lib-1.14.9.ebuild | 28 ++++++++++++++++++++++++++++
19 1 file changed, 28 insertions(+)
20
21 diff --git a/sci-libs/io_lib/io_lib-1.14.9.ebuild b/sci-libs/io_lib/io_lib-1.14.9.ebuild
22 new file mode 100644
23 index 000000000..f5b992183
24 --- /dev/null
25 +++ b/sci-libs/io_lib/io_lib-1.14.9.ebuild
26 @@ -0,0 +1,28 @@
27 +# Copyright 1999-2017 Gentoo Foundation
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=5
31 +
32 +inherit autotools-utils
33 +
34 +DESCRIPTION="General purpose trace and experiment file reading/writing interface"
35 +HOMEPAGE="http://staden.sourceforge.net/"
36 +SRC_URI="mirror://sourceforge/staden/${P}.tar.gz"
37 +
38 +LICENSE="BSD"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
41 +IUSE="static-libs"
42 +
43 +# Prototype changes in io_lib-1.9.0 create incompatibilities with BioPerl. (Only
44 +# versions 1.8.11 and 1.8.12 will work with the BioPerl Staden extensions.)
45 +#DEPEND="!sci-biology/bioperl"
46 +DEPEND="
47 + net-misc/curl
48 + sys-libs/zlib"
49 +RDEPEND="${DEPEND}"
50 +
51 +src_install() {
52 + autotools-utils_src_install
53 + dodoc docs/{Hash_File_Format,ZTR_format}
54 +}