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/commons-logging/
Date: Mon, 20 May 2024 07:50:15 +0000 (UTC)	[thread overview]
Message-ID: <1716191402.edb44e0606891b780f9798fd1afced271fca2a85.fordfrog@gentoo> (raw)

commit:     edb44e0606891b780f9798fd1afced271fca2a85
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Sun May 19 19:30:58 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon May 20 07:50:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb44e06

dev-java/commons-logging: drop 1.3.0_pre20230319

Closes: https://bugs.gentoo.org/923601
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/36746
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-java/commons-logging/Manifest                  |   1 -
 .../commons-logging-1.3.0_pre20230319.ebuild       | 121 ---------------------
 2 files changed, 122 deletions(-)

diff --git a/dev-java/commons-logging/Manifest b/dev-java/commons-logging/Manifest
index 9f2bae1c3096..e45becaca4a5 100644
--- a/dev-java/commons-logging/Manifest
+++ b/dev-java/commons-logging/Manifest
@@ -1,3 +1,2 @@
-DIST commons-logging-1.3.0_pre20230319.tar.gz 184984 BLAKE2B 01b46bdb657dfaf3ffb55b3440b416d61a419a3358e4d240cc7e25794f38e0061e14ee77e5578aedf1b50006d6ec65016c9e837bd13c4dab9a2182604fe85c72 SHA512 b586be5dd891572aa55c3066c3fb7d57ba5f31c0bfaa768b80cd8c1c5c659a8c718b4cb42e6c65332b52f073462432c0f81e4aaf1535afb781da9a7884cdc07e
 DIST commons-logging-1.3.1-src.tar.gz 189156 BLAKE2B 23308b2bff6ea67620b0f07f49a63ffdbd07833fc0d9a6654386f4c17c9125abef5ad2afb6d8c798dcb98bc3e99bd8d94d35b9deec569c3aec1dde20f69e1a1d SHA512 ffda970d086601df4b476caf8bd01d1bdc22dd7f8846a22287036f7f000ce6cf0a757d16621910f041f8d90aa6066819454b3977dd005ca66817bec59e91e91f
 DIST commons-logging-1.3.1-src.tar.gz.asc 488 BLAKE2B 3225a62f6269224f1b52907631be03d97cde65d1c7a76c06b6a23b9e30b1cee08b048eb4fdaa41b0a6b5bcf090b54c9dc54307fb1629b039b786fd426572a4d1 SHA512 6f13f85a5aeab1099ebfca38a6173384050b1f1c2e7eac93d978587c92751ddd24d583e39bc5a949f0caec66ca141d265147e63e9e2afea2094bda4667936a86

diff --git a/dev-java/commons-logging/commons-logging-1.3.0_pre20230319.ebuild b/dev-java/commons-logging/commons-logging-1.3.0_pre20230319.ebuild
deleted file mode 100644
index e7ce766be362..000000000000
--- a/dev-java/commons-logging/commons-logging-1.3.0_pre20230319.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="commons-logging:commons-logging:1.3.0"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Thin adapter allowing configurable bridging to other well known logging systems"
-HOMEPAGE="https://commons.apache.org/proper/commons-logging/"
-MY_COMMIT="d376d3128663e53de4af948e161291e7ec0c6ec1"
-SRC_URI="https://github.com/apache/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="log4j"
-
-CDEPEND="
-	log4j? (
-		dev-java/log4j-12-api:2
-		dev-java/log4j-api:2
-		dev-java/log4j-core:2
-	)
-"
-
-DEPEND="${CDEPEND}
-	dev-java/javax-servlet-api:2.5
-	>=virtual/jdk-1.8:*
-"
-
-RDEPEND="${CDEPEND}
-	>=virtual/jre-1.8:*"
-
-DOCS=( README.md src/changes/changes.xml )
-
-JAVA_AUTOMATIC_MODULE_NAME="org.apache.commons.logging"
-JAVA_ENCODING="iso-8859-1"
-JAVA_CLASSPATH_EXTRA="javax-servlet-api-2.5"
-JAVA_SRC_DIR="src/main/java"
-
-src_prepare() {
-	java-pkg-2_src_prepare
-	# https://avalon.apache.org/closed.html Apache Avalon has closed.
-	rm src/main/java/org/apache/commons/logging/impl/{Avalon,LogKit}Logger.java || die
-	rm src/test/java/org/apache/commons/logging/{avalon/AvalonLogger,logkit/Standard}TestCase.java || die
-
-	if use !log4j; then
-		rm src/main/java/org/apache/commons/logging/impl/Log4JLogger.java || die
-	fi
-}
-
-src_compile() {
-	if use log4j; then
-		JAVA_GENTOO_CLASSPATH="log4j-12-api-2,log4j-api-2,log4j-core-2"
-	fi
-	java-pkg-simple_src_compile
-
-	pushd target/classes > /dev/null || die
-
-	# Need Automatic-Module-Name also for the other JAR files
-	jar xvf ../../commons-logging.jar META-INF/MANIFEST.MF || die
-
-	# https://github.com/apache/commons-logging/blob/058cf5ee350cd83d1ab28b000ad6be903ca160c5/pom.xml#L215-L236
-	jar -cvfm ../../commons-logging-api.jar META-INF/MANIFEST.MF \
-		$(find . -type f -name '*.class' \
-		! -name 'Jdk13LumberjackLogger.class' \
-		! -name 'ServletContextCleaner.class' \
-		) || die
-
-	# https://github.com/apache/commons-logging/blob/058cf5ee350cd83d1ab28b000ad6be903ca160c5/pom.xml#L240-L257
-	jar -cvfm ../../commons-logging-adapters.jar META-INF/MANIFEST.MF \
-		$(find . -type f -path './org/apache/commons/logging/impl/**.class' \
-		! -name 'WeakHashtable*.class' \
-		! -name 'LogFactoryImpl*.class' \
-		) || die
-
-	popd > /dev/null || die
-}
-
-src_test() {
-	# Do not run Log4j tests because these tests use an Appender to verify
-	# logging correctness.  The log4j-12-api bridge no longer supports using an
-	# Appender for verifications since the methods for adding an Appender in
-	# the bridge "are largely no-ops".  This means an Appender's state would
-	# never be changed by log4j-12-api after new messages are logged.  The test
-	# cases, however, expect changes to the Appender's state in such an event,
-	# so they would fail with log4j-12-api.
-	# https://logging.apache.org/log4j/log4j-2.8/log4j-1.2-api/index.html
-	rm src/test/java/org/apache/commons/logging/pathable/ParentFirstTestCase.java || die # Log4JLogger
-	rm src/test/java/org/apache/commons/logging/pathable/ChildFirstTestCase.java || die # Log4JLogger
-	rm -r src/test/java/org/apache/commons/logging/log4j || die
-
-	JAVA_TEST_EXCLUDES=(
-		org.apache.commons.logging.security.SecurityForbiddenTestCase # 2 tests 1 failing
-		org.apache.commons.logging.jdk14.TestHandler # No runnable methods
-	)
-	JAVA_TEST_EXTRA_ARGS=(
-		-Dservlet-api="$(java-pkg_getjars javax-servlet-api-2.5)"
-		-Dcommons-logging="commons-logging.jar"
-		-Dcommons-logging-api="commons-logging-api.jar"
-		-Dcommons-logging-adapters="commons-logging-adapters.jar"
-		-Dtestclasses="target/test-classes"
-	)
-	if use log4j; then
-		JAVA_TEST_EXTRA_ARGS+=" -Dlog4j12=$(java-pkg_getjars log4j-12-api-2,log4j-core-2)"
-	fi
-	JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-	JAVA_TEST_RESOURCE_DIRS="src/test/resources"
-	JAVA_TEST_SRC_DIR="src/test/java"
-	java-pkg-simple_src_test
-}
-
-src_install() {
-	java-pkg-simple_src_install
-	java-pkg_dojar commons-logging-api.jar commons-logging-adapters.jar
-}


             reply	other threads:[~2024-05-20  7:50 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-20  7:50 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-22  7:02 [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-logging/ Miroslav Šulc
2025-05-22  6:26 Arthur Zamarin
2025-05-20 21:27 Sam James
2025-05-20 19:07 Sam James
2025-04-20 18:20 Miroslav Šulc
2024-12-30 19:41 Florian Schmaus
2024-12-23 23:47 Jakov Smolić
2024-11-15 22:13 Sam James
2024-10-17  9:05 Miroslav Šulc
2024-10-16  9:39 Miroslav Šulc
2024-05-19 17:40 Arthur Zamarin
2024-05-18  3:51 Sam James
2024-05-18  3:19 Sam James
2024-05-18  3:19 Sam James
2024-04-18 10:56 Miroslav Šulc
2023-04-20  5:01 Sam James
2023-04-20  5:01 Sam James
2023-04-20  4:14 Arthur Zamarin
2023-04-20  4:02 Sam James
2023-03-21  9:06 Sven Wegener
2023-03-21  6:11 Miroslav Šulc
2023-03-19  6:20 Miroslav Šulc
2022-10-14 17:41 Miroslav Šulc
2022-03-31 18:58 Arthur Zamarin
2022-03-31 16:47 Arthur Zamarin
2022-03-30 11:47 Agostino Sarubbo
2022-03-30 11:09 Jakov Smolić
2022-03-30 11:09 Jakov Smolić
2022-02-26 11:53 Arthur Zamarin
2022-02-26  8:52 Miroslav Šulc
2022-02-25 18:53 Arthur Zamarin
2022-02-24  9:47 Miroslav Šulc
2022-01-27  8:17 Miroslav Šulc
2021-05-16 18:58 Sam James
2021-05-09 10:02 Miroslav Šulc
2021-05-09  9:17 Agostino Sarubbo
2021-05-06  7:22 Sergei Trofimovich
2021-05-01 18:19 Agostino Sarubbo
2021-04-25  9:18 Sergei Trofimovich
2021-04-21 10:00 Miroslav Šulc
2021-04-21 10:00 Miroslav Šulc
2021-04-21 10:00 Miroslav Šulc
2021-04-19 17:57 Miroslav Šulc
2018-04-14 21:04 Patrice Clement
2018-02-16 22:35 Patrice Clement
2018-02-16 10:27 Patrice Clement
2017-08-28 22:01 James Le Cuirot
2017-08-28 22:01 James Le Cuirot
2017-07-13 12:13 Alexis Ballier
2017-02-24  0:34 Michael Weber
2016-04-26 21:47 James Le Cuirot
2015-08-30 19:34 Patrice Clement
2015-08-30 19:34 Patrice Clement
2015-08-26 14:17 Mikle Kolyada
2015-08-16 20:52 Mikle Kolyada

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=1716191402.edb44e0606891b780f9798fd1afced271fca2a85.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