debian/0000755000000000000000000000000011640702057007170 5ustar debian/maven.rules0000644000000000000000000000301011632765205011351 0ustar # Maven rules - transform Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ org.apache.maven.doxia doxia-decoration-model jar s/.*/debian/ * * org.apache.maven.doxia doxia-logging-api jar s/.*/debian/ * * org.apache.maven.shared maven-doxia-tools jar s/.*/debian/ * * org.codehaus.plexus plexus-container-default jar s/1\.0-alpha.*/1.0-alpha/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing-harness * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing-tools * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-plugin-testing * s/.*/debian/ * * s/org.apache.maven.shared/org.apache.maven.plugin-testing/ maven-test-tools * s/.*/debian/ * * debian/copyright0000644000000000000000000000074111632765205011132 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: Maven Doxia Integration Tools Source: http://svn.apache.org/repos/asf/maven/shared/tags/ Files: * Copyright: 2002-2011, Apache Contributors License: Apache-2.0 Files: debian/* Copyright: 2008-2011, Torsten Werner > License: Apache-2.0 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' debian/patches/0000755000000000000000000000000011640701751010617 5ustar debian/patches/0002-remove-setLastModified.patch0000644000000000000000000000171111632763700016575 0ustar From: Damien Raude-Morvan Date: Sun, 11 Sep 2011 00:33:43 +0200 Subject: remove setLastModified --- .../apache/maven/doxia/tools/DefaultSiteTool.java | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java b/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java index f3fe8c7..f027a7e 100644 --- a/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java +++ b/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java @@ -1259,7 +1259,6 @@ public class DefaultSiteTool inputEncoding, outputEncoding ); decoration = readDecorationModel( siteDescriptorContent ); - decoration.setLastModified( siteDescriptorLastModified ); } MavenProject parentProject = getParentProject( project, reactorProjects, localRepository ); -- debian/patches/series0000644000000000000000000000011211632763700012031 0ustar 0001-fix-for-plexus-interpolation.patch 0002-remove-setLastModified.patch debian/patches/0001-fix-for-plexus-interpolation.patch0000644000000000000000000000406311632763700020001 0ustar From: Damien Raude-Morvan Date: Sun, 11 Sep 2011 00:33:43 +0200 Subject: fix for plexus-interpolation --- .../apache/maven/doxia/tools/DefaultSiteTool.java | 19 ++++++++++++++----- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java b/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java index fb65087..f3fe8c7 100644 --- a/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java +++ b/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java @@ -45,10 +45,11 @@ import org.codehaus.plexus.logging.AbstractLogEnabled; import org.codehaus.plexus.util.IOUtil; import org.codehaus.plexus.util.ReaderFactory; import org.codehaus.plexus.util.StringUtils; -import org.codehaus.plexus.util.interpolation.EnvarBasedValueSource; -import org.codehaus.plexus.util.interpolation.MapBasedValueSource; -import org.codehaus.plexus.util.interpolation.ObjectBasedValueSource; -import org.codehaus.plexus.util.interpolation.RegexBasedInterpolator; +import org.codehaus.plexus.interpolation.InterpolationException; +import org.codehaus.plexus.interpolation.EnvarBasedValueSource; +import org.codehaus.plexus.interpolation.MapBasedValueSource; +import org.codehaus.plexus.interpolation.ObjectBasedValueSource; +import org.codehaus.plexus.interpolation.RegexBasedInterpolator; import org.codehaus.plexus.util.xml.pull.XmlPullParserException; import java.io.File; @@ -672,7 +673,15 @@ public class DefaultSiteTool interpolator.addValueSource( new MapBasedValueSource( aProject.getProperties() ) ); - siteDescriptorContent = interpolator.interpolate( siteDescriptorContent, "project" ); + try + { + siteDescriptorContent = interpolator.interpolate( siteDescriptorContent, "project" ); + } + catch ( InterpolationException e ) + { + throw new SiteToolException( "IOException: cannot interpolate siteDescriptorContent: " + e.getMessage(), + e ); + } props.put( "inputEncoding", inputEncoding ); -- debian/maven.publishedRules0000644000000000000000000000164211632765205013222 0ustar # Maven published rules - additional rules to publish, to help # the packaging work of Debian maintainers using mh_make # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ debian/rules0000755000000000000000000000036011632765205010254 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/orig-tar.sh0000755000000000000000000000055211226226373011257 0ustar #!/bin/sh set -e TAR=../maven-doxia-tools_$2.orig.tar.gz DIR=maven-doxia-tools-$2 TAG=maven-doxia-tools-$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 debian/changelog0000644000000000000000000000600411640701657011047 0ustar maven-doxia-tools (1.2.1-2) unstable; urgency=low * Ignore test errors and failures because some tests require network access. (Closes: #643545) -- Torsten Werner Wed, 28 Sep 2011 22:28:16 +0200 maven-doxia-tools (1.2.1-1) unstable; urgency=low * Newer but not newest upstream release. * Refresh patches. * Update Standards-Version: 3.9.2. * Use Maven to build the package. * Add a documentation package. * Update debian/copyright. -- Torsten Werner Sun, 11 Sep 2011 00:53:11 +0200 maven-doxia-tools (1.2-3) unstable; urgency=low * Add myself as Uploaders * Replace usage of outdated libplexus-component-metadata-java by libplexus-maven-plugin-java (to generate Plexus component.xml): - debian/control: Build-Depends on libplexus-maven-plugin-java, velocity and libplexus-velocity-java - debian/rules: Pass "1.3.8" to build.xml as plexus-maven-plugin.version - debian/build.properties: Use plexus-maven-plugin:descriptor goal This should fix issue "Component descriptor cannot be found in the component repository: org.apache.maven.artifact.resolver.ArtifactResolver" when using maven-site-plugin. -- Damien Raude-Morvan Sat, 20 Mar 2010 23:34:40 +0100 maven-doxia-tools (1.2-2) unstable; urgency=low * Rebuild package with maven-repo-helper 1.0.4. -- Torsten Werner Wed, 10 Mar 2010 22:23:59 +0100 maven-doxia-tools (1.2-1) unstable; urgency=low * New upstream version * Standards-Version to 3.8.4 * debhelper compat to 7 * Source format 3.0 (quilt) - removed quilt as build dependency * Updated plexus patch * Added patch to remove setLastModified call -- Gabriele Giacone <1o5g4r8o@gmail.com> Fri, 26 Feb 2010 01:58:46 +0100 maven-doxia-tools (1.0.2-2) unstable; urgency=low * Fix groupId for maven-plugin-testing-harness dependency in the Maven POM. -- Ludovic Claude Sun, 26 Jul 2009 16:17:31 +0100 maven-doxia-tools (1.0.2-1) experimental; urgency=low * New upstream version, add myself to Uploaders * Change section to java, bump up Standards-Version to 3.8.1 * Bump up debhelper to 6 * Add the Maven POM to the package, * Add a Build-Depends-Indep dependency on maven-repo-helper * Use mh_installpom and mh_installjar to install the POM and the jar to the Maven repository * Remove Depends on Java runtimes as it is a library * Use default-jdk for the build * Remove the patch for the POM as it's no longer needed, use ant for the build instead of Maven (to avoid circular build dependencies from maven-debian-helper) * Add a dependency on doxia-sitetools and maven2-core * Remove the dependency on doxia, as it is transitively reachable from doxia-sitetools -- Ludovic Claude Fri, 15 May 2009 00:49:08 +0100 maven-doxia-tools (1.0.1-1) unstable; urgency=low * Initial release. (Closes: #508837) -- Torsten Werner Tue, 06 Jan 2009 21:15:11 +0100 debian/README.source0000644000000000000000000000045511632765205011360 0ustar Information about maven-doxia-tools ------------------------------ This package was debianized using the mh_make command from the maven-debian-helper package. The build system uses Maven but prevents it from downloading anything from the Internet, making the build compliant with the Debian policy. debian/libmaven-doxia-tools-java.poms0000644000000000000000000000273111632765205015054 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM or # --no-parent: remove the tag from the POM # --package=: an alternative package to use when installing this POM # and its artifact # --has-package-version: to indicate that the original version of the POM is the same as the upstream part # of the version for the package. # --keep-elements=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: path to the build artifact associated with this POM, # it will be installed when using the command mh_install # --java-lib: install the jar into /usr/share/java to comply with Debian # packaging guidelines # --usj-name=: name to use when installing the library in /usr/share/java # --usj-version=: version to use when installing the library in /usr/share/java # --no-usj-versionless: don't install the versionless link in /usr/share/java # --dest-jar=: the destination for the real jar # it will be installed with mh_install. # --classifier=: Optional, the classifier for the jar. Empty by default. # --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created # temporarily for certain artifacts such as Javadoc jars. # pom.xml --no-parent --has-package-version debian/watch0000644000000000000000000000016311121545040010210 0ustar version=3 http://svn.apache.org/repos/asf/maven/shared/tags/ \ maven-doxia-tools-(.*)/ debian debian/orig-tar.sh debian/control0000644000000000000000000000573011632765205010605 0ustar Source: maven-doxia-tools Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Torsten Werner , Damien Raude-Morvan Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.4) Build-Depends-Indep: libplexus-maven-plugin-java, libcommons-io-java, libdoxia-java, libdoxia-sitetools-java, libmaven2-core-java, libplexus-container-default-java, libplexus-i18n-java, libplexus-utils-java, libmaven-plugin-testing-java, default-jdk-doc, libdoxia-java-doc, libmaven2-core-java-doc, libplexus-container-default-java-doc, libplexus-utils-java-doc, libmaven-javadoc-plugin-java Standards-Version: 3.9.2 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-doxia-tools Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-doxia-tools/ Homepage: http://maven.apache.org/shared/maven-doxia-tools/ Package: libmaven-doxia-tools-java Architecture: all Depends: ${misc:Depends}, ${maven:Depends} Recommends: ${maven:OptionalDepends} Suggests: libmaven-doxia-tools-java-doc Description: utilities for integrating Doxia in Maven 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 shared component has some utilities that are useful when integrating Doxia in Maven, mainly for site generation and report creation. Package: libmaven-doxia-tools-java-doc Architecture: all Section: doc Depends: ${misc:Depends}, ${maven:DocDepends} Recommends: ${maven:DocOptionalDepends} Suggests: libmaven-doxia-tools-java Description: Documentation for Maven Doxia Integration Tools 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 contains the API documentation of libmaven-doxia-tools-java. debian/libmaven-doxia-tools-java-doc.doc-base.api0000644000000000000000000000057111632765205017066 0ustar Document: libmaven-doxia-tools-java Title: API Javadoc for Maven Doxia Integration Tools Author: Maven Doxia Integration Tools developers Abstract: This is the API Javadoc provided for the libmaven-doxia-tools-java library. Section: Programming Format: HTML Index: /usr/share/doc/libmaven-doxia-tools-java/api/index.html Files: /usr/share/doc/libmaven-doxia-tools-java/api/* debian/maven.cleanIgnoreRules0000644000000000000000000000150111632765205013463 0ustar # Maven clean ignore rules - ignore some Maven dependencies and plugins # during the clean phase of a Maven build # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM before mvn clean is called # junit junit jar s/3\\..*/3.x/ debian/source/0000755000000000000000000000000011640701751010470 5ustar debian/source/format0000644000000000000000000000001411341620660011673 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211341620660010363 0ustar 7 debian/maven.ignoreRules0000644000000000000000000000144211632765205012524 0ustar # Maven ignore rules - ignore some Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM # junit junit jar s/3\\..*/3.x/ org.codehaus.mojo l10n-maven-plugin * * * * debian/libmaven-doxia-tools-java-doc.install0000644000000000000000000000007611632765205016307 0ustar target/apidocs/* usr/share/doc/libmaven-doxia-tools-java/api debian/maven.properties0000644000000000000000000000024011640701657012415 0ustar # Include here properties to pass to Maven during the build. # For example: # maven.test.skip=true maven.test.error.ignore=true maven.test.failure.ignore=true