This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-site-plugin.
commit db5de74eca0c5dcee812aa8ea755f9a6f01ee536 Author: Torsten Werner <[email protected]> Date: Mon Dec 15 22:15:49 2008 +0000 new package maven-site-plugin --- debian/changelog | 6 ++ debian/compat | 1 + debian/control | 33 ++++++++++ debian/copyright | 34 ++++++++++ debian/orig-tar.sh | 18 ++++++ debian/patches/pom.diff | 167 ++++++++++++++++++++++++++++++++++++++++++++++++ debian/patches/series | 1 + debian/rules | 10 +++ debian/watch | 4 ++ 9 files changed, 274 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f7cfe99 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +maven-site-plugin (2.0~beta7-1) unstable; urgency=low + + UNRELEASED + * Initial release. (Closes: #) + + -- Torsten Werner <[email protected]> Mon, 15 Dec 2008 23:08:42 +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..499d81d --- /dev/null +++ b/debian/control @@ -0,0 +1,33 @@ +Source: maven-site-plugin +Section: libs +Priority: optional +Maintainer: Debian Java Maintainers <[email protected]> +Uploaders: Torsten Werner <[email protected]> +Build-Depends: debhelper (>= 5), cdbs, openjdk-6-jdk, quilt, maven-debian-helper +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-site-plugin +Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-site-plugin/ +Homepage: http://maven.apache.org/plugins/maven-site-plugin/ + +Package: libmaven-site-plugin-java +Architecture: all +Depends: ${misc:Depends}, default-java | java2-runtime +Description: Maven Site Plugin for generating a site + 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 + . + The Maven 2 Site Plugin is used to generate a site for the project. The + generated site also includes the project's reports that were configured in the + <reporting> section of the POM. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b2d4b92 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Torsten Werner <[email protected]>. + +The Debian packaging is Copyright (c) 2008 Torsten Werner and is +licensed under the GNU General Public License version 3. On Debian +systems, the complete text of the GNU General Public License can be +found in '/usr/share/common-licenses/GPL'. + +The package was downloaded from <http://maven.apache.org/plugins/maven-site-plugin/>. + +FIXME + +Copyright: 2005-2008 The Apache Software Foundation. + +License: + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you 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-licenes/Apache-2.0'. diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh new file mode 100755 index 0000000..d0c7b1d --- /dev/null +++ b/debian/orig-tar.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +TAR=../maven-site-plugin_$2.orig.tar.gz +DIR=maven-site-plugin-$2 +TAG=$(echo maven-site-plugin-$2 | sed -e's,~beta,-beta-,') + +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 diff --git a/debian/patches/pom.diff b/debian/patches/pom.diff new file mode 100644 index 0000000..81552a1 --- /dev/null +++ b/debian/patches/pom.diff @@ -0,0 +1,167 @@ +diff --git a/pom.xml b/pom.xml +index 7427d08..9daa0d3 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -19,13 +19,16 @@ under the License. + --> + + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ++ <!-- + <parent> + <artifactId>maven-plugins</artifactId> + <groupId>org.apache.maven.plugins</groupId> + <version>11</version> + </parent> ++ --> + + <modelVersion>4.0.0</modelVersion> ++ <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <packaging>maven-plugin</packaging> + <name>Maven Site Plugin</name> +@@ -154,14 +157,26 @@ under the License. + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-plugin</artifactId> +- <version>2.4.2</version> ++ <version>${org.apache.maven.plugins.maven-plugin-plugin.version}</version> + </plugin> + </plugins> + </pluginManagement> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> +- <version>2.3</version> ++ <version>${org.apache.maven.plugins.maven-surefire-plugin.version}</version> ++ </plugin> ++ <!-- some source files don't build yet --> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-compiler-plugin</artifactId> ++ <configuration> ++ <excludes> ++ <exclude>**/SiteDeployMojo.java</exclude> ++ <exclude>**/SiteRunMojo.java</exclude> ++ <exclude>**/SiteStageDeployMojo.java</exclude> ++ </excludes> ++ </configuration> + </plugin> + </plugins> + </build> +@@ -214,6 +229,14 @@ under the License. + <!-- Maven --> + <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-artifact</artifactId> + <version>2.0.2</version> + </dependency> +@@ -247,17 +270,29 @@ under the License. + <artifactId>maven-reporting-api</artifactId> + <version>2.0.4</version> + </dependency> ++ --> + + <!-- Doxia --> + <dependency> + <groupId>org.apache.maven.doxia</groupId> ++ <artifactId>doxia-core</artifactId> ++ <version>${doxiaVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/doxia-core.jar</systemPath> ++ </dependency> ++ <dependency> ++ <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-module-xhtml</artifactId> + <version>${doxiaVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/doxia-module-xhtml.jar</systemPath> + </dependency> + <dependency> + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-sink-api</artifactId> + <version>${doxiaVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/doxia-sink-api.jar</systemPath> + </dependency> + + <!-- Doxia-sitetools --> +@@ -265,6 +300,8 @@ under the License. + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-decoration-model</artifactId> + <version>${doxiaSitetoolsVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/doxia-decoration-model.jar</systemPath> + <exclusions> + <exclusion> + <groupId>org.codehaus.plexus</groupId> +@@ -280,6 +317,8 @@ under the License. + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-site-renderer</artifactId> + <version>${doxiaSitetoolsVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/doxia-site-renderer.jar</systemPath> + <exclusions> + <exclusion> + <groupId>org.codehaus.plexus</groupId> +@@ -303,23 +342,29 @@ under the License. + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-provider-api</artifactId> + <version>${wagonVersion}</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/wagon-provider-api.jar</systemPath> + </dependency> + + <!-- Plexus --> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-archiver</artifactId> +- <version>1.0-alpha-7</version> ++ <version>${org.codehaus.plexus.plexus-archiver.version}</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + <version>1.0-alpha-9</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/plexus-container-default.jar</systemPath> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-i18n</artifactId> + <version>1.0-beta-7</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/plexus-i18n.jar</systemPath> + <exclusions> + <exclusion> + <groupId>org.codehaus.plexus</groupId> +@@ -327,6 +372,7 @@ under the License. + </exclusion> + </exclusions> + </dependency> ++ <!-- + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> +@@ -338,6 +384,14 @@ under the License. + <artifactId>jetty</artifactId> + <version>6.1.5</version> + </dependency> ++ --> ++ <dependency> ++ <groupId>tomcat</groupId> ++ <artifactId>servlet-api</artifactId> ++ <version>2.4</version> ++ <scope>system</scope> ++ <systemPath>/usr/share/java/servlet-api.jar</systemPath> ++ </dependency> + + <!-- test --> + <dependency> diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..7740e23 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +pom.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..1205372 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=3 +opts=uversionmangle=s{-beta-}{~beta} \ + http://svn.apache.org/repos/asf/maven/plugins/tags/ \ + maven-site-plugin-(.*)/ debian debian/orig-tar.sh -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-site-plugin.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

