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/osgi-foundation/Manifest | 1 + .../files/osgi-foundation-1.2.0-build.xml | 218 +++++++++++++++++++++ dev-java/osgi-foundation/metadata.xml | 5 + .../osgi-foundation-1.2.0-r1.ebuild | 28 +++ 4 files changed, 252 insertions(+) create mode 100644 dev-java/osgi-foundation/Manifest create mode 100644 dev-java/osgi-foundation/files/osgi-foundation-1.2.0-build.xml create mode 100644 dev-java/osgi-foundation/metadata.xml create mode 100644 dev-java/osgi-foundation/osgi-foundation-1.2.0-r1.ebuild (limited to 'dev-java/osgi-foundation') diff --git a/dev-java/osgi-foundation/Manifest b/dev-java/osgi-foundation/Manifest new file mode 100644 index 000000000000..ec87324e7fa5 --- /dev/null +++ b/dev-java/osgi-foundation/Manifest @@ -0,0 +1 @@ +DIST osgi-foundation-1.2.0.tar.xz 45176 SHA256 0f460df58caa1335b6eaa238068c725ff8ef823de83bd2ee65534d2757ad058c SHA512 6523dd6b4cd8205aa3359fae4640ff6b17a1944aec6bf23acf0d6e4eb33839a9b9049e8df0c55a4f35013b40b1df2391a53ed68df682a317c35dca504e9b996b WHIRLPOOL c43abe51b4f8ec743e8dc0c073c519c08a1499f1538bd3804c29eafe916385379f66dceb6202e7f061061bdbe082df93502dd051106cfb9896040125acad71b5 diff --git a/dev-java/osgi-foundation/files/osgi-foundation-1.2.0-build.xml b/dev-java/osgi-foundation/files/osgi-foundation-1.2.0-build.xml new file mode 100644 index 000000000000..a33f09709ada --- /dev/null +++ b/dev-java/osgi-foundation/files/osgi-foundation-1.2.0-build.xml @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =================================== WARNING =================================== + JUnit is not present in your $ANT_HOME/lib directory. Tests not executed. + =============================================================================== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-java/osgi-foundation/metadata.xml b/dev-java/osgi-foundation/metadata.xml new file mode 100644 index 000000000000..7303cef96964 --- /dev/null +++ b/dev-java/osgi-foundation/metadata.xml @@ -0,0 +1,5 @@ + + + + java + diff --git a/dev-java/osgi-foundation/osgi-foundation-1.2.0-r1.ebuild b/dev-java/osgi-foundation/osgi-foundation-1.2.0-r1.ebuild new file mode 100644 index 000000000000..bd24d7222c20 --- /dev/null +++ b/dev-java/osgi-foundation/osgi-foundation-1.2.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="OSGi R4 Foundation EE by Apache Felix" +HOMEPAGE="http://felix.apache.org/" +SRC_URI="http://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" + +LICENSE="Apache-2.0 OSGi-Specification-2.0" +SLOT="0" +KEYWORDS="amd64 x86" + +DEPEND=">=virtual/jdk-1.5" +RDEPEND=">=virtual/jre-1.5" + +java_prepare() { + cp "${FILESDIR}"/${P}-build.xml "${S}"/build.xml || die +} + +src_install() { + java-pkg_newjar target/org.osgi.foundation-${PV}.jar org.osgi.foundation.jar +} -- cgit v1.2.3-65-gdbad