You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jackson-core/jackson-core-2.13.0.ebuild

66 lines
2.2 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Skeleton command:
# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/FasterXML/jackson-core/archive/refs/tags/jackson-core-2.13.0.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jackson-core-2.13.0.ebuild
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="com.fasterxml.jackson.core:jackson-core:2.13.0"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Core Jackson processing abstractionis (Streaming API), implementation for JSON"
HOMEPAGE="https://github.com/FasterXML/jackson-core"
SRC_URI="https://github.com/FasterXML/${PN}/archive/refs/tags/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
DEPEND=">=virtual/jdk-1.8:*"
RDEPEND=">=virtual/jre-1.8:*"
DOCS=( LICENSE README.md release-notes/{CREDITS-2.x,VERSION-2.x} )
S="${WORKDIR}/${PN}-${P}"
JAVA_SRC_DIR=( "src/main/java" "src/moditect" )
JAVA_RESOURCE_DIRS="src/main/resources"
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
JAVA_TEST_SRC_DIR="src/test/java"
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
JAVA_TEST_EXCLUDES=(
# Upstream doesn't run these tests and gets
# »Tests run: 928, Failures: 0, Errors: 0, Skipped: 0«
com.fasterxml.jackson.failing.async.AsyncTokenErrorTest
com.fasterxml.jackson.failing.filter.BasicParserFilteringTest
com.fasterxml.jackson.failing.ParserErrorHandling105Test
com.fasterxml.jackson.failing.ParserErrorHandling679Test
com.fasterxml.jackson.failing.ParserFilterEmpty708Test
com.fasterxml.jackson.failing.Surrogate223Test
perf.ConcurrencyReadTest
perf.ManualCharAccessTest
)
src_prepare() {
default
sed -e 's:@package@:com.fasterxml.jackson.core.json:g' \
-e "s:@projectversion@:${PV}:g" \
-e 's:@projectgroupid@:com.fasterxml.jackson.core:g' \
-e 's:@projectartifactid@:jackson-core:g' \
"${JAVA_SRC_DIR}/com/fasterxml/jackson/core/json/PackageVersion.java.in" \
> "${JAVA_SRC_DIR}/com/fasterxml/jackson/core/json/PackageVersion.java" || die
java-pkg-2_src_prepare
}
src_install() {
default # https://bugs.gentoo.org/789582
java-pkg-simple_src_install
}