mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-31 15:07:28 -07:00
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 <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
73 lines
1.6 KiB
Bash
73 lines
1.6 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
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 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
|
|
}
|