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 659D7158083 for ; Sat, 7 Sep 2024 17:30:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6B1BE2A0B; Sat, 7 Sep 2024 17:30:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A8DEE2A0B for ; Sat, 7 Sep 2024 17:30:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AE4C6342FAE for ; Sat, 7 Sep 2024 17:30:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 965F21CC5 for ; Sat, 7 Sep 2024 17:30:34 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1725730220.61fd60a63ae8d0be2e045c95c6e561edce5e1b20.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/c3p0/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/c3p0/c3p0-0.9.5.5-r1.ebuild X-VCS-Directories: dev-java/c3p0/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 61fd60a63ae8d0be2e045c95c6e561edce5e1b20 X-VCS-Branch: master Date: Sat, 7 Sep 2024 17:30:34 +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: 77236465-ee42-447e-a796-d550d53e3283 X-Archives-Hash: 0751c6ef4f0319e03f08a830596013d5 commit: 61fd60a63ae8d0be2e045c95c6e561edce5e1b20 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Sep 7 07:52:46 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Sep 7 17:30:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61fd60a6 dev-java/c3p0: drop 0.9.5.5-r1 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/38493 Signed-off-by: Arthur Zamarin gentoo.org> dev-java/c3p0/c3p0-0.9.5.5-r1.ebuild | 57 ------------------------------------ 1 file changed, 57 deletions(-) diff --git a/dev-java/c3p0/c3p0-0.9.5.5-r1.ebuild b/dev-java/c3p0/c3p0-0.9.5.5-r1.ebuild deleted file mode 100644 index 260261fef307..000000000000 --- a/dev-java/c3p0/c3p0-0.9.5.5-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Tests require an existing running SQL server and 'junit.jar.file' property -JAVA_PKG_IUSE="doc examples source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="JDBC drivers with JNDI-bindable DataSources" -HOMEPAGE="https://www.mchange.com/projects/c3p0/" -SRC_URI="https://downloads.sourceforge.net/project/c3p0/c3p0-src/c3p0-${PV}/${P}.src.tgz" - -LICENSE="|| ( EPL-1.0 LGPL-2.1 )" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86 ~amd64-linux ~x86-linux" - -CP_DEPEND=" - dev-java/log4j-12-api:2 - dev-java/mchange-commons:0 -" - -DEPEND=" - >=virtual/jdk-1.8:* - ${CP_DEPEND} -" - -RDEPEND=" - >=virtual/jre-1.8:* - ${CP_DEPEND} -" - -S="${WORKDIR}/${P}.src" - -JAVA_ANT_REWRITE_CLASSPATH="yes" - -src_prepare() { - java-pkg_clean - java-pkg-2_src_prepare - java-pkg_jar-from --into lib/ log4j-12-api-2 - java-pkg_jar-from --into lib/ mchange-commons - - # Test sources interfere with Javadoc generation on JDK 11 - # Remove since the tests will never be run - rm -r src/java/com/mchange/v2/c3p0/test || - die "Failed to remove unused test sources" -} - -src_install() { - java-pkg_newjar "build/${P}.jar" - einstalldocs - - use doc && java-pkg_dojavadoc build/apidocs - use examples && java-pkg_doexamples src/java/com/mchange/v2/c3p0/example - use source && java-pkg_dosrc src/java/com/mchange/v2 -}