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: Mon, 16 Jul 2018 15:20:39
Message-Id: 1531754376.7cc7c541d4b0fdacf4d1cd9e0e9bb215b3327450.amynka@gentoo
1 commit: 7cc7c541d4b0fdacf4d1cd9e0e9bb215b3327450
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 16 16:17:05 2018 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 16 15:19:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc7c541
7
8 net-libs/libisds: version bum 0.10.8
9
10 Closes: https://bugs.gentoo.org/660902
11 Submitted-by: Karel Slany <karel.slany <AT> nic.cz>
12 Package-Manager: Portage-2.3.40, Repoman-2.3.9
13
14 net-libs/libisds/Manifest | 1 +
15 net-libs/libisds/libisds-0.10.8.ebuild | 54 ++++++++++++++++++++++++++++++++++
16 2 files changed, 55 insertions(+)
17
18 diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
19 index 196ec70e70b..b0dde93b956 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 BLAKE2B b6d3f42d4ff84c377c9425dfd84a14ae97ccc39ea4bb96169e3a8de21b99dd6e5ceda39a6d4a574ccb418561dbec2507f72afc8b6f185c34ff92202abcc49441 SHA512 602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
24 DIST libisds-0.10.7.tar.xz 724840 BLAKE2B 73d93b518271cbd08787a38da454ceb8fa6c2d421b0291c61cded8f1438d44c5607d1e90d75714c3d76e0886ac723e38dc2a41d60284a58d567abdcba76becd4 SHA512 ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
25 +DIST libisds-0.10.8.tar.xz 726040 BLAKE2B e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059 SHA512 648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
26
27 diff --git a/net-libs/libisds/libisds-0.10.8.ebuild b/net-libs/libisds/libisds-0.10.8.ebuild
28 new file mode 100644
29 index 00000000000..1470c31c107
30 --- /dev/null
31 +++ b/net-libs/libisds/libisds-0.10.8.ebuild
32 @@ -0,0 +1,54 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
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 +}