summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-06-17 13:22:24 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-06-17 13:22:24 +0000
commitc6ba2d3d6e75c0f353e4b162885ecd7a06f78bf8 (patch)
treed6f4c8681482ec3274e16131045c806c716e059c /dev-java
parentNM: Cleanup superseded ebuilds. (diff)
downloadgentoo-2-c6ba2d3d6e75c0f353e4b162885ecd7a06f78bf8.tar.gz
gentoo-2-c6ba2d3d6e75c0f353e4b162885ecd7a06f78bf8.tar.bz2
gentoo-2-c6ba2d3d6e75c0f353e4b162885ecd7a06f78bf8.zip
NM: Cleanup superseded ebuilds.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-java')
-rw-r--r--dev-java/commons-codec/ChangeLog7
-rw-r--r--dev-java/commons-codec/commons-codec-1.4.ebuild44
2 files changed, 5 insertions, 46 deletions
diff --git a/dev-java/commons-codec/ChangeLog b/dev-java/commons-codec/ChangeLog
index 9900af2b26c6..ff46d6289861 100644
--- a/dev-java/commons-codec/ChangeLog
+++ b/dev-java/commons-codec/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/commons-codec
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-codec/ChangeLog,v 1.49 2013/05/24 19:56:15 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-codec/ChangeLog,v 1.50 2014/06/17 13:22:24 mrueg Exp $
+
+ 17 Jun 2014; Manuel Rüger <mrueg@gentoo.org> -commons-codec-1.4.ebuild:
+ NM: Cleanup superseded ebuilds.
24 May 2013; Agostino Sarubbo <ago@gentoo.org> commons-codec-1.7.ebuild:
Stable for ppc64, wrt bug #470384
diff --git a/dev-java/commons-codec/commons-codec-1.4.ebuild b/dev-java/commons-codec/commons-codec-1.4.ebuild
deleted file mode 100644
index 973bcbb7ca88..000000000000
--- a/dev-java/commons-codec/commons-codec-1.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-codec/commons-codec-1.4.ebuild,v 1.5 2010/10/14 16:54:01 ranger Exp $
-
-EAPI=2
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Implementations of common encoders and decoders in Java."
-HOMEPAGE="http://commons.apache.org/codec"
-SRC_URI="mirror://apache/commons/codec/source/${P}-src.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.4"
-
-DEPEND=">=virtual/jdk-1.4
- test? ( dev-java/ant-junit:0 )
- ${RDEPEND}"
-
-S="${WORKDIR}/${P}-src"
-
-java_prepare() {
- echo "conf.home=./src/conf" >> build.properties
- echo "source.home=./src/java" >> build.properties
- echo "build.home=./output" >> build.properties
- echo "dist.home=./output/dist" >> build.properties
- echo "test.home=./src/test" >> build.properties
- echo "final.name=commons-codec" >> build.properties
-}
-
-JAVA_ANT_ENCODING="ISO-8859-1"
-
-src_install() {
- java-pkg_dojar output/dist/${PN}.jar
-
- dodoc RELEASE-NOTES.txt || die
- use doc && java-pkg_dojavadoc output/dist/docs/api
- use source && java-pkg_dosrc src/java/*
-}