summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-02-03 12:17:34 +0000
committerPacho Ramos <pacho@gentoo.org>2013-02-03 12:17:34 +0000
commitbe632ee779294e486daf3fd2efbd349205b92a99 (patch)
tree8716eadfd9ef7a53a7ad01efe2900be2175582f8 /dev-libs/msgpack
parentCleanup due #22900 (diff)
downloadgentoo-2-be632ee779294e486daf3fd2efbd349205b92a99.tar.gz
gentoo-2-be632ee779294e486daf3fd2efbd349205b92a99.tar.bz2
gentoo-2-be632ee779294e486daf3fd2efbd349205b92a99.zip
Cleanup due #22900
(Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-libs/msgpack')
-rw-r--r--dev-libs/msgpack/ChangeLog9
-rw-r--r--dev-libs/msgpack/files/msgpack-0.4.2-test.patch11
-rw-r--r--dev-libs/msgpack/metadata.xml2
-rw-r--r--dev-libs/msgpack/msgpack-0.4.2.ebuild29
4 files changed, 7 insertions, 44 deletions
diff --git a/dev-libs/msgpack/ChangeLog b/dev-libs/msgpack/ChangeLog
index 5b78c24fca5f..7305abfeb618 100644
--- a/dev-libs/msgpack/ChangeLog
+++ b/dev-libs/msgpack/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/msgpack
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/msgpack/ChangeLog,v 1.4 2011/11/11 20:12:02 vapier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/msgpack/ChangeLog,v 1.5 2013/02/03 12:17:33 pacho Exp $
+
+ 03 Feb 2013; Pacho Ramos <pacho@gentoo.org> -files/msgpack-0.4.2-test.patch,
+ -msgpack-0.4.2.ebuild, metadata.xml:
+ Cleanup due #22900
11 Nov 2011; Mike Frysinger <vapier@gentoo.org> msgpack-0.4.2.ebuild,
msgpack-0.5.6.ebuild:
@@ -19,4 +23,3 @@
02 Mar 2010; MATSUU Takuto <matsuu@gentoo.org> +msgpack-0.4.2.ebuild,
+files/msgpack-0.4.2-test.patch, +metadata.xml:
Initial import.
-
diff --git a/dev-libs/msgpack/files/msgpack-0.4.2-test.patch b/dev-libs/msgpack/files/msgpack-0.4.2-test.patch
deleted file mode 100644
index dde96b83790e..000000000000
--- a/dev-libs/msgpack/files/msgpack-0.4.2-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur msgpack-0.4.2.orig//cpp/Makefile.am msgpack-0.4.2//cpp/Makefile.am
---- msgpack-0.4.2.orig//cpp/Makefile.am 2010-02-18 14:31:42.000000000 +0900
-+++ msgpack-0.4.2//cpp/Makefile.am 2010-03-02 01:43:12.000000000 +0900
-@@ -39,6 +39,6 @@
-
- msgpack_test_SOURCES = test.cpp
- msgpack_test_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/c -I$(top_srcdir)/cpp
--msgpack_test_LDADD = libmsgpack.la -lgtest_main
-+msgpack_test_LDADD = -L../c -lmsgpackc libmsgpack.la -lgtest_main
-
- TESTS = $(check_PROGRAMS)
diff --git a/dev-libs/msgpack/metadata.xml b/dev-libs/msgpack/metadata.xml
index 0a0d344a640e..2e90b802bc7c 100644
--- a/dev-libs/msgpack/metadata.xml
+++ b/dev-libs/msgpack/metadata.xml
@@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
-<email>matsuu@gentoo.org</email>
+<email>maintainer-needed@gentoo.org</email>
</maintainer>
</pkgmetadata>
diff --git a/dev-libs/msgpack/msgpack-0.4.2.ebuild b/dev-libs/msgpack/msgpack-0.4.2.ebuild
deleted file mode 100644
index 649253e5eeac..000000000000
--- a/dev-libs/msgpack/msgpack-0.4.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/msgpack/msgpack-0.4.2.ebuild,v 1.3 2011/11/11 20:12:02 vapier Exp $
-
-EAPI="2"
-inherit autotools eutils
-
-DESCRIPTION="MessagePack is a binary-based efficient data interchange format"
-HOMEPAGE="http://msgpack.sourceforge.jp/"
-SRC_URI="mirror://sourceforge.jp/${PN}/46155/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="test"
-
-DEPEND="test? ( dev-cpp/gtest )"
-RDEPEND=""
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-test.patch"
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc AUTHORS ChangeLog NEWS README || die
-}