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: Wed, 8 Dec 2021 08:44:52 +0000 (UTC) [thread overview]
Message-ID: <1638953089.37de4eddef91d2020f791666906d5727a43e20da.fordfrog@gentoo> (raw)
commit: 37de4eddef91d2020f791666906d5727a43e20da
Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon Dec 6 09:26:38 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Dec 8 08:44:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37de4edd
dev-java/netty-common: EAPI 8, restrict to java 1.8
Bug: https://bugs.gentoo.org/788364
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/23195
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
.../netty-common/netty-common-4.0.36-r1.ebuild | 69 ++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/dev-java/netty-common/netty-common-4.0.36-r1.ebuild b/dev-java/netty-common/netty-common-4.0.36-r1.ebuild
new file mode 100644
index 000000000000..74b75f768b49
--- /dev/null
+++ b/dev-java/netty-common/netty-common-4.0.36-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 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 ~arm64 ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+CDEPEND="dev-java/commons-logging:0
+ dev-java/javassist:3
+ dev-java/log4j:0
+ dev-java/slf4j-api:0"
+
+RDEPEND="virtual/jre:1.8
+ ${CDEPEND}"
+
+# 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="virtual/jdk:1.8
+ ${CDEPEND}
+ 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"
+JAVA_GENTOO_CLASSPATH="commons-logging,javassist-3,log4j,slf4j-api"
+
+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}
+}
next reply other threads:[~2021-12-08 8:45 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-08 8:44 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-02-24 9:42 Miroslav Šulc
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-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=1638953089.37de4eddef91d2020f791666906d5727a43e20da.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