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 BE6A5158091 for ; Fri, 10 Jun 2022 05:51:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0E37E0828; Fri, 10 Jun 2022 05:51:37 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91B98E07A9 for ; Fri, 10 Jun 2022 05:51:37 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63C443416DB for ; Fri, 10 Jun 2022 05:51:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1326456 for ; Fri, 10 Jun 2022 05:51:34 +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: <1654840286.0ed015b0be36cb1f52df36c029e954bc2e463c3c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jackson-annotations/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jackson-annotations/jackson-annotations-2.13.2.ebuild X-VCS-Directories: dev-java/jackson-annotations/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0ed015b0be36cb1f52df36c029e954bc2e463c3c X-VCS-Branch: master Date: Fri, 10 Jun 2022 05:51:34 +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: b65786ff-7c38-4da8-90f9-1deb9e71efb5 X-Archives-Hash: f9eafa31c066599042635abf77c3b373 commit: 0ed015b0be36cb1f52df36c029e954bc2e463c3c Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Jun 9 07:23:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 10 05:51:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed015b0 dev-java/jackson-annotations: drop 2.13.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Sam James gentoo.org> .../jackson-annotations-2.13.2.ebuild | 43 ---------------------- 1 file changed, 43 deletions(-) diff --git a/dev-java/jackson-annotations/jackson-annotations-2.13.2.ebuild b/dev-java/jackson-annotations/jackson-annotations-2.13.2.ebuild deleted file mode 100644 index c2835290b469..000000000000 --- a/dev-java/jackson-annotations/jackson-annotations-2.13.2.ebuild +++ /dev/null @@ -1,43 +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-annotations/archive/jackson-annotations-2.13.2.tar.gz --slot 2 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jackson-annotations-2.13.2.ebuild - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" -MAVEN_ID="com.fasterxml.jackson.core:jackson-annotations:2.13.2" -JAVA_TESTING_FRAMEWORKS="junit-4" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Core annotations used for value types, used by Jackson data binding package." -HOMEPAGE="https://github.com/FasterXML/jackson-annotations" -SRC_URI="https://github.com/FasterXML/${PN}/archive/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="2" -KEYWORDS="amd64 ~arm arm64 ppc64 x86" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -DOCS=( README.md release-notes/VERSION-2.x ) - -S="${WORKDIR}/${PN}-${P}" - -JAVA_SRC_DIR=( "src/main/java" "src/moditect" ) - -JAVA_TEST_GENTOO_CLASSPATH="junit-4" -JAVA_TEST_SRC_DIR="src/test/java" -JAVA_TEST_EXCLUDES=( - # 1) warning(junit.framework.TestSuite$1) - # junit.framework.AssertionFailedError: No tests found in com.fasterxml.jackson.annotation.TestBase - com.fasterxml.jackson.annotation.TestBase -) - -src_install() { - default # https://bugs.gentoo.org/789582 - java-pkg-simple_src_install -}