dev-java/rome: Drop 0.9-r3

Closes: https://bugs.gentoo.org/831010
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24722
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2022-03-23 07:29:35 +01:00
committed by Florian Schmaus
parent 0f5e348695
commit 89a0a64a27
2 changed files with 0 additions and 67 deletions

View File

@@ -1,17 +0,0 @@
===================================================================
RCS file: /opt/sourcecast/data/ccvs/repository/rome/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- rome/build.xml 2006/12/04 21:47:37 1.14
+++ rome/build.xml 2006/12/26 14:35:46 1.15
@@ -131,6 +131,9 @@
<fileset dir="src/data">
<include name="**/*.xml" />
</fileset>
+ <fileset dir="src/test">
+ <include name="**/*.properties" />
+ </fileset>
</copy>
</target>

View File

@@ -1,50 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Java framework for RSS and Atom feeds"
HOMEPAGE="https://rometools.github.io/rome/"
SRC_URI="mirror://gentoo/${P}.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
CDEPEND="dev-java/jdom:0"
DEPEND="
${CDEPEND}
app-arch/unzip
>=virtual/jdk-1.6
test? ( dev-java/ant-junit:0 )"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.6"
EANT_GENTOO_CLASSPATH="jdom"
JAVA_ANT_REWRITE_CLASSPATH="true"
JAVA_ANT_ENCODING="ISO-8859-1"
java_prepare() {
# Patch build.xml so the tests pass
epatch "${FILESDIR}/${P}-build.xml-test-upstream.patch"
# Keep Ant happy.
mkdir -p target/lib || die
}
src_test() {
java-pkg-2_src_test
}
src_install() {
java-pkg_newjar target/${P}.jar
use doc && java-pkg_dojavadoc dist/docs/api
use source && java-pkg_dosrc src/java/*
}