Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstrophe/
Date: Tue, 29 Dec 2020 12:53:32
Message-Id: 1609246281.947f3d307a7ccf44dbff3aab652dd123c71a4013.andrey_utkin@gentoo
1 commit: 947f3d307a7ccf44dbff3aab652dd123c71a4013
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 12:51:21 2020 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 12:51:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947f3d30
7
8 dev-libs/libstrophe: add new version 0.10.1
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
12
13 dev-libs/libstrophe/Manifest | 1 +
14 dev-libs/libstrophe/libstrophe-0.10.1.ebuild | 51 ++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-libs/libstrophe/Manifest b/dev-libs/libstrophe/Manifest
18 index 9097c741aa9..6a0cc0156fe 100644
19 --- a/dev-libs/libstrophe/Manifest
20 +++ b/dev-libs/libstrophe/Manifest
21 @@ -1,3 +1,4 @@
22 DIST libstrophe-0.10.0.tar.gz 520645 BLAKE2B 85998ffa7d2051bf3372842a0bc6d5404932c41853609943ae0420760e0434a74b711bd5f23657f061f1227647247b1989833c54c11a88490fe7617459687818 SHA512 9d2e8f95ab5f9611529e18b0130322a196d4b59aae69c931a6d7dc462d4a6a4fa395d6fbca56d9f329fc943e3de005b570ea34629a504175f3f2ec91f85bf40a
23 +DIST libstrophe-0.10.1.tar.gz 520649 BLAKE2B aa5cf0c972d7ae8731752f351dc3c1d6d230b8a1411417a81126543dd47e79e324a8c258cbc4c2e608c748d62211dcde3802cb92bb3612c6a33bcd2209182a90 SHA512 1ee3cb76cdc76711b4928d69fb8add974ab8359b729ec12003d73530c93492f4e8d208cacbd50f8db7509bc01f56a9f945348bc3a6fdd18a7080b751fff8a783
24 DIST libstrophe-0.9.2.tar.gz 500459 BLAKE2B 0b1f6f1daac1215bcdcbde0e54264b98f5a863de339500826f625f8c5e8143ce7200fb251d04248715e9a8b6621a4360e7ca2780bf4684d916ec13361b5f6fcc SHA512 a0129c49ca574afaefa77c412143571af2eb1100c7d737d497b65d44680d35e2404ee2d4d4e1378b06ac1bcc5c587f505f79fea9251af1cbb36afd990d48570d
25 DIST libstrophe-0.9.3.tar.gz 502449 BLAKE2B 662b0c329b0bf7d7f34fc80bf0608b921fa1ad54c8277e88f23f3ed17d0892dc7e3d9bcaaa9707306801e9254bba4a127390025ab95e1d9d850c299a7b26d980 SHA512 9c8ba980f532c5576c2c5a9e3cdca9f833ec78debcb06b17e2f534de0e710ec416b997b0498be77a89fa7f57187456edb1d602993c695a5e738718ea593697a5
26
27 diff --git a/dev-libs/libstrophe/libstrophe-0.10.1.ebuild b/dev-libs/libstrophe/libstrophe-0.10.1.ebuild
28 new file mode 100644
29 index 00000000000..5757ff62194
30 --- /dev/null
31 +++ b/dev-libs/libstrophe/libstrophe-0.10.1.ebuild
32 @@ -0,0 +1,51 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
38 +HOMEPAGE="http://strophe.im/libstrophe/"
39 +SRC_URI="https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.gz"
40 +LICENSE="|| ( MIT GPL-3 )"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE="doc expat libressl"
44 +
45 +RDEPEND="
46 + expat? ( dev-libs/expat )
47 + !expat? ( dev-libs/libxml2:2 )
48 + libressl? ( dev-libs/libressl:0= )
49 + !libressl? ( dev-libs/openssl:0= )
50 +"
51 +DEPEND="${RDEPEND}
52 + doc? ( app-doc/doxygen )
53 +"
54 +
55 +DOCS=( ChangeLog )
56 +
57 +src_configure() {
58 + # shellcheck disable=SC2207
59 + local myeconf=(
60 + --enable-tls
61 + $(use_with !expat libxml2)
62 + )
63 + econf "${myeconf[@]}"
64 +}
65 +src_compile() {
66 + default
67 + if use doc; then
68 + doxygen || die
69 + HTML_DOCS=( docs/html/* )
70 + fi
71 +}
72 +
73 +src_install() {
74 + default
75 + use doc && dodoc -r examples
76 + find "${D}" -name '*.la' -o -name '*.a' -delete || die
77 +}
78 +
79 +# Explicit src_test is there to document that the test suite is integrated and
80 +# is expected to pass. Please do not remove.
81 +src_test() {
82 + emake check
83 +}