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 22808158086 for ; Mon, 22 Nov 2021 19:34:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66EE5E091A; Mon, 22 Nov 2021 19:34:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 501F8E091A for ; Mon, 22 Nov 2021 19:34:12 +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 6C8603432EB for ; Mon, 22 Nov 2021 19:34:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A69888E for ; Mon, 22 Nov 2021 19:34:09 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1637609647.1b653019684d81ed5b1c036ef610b1c276eb04f2.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/bndlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/bndlib/bndlib-2.1.0.ebuild X-VCS-Directories: dev-java/bndlib/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 1b653019684d81ed5b1c036ef610b1c276eb04f2 X-VCS-Branch: master Date: Mon, 22 Nov 2021 19:34:09 +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: ac9fad5f-16f4-47c0-983a-1b79826929bb X-Archives-Hash: 58963741011272ba368be0e5a7a47ba9 commit: 1b653019684d81ed5b1c036ef610b1c276eb04f2 Author: Miroslav Šulc gentoo org> AuthorDate: Mon Nov 22 19:33:56 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Mon Nov 22 19:34:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b653019 dev-java/bndlib: removed obsolete 2.1.0 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/bndlib/bndlib-2.1.0.ebuild | 71 ------------------------------------- 1 file changed, 71 deletions(-) diff --git a/dev-java/bndlib/bndlib-2.1.0.ebuild b/dev-java/bndlib/bndlib-2.1.0.ebuild deleted file mode 100644 index aaac79713088..000000000000 --- a/dev-java/bndlib/bndlib-2.1.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="test" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A swiss army knife for OSGi" -HOMEPAGE="http://www.aqute.biz/Bnd/Bnd" -SRC_URI="https://github.com/bndtools/bnd/archive/${PV}.REL.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" - -CDEPEND="dev-java/libg:0 - dev-java/osgi-compendium:0 - dev-java/osgi-core-api:0 - dev-java/osgi-enterprise-api:0" - -# Tests appear broken and cause a circular dependency. -# test? ( dev-java/bnd-junit:0 ) -DEPEND=">=virtual/jdk-1.5 - ${CDEPEND} - test? ( dev-java/junit:4 )" - -RDEPEND=">=virtual/jre-1.5 - ${CDEPEND}" - -S="${WORKDIR}/bnd-${PV}.REL/biz.aQute.${PN}" - -EANT_BUILD_TARGET="build" - -JAVA_ANT_REWRITE_CLASSPATH="true" - -# Tests appear broken and cause a circular dependency. -RESTRICT="test" - -java_prepare() { - # Move the correct build.xml into place, needed for testing. - cp ../cnf/build.xml . || die - - # Remove bundled jar files. - find . -name '*.jar' -delete > /dev/null - - if ! use test ; then - rm -rf src/aQute/bnd/test || die "Failed to remove tests." - fi -} - -src_compile() { - local extra_cp="" - - if use test ; then - extra_cp=":$(java-pkg_getjars --build-only junit-4)" - fi - - EANT_EXTRA_ARGS="-Dgentoo.classpath=$(java-pkg_getjars libg):$(java-pkg_getjars osgi-compendium):$(java-pkg_getjars osgi-core-api):$(java-pkg_getjars osgi-enterprise-api)${extra_cp}" \ - java-pkg-2_src_compile -} - -EANT_TEST_GENTOO_CLASSPATH="junit-4,bnd-junit" -src_test() { - java-pkg-2_src_test -} - -src_install() { - java-pkg_newjar generated/biz.aQute.${PN}.jar -}