public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcache/
@ 2018-01-12  4:12 Matt Thode
  0 siblings, 0 replies; 2+ messages in thread
From: Matt Thode @ 2018-01-12  4:12 UTC (permalink / raw
  To: gentoo-commits

commit:     2cc5d6326649c1986b3156f9ced537e4051062e5
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 04:10:11 2018 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 04:11:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc5d632

dev-libs/libmemcache: update to eapi6

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../libmemcache/libmemcache-1.4.0_rc2-r2.ebuild    | 41 ++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild b/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild
new file mode 100644
index 00000000000..30154cf1996
--- /dev/null
+++ b/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils toolchain-funcs
+
+MY_P=${PN}-${PV/_/.}
+
+DESCRIPTION="C API for memcached"
+HOMEPAGE="http://people.freebsd.org/~seanc/libmemcache/"
+SRC_URI="http://people.freebsd.org/~seanc/libmemcache/${MY_P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE=""
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-inline.patch
+	epatch "${FILESDIR}"/${P}-implicit_pointer.patch
+	[[ $(tc-arch) == ppc* ]] && epatch "${FILESDIR}"/${P}-ppc_ftbfs.patch
+
+	rm -rf test/unit || die
+	sed -i -e '/DIR/s,unit,,g' test/Makefile.am || die
+	sed -i \
+		-e 's,test/unit/Makefile,,g' \
+		-e '/^CFLAGS=.*Wall.*pipe/s,-Wall,${CFLAGS} -Wall,g' \
+		-e '/^OPTIMIZE=/d' \
+		-e '/^PROFILE=/d' \
+		configure.ac || die
+
+	eautoreconf
+	default
+}
+
+src_install() {
+	emake DESTDIR="${D}" install || die
+	dodoc ChangeLog
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcache/
@ 2018-05-19  2:33 Matthias Maier
  0 siblings, 0 replies; 2+ messages in thread
From: Matthias Maier @ 2018-05-19  2:33 UTC (permalink / raw
  To: gentoo-commits

commit:     27d87d027a4f638d6f3f78cbf90c4f331ecf27a6
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Sat May 19 02:33:33 2018 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Sat May 19 02:33:33 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27d87d02

dev-libs/libmemcache: remove the EAPI=3 ebuild prematurely

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 .../libmemcache/libmemcache-1.4.0_rc2-r1.ebuild    | 40 ----------------------
 1 file changed, 40 deletions(-)

diff --git a/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r1.ebuild b/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r1.ebuild
deleted file mode 100644
index f8bd1277e50..00000000000
--- a/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=3
-inherit autotools eutils toolchain-funcs
-
-MY_P=${PN}-${PV/_/.}
-
-DESCRIPTION="C API for memcached"
-HOMEPAGE="http://people.freebsd.org/~seanc/libmemcache/"
-SRC_URI="http://people.freebsd.org/~seanc/libmemcache/${MY_P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-inline.patch
-	epatch "${FILESDIR}"/${P}-implicit_pointer.patch
-	[[ $(tc-arch) == ppc* ]] && epatch "${FILESDIR}"/${P}-ppc_ftbfs.patch
-
-	rm -rf test/unit || die
-	sed -i -e '/DIR/s,unit,,g' test/Makefile.am || die
-	sed -i \
-		-e 's,test/unit/Makefile,,g' \
-		-e '/^CFLAGS=.*Wall.*pipe/s,-Wall,${CFLAGS} -Wall,g' \
-		-e '/^OPTIMIZE=/d' \
-		-e '/^PROFILE=/d' \
-		configure.ac || die
-
-	eautoreconf
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die
-	dodoc ChangeLog
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-19  2:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-12  4:12 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmemcache/ Matt Thode
  -- strict thread matches above, loose matches on Subject: below --
2018-05-19  2:33 Matthias Maier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox