This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-common-artifact-filters.
commit c42a9501ff9573ceba4c1dab53c013fe3cb356b6 Author: Ludovic Claude <[email protected]> Date: Sat Jul 11 23:57:07 2009 +0000 [svn-inject] Applying Debian modifications to trunk --- debian/build.properties | 4 +++ debian/changelog | 6 ++++ debian/compat | 1 + debian/control | 35 +++++++++++++++++++++++ debian/copyright | 22 ++++++++++++++ debian/libmaven-common-artifact-filters-java.poms | 2 ++ debian/maven-settings.xml | 9 ++++++ debian/maven.rules | 3 ++ debian/orig-tar.sh | 16 +++++++++++ debian/rules | 24 ++++++++++++++++ debian/watch | 3 ++ 11 files changed, 125 insertions(+) diff --git a/debian/build.properties b/debian/build.properties new file mode 100644 index 0000000..c7421f7 --- /dev/null +++ b/debian/build.properties @@ -0,0 +1,4 @@ +javadoc.dir=target/api +build.directory=target +maven.test.skip=true + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4c99260 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +maven-common-artifact-filters (1.1-0ubuntu1~ppa3) jaunty; urgency=low + + * Initial release. (Closes: #XXXXX) + + -- Ludovic Claude <[email protected]> Sun, 07 Jun 2009 00:04:41 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +6 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d4bab0d --- /dev/null +++ b/debian/control @@ -0,0 +1,35 @@ +Source: maven-common-artifact-filters +Section: java +Priority: optional +Maintainer: Debian Java Maintainers <[email protected]> +Uploaders: Ludovic Claude <[email protected]> +Build-Depends: ant, debhelper (>= 6), cdbs, default-jdk, libjaxp1.3-java +Build-Depends-Indep: maven-repo-helper, maven-ant-helper (>> 4), ant, ant-optional, + libmaven2-core-java, libplexus-container-default-java +Standards-Version: 3.8.1 +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-plugin-tools +Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-plugin-tools/ +Homepage: http://maven.apache.org + +Package: libmaven-common-artifact-filters-java +Architecture: all +Depends: ${misc:Depends}, libmaven2-core-java, libplexus-container-default-java +Description: Maven Common Artifact Filters + Maven is a software project management and comprehension tool. Based on the + concept of a project object model (POM), Maven can manage a project's build, + reporting and documentation from a central piece of information. + . + Maven's primary goal is to allow a developer to comprehend the complete + state of a development effort in the shortest period of time. In order to + attain this goal there are several areas of concern that Maven attempts + to deal with: + . + * Making the build process easy + * Providing a uniform build system + * Providing quality project information + * Providing guidelines for best practices development + * Allowing transparent migration to new features + . + This package ships a shared library containing a collection of ready-made + filters to control inclusion/exclusion of artifacts during dependency + resolution. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0d6c75d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +Format-Specification: http://dep.debian.net/deps/dep5/ +Name: Maven Common Artifact Filters +Maintainer: Apache Maven team +Source: http://maven.apache.org/ + +Files: * +Copyright: 2001-2009, The Apache Software Foundation. +License: Apache-2.0 + +Files: debian/* +Copyright: 2009, Ludovic Claude <[email protected]> +License: GPL-3+ + +License: Apache-2.0 + On Debian GNU/Linux system you can find the complete text of the + Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'. + +License: GPL-3 + On Debian GNU/Linux system you can find the complete text of the + GNU General Public License version 3 license in + '/usr/share/common-licenses/GPL-3'. + diff --git a/debian/libmaven-common-artifact-filters-java.poms b/debian/libmaven-common-artifact-filters-java.poms new file mode 100644 index 0000000..e3a3ef0 --- /dev/null +++ b/debian/libmaven-common-artifact-filters-java.poms @@ -0,0 +1,2 @@ +pom.xml --no-parent + diff --git a/debian/maven-settings.xml b/debian/maven-settings.xml new file mode 100644 index 0000000..01f8769 --- /dev/null +++ b/debian/maven-settings.xml @@ -0,0 +1,9 @@ +<!-- + This is a minimal settings.xml that switches maven to offline mode + and uses the Debian repo as the local repo. +--> + +<settings> + <localRepository>/usr/share/maven-repo</localRepository> + <offline>true</offline> +</settings> diff --git a/debian/maven.rules b/debian/maven.rules new file mode 100644 index 0000000..e92c46d --- /dev/null +++ b/debian/maven.rules @@ -0,0 +1,3 @@ +org.codehaus.plexus plexus-container-default dependency s/1\.0-alpha.*/1.0-alpha/ +junit junit jar s/3\..*/3.x/ +asm asm jar s/3\..*/3.x/ diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh new file mode 100644 index 0000000..6702972 --- /dev/null +++ b/debian/orig-tar.sh @@ -0,0 +1,16 @@ +#!/bin/sh -e + +TAR=../maven-common-artifact-filters_$2.orig.tar.gz +DIR=maven-common-artifact-filters-$2 +TAG=maven-common-artifact-filters-$2 + +svn export http://svn.apache.org/repos/asf/maven/shared/tags/$TAG $DIR +tar -c -z -f $TAR $DIR +rm -rf $DIR ../$TAG + +# move to directory 'tarballs' +if [ -r .svn/deb-layout ]; then + . .svn/deb-layout + mv $TAR $origDir + echo "moved $TAR to $origDir" +fi diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f1e0e0a --- /dev/null +++ b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/ant.mk + +PACKAGE := $(DEB_SOURCE_PACKAGE) +VERSION := $(DEB_UPSTREAM_VERSION) +JAVA_HOME := /usr/lib/jvm/default-java +DEB_JARS := ant-nodeps maven-core maven-model maven-plugin-api maven-plugin-descriptor maven-plugin-registry \ + maven-project maven-artifact maven-artifact-manager plexus-container-default-alpha plexus-utils +DEB_ANT_BUILD_TARGET := package #javadoc +DEB_ANT_BUILDFILE := /usr/share/maven-ant-helper/maven-build.xml +DEB_ANT_ARGS := -Dbasedir=$(realpath .) -Dpackage=$(PACKAGE) -Dversion=$(VERSION) +API_DOCS := target/api + +get-orig-source: + -uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename + +binary-post-install/lib$(PACKAGE)-java:: + mh_installpoms -plib$(PACKAGE)-java + mh_installjar -plib$(PACKAGE)-java -l pom.xml target/$(PACKAGE)-$(VERSION).jar + +clean:: + -rm -rf debian/tmp diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..523cbf8 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://svn.apache.org/repos/asf/maven/shared/tags/ \ + maven-common-artifact-filters-(.*)/ debian debian/orig-tar.sh -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-common-artifact-filters.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

