public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jackson-dataformat-yaml/
Date: Wed,  4 May 2022 20:03:18 +0000 (UTC)	[thread overview]
Message-ID: <1651694581.7d402c3ac807ea3664cb59df61f520e3fc12c9f3.flow@gentoo> (raw)

commit:     7d402c3ac807ea3664cb59df61f520e3fc12c9f3
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Wed May  4 08:21:29 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed May  4 20:03:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d402c3a

dev-java/jackson-dataformat-yaml: dependency update

Bug: https://bugs.gentoo.org/832694
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 .../jackson-dataformat-yaml-2.13.2-r1.ebuild       | 79 ++++++++++++++++++++++
 1 file changed, 79 insertions(+)

diff --git a/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2-r1.ebuild b/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2-r1.ebuild
new file mode 100644
index 000000000000..139c808cdee6
--- /dev/null
+++ b/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2-r1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2022 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-dataformats-text/archive/jackson-dataformats-text-2.13.2.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jackson-dataformat-yaml-2.13.2.ebuild
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.2"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Support for reading and writing YAML-encoded data via Jackson abstractions"
+HOMEPAGE="https://github.com/FasterXML/jackson-dataformats-text"
+SRC_URI="https://github.com/FasterXML/jackson-dataformats-text/archive/jackson-dataformats-text-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+# Common dependencies
+# POM: pom.xml
+# com.fasterxml.jackson.core:jackson-core:2.13.2 -> >=dev-java/jackson-core-2.13.2:0
+# com.fasterxml.jackson.core:jackson-databind:2.13.2 -> >=dev-java/jackson-databind-2.13.2:0
+# org.yaml:snakeyaml:1.30 -> >=dev-java/snakeyaml-1.30:0
+
+CP_DEPEND="
+	~dev-java/jackson-core-${PV}:0
+	~dev-java/jackson-databind-${PV}.2:0
+	dev-java/snakeyaml:0
+"
+
+DEPEND="
+	>=virtual/jdk-11:*
+	${CP_DEPEND}
+"
+
+RDEPEND="
+	>=virtual/jre-1.8:*
+	${CP_DEPEND}"
+
+DOCS=( README.md release-notes/{CREDITS,VERSION} )
+
+S="${WORKDIR}/jackson-dataformats-text-jackson-dataformats-text-${PV}/yaml"
+
+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's usual exclude pattern: "**/failing**/*.java"
+	com.fasterxml.jackson.dataformat.yaml.failing.ObjectIdWithTree2Test
+	com.fasterxml.jackson.dataformat.yaml.failing.PolymorphicWithObjectId25Test
+	com.fasterxml.jackson.dataformat.yaml.failing.SimpleGeneration215Test
+)
+
+src_prepare() {
+	default
+	java-pkg-2_src_prepare
+
+	sed -e 's:@package@:com.fasterxml.jackson.dataformat.yaml:g' \
+		-e "s:@projectversion@:${PV}:g" \
+		-e 's:@projectgroupid@:com.fasterxml.jackson.dataformat:g' \
+		-e "s:@projectartifactid@:${PN}:g" \
+		"${JAVA_SRC_DIR}/com/fasterxml/jackson/dataformat/yaml/PackageVersion.java.in" \
+		> "${JAVA_SRC_DIR}/com/fasterxml/jackson/dataformat/yaml/PackageVersion.java" || die
+
+	# dev-java/snakeyaml-1.30 does not provide module-info
+	sed -e '/snakeyaml;/d' -i src/moditect/module-info.java || die
+}
+
+src_install() {
+	default # https://bugs.gentoo.org/789582
+	java-pkg-simple_src_install
+}


             reply	other threads:[~2022-05-04 20:03 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-04 20:03 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-10-20 16:32 [gentoo-commits] repo/gentoo:master commit in: dev-java/jackson-dataformat-yaml/ Miroslav Šulc
2022-10-20 10:56 Jakov Smolić
2022-10-18  5:35 Sam James
2022-10-15  6:38 Jakov Smolić
2022-10-14 18:42 Miroslav Šulc
2022-09-21 14:02 Florian Schmaus
2022-08-28  5:17 Miroslav Šulc
2022-08-27  8:27 Sam James
2022-08-27  8:27 Sam James
2022-08-27  8:22 Arthur Zamarin
2022-08-27  8:22 Arthur Zamarin
2022-07-28  9:10 Sam James
2022-07-01 10:03 Sam James
2022-07-01  7:15 Arthur Zamarin
2022-07-01  7:08 Arthur Zamarin
2022-06-24  8:24 Agostino Sarubbo
2022-06-24  8:23 Agostino Sarubbo
2022-06-10  5:51 Sam James
2022-06-09  7:09 Sam James
2022-06-04 19:58 Agostino Sarubbo
2022-06-04 10:52 Jakov Smolić
2022-06-03 21:32 Jakov Smolić
2022-05-27 15:15 Arthur Zamarin
2022-05-27 15:15 Arthur Zamarin
2022-05-24 15:23 Florian Schmaus
2022-04-26  6:48 Florian Schmaus
2022-04-25 20:09 Arthur Zamarin
2022-04-25 11:39 Agostino Sarubbo
2022-04-25 11:37 Agostino Sarubbo
2022-04-24 13:27 Jakov Smolić
2022-03-25  8:32 Florian Schmaus
2022-03-07 14:33 Jakov Smolić
2022-03-07 14:33 Jakov Smolić
2022-03-07  7:27 Agostino Sarubbo
2022-03-06 23:46 Sam James
2022-02-04 16:46 Florian Schmaus
2022-02-04  8:19 Florian Schmaus
2016-11-26 22:22 James Le Cuirot
2016-11-26 22:22 James Le Cuirot
2016-01-13 22:01 James Le Cuirot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1651694581.7d402c3ac807ea3664cb59df61f520e3fc12c9f3.flow@gentoo \
    --to=flow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox