summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-13 20:34:37 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-13 21:31:51 +0200
commitcc47c7c1d3c4eb8a3d402f4aea6be729c9adea3f (patch)
treec8f6c276d8b3531a8c2ec3dc25ef700f95a9cd50 /dev-java/backport-util-concurrent
parentxfce-extra/xfce4-modemlights-plugin: remove obsolete xfconf.eclass, migrate t... (diff)
downloadgentoo-cc47c7c1d3c4eb8a3d402f4aea6be729c9adea3f.tar.gz
gentoo-cc47c7c1d3c4eb8a3d402f4aea6be729c9adea3f.tar.bz2
gentoo-cc47c7c1d3c4eb8a3d402f4aea6be729c9adea3f.zip
dev-java/backport-util-concurrent: Drop old
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'dev-java/backport-util-concurrent')
-rw-r--r--dev-java/backport-util-concurrent/backport-util-concurrent-3.1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-java/backport-util-concurrent/backport-util-concurrent-3.1.ebuild b/dev-java/backport-util-concurrent/backport-util-concurrent-3.1.ebuild
deleted file mode 100644
index 2a1de217e8c5..000000000000
--- a/dev-java/backport-util-concurrent/backport-util-concurrent-3.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-JAVA_PKG_IUSE="doc source test"
-inherit java-pkg-2 java-ant-2
-
-SF_PN="backport-jsr166"
-MY_P="${PN}-Java60-${PV}"
-
-DESCRIPTION="A portability wrapper for java.util.concurrent API (jsr166) 6.0"
-HOMEPAGE="http://${SF_PN}.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${SF_PN}/${PV}/${MY_P}-src.tar.bz2"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-macos"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.6
- test? ( =dev-java/junit-3* )
- app-arch/unzip"
-RDEPEND=">=virtual/jre-1.6"
-
-S="${WORKDIR}/${MY_P}-src"
-
-java_prepare() {
- if use test; then
- # make test not depend on make
- epatch "${FILESDIR}/${PN}-3.0-test.patch"
- else
- # don't compile test classes
- epatch "${FILESDIR}/${PN}-3.0-notest.patch"
- fi
-
- cd "${S}/external"
- rm -v *.jar || die
-
- use test && java-pkg_jar-from --build-only junit
-}
-
-EANT_BUILD_TARGET="javacompile archive"
-
-src_test() {
- eant test
-}
-
-src_install() {
- java-pkg_dojar ${PN}.jar
- dohtml README.html || die
-
- use doc && java-pkg_dojavadoc doc/api
- use source && java-pkg_dosrc src/*
-}