[plexus-maven-plugin] 01/23: new package plexus-maven-plugin
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Sat Feb 27 22:34:55 GMT 2016
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository plexus-maven-plugin.
commit b32c7d249a644cfe18a0654decfadd57c40c0073
Author: Torsten Werner <twerner at debian.org>
Date: Sun Dec 14 21:43:37 2008 +0000
new package plexus-maven-plugin
---
debian/changelog | 5 ++
debian/compat | 1 +
debian/control | 27 +++++++++++
debian/copyright | 61 +++++++++++++++++++++++++
debian/orig-tar.sh | 16 +++++++
debian/patches/doxia.diff | 114 ++++++++++++++++++++++++++++++++++++++++++++++
debian/patches/pom.diff | 81 ++++++++++++++++++++++++++++++++
debian/patches/series | 2 +
debian/rules | 10 ++++
debian/watch | 3 ++
10 files changed, 320 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c874120
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+plexus-maven-plugin (1.3.8-1) unstable; urgency=low
+
+ * Initial release. (Closes: #)
+
+ -- Torsten Werner <twerner at debian.org> Sun, 14 Dec 2008 22:30:57 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4c2f04b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: plexus-maven-plugin
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, openjdk-6-jdk, quilt, maven-debian-helper,
+ libplexus-cdc-java
+Standards-Version: 3.8.0
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/plexus-maven-helper
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/plexus-maven-helper/
+Homepage: http://plexus.codehaus.org/plexus-maven-plugin/
+
+Package: libplexus-maven-plugin-java
+Architecture: all
+Depends: ${misc:Depends}, default-java | java2-runtime
+Description: Maven plugin for the Plexus Component Descriptor Creator
+ The Plexus project provides a full software stack for creating and
+ executing software projects. Based on the Plexus container, the applications
+ can utilise component-oriented programming to build modular, reusable
+ components that can easily be assembled and reused.
+ .
+ The Component Descriptor Creator (or CDC for short) is a tool that will create
+ the components.xml file from your Java code. It uses JavaDoc tags to gather the
+ information it needs to create the component descriptor.
+ .
+ This package ships a Maven plugin to automatically generate the component
+ descriptor file during the build process.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2d80f07
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,61 @@
+This package was debianized by Torsten Werner<twerner at debian.org>
+Sat Nov 29 17:33:45 CET 2008
+
+plexus-maven-plugin was downloaded from
+http://plexus.codehaus.org/plexus-maven-plugin/
+
+FIXME
+
+Copyright: 2006-2008 The Codehaus Foundation
+
+License:
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+The full text of the license can be found in
+'/usr/share/common-licenses/Apache-2.0'.
+
+----------
+
+Files:
+
+ src/main/java/org/codehaus/plexus/cdc/*.java
+ src/main/java/org/codehaus/plexus/cdc/gleaner/ComponentGleanerException.java
+ src/main/java/org/codehaus/plexus/cdc/gleaner/QDoxComponentGleaner.java
+ src/main/java/org/codehaus/plexus/cdc/merge/*
+ test/java/org/codehaus/plexus/cdc/merge/ComponentsXmlMergerTest.java
+
+Copyright: 2006 The Codehaus Foundation
+
+License:
+
+ The MIT License
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
+ this software and associated documentation files (the "Software"), to deal in
+ the Software without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+ of the Software, and to permit persons to whom the Software is furnished to do
+ so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
new file mode 100755
index 0000000..2aea1ec
--- /dev/null
+++ b/debian/orig-tar.sh
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+TAR=../plexus-maven-plugin_$2.orig.tar.gz
+DIR=plexus-maven-plugin-$2
+TAG=plexus-maven-plugin-$2
+
+svn export http://svn.codehaus.org/plexus/archive/plexus-maven-plugin/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/patches/doxia.diff b/debian/patches/doxia.diff
new file mode 100644
index 0000000..fd00d3a
--- /dev/null
+++ b/debian/patches/doxia.diff
@@ -0,0 +1,114 @@
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/PlexusComponentsReport.java b/src/main/java/org/codehaus/plexus/maven/plugin/PlexusComponentsReport.java
+index 4485c27..14a2f5e 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/PlexusComponentsReport.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/PlexusComponentsReport.java
+@@ -31,8 +31,8 @@ import java.util.Locale;
+ import org.apache.maven.project.MavenProject;
+ import org.apache.maven.reporting.AbstractMavenReport;
+ import org.apache.maven.reporting.MavenReportException;
+-import org.codehaus.doxia.sink.Sink;
+-import org.codehaus.doxia.site.renderer.SiteRenderer;
++import org.apache.maven.doxia.sink.Sink;
++import org.apache.maven.doxia.siterenderer.Renderer;
+ import org.codehaus.plexus.maven.plugin.report.ComponentSet;
+ import org.jdom.Document;
+ import org.jdom.JDOMException;
+@@ -62,9 +62,9 @@ public class PlexusComponentsReport
+ private MavenProject project;
+
+ /**
+- * @component org.codehaus.doxia.site.renderer.SiteRenderer
++ * @component org.apache.maven.doxia.siterenderer.DefaultSiteRenderer
+ */
+- private SiteRenderer siteRenderer;
++ private Renderer siteRenderer;
+
+ /**
+ * @parameter expression="${project.reporting.outputDirectory}
+@@ -114,7 +114,7 @@ public class PlexusComponentsReport
+ return project;
+ }
+
+- protected SiteRenderer getSiteRenderer()
++ protected Renderer getSiteRenderer()
+ {
+ return siteRenderer;
+ }
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/Component.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/Component.java
+index 675d043..ab5a5bf 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/Component.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/Component.java
+@@ -19,7 +19,7 @@ package org.codehaus.plexus.maven.plugin.report;
+ import java.util.Iterator;
+ import java.util.List;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.codehaus.plexus.util.StringUtils;
+ import org.jdom.Element;
+
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/ComponentSet.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/ComponentSet.java
+index 167b1df..69c5d02 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/ComponentSet.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/ComponentSet.java
+@@ -17,7 +17,7 @@ package org.codehaus.plexus.maven.plugin.report;
+ */
+ import java.util.List;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.jdom.Element;
+
+ /**
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/Components.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/Components.java
+index d865971..aeefa9a 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/Components.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/Components.java
+@@ -25,7 +25,7 @@ import java.util.SortedSet;
+ import java.util.TreeMap;
+ import java.util.TreeSet;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.jdom.Element;
+
+ /**
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/Configuration.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/Configuration.java
+index 835c89d..63272d4 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/Configuration.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/Configuration.java
+@@ -24,7 +24,7 @@
+
+ package org.codehaus.plexus.maven.plugin.report;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.jdom.Element;
+
+ /**
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirement.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirement.java
+index ae29488..c315060 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirement.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirement.java
+@@ -24,7 +24,7 @@
+
+ package org.codehaus.plexus.maven.plugin.report;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.codehaus.plexus.util.StringUtils;
+ import org.jdom.Element;
+
+diff --git a/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirements.java b/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirements.java
+index d1c06a6..fb7e62a 100644
+--- a/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirements.java
++++ b/src/main/java/org/codehaus/plexus/maven/plugin/report/Requirements.java
+@@ -28,7 +28,7 @@ import java.util.ArrayList;
+ import java.util.Iterator;
+ import java.util.List;
+
+-import org.codehaus.doxia.sink.Sink;
++import org.apache.maven.doxia.sink.Sink;
+ import org.jdom.Element;
+
+ /**
diff --git a/debian/patches/pom.diff b/debian/patches/pom.diff
new file mode 100644
index 0000000..0b088e2
--- /dev/null
+++ b/debian/patches/pom.diff
@@ -0,0 +1,81 @@
+diff --git a/pom.xml b/pom.xml
+index 6f98e38..66e13ab 100644
+--- a/pom.xml
++++ b/pom.xml
+@@ -7,7 +7,7 @@
+ <parent>
+ <artifactId>plexus</artifactId>
+ <groupId>org.codehaus.plexus</groupId>
+- <version>1.0.10</version>
++ <version>1.0.13</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+@@ -33,15 +33,27 @@
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+- <version>1.4.3</version>
++ <version>1.5.2</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/slf4j-api.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+- <version>1.4.3</version>
++ <version>1.5.2</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/slf4j-simple.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
++ <artifactId>maven-core</artifactId>
++ <version>2.0.9</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/maven2.jar</systemPath>
++ </dependency>
++ <!--
++ <dependency>
++ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0.5</version>
+ </dependency>
+@@ -54,17 +66,34 @@
+ <groupId>org.apache.maven.reporting</groupId>
+ <artifactId>maven-reporting-api</artifactId>
+ <version>2.0</version>
+- </dependency>
++ </dependency>
++ -->
+ <dependency>
+ <groupId>org.apache.maven.reporting</groupId>
+ <artifactId>maven-reporting-impl</artifactId>
+- <version>2.0</version>
++ <version>2.0.4.1</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/maven-reporting-impl.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-cdc</artifactId>
+- <version>1.0-alpha-13</version>
++ <version>${org.codehaus.plexus.plexus-cdc.version}</version>
+ </dependency>
++ <dependency>
++ <groupId>org.apache.maven.doxia</groupId>
++ <artifactId>doxia-sink-api</artifactId>
++ <version>1.0-alpha-11</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/doxia-sink-api.jar</systemPath>
++ </dependency>
++ <dependency>
++ <groupId>org.apache.maven.doxia</groupId>
++ <artifactId>doxia-site-renderer</artifactId>
++ <version>1.0-alpha-11</version>
++ <scope>system</scope>
++ <systemPath>/usr/share/java/doxia-site-renderer.jar</systemPath>
++ </dependency>
+ </dependencies>
+
+ <scm>
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..225539b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+pom.diff
+doxia.diff
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b23788c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/maven.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+
+JAVA_HOME := /usr/lib/jvm/java-6-openjdk
+
+get-orig-source:
+ uscan --force-download --rename
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f1cac9b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://svn.codehaus.org/plexus/archive/plexus-maven-plugin/tags/ \
+ plexus-maven-plugin-(.*)/ debian debian/orig-tar.sh
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/plexus-maven-plugin.git
More information about the pkg-java-commits
mailing list