Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/
Date: Wed, 04 Jan 2017 14:06:45
Message-Id: 1483538792.62a4d1e25b7a9bdb05fd7026ea85fa8777bb0f0d.polynomial-c@gentoo
1 commit: 62a4d1e25b7a9bdb05fd7026ea85fa8777bb0f0d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 4 14:03:40 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 4 14:06:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a4d1e2
7
8 net-libs/libisds: Bump to version 0.10.6
9
10 Thanks to Petr Pisar for reporting this in bug #587590.
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13
14 net-libs/libisds/Manifest | 1 +
15 net-libs/libisds/libisds-0.10.6.ebuild | 55 ++++++++++++++++++++++++++++++++++
16 2 files changed, 56 insertions(+)
17
18 diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
19 index b916781..352b8f1 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.tar.xz 721260 SHA256 f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd WHIRLPOOL cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c
25 DIST libisds-0.7.tar.xz 685388 SHA256 db57ca7d8bdd306dfe5ec86d22afd36cb1b859a9e72bc3293d982842cb796701 SHA512 c250d7967aee997fbbb97ab077ff0d83cbf3a5aca4cfe7885453a1e25e17e3da0c119424787cb3010febea6076f62e9150ea8d91f6d955708023df25e5b5690b WHIRLPOOL 6b7c4b22411296d8c6b3a8c222da6404c915635dc7cb79d97f36123b0e033a337b93b0acb62dacff394a2d439d1622d078c6076cf34aa2f1838e4b57f7343c2a
26
27 diff --git a/net-libs/libisds/libisds-0.10.6.ebuild b/net-libs/libisds/libisds-0.10.6.ebuild
28 new file mode 100644
29 index 00000000..5df268c
30 --- /dev/null
31 +++ b/net-libs/libisds/libisds-0.10.6.ebuild
32 @@ -0,0 +1,55 @@
33 +# Copyright 1999-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +DESCRIPTION="Client library for accessing ISDS Soap services"
40 +HOMEPAGE="http://xpisar.wz.cz/libisds/"
41 +SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
42 +KEYWORDS="~amd64 ~mips ~x86"
43 +
44 +LICENSE="LGPL-3"
45 +SLOT="0"
46 +IUSE="+curl debug nls openssl static-libs test"
47 +
48 +COMMON_DEPEND="
49 + dev-libs/expat
50 + dev-libs/libxml2
51 + curl? ( net-misc/curl[ssl] )
52 + openssl? ( dev-libs/openssl:= )
53 + !openssl? (
54 + app-crypt/gpgme
55 + dev-libs/libgcrypt:=
56 + )
57 +"
58 +DEPEND="${COMMON_DEPEND}
59 + virtual/pkgconfig
60 + nls? ( sys-devel/gettext )
61 + test? ( >=net-libs/gnutls-2.12.0 )
62 +"
63 +RDEPEND="${COMMON_DEPEND}
64 + !openssl? ( >=app-crypt/gnupg-2 )
65 +"
66 +
67 +DOCS=( NEWS README AUTHORS ChangeLog )
68 +
69 +src_configure() {
70 + local myeconfargs=(
71 + --disable-fatalwarnings
72 + $(use_with curl libcurl)
73 + $(use_enable curl curlreauthorizationbug)
74 + $(use_enable debug)
75 + $(use_enable nls)
76 + $(use_enable openssl openssl-backend)
77 + $(use_enable static-libs static)
78 + $(use_enable test)
79 + )
80 + econf "${myeconfargs[@]}"
81 +}
82 +
83 +src_install() {
84 + default
85 +
86 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
87 +}