Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/
Date: Thu, 10 Aug 2017 11:40:23
Message-Id: 1502365202.2b49ce0e8e66f8aa5b1bf6241a7a87fce3af86ae.amynka@gentoo
1 commit: 2b49ce0e8e66f8aa5b1bf6241a7a87fce3af86ae
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 10 11:37:27 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 10 11:40:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b49ce0e
7
8 net-libs/libisds: version bump 0.10.7 bug #624362
9
10 Submitted-by: Petr Pisar <petr.pisar <AT> atlas.cz>
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.1
13
14 net-libs/libisds/Manifest | 1 +
15 net-libs/libisds/libisds-0.10.7.ebuild | 54 ++++++++++++++++++++++++++++++++++
16 2 files changed, 55 insertions(+)
17
18 diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
19 index 63b7e27a259..b5878597f09 100644
20 --- a/net-libs/libisds/Manifest
21 +++ b/net-libs/libisds/Manifest
22 @@ -1,2 +1,3 @@
23 DIST libisds-0.10.6.tar.xz 724120 SHA256 49ca70acef5dd5d092a03643f4d2f96ff8250b135eb55558a5f62fa1fd3f8a8a SHA512 602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4 WHIRLPOOL 2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1
24 +DIST libisds-0.10.7.tar.xz 724840 SHA256 8a738d3bf0f4dd150fe633607cc9a4d29cd62b61e1d2acf38cedf265b5f08589 SHA512 ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023 WHIRLPOOL 2025157d09371d4b804776f9fe373eec12275ca178673c16b0863d66b17a85b4ba5b9993d33ade9d86d18e1b22968bb81c8136429cf0053260c3798aba2f2cf8
25 DIST libisds-0.10.tar.xz 721260 SHA256 f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd WHIRLPOOL cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c
26
27 diff --git a/net-libs/libisds/libisds-0.10.7.ebuild b/net-libs/libisds/libisds-0.10.7.ebuild
28 new file mode 100644
29 index 00000000000..f0c245e83cd
30 --- /dev/null
31 +++ b/net-libs/libisds/libisds-0.10.7.ebuild
32 @@ -0,0 +1,54 @@
33 +# Copyright 1999-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +DESCRIPTION="Client library for accessing ISDS Soap services"
39 +HOMEPAGE="http://xpisar.wz.cz/libisds/"
40 +SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
41 +KEYWORDS="~amd64 ~mips ~x86"
42 +
43 +LICENSE="LGPL-3"
44 +SLOT="0"
45 +IUSE="+curl debug nls openssl static-libs test"
46 +
47 +COMMON_DEPEND="
48 + dev-libs/expat
49 + dev-libs/libxml2
50 + curl? ( net-misc/curl[ssl] )
51 + openssl? ( dev-libs/openssl:= )
52 + !openssl? (
53 + app-crypt/gpgme
54 + dev-libs/libgcrypt:=
55 + )
56 +"
57 +DEPEND="${COMMON_DEPEND}
58 + virtual/pkgconfig
59 + nls? ( sys-devel/gettext )
60 + test? ( >=net-libs/gnutls-2.12.0 )
61 +"
62 +RDEPEND="${COMMON_DEPEND}
63 + !openssl? ( >=app-crypt/gnupg-2 )
64 +"
65 +
66 +DOCS=( NEWS README AUTHORS ChangeLog )
67 +
68 +src_configure() {
69 + local myeconfargs=(
70 + --disable-fatalwarnings
71 + $(use_with curl libcurl)
72 + $(use_enable curl curlreauthorizationbug)
73 + $(use_enable debug)
74 + $(use_enable nls)
75 + $(use_enable openssl openssl-backend)
76 + $(use_enable static-libs static)
77 + $(use_enable test)
78 + )
79 + econf "${myeconfargs[@]}"
80 +}
81 +
82 +src_install() {
83 + default
84 +
85 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
86 +}