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: Sun, 06 Nov 2022 11:07:16
Message-Id: 1667732661.69d168a4867e0f241fdf3a489a4ea3bff99057f9.flow@gentoo
1 commit: 69d168a4867e0f241fdf3a489a4ea3bff99057f9
2 Author: Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
3 AuthorDate: Sat Nov 5 19:24:30 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 11:04:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d168a4
7
8 dev-libs/libstrophe: drop 0.12.0, 0.12.1
9
10 Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>
11 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
12
13 dev-libs/libstrophe/Manifest | 2 --
14 dev-libs/libstrophe/libstrophe-0.12.0.ebuild | 50 ----------------------------
15 dev-libs/libstrophe/libstrophe-0.12.1.ebuild | 49 ---------------------------
16 3 files changed, 101 deletions(-)
17
18 diff --git a/dev-libs/libstrophe/Manifest b/dev-libs/libstrophe/Manifest
19 index da0ed93a50ef..6d9439ad1757 100644
20 --- a/dev-libs/libstrophe/Manifest
21 +++ b/dev-libs/libstrophe/Manifest
22 @@ -1,3 +1 @@
23 -DIST libstrophe-0.12.0.tar.xz 397120 BLAKE2B 6ac32e317e14a8641b1d092026772264682b7b0980158757a82036f3db2643a6429e5553d9173b578111d5b8b503e9a98a4e140f98f8ac03866758624a1cec67 SHA512 dd0fc54840bb5626859f91c7bbe5204ea89332856392a5a33c50cf7f66c8aaa7b0d7c24bd737e8473d63f2c9d7683a75dcb9465a19634d14e54c9f8f20580884
24 -DIST libstrophe-0.12.1.tar.xz 398492 BLAKE2B 9f0e06952603d51a0697366a83d6fa80af09161858d87bee8cfd95786944a58ad1551155b8b7a982646f775a695432822f33b36c6e52161db145dca98050689e SHA512 54e255f756a6705dc554ce75dd6b4ea889822774ca38042548480ea026a7f4d411b4ba30f3aaf88776a0d8437f51eb07fb3675ddbfb0afd661d5f965b280dd52
25 DIST libstrophe-0.12.2.tar.xz 400092 BLAKE2B 28b655e4bf3a279f837fd26e7c7ba34cd32053ad16be660c04d1c07b5335d805e9745cd24af584ed62f8ae44caebd8bda48473872163c122ecbcd57f042fc3db SHA512 1026f57b107a0ff8f088a5c7f1d88b3b5a35d0e6bfefb4f6eb56de37fe9fd2f554f547663a41353b7c6b01a2aa47f6cab4a9f7a7c87ba8c0c7708d7b2b4c2086
26
27 diff --git a/dev-libs/libstrophe/libstrophe-0.12.0.ebuild b/dev-libs/libstrophe/libstrophe-0.12.0.ebuild
28 deleted file mode 100644
29 index e883a03f6c63..000000000000
30 --- a/dev-libs/libstrophe/libstrophe-0.12.0.ebuild
31 +++ /dev/null
32 @@ -1,50 +0,0 @@
33 -# Copyright 1999-2022 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.xz"
40 -LICENSE="|| ( MIT GPL-3 )"
41 -# Subslot: ${SONAME}.1 to differentiate from previous versions without SONAME
42 -SLOT="0/0.1"
43 -KEYWORDS="amd64"
44 -IUSE="doc expat gnutls"
45 -
46 -RDEPEND="
47 - expat? ( dev-libs/expat )
48 - !expat? ( dev-libs/libxml2:2 )
49 - gnutls? ( net-libs/gnutls:0= )
50 - !gnutls? ( dev-libs/openssl:0= )
51 - dev-libs/openssl:0=
52 -"
53 -DEPEND="${RDEPEND}"
54 -BDEPEND="
55 - virtual/pkgconfig
56 - doc? ( app-doc/doxygen )
57 -"
58 -
59 -DOCS=( ChangeLog )
60 -
61 -src_configure() {
62 - # shellcheck disable=SC2207
63 - local myeconf=(
64 - --enable-tls
65 - $(use_with !expat libxml2)
66 - $(use_with gnutls)
67 - )
68 - econf "${myeconf[@]}"
69 -}
70 -src_compile() {
71 - default
72 - if use doc; then
73 - doxygen || die
74 - HTML_DOCS=( docs/html/* )
75 - fi
76 -}
77 -
78 -src_install() {
79 - default
80 - use doc && dodoc -r examples
81 - find "${D}" -type f \( -name '*.la' -o -name '*.a' \) -delete || die
82 -}
83
84 diff --git a/dev-libs/libstrophe/libstrophe-0.12.1.ebuild b/dev-libs/libstrophe/libstrophe-0.12.1.ebuild
85 deleted file mode 100644
86 index a491acaf81f5..000000000000
87 --- a/dev-libs/libstrophe/libstrophe-0.12.1.ebuild
88 +++ /dev/null
89 @@ -1,49 +0,0 @@
90 -# Copyright 1999-2022 Gentoo Authors
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=7
94 -DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
95 -HOMEPAGE="http://strophe.im/libstrophe/"
96 -SRC_URI="https://github.com/strophe/${PN}/releases/download/${PV}/${P}.tar.xz"
97 -LICENSE="|| ( MIT GPL-3 )"
98 -# Subslot: ${SONAME}.1 to differentiate from previous versions without SONAME
99 -SLOT="0/0.1"
100 -KEYWORDS="amd64"
101 -IUSE="doc expat gnutls"
102 -
103 -RDEPEND="
104 - expat? ( dev-libs/expat )
105 - !expat? ( dev-libs/libxml2:2 )
106 - gnutls? ( net-libs/gnutls:0= )
107 - !gnutls? ( dev-libs/openssl:0= )
108 -"
109 -DEPEND="${RDEPEND}"
110 -BDEPEND="
111 - virtual/pkgconfig
112 - doc? ( app-doc/doxygen )
113 -"
114 -
115 -DOCS=( ChangeLog )
116 -
117 -src_configure() {
118 - # shellcheck disable=SC2207
119 - local myeconf=(
120 - --enable-tls
121 - $(use_with !expat libxml2)
122 - $(use_with gnutls)
123 - )
124 - econf "${myeconf[@]}"
125 -}
126 -src_compile() {
127 - default
128 - if use doc; then
129 - doxygen || die
130 - HTML_DOCS=( docs/html/* )
131 - fi
132 -}
133 -
134 -src_install() {
135 - default
136 - use doc && dodoc -r examples
137 - find "${D}" -type f \( -name '*.la' -o -name '*.a' \) -delete || die
138 -}