Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstrophe/
Date: Wed, 29 Jun 2022 07:11:59
Message-Id: 1656486709.c43d8892b289b49ec9f90bc60fa4b82bf66c906a.flow@gentoo
1 commit: c43d8892b289b49ec9f90bc60fa4b82bf66c906a
2 Author: Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
3 AuthorDate: Tue Jun 28 19:28:30 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 07:11:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c43d8892
7
8 dev-libs/libstrophe: drop 0.10.0
9
10 Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>
11 Closes: https://github.com/gentoo/gentoo/pull/26123
12 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
13
14 dev-libs/libstrophe/Manifest | 1 -
15 dev-libs/libstrophe/libstrophe-0.10.0.ebuild | 52 ----------------------------
16 2 files changed, 53 deletions(-)
17
18 diff --git a/dev-libs/libstrophe/Manifest b/dev-libs/libstrophe/Manifest
19 index 23b6415267e0..a4ab34968f67 100644
20 --- a/dev-libs/libstrophe/Manifest
21 +++ b/dev-libs/libstrophe/Manifest
22 @@ -1,2 +1 @@
23 -DIST libstrophe-0.10.0.tar.xz 357896 BLAKE2B b457c1556b7bd8012fd0b0badb962c0002ca38884e246911b25c8e01fa785a08c316a18c84e8f9e124ebeed636c586097a2dacf56c7c94062ac262e44f9473d0 SHA512 cffd71f3c83f53a4f0681916249842cc17e11fc28afa940e29a786ee02c5294a11115c115b12d200e185a62520623c68e1d4514ab374423e13e26b9438d80ea8
24 DIST libstrophe-0.12.0.tar.xz 397120 BLAKE2B 6ac32e317e14a8641b1d092026772264682b7b0980158757a82036f3db2643a6429e5553d9173b578111d5b8b503e9a98a4e140f98f8ac03866758624a1cec67 SHA512 dd0fc54840bb5626859f91c7bbe5204ea89332856392a5a33c50cf7f66c8aaa7b0d7c24bd737e8473d63f2c9d7683a75dcb9465a19634d14e54c9f8f20580884
25
26 diff --git a/dev-libs/libstrophe/libstrophe-0.10.0.ebuild b/dev-libs/libstrophe/libstrophe-0.10.0.ebuild
27 deleted file mode 100644
28 index bf0d452cd737..000000000000
29 --- a/dev-libs/libstrophe/libstrophe-0.10.0.ebuild
30 +++ /dev/null
31 @@ -1,52 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
37 -HOMEPAGE="http://strophe.im/libstrophe/"
38 -SRC_URI="https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.xz"
39 -LICENSE="|| ( MIT GPL-3 )"
40 -SLOT="0"
41 -KEYWORDS="amd64"
42 -IUSE="doc expat"
43 -
44 -RDEPEND="
45 - expat? ( dev-libs/expat )
46 - !expat? ( dev-libs/libxml2:2 )
47 - dev-libs/openssl:0=
48 -"
49 -DEPEND="${RDEPEND}"
50 -BDEPEND="
51 - virtual/pkgconfig
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}" -type f \( -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 -}