Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librelp/
Date: Wed, 26 Aug 2020 13:31:13
Message-Id: 1598448660.f4fd6c410255587c7f172ff066c58d6e5f7888f8.whissi@gentoo
1 commit: f4fd6c410255587c7f172ff066c58d6e5f7888f8
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 26 12:00:03 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 26 13:31:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4fd6c41
7
8 dev-libs/librelp: drop old
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-libs/librelp/Manifest | 2 -
14 dev-libs/librelp/librelp-1.4.0.ebuild | 74 -----------------------------------
15 dev-libs/librelp/librelp-1.5.0.ebuild | 74 -----------------------------------
16 3 files changed, 150 deletions(-)
17
18 diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
19 index e4ac6ea06d4..0b8b3dd509c 100644
20 --- a/dev-libs/librelp/Manifest
21 +++ b/dev-libs/librelp/Manifest
22 @@ -1,3 +1 @@
23 -DIST librelp-1.4.0.tar.gz 519235 BLAKE2B 9c1e52cc9f666e75f261db65f45e3d954afa033cac59f93394c30ba99ed772d71b2882bdbb9bed696e57ed99805d47e57fd5e331cc3bc3850c5f15041a0d70d0 SHA512 92d01a51b4ee3c66d1f65d2e26f214646d72b41a8411ab700fe5f9f30f805ef98dec962526ef95c8d8428bf7398d38f656c919f95a3e49382adc745ef9eb4239
24 -DIST librelp-1.5.0.tar.gz 521793 BLAKE2B f3fa42ab1df5bc7fea340bf87f241666535f61a5726df55f47f6f324347a1dbbede2a66d252fe654d21e79ee44684aa51e83cace32491778d6cc42698f578195 SHA512 b7fb35e4ddb5c3c14ef733699405f8aa62911adef305cd4f494170e111bc61a9208b84dab472a708582cd76ad9976894dae0e7574e60acdae2b56491aa7daf36
25 DIST librelp-1.6.0.tar.gz 522827 BLAKE2B 04e608a3afe4e6e0109cc9bf753de34e9486595e33bc57387b9428bcf50f8d56177e8f849870611778636be5a58714e4640048758c83a041a354f70442d55cf0 SHA512 1bf96b700fa5ab648ed671b341ae7101fc1db4107f178abd507647afe4f12d59a94c821cc0e06998ac7b344ed41a5e3821843c722c82bf5284c6556995391228
26
27 diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild b/dev-libs/librelp/librelp-1.4.0.ebuild
28 deleted file mode 100644
29 index 529fe6d6459..00000000000
30 --- a/dev-libs/librelp/librelp-1.4.0.ebuild
31 +++ /dev/null
32 @@ -1,74 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI="7"
37 -PYTHON_COMPAT=( python3_{6,7} )
38 -
39 -inherit autotools python-any-r1
40 -
41 -DESCRIPTION="An easy to use library for the RELP protocol"
42 -HOMEPAGE="http://www.librelp.com/"
43 -SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="GPL-3+ doc? ( FDL-1.3 )"
46 -
47 -# subslot = soname version
48 -SLOT="0/0.5.0"
49 -
50 -KEYWORDS="amd64 arm ~arm64 hppa sparc x86"
51 -IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
52 -REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
53 -
54 -RDEPEND="
55 - ssl? (
56 - gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
57 - openssl? (
58 - !libressl? ( dev-libs/openssl:0= )
59 - libressl? ( dev-libs/libressl:0= )
60 - )
61 - )"
62 -DEPEND="${RDEPEND}
63 - test? ( ${PYTHON_DEPS} )
64 - virtual/pkgconfig"
65 -
66 -RESTRICT="!test? ( test )"
67 -
68 -pkg_setup() {
69 - use test && python-any-r1_pkg_setup
70 -}
71 -
72 -src_prepare() {
73 - sed -i \
74 - -e 's/ -g"/"/g' \
75 - configure.ac || die "sed failed"
76 -
77 - default
78 -
79 - eautoreconf
80 -}
81 -
82 -src_configure() {
83 - local myeconfargs=(
84 - --disable-valgrind
85 - $(use_enable debug)
86 - $(use_enable gnutls tls)
87 - $(use_enable openssl tls-openssl)
88 - $(use_enable static-libs static)
89 - )
90 -
91 - econf "${myeconfargs[@]}"
92 -}
93 -
94 -src_test() {
95 - emake -j1 check
96 -}
97 -
98 -src_install() {
99 - local DOCS=( ChangeLog )
100 - use doc && local HTML_DOCS=( doc/relp.html )
101 - default
102 -
103 - if ! use static-libs; then
104 - find "${D}" -name '*.la' -delete || die
105 - fi
106 -}
107
108 diff --git a/dev-libs/librelp/librelp-1.5.0.ebuild b/dev-libs/librelp/librelp-1.5.0.ebuild
109 deleted file mode 100644
110 index edacd29ee8e..00000000000
111 --- a/dev-libs/librelp/librelp-1.5.0.ebuild
112 +++ /dev/null
113 @@ -1,74 +0,0 @@
114 -# Copyright 1999-2020 Gentoo Authors
115 -# Distributed under the terms of the GNU General Public License v2
116 -
117 -EAPI="7"
118 -PYTHON_COMPAT=( python3_{6,7,8} )
119 -
120 -inherit autotools python-any-r1
121 -
122 -DESCRIPTION="An easy to use library for the RELP protocol"
123 -HOMEPAGE="https://www.rsyslog.com/librelp/"
124 -SRC_URI="https://download.rsyslog.com/${PN}/${P}.tar.gz"
125 -
126 -LICENSE="GPL-3+ doc? ( FDL-1.3 )"
127 -
128 -# subslot = soname version
129 -SLOT="0/0.5.0"
130 -
131 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
132 -IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
133 -REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
134 -
135 -RDEPEND="
136 - ssl? (
137 - gnutls? ( >=net-libs/gnutls-3.3.17.1:0= )
138 - openssl? (
139 - !libressl? ( dev-libs/openssl:0= )
140 - libressl? ( dev-libs/libressl:0= )
141 - )
142 - )"
143 -DEPEND="${RDEPEND}
144 - test? ( ${PYTHON_DEPS} )
145 - virtual/pkgconfig"
146 -
147 -RESTRICT="!test? ( test )"
148 -
149 -pkg_setup() {
150 - use test && python-any-r1_pkg_setup
151 -}
152 -
153 -src_prepare() {
154 - sed -i \
155 - -e 's/ -g"/"/g' \
156 - configure.ac || die "sed failed"
157 -
158 - default
159 -
160 - eautoreconf
161 -}
162 -
163 -src_configure() {
164 - local myeconfargs=(
165 - --disable-valgrind
166 - $(use_enable debug)
167 - $(use_enable gnutls tls)
168 - $(use_enable openssl tls-openssl)
169 - $(use_enable static-libs static)
170 - )
171 -
172 - econf "${myeconfargs[@]}"
173 -}
174 -
175 -src_test() {
176 - emake -j1 check
177 -}
178 -
179 -src_install() {
180 - local DOCS=( ChangeLog )
181 - use doc && local HTML_DOCS=( doc/relp.html )
182 - default
183 -
184 - if ! use static-libs; then
185 - find "${D}" -name '*.la' -delete || die
186 - fi
187 -}