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 9894E15808B for ; Thu, 24 Feb 2022 09:42:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD0BFE0825; Thu, 24 Feb 2022 09:42:33 +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 BE9C8E0825 for ; Thu, 24 Feb 2022 09:42:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B12E0342EC0 for ; Thu, 24 Feb 2022 09:42:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 169D31BD for ; Thu, 24 Feb 2022 09:42:31 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1645695748.6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/netty-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/netty-common/netty-common-4.0.36-r2.ebuild X-VCS-Directories: dev-java/netty-common/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec X-VCS-Branch: master Date: Thu, 24 Feb 2022 09:42:31 +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: 54a9e2b5-0f74-4f52-a846-8cb9e6d5b02a X-Archives-Hash: a0b2b0ed01c90ff40aa412e6adb6ae4b commit: 6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Mon Dec 27 11:48:31 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Feb 24 09:42:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e535af6 dev-java/netty-common: Switch to log4j-{core,12-api}:2 Closes: https://bugs.gentoo.org/830915 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/24106/commits/b86a255e14280b7bee97f7c983be97c1896fad12 Signed-off-by: Miroslav Šulc gentoo.org> .../netty-common/netty-common-4.0.36-r2.ebuild | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/dev-java/netty-common/netty-common-4.0.36-r2.ebuild b/dev-java/netty-common/netty-common-4.0.36-r2.ebuild new file mode 100644 index 000000000000..a41a8aff2481 --- /dev/null +++ b/dev-java/netty-common/netty-common-4.0.36-r2.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +MY_PN="netty" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="Async event-driven framework for high performance network applications" +HOMEPAGE="https://netty.io/" +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="test" + +# Same test failures as before the revbumps still occur. See https://bugs.gentoo.org/827221 +RESTRICT="test" + +CP_DEPEND="dev-java/commons-logging:0 + dev-java/javassist:3 + dev-java/log4j-12-api:2 + dev-java/log4j-core:2 + dev-java/slf4j-api:0" + +RDEPEND="${CP_DEPEND} + virtual/jre:1.8" + +# It does not build with java 11, https://bugs.gentoo.org/788364 +# src/main/java/io/netty/util/internal/Cleaner0.java:44: error: cannot find symbol +# Cleaner cleaner = (Cleaner) cleanerField.get(direct); +# ^ +# symbol: class Cleaner +# location: class Cleaner0 +DEPEND="${CP_DEPEND} + virtual/jdk:1.8 + test? ( + dev-java/asm:4 + dev-java/cglib:3 + dev-java/easymock:3.2 + dev-java/hamcrest-core:1.3 + dev-java/hamcrest-library:1.3 + dev-java/junit:4 + dev-java/mockito:0 + dev-java/objenesis:0 + dev-java/slf4j-simple:0 + )" + +S="${WORKDIR}/${MY_PN}-${MY_P}.Final/${PN/${MY_PN}-}" +JAVA_SRC_DIR="src/main/java" + +src_prepare() { + default + # Needs Mockito 1.10. + rm -v src/test/java/io/netty/util/concurrent/PromiseCombinerTest.java || die +} + +src_test() { + cd src/test/java || die + + local CP=".:${S}/${PN}.jar:$(java-pkg_getjars --with-dependencies ${JAVA_GENTOO_CLASSPATH},asm-4,cglib-3,easymock-3.2,hamcrest-core-1.3,hamcrest-library-1.3,junit-4,mockito,objenesis,slf4j-simple)" + local TESTS=$(find * -name "*Test.java") + TESTS="${TESTS//.java}" + TESTS="${TESTS//\//.}" + + ejavac -cp "${CP}" -d . $(find * -name "*.java") + ejunit4 -classpath "${CP}" ${TESTS} +}