From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 688A613888F for ; Thu, 8 Oct 2015 22:11:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E45F21C007; Thu, 8 Oct 2015 22:11:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8744221C009 for ; Thu, 8 Oct 2015 22:11:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ABBB9340755 for ; Thu, 8 Oct 2015 22:11:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0E07C8E for ; Thu, 8 Oct 2015 22:11:11 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1444341965.91e66e4e8d135995f1e29edc2bbfcf42df0ddf2f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/bcmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/bcmail/bcmail-1.38-r3.ebuild dev-java/bcmail/bcmail-1.45-r2.ebuild dev-java/bcmail/bcmail-1.50.ebuild dev-java/bcmail/bcmail-1.52.ebuild X-VCS-Directories: dev-java/bcmail/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 91e66e4e8d135995f1e29edc2bbfcf42df0ddf2f X-VCS-Branch: master Date: Thu, 8 Oct 2015 22:11:11 +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-Archives-Salt: 3c0be4b2-8c9b-499c-b990-dd7c9123cbe2 X-Archives-Hash: c8537f405398d140f83a3c35bc95cb4e commit: 91e66e4e8d135995f1e29edc2bbfcf42df0ddf2f Author: Patrice Clement gentoo org> AuthorDate: Thu Oct 8 16:37:53 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Oct 8 22:06:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e66e4e dev-java/bcmail: Clean up old. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/bcmail/bcmail-1.38-r3.ebuild | 56 ----------------------- dev-java/bcmail/bcmail-1.45-r2.ebuild | 55 ----------------------- dev-java/bcmail/bcmail-1.50.ebuild | 82 ---------------------------------- dev-java/bcmail/bcmail-1.52.ebuild | 84 ----------------------------------- 4 files changed, 277 deletions(-) diff --git a/dev-java/bcmail/bcmail-1.38-r3.ebuild b/dev-java/bcmail/bcmail-1.38-r3.ebuild deleted file mode 100644 index 1bb25d7..0000000 --- a/dev-java/bcmail/bcmail-1.38-r3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=1 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -MY_P="${PN}-jdk14-${PV/./}" -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="http://www.bouncycastle.org/java.html" -SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="1.38" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" - -COMMON_DEPEND="dev-java/bcprov:${SLOT} - =dev-java/junit-3.8* - dev-java/sun-jaf - java-virtuals/javamail" -DEPEND=">=virtual/jdk-1.4 - app-arch/unzip - ${COMMON_DEPEND}" -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEPEND}" -IUSE="" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - unpack ./src.zip -} - -src_compile() { - mkdir "${S}/classes" - - find org -name "*.java" > "${T}/src.list" - ejavac -d "${S}/classes" \ - -classpath $(java-pkg_getjars bcprov-${SLOT},junit,sun-jaf,javamail) \ - "@${T}/src.list" - - cd "${S}/classes" - jar -cf "${S}/${PN}.jar" * || die "failed to create jar" -} - -src_install() { - java-pkg_dojar "${S}/${PN}.jar" - - use source && java-pkg_dosrc org - use doc && java-pkg_dojavadoc docs -} diff --git a/dev-java/bcmail/bcmail-1.45-r2.ebuild b/dev-java/bcmail/bcmail-1.45-r2.ebuild deleted file mode 100644 index 622c2b6..0000000 --- a/dev-java/bcmail/bcmail-1.45-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=2 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -MY_P="${PN}-jdk15-${PV/./}" -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="http://www.bouncycastle.org/java.html" -SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="1.45" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" - -COMMON_DEPEND="dev-java/bcprov:1.45 - =dev-java/junit-3.8* - dev-java/sun-jaf - java-virtuals/javamail" -DEPEND=">=virtual/jdk-1.5 - app-arch/unzip - ${COMMON_DEPEND}" -RDEPEND=">=virtual/jre-1.5 - ${COMMON_DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - default - cd "${S}" - unpack ./src.zip -} - -src_compile() { - mkdir "${S}/classes" - - find org -name "*.java" > "${T}/src.list" - ejavac -d "${S}/classes" \ - -classpath $(java-pkg_getjars bcprov-1.45,junit,sun-jaf,javamail) \ - "@${T}/src.list" - - cd "${S}/classes" - jar -cf "${S}/${PN}.jar" * || die "failed to create jar" -} - -src_install() { - java-pkg_dojar "${S}/${PN}.jar" - - use source && java-pkg_dosrc org - use doc && java-pkg_dojavadoc docs -} diff --git a/dev-java/bcmail/bcmail-1.50.ebuild b/dev-java/bcmail/bcmail-1.50.ebuild deleted file mode 100644 index d8298f4..0000000 --- a/dev-java/bcmail/bcmail-1.50.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -MY_P="${PN}-jdk15on-${PV/./}" - -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="http://www.bouncycastle.org/java.html" -SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" - -COMMON_DEPEND=">=dev-java/bcprov-${PV}:0[test?] - ~dev-java/bcpkix-${PV}:0[test?] - dev-java/sun-jaf:0 - java-virtuals/javamail:0" - -DEPEND=">=virtual/jdk-1.5 - app-arch/unzip - test? ( dev-java/junit:0 ) - ${COMMON_DEPEND}" - -RDEPEND=">=virtual/jre-1.5 - ${COMMON_DEPEND}" - -S="${WORKDIR}/${MY_P}" - -# Package can't be build with test as bcprov and bcpkix can't be built with test. -RESTRICT="test" - -src_unpack() { - default - cd "${S}" - unpack ./src.zip -} - -java_prepare() { - mkdir "${S}"/classes - - if use test ; then - java-pkg_jar-from --build-only junit - fi -} - -src_compile() { - find org -name "*.java" > "${T}"/src.list - - local cp="$(java-pkg_getjars bcprov,bcpkix,sun-jaf,javamail)" - if use test ; then - cp="${cp}:junit.jar" - else - sed -i '/\/test\//d' "${T}"/src.list || die "Failed to remove test classes" - fi - - ejavac -d "${S}"/classes -cp ${cp} "@${T}"/src.list - - cd "${S}"/classes - jar -cf "${S}"/${PN}.jar * || die "failed to create jar" -} - -src_test() { - local cp="${PN}.jar:bcprov.jar:bcpkix.jar:junit.jar" - - java -cp ${cp} org.bouncycastle.mail.smime.test.AllTests | tee mail.tests - - grep -q FAILURES *.tests && die "Tests failed." -} - -src_install() { - java-pkg_dojar "${S}"/${PN}.jar - - use source && java-pkg_dosrc org - use doc && java-pkg_dojavadoc docs -} diff --git a/dev-java/bcmail/bcmail-1.52.ebuild b/dev-java/bcmail/bcmail-1.52.ebuild deleted file mode 100644 index dcc7f07..0000000 --- a/dev-java/bcmail/bcmail-1.52.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -MY_P="${PN}-jdk15on-${PV/./}" - -DESCRIPTION="Java cryptography APIs" -HOMEPAGE="http://www.bouncycastle.org/java.html" -SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" - -CDEPEND=">=dev-java/bcprov-${PV}:0[test?] - ~dev-java/bcpkix-${PV}:0[test?] - dev-java/sun-jaf:0 - java-virtuals/javamail:0" - -DEPEND=">=virtual/jdk-1.6 - app-arch/unzip - test? ( - dev-java/junit:0 - ) - ${CDEPEND}" - -RDEPEND=">=virtual/jre-1.6 - ${CDEPEND}" - -S="${WORKDIR}/${MY_P}" - -# Package can't be build with test as bcprov and bcpkix can't be built with test. -RESTRICT="test" - -src_unpack() { - default - cd "${S}" - unpack ./src.zip -} - -java_prepare() { - mkdir "${S}"/classes - - if use test; then - java-pkg_jar-from --build-only junit - fi -} - -src_compile() { - find org -name "*.java" > "${T}"/src.list - - local cp="$(java-pkg_getjars bcprov,bcpkix,sun-jaf,javamail)" - if use test ; then - cp="${cp}:junit.jar" - else - sed -i '/\/test\//d' "${T}"/src.list || die "Failed to remove test classes" - fi - - ejavac -d "${S}"/classes -cp ${cp} "@${T}"/src.list - - cd "${S}"/classes - jar -cf "${S}"/${PN}.jar * || die "failed to create jar" -} - -src_test() { - local cp="${PN}.jar:bcprov.jar:bcpkix.jar:junit.jar" - - java -cp ${cp} org.bouncycastle.mail.smime.test.AllTests | tee mail.tests - - grep -q FAILURES *.tests && die "Tests failed." -} - -src_install() { - java-pkg_dojar "${S}"/${PN}.jar - - use source && java-pkg_dosrc org - use doc && java-pkg_dojavadoc docs -}