From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-java/blowfishj/Manifest | 1 + dev-java/blowfishj/blowfishj-2.14-r1.ebuild | 40 ++++++++++++++++++++++++++ dev-java/blowfishj/blowfishj-2.14-r2.ebuild | 42 +++++++++++++++++++++++++++ dev-java/blowfishj/blowfishj-2.14-r3.ebuild | 44 +++++++++++++++++++++++++++++ dev-java/blowfishj/metadata.xml | 15 ++++++++++ 5 files changed, 142 insertions(+) create mode 100644 dev-java/blowfishj/Manifest create mode 100644 dev-java/blowfishj/blowfishj-2.14-r1.ebuild create mode 100644 dev-java/blowfishj/blowfishj-2.14-r2.ebuild create mode 100644 dev-java/blowfishj/blowfishj-2.14-r3.ebuild create mode 100644 dev-java/blowfishj/metadata.xml (limited to 'dev-java/blowfishj') diff --git a/dev-java/blowfishj/Manifest b/dev-java/blowfishj/Manifest new file mode 100644 index 000000000000..ba85c34e0bec --- /dev/null +++ b/dev-java/blowfishj/Manifest @@ -0,0 +1 @@ +DIST blowfishj-2.14-src.tar.gz 33726 SHA256 d49ff16dbf320f8988886507c0065312b4660d4dfdbffb894db7ff7d6f5bfaa9 SHA512 3f508be61b494eddf6f276e21c7979d1f6a46dac19e8256f7451f3a434cd1d7df34c268aa2c13b7370129c84f289f331f47456c400ac31a9f0996fefeae12aec WHIRLPOOL 04cc5516fab856f45269bbbd7b0cce31331f9e6586023f14442228aa7f9bd5b39c731dd73c34460eaf60d995312cf7b118fb38c10d7ae2f7c4a27574fabd1260 diff --git a/dev-java/blowfishj/blowfishj-2.14-r1.ebuild b/dev-java/blowfishj/blowfishj-2.14-r1.ebuild new file mode 100644 index 000000000000..82e4c81b75c1 --- /dev/null +++ b/dev-java/blowfishj/blowfishj-2.14-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +JAVA_PKG_IUSE="doc source test" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Blowfish implementation in Java" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" +HOMEPAGE="http://blowfishj.sourceforge.net/index.html" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="doc test source" + +DEPEND=">=virtual/jdk-1.4 + test? ( =dev-java/junit-3* dev-java/ant-junit ) " +RDEPEND=">=virtual/jre-1.4" + +src_unpack() { + unpack ${A} + cd "${S}" + java-ant_ignore-system-classes + mkdir -p target/lib + cd target/lib + use test && java-pkg_jar-from --build-only junit +} + +src_test() { + ANT_TASKS="ant-junit" eant test -DJunit.present=true +} + +src_install() { + java-pkg_newjar target/${P}.jar + + use doc && java-pkg_dojavadoc dist/docs/api + use source && java-pkg_dosrc src/java/net +} diff --git a/dev-java/blowfishj/blowfishj-2.14-r2.ebuild b/dev-java/blowfishj/blowfishj-2.14-r2.ebuild new file mode 100644 index 000000000000..d423e69c95a6 --- /dev/null +++ b/dev-java/blowfishj/blowfishj-2.14-r2.ebuild @@ -0,0 +1,42 @@ +# 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 + +DESCRIPTION="Blowfish implementation in Java" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" +HOMEPAGE="http://blowfishj.sourceforge.net/index.html" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +DEPEND=">=virtual/jdk-1.4 + test? ( =dev-java/junit-3* dev-java/ant-junit ) " +RDEPEND=">=virtual/jre-1.4" + +src_unpack() { + unpack ${A} + cd "${S}" || die + java-ant_ignore-system-classes + mkdir -p target/lib || die + cd target/lib || die + use test && java-pkg_jar-from --build-only junit +} + +src_test() { + ANT_TASKS="ant-junit" eant test -DJunit.present=true +} + +src_install() { + java-pkg_newjar target/${P}.jar + + use doc && java-pkg_dojavadoc dist/docs/api + use source && java-pkg_dosrc src/java/net +} diff --git a/dev-java/blowfishj/blowfishj-2.14-r3.ebuild b/dev-java/blowfishj/blowfishj-2.14-r3.ebuild new file mode 100644 index 000000000000..dfa8b48baf47 --- /dev/null +++ b/dev-java/blowfishj/blowfishj-2.14-r3.ebuild @@ -0,0 +1,44 @@ +# 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 + +DESCRIPTION="Blowfish implementation in Java" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" +HOMEPAGE="http://blowfishj.sourceforge.net/index.html" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + )" + +RDEPEND=">=virtual/jre-1.6" + +java_prepare() { + cd "${S}" || die + java-ant_ignore-system-classes + mkdir -p target/lib || die + cd target/lib || die + use test && java-pkg_jar-from --build-only junit +} + +src_test() { + ANT_TASKS="ant-junit" eant test -DJunit.present=true +} + +src_install() { + java-pkg_newjar target/${P}.jar + + use doc && java-pkg_dojavadoc dist/docs/api + use source && java-pkg_dosrc src/java/net +} diff --git a/dev-java/blowfishj/metadata.xml b/dev-java/blowfishj/metadata.xml new file mode 100644 index 000000000000..0df99acfebe9 --- /dev/null +++ b/dev-java/blowfishj/metadata.xml @@ -0,0 +1,15 @@ + + + + java + + The Blowfish implementation in Java, provides very fast ECB and CBC encryption. + Comes with the BlowfishEasy class for simple string encryption, plus a solution + for streaming, both are binary compatible to Blowfish.NET. Additionally this + package includes its own SHA-1 class, all sources, JUnit test cases, demos and + JavaDocs. + + + blowfishj + + -- cgit v1.2.3-65-gdbad