From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A6DA158086 for ; Thu, 14 Oct 2021 07:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1CA5E0843; Thu, 14 Oct 2021 07:05:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26306E0843 for ; Thu, 14 Oct 2021 07:05:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35FA1342B26 for ; Thu, 14 Oct 2021 07:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6916D0 for ; Thu, 14 Oct 2021 07:05:06 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1634195098.7697dadac005ba5f1131632655dd27e5b0fb8e07.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcached/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild X-VCS-Directories: dev-libs/libmemcached/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7697dadac005ba5f1131632655dd27e5b0fb8e07 X-VCS-Branch: master Date: Thu, 14 Oct 2021 07:05:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 468cbd77-9039-413d-98e4-b78f441358ac X-Archives-Hash: 40013ba4ce0c1c418cced87083a25659 commit: 7697dadac005ba5f1131632655dd27e5b0fb8e07 Author: David Seifert gentoo org> AuthorDate: Thu Oct 14 07:04:58 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Oct 14 07:04:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7697dada dev-libs/libmemcached: drop 1.0.18-r3 Signed-off-by: David Seifert gentoo.org> .../libmemcached/libmemcached-1.0.18-r3.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild deleted file mode 100644 index cca07f3e525..00000000000 --- a/dev-libs/libmemcached/libmemcached-1.0.18-r3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -WANT_AUTOMAKE=1.13 - -inherit autotools epatch multilib -RESTRICT="test" # https://bugs.gentoo.org/show_bug.cgi?id=498250 https://bugs.launchpad.net/gentoo/+bug/1278023 - -DESCRIPTION="a C client library to the memcached server" -HOMEPAGE="https://libmemcached.org/libMemcached.html" -SRC_URI="https://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="debug hsieh +libevent sasl static-libs" - -DEPEND="net-misc/memcached - sasl? ( dev-libs/cyrus-sasl ) - libevent? ( dev-libs/libevent )" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}/debug-disable-enable-1.0.18.patch" - epatch "${FILESDIR}/continuum-1.0.18.patch" - epatch "${FILESDIR}"/${P}-gcc7.patch - sed -i '6i CFLAGS = @CFLAGS@' Makefile.am - sed -e "/_APPEND_COMPILE_FLAGS_ERROR(\[-fmudflapth\?\])/d" -i m4/ax_harden_compiler_flags.m4 - eautoreconf -} - -src_configure() { - econf \ - --disable-dtrace \ - $(use_enable static-libs static) \ - $(use_enable sasl sasl) \ - $(use_enable debug debug) \ - $(use_enable debug assert) \ - $(use_enable hsieh hsieh_hash) \ - --libdir=/usr/$(get_libdir) \ - ${myconf} -} - -src_install() { - emake DESTDIR="${D}" install - - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la - - dodoc AUTHORS ChangeLog README THANKS TODO - # remove manpage to avoid collision, see bug #299330 - rm -f "${D}"/usr/share/man/man1/memdump.* - newman man/memdump.1 memcached_memdump.1 -}