public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/netty/
Date: Fri, 15 Apr 2022 09:36:11 +0000 (UTC)	[thread overview]
Message-ID: <1650015305.6c3a10a7a1cee9440e33cfbf7223cddb75584b81.flow@gentoo> (raw)

commit:     6c3a10a7a1cee9440e33cfbf7223cddb75584b81
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 15 08:43:06 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 09:35:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3a10a7

dev-java/netty: style changes and minor fixes

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-java/netty/netty-4.1.35.ebuild | 41 +++++++++++++++++---------------------
 1 file changed, 18 insertions(+), 23 deletions(-)

diff --git a/dev-java/netty/netty-4.1.35.ebuild b/dev-java/netty/netty-4.1.35.ebuild
index fdc4a3046307..93c2ad37726c 100644
--- a/dev-java/netty/netty-4.1.35.ebuild
+++ b/dev-java/netty/netty-4.1.35.ebuild
@@ -14,7 +14,7 @@ inherit java-pkg-2 java-pkg-simple
 
 DESCRIPTION="Async event-driven framework for high performance network applications"
 HOMEPAGE="https://netty.io/"
-SRC_URI="https://codeload.github.com/netty/netty/tar.gz/netty-${PV}.Final -> ${P}.Final.tar.gz"
+SRC_URI="https://github.com/netty/netty/archive/refs/tags/netty-${PV}.Final.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -23,7 +23,7 @@ KEYWORDS="~amd64"
 # We do not build the full range of modules provided by netty but only what
 # was available before in netty-common, netty-buffer and netty-transport.
 # Further modules might be added to the array.
-modules=(
+NETTY_MODULES=(
 	"common"
 	"resolver"
 	"buffer"
@@ -73,7 +73,8 @@ DEPEND="
 
 RDEPEND="
 	>=virtual/jre-1.8:*
-	${CP_DEPEND}"
+	${CP_DEPEND}
+"
 
 S="${WORKDIR}/netty-netty-${PV}.Final"
 
@@ -118,15 +119,13 @@ src_prepare() {
 }
 
 src_compile() {
+	local module
 	# We loop over the modules list and compile the jar files.
-	for module in "${modules[@]}" ; do \
-
-		JAVA_SRC_DIR=""
-		JAVA_RESOURCE_DIRS=""
+	for module in "${NETTY_MODULES[@]}"; do
+		JAVA_SRC_DIR=()
+		JAVA_RESOURCE_DIRS=()
 		JAVA_MAIN_CLASS=""
 
-		echo "compiling $module"
-
 		JAVA_SRC_DIR=(
 			"$module/src/main/java"
 			"$module/src/module"
@@ -139,6 +138,7 @@ src_compile() {
 
 		JAVA_JAR_FILENAME="$module.jar"
 
+		einfo "Compiling netty-${module}"
 		java-pkg-simple_src_compile
 
 		JAVA_GENTOO_CLASSPATH_EXTRA+=":$module.jar"
@@ -148,12 +148,10 @@ src_compile() {
 	done
 
 	if use doc; then
-
-		JAVA_SRC_DIR=""
+		JAVA_SRC_DIR=()
 		JAVA_JAR_FILENAME="ignoreme.jar"
 
-		for module in "${modules[@]}" ; do \
-
+		for module in "${NETTY_MODULES[@]}" ; do
 			# Some modules don't have source code
 			if [[ -d $module/src/main/java/io ]]; then \
 				JAVA_SRC_DIR+=( "$module/src/main/java" )
@@ -166,38 +164,35 @@ src_compile() {
 }
 
 src_test() {
-	for module in "${modules[@]}" ; do \
-
+	local module
+	for module in "${NETTY_MODULES[@]}"; do
 		JAVA_TEST_SRC_DIR="$module/src/test/java"
-		JAVA_TEST_RESOURCE_DIRS=""
+		JAVA_TEST_RESOURCE_DIRS=()
 
 		# Not all of the modules have test resources.
 		if [[ -d $module/src/test/resources ]]; then \
 			JAVA_TEST_RESOURCE_DIRS="$module/src/test/resources"
 		fi
 
+		einfo "Testing netty-${module}"
 		java-pkg-simple_src_test
-
 	done
 }
 
 src_install() {
 	einstalldocs # https://bugs.gentoo.org/789582
 
-	for module in "${modules[@]}" ; do \
-
+	local module
+	for module in "${NETTY_MODULES[@]}"; do
 		JAVA_MAIN_CLASS=$( sed -n 's:.*<mainClass>\(.*\)</mainClass>:\1:p' $module/pom.xml )
 		java-pkg_dojar $module.jar
 
 		# Some modules don't have source code
-		if [[ -d $module/src/main/java/org ]]; then \
-
+		if [[ -d $module/src/main/java/org ]]; then
 			if use source; then
 				java-pkg_dosrc "$module/src/main/java/*"
 			fi
-
 		fi
-
 	done
 
 	if use doc; then


             reply	other threads:[~2022-04-15  9:36 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-15  9:36 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-01 18:08 [gentoo-commits] repo/gentoo:master commit in: dev-java/netty/ Arthur Zamarin
2022-07-31 18:20 Arthur Zamarin
2022-07-28  7:06 Agostino Sarubbo
2022-07-25  4:19 Sam James
2022-06-20  7:41 Florian Schmaus
2022-06-17 12:45 Arthur Zamarin
2022-06-16 15:15 Sam James
2022-06-16 15:15 Sam James
2022-04-22 19:10 Arthur Zamarin
2022-04-22 19:10 Arthur Zamarin
2022-04-15 17:41 Arthur Zamarin
2022-04-15 17:19 Arthur Zamarin
2022-04-15  9:36 Florian Schmaus

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=1650015305.6c3a10a7a1cee9440e33cfbf7223cddb75584b81.flow@gentoo \
    --to=flow@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