[pkg-java] r8431 - in trunk/maven-install-plugin: . debian debian/patches
Ludovic Claude
ludovicc-guest at alioth.debian.org
Thu Jun 11 14:13:40 UTC 2009
Author: ludovicc-guest
Date: 2009-06-11 14:13:38 +0000 (Thu, 11 Jun 2009)
New Revision: 8431
Added:
trunk/maven-install-plugin/debian/
trunk/maven-install-plugin/debian/build.properties
trunk/maven-install-plugin/debian/changelog
trunk/maven-install-plugin/debian/compat
trunk/maven-install-plugin/debian/control
trunk/maven-install-plugin/debian/copyright
trunk/maven-install-plugin/debian/libmaven-install-plugin-java.poms
trunk/maven-install-plugin/debian/maven-settings.xml
trunk/maven-install-plugin/debian/maven.rules
trunk/maven-install-plugin/debian/orig-tar.sh
trunk/maven-install-plugin/debian/patches/
trunk/maven-install-plugin/debian/patches/descriptor.patch
trunk/maven-install-plugin/debian/patches/series
trunk/maven-install-plugin/debian/rules
trunk/maven-install-plugin/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk
Property changes on: trunk/maven-install-plugin/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: trunk/maven-install-plugin/debian/build.properties
===================================================================
--- trunk/maven-install-plugin/debian/build.properties (rev 0)
+++ trunk/maven-install-plugin/debian/build.properties 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,4 @@
+javadoc.dir=target/api
+build.directory=target
+maven.test.skip=true
+maven.generate.target=plugin:descriptor
Added: trunk/maven-install-plugin/debian/changelog
===================================================================
--- trunk/maven-install-plugin/debian/changelog (rev 0)
+++ trunk/maven-install-plugin/debian/changelog 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,6 @@
+maven-install-plugin (2.3-0ubuntu1~ppa7) jaunty; urgency=low
+
+ * Initial release. (Closes: #XXXX)
+
+ -- Ludovic Claude <ludovic.claude at laposte.net> Sat, 16 May 2009 21:57:41 +0100
+
Added: trunk/maven-install-plugin/debian/compat
===================================================================
--- trunk/maven-install-plugin/debian/compat (rev 0)
+++ trunk/maven-install-plugin/debian/compat 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1 @@
+6
Added: trunk/maven-install-plugin/debian/control
===================================================================
--- trunk/maven-install-plugin/debian/control (rev 0)
+++ trunk/maven-install-plugin/debian/control 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,35 @@
+Source: maven-install-plugin
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Ludovic Claude <ludovic.claude at laposte.net>
+Build-Depends: default-jdk, debhelper (>= 6), cdbs, quilt
+Build-Depends-Indep: maven-repo-helper, maven-ant-helper (>> 4), ant, ant-optional,
+ junit, libmaven-plugin-tools-java, libplexus-velocity-java, velocity,
+ libmaven2-core-java, libplexus-utils-java, libplexus-digest-java
+Standards-Version: 3.8.1
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-install-plugin
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-install-plugin/
+Homepage: http://maven.apache.org/plugins/maven-install-plugin/
+
+Package: libmaven-install-plugin-java
+Architecture: all
+Depends: ${misc:Depends}, libmaven2-core-java, libplexus-utils-java, libplexus-digest-java
+Description: Maven install plugin
+ 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 the maven install plugin which is used to install the
+ built artifact into the local repository.
Added: trunk/maven-install-plugin/debian/copyright
===================================================================
--- trunk/maven-install-plugin/debian/copyright (rev 0)
+++ trunk/maven-install-plugin/debian/copyright 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,22 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: Maven Shade Plugin
+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 <ludovic.claude at laposte.net>
+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'.
+
Added: trunk/maven-install-plugin/debian/libmaven-install-plugin-java.poms
===================================================================
--- trunk/maven-install-plugin/debian/libmaven-install-plugin-java.poms (rev 0)
+++ trunk/maven-install-plugin/debian/libmaven-install-plugin-java.poms 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1 @@
+pom.xml --no-parent
Added: trunk/maven-install-plugin/debian/maven-settings.xml
===================================================================
--- trunk/maven-install-plugin/debian/maven-settings.xml (rev 0)
+++ trunk/maven-install-plugin/debian/maven-settings.xml 2009-06-11 14:13:38 UTC (rev 8431)
@@ -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>
Added: trunk/maven-install-plugin/debian/maven.rules
===================================================================
--- trunk/maven-install-plugin/debian/maven.rules (rev 0)
+++ trunk/maven-install-plugin/debian/maven.rules 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,6 @@
+# keep the version for all Maven plugins as versionless plugins don't work
+* * maven-plugin *
+junit junit jar s/3\..*/3.x/
+s/jdom/org.jdom/ jdom jar s/1\..*/debian/
+asm * * s/3\..*/3.x/
+org.codehaus.plexus plexus-container-default jar s/1\.0-alpha.*/1.0-alpha/
Added: trunk/maven-install-plugin/debian/orig-tar.sh
===================================================================
--- trunk/maven-install-plugin/debian/orig-tar.sh (rev 0)
+++ trunk/maven-install-plugin/debian/orig-tar.sh 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+TAR=../maven-install-plugin_$2.orig.tar.gz
+DIR=maven-install-plugin-$2
+TAG=maven-install-plugin-$2
+
+svn export http://svn.apache.org/repos/asf/maven/plugins/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
Added: trunk/maven-install-plugin/debian/patches/descriptor.patch
===================================================================
--- trunk/maven-install-plugin/debian/patches/descriptor.patch (rev 0)
+++ trunk/maven-install-plugin/debian/patches/descriptor.patch 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,19 @@
+--- a/src/main/java/org/apache/maven/plugin/install/AbstractInstallMojo.java
++++ b/src/main/java/org/apache/maven/plugin/install/AbstractInstallMojo.java
+@@ -80,14 +80,14 @@
+ /**
+ * Digester for MD5.
+ *
+- * @component role-hint="md5"
++ * @component role-hint="md5" role="org.codehaus.plexus.digest.Digester"
+ */
+ protected Digester md5Digester;
+
+ /**
+ * Digester for SHA-1.
+ *
+- * @component role-hint="sha1"
++ * @component role-hint="sha1" role="org.codehaus.plexus.digest.Digester"
+ */
+ protected Digester sha1Digester;
+
Added: trunk/maven-install-plugin/debian/patches/series
===================================================================
--- trunk/maven-install-plugin/debian/patches/series (rev 0)
+++ trunk/maven-install-plugin/debian/patches/series 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1 @@
+descriptor.patch
Added: trunk/maven-install-plugin/debian/rules
===================================================================
--- trunk/maven-install-plugin/debian/rules (rev 0)
+++ trunk/maven-install-plugin/debian/rules 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.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-project maven-artifact maven-artifact-manager \
+ plexus-utils plexus-digest wagon-provider-api
+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
Property changes on: trunk/maven-install-plugin/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/maven-install-plugin/debian/watch
===================================================================
--- trunk/maven-install-plugin/debian/watch (rev 0)
+++ trunk/maven-install-plugin/debian/watch 2009-06-11 14:13:38 UTC (rev 8431)
@@ -0,0 +1,3 @@
+version=3
+http://svn.apache.org/repos/asf/maven/plugins/tags/ \
+ maven-install-plugin-(.*)/ debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list