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: Sat, 04 Aug 2018 16:32:29
Message-Id: 1533400335.4f2408921b412004a876bcd2dfc6e0f1f56128b3.whissi@gentoo
1 commit: 4f2408921b412004a876bcd2dfc6e0f1f56128b3
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 4 15:48:57 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 4 16:32:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f240892
7
8 dev-libs/librelp: drop old
9
10 Package-Manager: Portage-2.3.44, Repoman-2.3.10
11
12 dev-libs/librelp/Manifest | 1 -
13 dev-libs/librelp/librelp-1.2.15.ebuild | 55 ----------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
17 index aecd425fe0d..20fcff97328 100644
18 --- a/dev-libs/librelp/Manifest
19 +++ b/dev-libs/librelp/Manifest
20 @@ -1,2 +1 @@
21 -DIST librelp-1.2.15.tar.gz 440273 BLAKE2B dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e SHA512 9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
22 DIST librelp-1.2.16.tar.gz 474456 BLAKE2B b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc SHA512 54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3
23
24 diff --git a/dev-libs/librelp/librelp-1.2.15.ebuild b/dev-libs/librelp/librelp-1.2.15.ebuild
25 deleted file mode 100644
26 index 84d265125a2..00000000000
27 --- a/dev-libs/librelp/librelp-1.2.15.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="6"
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="An easy to use library for the RELP protocol"
38 -HOMEPAGE="http://www.librelp.com/"
39 -SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-3+ doc? ( FDL-1.3 )"
42 -
43 -# subslot = soname version
44 -SLOT="0/0.3.0"
45 -
46 -KEYWORDS="amd64 arm arm64 hppa sparc x86"
47 -IUSE="debug doc +ssl static-libs"
48 -
49 -RDEPEND="
50 - ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
51 -"
52 -
53 -DEPEND="
54 - ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
55 - virtual/pkgconfig
56 -"
57 -
58 -src_prepare() {
59 - sed -i \
60 - -e 's/ -g"/"/g' \
61 - configure.ac || die "sed failed"
62 -
63 - default
64 -
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 - local myeconfargs=(
70 - $(use_enable debug)
71 - $(use_enable ssl tls)
72 - $(use_enable static-libs static)
73 - )
74 -
75 - econf "${myeconfargs[@]}"
76 -}
77 -
78 -src_install() {
79 - local DOCS=( ChangeLog )
80 - use doc && local HTML_DOCS=( doc/relp.html )
81 - default
82 -
83 - find "${ED}"usr/lib* -name '*.la' -delete || die
84 -}