From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BE44C158091 for ; Fri, 10 Jun 2022 05:51:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01454E0839; Fri, 10 Jun 2022 05:51:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8312E0839 for ; Fri, 10 Jun 2022 05:51:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3BF634164C for ; Fri, 10 Jun 2022 05:51:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ABA4500 for ; Fri, 10 Jun 2022 05:51:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1654840287.5b130d130d4ceaf78966bba028d837d4dcedebc8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jackson-dataformat-yaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2.ebuild X-VCS-Directories: dev-java/jackson-dataformat-yaml/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5b130d130d4ceaf78966bba028d837d4dcedebc8 X-VCS-Branch: master Date: Fri, 10 Jun 2022 05:51:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9aae6fbb-ebf3-4022-af70-9b12e30a8e8f X-Archives-Hash: e976c5c80db3b89aaa9ec5c005c0158e commit: 5b130d130d4ceaf78966bba028d837d4dcedebc8 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Jun 9 07:28:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 10 05:51:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b130d13 dev-java/jackson-dataformat-yaml: drop 2.13.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Sam James gentoo.org> .../jackson-dataformat-yaml-2.13.2.ebuild | 79 ---------------------- 1 file changed, 79 deletions(-) diff --git a/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2.ebuild b/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2.ebuild deleted file mode 100644 index a324875e0e97..000000000000 --- a/dev-java/jackson-dataformat-yaml/jackson-dataformat-yaml-2.13.2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# 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}:0 - dev-java/snakeyaml:0 -" - -DEPEND=" - >=virtual/jdk-1.8:* - ${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 -}