mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
dev-java/jackson-core: new package
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
committed by
Florian Schmaus
parent
9bf289c4c6
commit
78aee2a17b
1
dev-java/jackson-core/Manifest
Normal file
1
dev-java/jackson-core/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST jackson-core-2.13.0.tar.gz 11437457 BLAKE2B d4629f7a5c497bb837369050564ed91b9520290c2355a3fe20939c6211112c552b8e2db5dfc8bd9965ec17df8194191368189dcb425e3f9a5ad60a08c3a2b900 SHA512 b3d50849f0912252cbdde77de05a1c9836d044f48c50c4a4992e7b207d1f83ea9580df2bf843d9cb1c50008a808525ca82dd22d8dfa192fa394f8a923ee274a3
|
||||
65
dev-java/jackson-core/jackson-core-2.13.0.ebuild
Normal file
65
dev-java/jackson-core/jackson-core-2.13.0.ebuild
Normal file
@@ -0,0 +1,65 @@
|
||||
# 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
|
||||
}
|
||||
10
dev-java/jackson-core/metadata.xml
Normal file
10
dev-java/jackson-core/metadata.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>java@gentoo.org</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/FasterXML/jackson-core/issues</bugs-to>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user