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/cglib/
Date: Sat, 27 Mar 2021 08:55:11 +0000 (UTC)	[thread overview]
Message-ID: <1616835305.211c915fc277bbd42f40d31d7b12249e0e13a655.fordfrog@gentoo> (raw)

commit:     211c915fc277bbd42f40d31d7b12249e0e13a655
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Wed Mar 24 21:24:24 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 08:55:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=211c915f

dev-java/cglib: bump to 3.3.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/20081
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-java/cglib/Manifest           |  1 +
 dev-java/cglib/cglib-3.3.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++
 dev-java/cglib/metadata.xml       |  2 ++
 3 files changed, 53 insertions(+)

diff --git a/dev-java/cglib/Manifest b/dev-java/cglib/Manifest
index ccfbef22012..cf2193ec38b 100644
--- a/dev-java/cglib/Manifest
+++ b/dev-java/cglib/Manifest
@@ -1 +1,2 @@
+DIST cglib-RELEASE_3_3_0.tar.gz 151490 BLAKE2B d7ca4cc9ea6dad9f7a827c784ad13f93e8f31c817c5a0182a86b2ba759ccd3dfbec88d5178507599cd08a97a1ef13ba4880cab016b68b92dda3358bfb0a751c0 SHA512 635dcdb10a8fe83887a1dc8cf12844fe61b73a12fb530bf84d6ac53f75b0103820d76518cbc0d93d63dba86d13929f0df4dbae3b4943a402cf9f2af76f44161a
 DIST cglib-src-3.1.jar 1541525 BLAKE2B 46df8c11a8d05549c15a3bbf0f9789fbe4ad0540caa5be6d30f922aec95b55427cf36bff7740ba8c050c3c72749c6e9c98d8119a6de345126d7ef72343130568 SHA512 3b246b37f1c90acaefd4ba64f1f1db0b4d1fa64025f0e4e216ae7955e05701671bf8dc01d19c754286966cc5f8c06d78d02cb4f4500542f4448656768109c13f

diff --git a/dev-java/cglib/cglib-3.3.0.ebuild b/dev-java/cglib/cglib-3.3.0.ebuild
new file mode 100644
index 00000000000..1e17dbd9ddf
--- /dev/null
+++ b/dev-java/cglib/cglib-3.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+JAVA_PKG_IUSE="source test"
+MAVEN_ID="cglib:cglib:3.3.0"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_PV=RELEASE_${PV//./_}
+MY_P=cglib-${MY_PV}
+
+DESCRIPTION="cglib is a powerful, high performance and quality Code Generation Library"
+HOMEPAGE="https://github.com/cglib/cglib"
+SRC_URI="https://github.com/cglib/cglib/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="3"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+CDEPEND="dev-java/ant-core:0
+	dev-java/asm:9
+"
+DEPEND="
+	>=virtual/jdk-1.8:*
+	${CDEPEND}
+"
+RDEPEND="
+	>=virtual/jre-1.8:*
+	${CDEPEND}
+"
+
+S="${WORKDIR}"
+
+JAVA_GENTOO_CLASSPATH="asm-9 ant-core"
+JAVA_SRC_DIR="${MY_P}/${PN}/src/main/java"
+JAVA_RESOURCE_DIRS="${MY_P}/${PN}/src/main/resources"
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="${MY_P}/${PN}/src/test/java"
+JAVA_TEST_EXCLUDES=(
+	"net.sf.cglib.CodeGenTestCase"
+	"net.sf.cglib.TestAll"
+	"net.sf.cglib.TestGenerator"
+	"net.sf.cglib.proxy.TestEnhancer"	# To be solved
+	"net.sf.cglib.proxy.TestInterceptor"
+	"net.sf.cglib.reflect.TestFastClass"
+)

diff --git a/dev-java/cglib/metadata.xml b/dev-java/cglib/metadata.xml
index 5f26effad5f..d6cfa73169f 100644
--- a/dev-java/cglib/metadata.xml
+++ b/dev-java/cglib/metadata.xml
@@ -13,5 +13,7 @@
 	<upstream>
 		<remote-id type="github">cglib/cglib</remote-id>
 		<remote-id type="sourceforge">cglib</remote-id>
+		<bugs-to>https://github.com/cglib/cglib/issues</bugs-to>
+		<doc>https://github.com/cglib/cglib/wiki</doc>
 	</upstream>
 </pkgmetadata>


             reply	other threads:[~2021-03-27  8:55 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-27  8:55 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-06 18:25 [gentoo-commits] repo/gentoo:master commit in: dev-java/cglib/ Miroslav Šulc
2025-02-05 12:15 Sam James
2025-02-04 16:54 Sam James
2025-02-04 15:47 Sam James
2025-01-06 10:32 Miroslav Šulc
2024-04-15 10:24 Miroslav Šulc
2022-03-27  6:07 Miroslav Šulc
2022-03-26 16:51 Arthur Zamarin
2022-03-25  7:47 Agostino Sarubbo
2022-03-24  8:01 Jakov Smolić
2022-03-24  8:01 Jakov Smolić
2022-02-23  9:18 Miroslav Šulc
2022-02-22  7:45 Miroslav Šulc
2021-04-07  6:21 Sam James
2021-04-05 16:45 Sam James
2021-04-05 16:43 Sam James
2021-04-04 21:21 Sergei Trofimovich
2021-03-27  8:55 Miroslav Šulc
2017-07-13 12:13 Alexis Ballier
2016-01-16 21:01 James Le Cuirot
2015-10-08  7:58 Patrice Clement

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=1616835305.211c915fc277bbd42f40d31d7b12249e0e13a655.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