Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcached/
Date: Thu, 14 Oct 2021 07:05:11
Message-Id: 1634195098.7697dadac005ba5f1131632655dd27e5b0fb8e07.soap@gentoo
1 commit: 7697dadac005ba5f1131632655dd27e5b0fb8e07
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 14 07:04:58 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 14 07:04:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7697dada
7
8 dev-libs/libmemcached: drop 1.0.18-r3
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 .../libmemcached/libmemcached-1.0.18-r3.ebuild | 55 ----------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild
16 deleted file mode 100644
17 index cca07f3e525..00000000000
18 --- a/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild
19 +++ /dev/null
20 @@ -1,55 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -WANT_AUTOMAKE=1.13
27 -
28 -inherit autotools epatch 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="https://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 arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-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 - epatch "${FILESDIR}/continuum-1.0.18.patch"
48 - epatch "${FILESDIR}"/${P}-gcc7.patch
49 - sed -i '6i CFLAGS = @CFLAGS@' Makefile.am
50 - sed -e "/_APPEND_COMPILE_FLAGS_ERROR(\[-fmudflapth\?\])/d" -i m4/ax_harden_compiler_flags.m4
51 - eautoreconf
52 -}
53 -
54 -src_configure() {
55 - econf \
56 - --disable-dtrace \
57 - $(use_enable static-libs static) \
58 - $(use_enable sasl sasl) \
59 - $(use_enable debug debug) \
60 - $(use_enable debug assert) \
61 - $(use_enable hsieh hsieh_hash) \
62 - --libdir=/usr/$(get_libdir) \
63 - ${myconf}
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" install
68 -
69 - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
70 -
71 - dodoc AUTHORS ChangeLog README THANKS TODO
72 - # remove manpage to avoid collision, see bug #299330
73 - rm -f "${D}"/usr/share/man/man1/memdump.*
74 - newman man/memdump.1 memcached_memdump.1
75 -}