Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcached/
Date: Wed, 14 Feb 2018 03:18:03
Message-Id: 1518578246.708203c9e5c521c1e8093675f6fa4994661bc0e9.prometheanfire@gentoo
1 commit: 708203c9e5c521c1e8093675f6fa4994661bc0e9
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 14 03:17:26 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 14 03:17:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708203c9
7
8 dev-libs/libmemcached: cleanup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../libmemcached/libmemcached-1.0.18-r1.ebuild | 51 ---------------------
13 .../libmemcached/libmemcached-1.0.18-r2.ebuild | 53 ----------------------
14 dev-libs/libmemcached/libmemcached-1.0.18.ebuild | 50 --------------------
15 3 files changed, 154 deletions(-)
16
17 diff --git a/dev-libs/libmemcached/libmemcached-1.0.18-r1.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18-r1.ebuild
18 deleted file mode 100644
19 index 573767f416c..00000000000
20 --- a/dev-libs/libmemcached/libmemcached-1.0.18-r1.ebuild
21 +++ /dev/null
22 @@ -1,51 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -
28 -inherit autotools eutils multilib
29 -RESTRICT="test" # https://bugs.gentoo.org/show_bug.cgi?id=498250 https://bugs.launchpad.net/gentoo/+bug/1278023
30 -
31 -DESCRIPTION="a C client library to the memcached server"
32 -HOMEPAGE="http://libmemcached.org/libMemcached.html"
33 -SRC_URI="https://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
38 -IUSE="debug hsieh +libevent sasl static-libs"
39 -
40 -DEPEND="net-misc/memcached
41 - sasl? ( dev-libs/cyrus-sasl )
42 - libevent? ( dev-libs/libevent )"
43 -RDEPEND="${DEPEND}"
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}/debug-disable-enable-1.0.18.patch"
47 - sed -i '6i CFLAGS = @CFLAGS@' Makefile.am
48 - sed -e "/_APPEND_COMPILE_FLAGS_ERROR(\[-fmudflapth\?\])/d" -i m4/ax_harden_compiler_flags.m4
49 - eautoreconf
50 -}
51 -
52 -src_configure() {
53 - econf \
54 - --disable-dtrace \
55 - $(use_enable static-libs static) \
56 - $(use_enable sasl sasl) \
57 - $(use_enable debug debug) \
58 - $(use_enable debug assert) \
59 - $(use_enable hsieh hsieh_hash) \
60 - --libdir=/usr/$(get_libdir) \
61 - ${myconf}
62 -}
63 -
64 -src_install() {
65 - emake DESTDIR="${D}" install
66 -
67 - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
68 -
69 - dodoc AUTHORS ChangeLog README THANKS TODO
70 - # remove manpage to avoid collision, see bug #299330
71 - rm -f "${D}"/usr/share/man/man1/memdump.*
72 - newman man/memdump.1 memcached_memdump.1
73 -}
74
75 diff --git a/dev-libs/libmemcached/libmemcached-1.0.18-r2.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18-r2.ebuild
76 deleted file mode 100644
77 index f5676b7b2a8..00000000000
78 --- a/dev-libs/libmemcached/libmemcached-1.0.18-r2.ebuild
79 +++ /dev/null
80 @@ -1,53 +0,0 @@
81 -# Copyright 1999-2018 Gentoo Foundation
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=5
85 -
86 -WANT_AUTOMAKE=1.13
87 -
88 -inherit autotools eutils multilib
89 -RESTRICT="test" # https://bugs.gentoo.org/show_bug.cgi?id=498250 https://bugs.launchpad.net/gentoo/+bug/1278023
90 -
91 -DESCRIPTION="a C client library to the memcached server"
92 -HOMEPAGE="http://libmemcached.org/libMemcached.html"
93 -SRC_URI="https://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
94 -
95 -LICENSE="BSD"
96 -SLOT="0"
97 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
98 -IUSE="debug hsieh +libevent sasl static-libs"
99 -
100 -DEPEND="net-misc/memcached
101 - sasl? ( dev-libs/cyrus-sasl )
102 - libevent? ( dev-libs/libevent )"
103 -RDEPEND="${DEPEND}"
104 -
105 -src_prepare() {
106 - epatch "${FILESDIR}/debug-disable-enable-1.0.18.patch"
107 - sed -i '6i CFLAGS = @CFLAGS@' Makefile.am
108 - sed -e "/_APPEND_COMPILE_FLAGS_ERROR(\[-fmudflapth\?\])/d" -i m4/ax_harden_compiler_flags.m4
109 - eautoreconf
110 -}
111 -
112 -src_configure() {
113 - econf \
114 - --disable-dtrace \
115 - $(use_enable static-libs static) \
116 - $(use_enable sasl sasl) \
117 - $(use_enable debug debug) \
118 - $(use_enable debug assert) \
119 - $(use_enable hsieh hsieh_hash) \
120 - --libdir=/usr/$(get_libdir) \
121 - ${myconf}
122 -}
123 -
124 -src_install() {
125 - emake DESTDIR="${D}" install
126 -
127 - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
128 -
129 - dodoc AUTHORS ChangeLog README THANKS TODO
130 - # remove manpage to avoid collision, see bug #299330
131 - rm -f "${D}"/usr/share/man/man1/memdump.*
132 - newman man/memdump.1 memcached_memdump.1
133 -}
134
135 diff --git a/dev-libs/libmemcached/libmemcached-1.0.18.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18.ebuild
136 deleted file mode 100644
137 index 0bb1960dc4e..00000000000
138 --- a/dev-libs/libmemcached/libmemcached-1.0.18.ebuild
139 +++ /dev/null
140 @@ -1,50 +0,0 @@
141 -# Copyright 1999-2018 Gentoo Foundation
142 -# Distributed under the terms of the GNU General Public License v2
143 -
144 -EAPI=5
145 -
146 -inherit autotools eutils multilib
147 -RESTRICT="test" # https://bugs.gentoo.org/show_bug.cgi?id=498250 https://bugs.launchpad.net/gentoo/+bug/1278023
148 -
149 -DESCRIPTION="a C client library to the memcached server"
150 -HOMEPAGE="http://libmemcached.org/libMemcached.html"
151 -SRC_URI="https://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
152 -
153 -LICENSE="BSD"
154 -SLOT="0"
155 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
156 -IUSE="debug hsieh +libevent sasl static-libs"
157 -
158 -DEPEND="net-misc/memcached
159 - sasl? ( dev-libs/cyrus-sasl )
160 - libevent? ( dev-libs/libevent )"
161 -RDEPEND="${DEPEND}"
162 -
163 -src_prepare() {
164 - sed -i '6i CFLAGS = @CFLAGS@' Makefile.am
165 - sed -e "/_APPEND_COMPILE_FLAGS_ERROR(\[-fmudflapth\?\])/d" -i m4/ax_harden_compiler_flags.m4
166 - eautoreconf
167 -}
168 -
169 -src_configure() {
170 - econf \
171 - --disable-dtrace \
172 - $(use_enable static-libs static) \
173 - $(use_enable sasl sasl) \
174 - $(use_enable debug debug) \
175 - $(use_enable debug assert) \
176 - $(use_enable hsieh hsieh_hash) \
177 - --libdir=/usr/$(get_libdir) \
178 - ${myconf}
179 -}
180 -
181 -src_install() {
182 - emake DESTDIR="${D}" install
183 -
184 - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
185 -
186 - dodoc AUTHORS ChangeLog README THANKS TODO
187 - # remove manpage to avoid collision, see bug #299330
188 - rm -f "${D}"/usr/share/man/man1/memdump.*
189 - newman man/memdump.1 memcached_memdump.1
190 -}