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/gloox/
Date: Tue, 28 Feb 2017 14:59:46
Message-Id: 1488293966.3e532869f0934b9727c28879b5cf5ecad6415567.polynomial-c@gentoo
1 commit: 3e532869f0934b9727c28879b5cf5ecad6415567
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 14:37:44 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 14:59:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e532869
7
8 net-libs/gloox: Bump to version 1.0.20
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-libs/gloox/Manifest | 1 +
13 net-libs/gloox/gloox-1.0.20.ebuild | 45 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/net-libs/gloox/Manifest b/net-libs/gloox/Manifest
17 index c3e04efb44..b333acba95 100644
18 --- a/net-libs/gloox/Manifest
19 +++ b/net-libs/gloox/Manifest
20 @@ -1,3 +1,4 @@
21 DIST gloox-1.0.18.tar.bz2 700080 SHA256 16730e7fd4679e098a6d6c1f94ee72aca825e8f40e6744f5921ac32fdf22548e SHA512 b8387796914e237fa07cff17862f8eafad8506173a3bcd7a659158daf845a33606b3ec58822c2f0f8f629aa1ee68a2ac58489dba83516cb7da264da3678317a7 WHIRLPOOL 6b38e7e3d480083fd98fc4d5f8c2402faf1c5242d3201c29d40995cafd2aadafb20780c7219a1a55497ab95754ea1c5b8f79756fed9f2f3b84780dc060f4b1d0
22 DIST gloox-1.0.19.tar.bz2 700335 SHA256 88466ab52ca99bfb22a74b738d9713a9cda0b06e539108354156ba408a5283f8 SHA512 6f62773aeb24631ea5edbbf2267275f9e6005bed240dfbd121784238709d85097a096d16b3cd7cb45d34b2daeab026dbb3b84994c504ba03180d9dff90f9fbb5 WHIRLPOOL 98586156b3a88807b3f1aca25b9fb06f17581b4a1e834cf1692b406b879f4f759ec424dfb36527bc0945774a798647a8b033a9ae860960b4f214f9a35051c00f
23 +DIST gloox-1.0.20.tar.bz2 701114 SHA256 0243086c0f4f0440d6d8e55705f83249a4463a1d75a034be42b5312e8886dea8 SHA512 b94269487875ae32631b5b15eeebe3293c6b8ab4080a6e15926c575305841a609a5e4da25bff266806ef4b65c1db14e9a9e5dabf8af8b174773cbdc37cfa12f8 WHIRLPOOL 872fa9587d9ab1a07197c40790f5ae72748df6f7d835a206c92da5819456118c8c7dc2f70fcf289e2840b272051436f204503ba12b143a33a48c4f150a36db34
24 DIST gloox-1.0.9.tar.bz2 670206 SHA256 143dd50e1edc4eb1d304fa28bdd6ab9e53b60c37c1726dd0e34c06c51f9a453e SHA512 a3fa7acc76fdca0421030e71b6a13ca0b04589946df2a781609f1bddae5329299d68ce99a4a94a0760206b112759636379ce67d220422b99302fc799964bfa22 WHIRLPOOL 414eb34fa3ec11ae929f84198d95ed0da9de0739655ae1188ac3eb03998de5cecb9c165ad284496b405b49126236b628dc5b4579e855b10377add145fabb63b1
25
26 diff --git a/net-libs/gloox/gloox-1.0.20.ebuild b/net-libs/gloox/gloox-1.0.20.ebuild
27 new file mode 100644
28 index 0000000000..9b24194176
29 --- /dev/null
30 +++ b/net-libs/gloox/gloox-1.0.20.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +MY_P="${P/_/-}"
39 +DESCRIPTION="A portable high-level Jabber/XMPP library for C++"
40 +HOMEPAGE="http://camaya.net/gloox"
41 +SRC_URI="http://camaya.net/download/${MY_P}.tar.bz2"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0/17"
45 +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~ia64 ~sparc ~x86"
46 +IUSE="debug gnutls idn libressl ssl static-libs test zlib"
47 +
48 +DEPEND="idn? ( net-dns/libidn )
49 + gnutls? ( net-libs/gnutls )
50 + ssl? (
51 + !libressl? ( dev-libs/openssl:0 )
52 + libressl? ( dev-libs/libressl )
53 + )
54 + zlib? ( sys-libs/zlib )"
55 +
56 +RDEPEND="${DEPEND}"
57 +
58 +S="${WORKDIR}/${MY_P}"
59 +
60 +src_configure() {
61 + # Examples are not installed anyway, so - why should we build them?
62 + econf \
63 + --without-examples \
64 + $(usex debug "--enable-debug" '') \
65 + $(use_enable static-libs static) \
66 + $(use_with idn libidn) \
67 + $(use_with gnutls) \
68 + $(use_with ssl openssl) \
69 + $(use_with test tests) \
70 + $(use_with zlib)
71 +}
72 +
73 +src_install() {
74 + default
75 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
76 +}