public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/netty-common/
Date: Thu, 24 Feb 2022 09:42:31 +0000 (UTC)	[thread overview]
Message-ID: <1645695748.6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec.fordfrog@gentoo> (raw)

commit:     6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon Dec 27 11:48:31 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> 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 <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24106/commits/b86a255e14280b7bee97f7c983be97c1896fad12
Signed-off-by: Miroslav Šulc <fordfrog <AT> 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}
+}


             reply	other threads:[~2022-02-24  9:42 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-24  9:42 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-03-31 18:58 [gentoo-commits] repo/gentoo:master commit in: dev-java/netty-common/ Arthur Zamarin
2022-03-31 16:45 Arthur Zamarin
2022-03-28  6:53 Agostino Sarubbo
2022-03-27  6:24 Agostino Sarubbo
2022-03-26 19:48 Agostino Sarubbo
2022-02-26 11:53 Arthur Zamarin
2022-02-25 18:53 Arthur Zamarin
2022-01-18 12:53 Arthur Zamarin
2022-01-13  6:34 Sam James
2022-01-10 19:10 Arthur Zamarin
2022-01-10 11:23 Jakov Smolić
2022-01-10  8:38 Agostino Sarubbo
2022-01-01  8:32 Miroslav Šulc
2021-12-08  8:44 Miroslav Šulc
2021-12-01 18:56 Sam James
2021-11-25  4:15 Sam James
2021-11-25  4:14 Sam James
2021-11-25  4:11 Sam James
2021-11-19  7:24 Arthur Zamarin
2020-05-17 16:55 Aaron Bauman
2017-07-17 11:30 Alexis Ballier
2017-04-08 21:57 Patrice Clement
2016-04-07 21:45 James Le Cuirot
2016-04-07 21:45 James Le Cuirot
2015-10-13 12:00 Patrice Clement
2015-10-01  8:39 Patrice Clement
2015-09-05 18:17 Zac Medico

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=1645695748.6e535af6b7ef58dc5121b2124aaeae1f59f4b6ec.fordfrog@gentoo \
    --to=fordfrog@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