mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 07:29:19 +02:00
After a message to gentoo-dev ML, and no reply from any user on x86, we decided to dekeyword most Java packages from x86, and reverse dependencies of them. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
72 lines
2.2 KiB
Bash
72 lines
2.2 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source test"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
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"
|
|
|
|
CP_DEPEND="dev-java/jdom:0"
|
|
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jdk-1.8:*"
|
|
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
JAVA_ENCODING="ISO-8859-1"
|
|
JAVA_SRC_DIR="src/java"
|
|
JAVA_RESOURCE_DIRS="res/java"
|
|
|
|
JAVA_TEST_SRC_DIRS="src/test"
|
|
JAVA_TEST_RESOURCE_DIRS="src/data"
|
|
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
|
|
|
|
JAVA_TEST_EXCLUDES=(
|
|
# 1) testParse(com.sun.syndication.unittest.TestDateParser)
|
|
# junit.framework.AssertionFailedError
|
|
com.sun.syndication.unittest.TestDateParser
|
|
# 2) warning(junit.framework.TestSuite$1)
|
|
# junit.framework.AssertionFailedError: Class com.sun.syndication.unittest.FeedOpsTest has no public constructor TestCase(String name) or TestCase()
|
|
# at junit.framework.Assert.fail(Assert.java:57)
|
|
com.sun.syndication.unittest.FeedOpsTest
|
|
# 3) warning(junit.framework.TestSuite$1)
|
|
# junit.framework.AssertionFailedError: Class com.sun.syndication.unittest.FeedTest has no public constructor TestCase(String name) or TestCase()
|
|
# at junit.framework.Assert.fail(Assert.java:57)
|
|
com.sun.syndication.unittest.FeedTest
|
|
# 4) warning(junit.framework.TestSuite$1)
|
|
# junit.framework.AssertionFailedError: Class com.sun.syndication.unittest.SyndFeedTest has no public constructor TestCase(String name) or TestCase()
|
|
# at junit.framework.Assert.fail(Assert.java:57)
|
|
com.sun.syndication.unittest.SyndFeedTest
|
|
)
|
|
|
|
S="${WORKDIR}/${P}"
|
|
|
|
src_prepare() {
|
|
default
|
|
mkdir -p res/java/com/sun/syndication || die
|
|
cp {src,res}/java/com/sun/syndication/rome.properties || die
|
|
|
|
sed -e 's:\(public \)\(Module\):\1com.sun.syndication.feed.module.\2:' \
|
|
-e 's:\(,\)\(Module\):\1com.sun.syndication.feed.module.\2:' \
|
|
-i src/java/com/sun/syndication/feed/synd/Synd{Feed,Entry}Impl.java || die
|
|
}
|
|
|
|
src_install() {
|
|
default # https://bugs.gentoo.org/789582
|
|
java-pkg-simple_src_install
|
|
}
|