[pkg-java] r7581 - in trunk: . maven-compiler-plugin maven-compiler-plugin/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Sun Dec 7 19:36:39 UTC 2008


Author: twerner
Date: 2008-12-07 19:36:39 +0000 (Sun, 07 Dec 2008)
New Revision: 7581

Added:
   trunk/maven-compiler-plugin/
   trunk/maven-compiler-plugin/debian/
   trunk/maven-compiler-plugin/debian/ant.properties
   trunk/maven-compiler-plugin/debian/build.xml
   trunk/maven-compiler-plugin/debian/changelog
   trunk/maven-compiler-plugin/debian/compat
   trunk/maven-compiler-plugin/debian/control
   trunk/maven-compiler-plugin/debian/copyright
   trunk/maven-compiler-plugin/debian/maven-settings.xml
   trunk/maven-compiler-plugin/debian/orig-tar.sh
   trunk/maven-compiler-plugin/debian/rules
   trunk/maven-compiler-plugin/debian/watch
Log:
new package maven-compiler-plugin


Added: trunk/maven-compiler-plugin/debian/ant.properties
===================================================================
--- trunk/maven-compiler-plugin/debian/ant.properties	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/ant.properties	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,4 @@
+javadoc.dir=build/api
+build.directory=target
+build.outputDirectory=target/classes
+maven.test.skip=true

Added: trunk/maven-compiler-plugin/debian/build.xml
===================================================================
--- trunk/maven-compiler-plugin/debian/build.xml	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/build.xml	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+
+<project name="pkg-java" default="package" basedir="..">
+
+  <property name="maven.build.xml" value="/usr/share/maven-ant-helper/maven-build.xml"/>
+  <property file="/usr/share/maven-ant-helper/maven-defaults.properties"/>
+
+  <target name="clean">
+    <ant target="clean" antfile="${maven.build.xml}" dir="."/>
+  </target>
+
+  <target name="package">
+    <java classname="org.codehaus.classworlds.Launcher"
+      classpath="/usr/share/maven2/boot/classworlds.jar"
+      failonerror="true" fork="true">
+      <sysproperty key="classworlds.conf" value="/etc/maven2/m2.conf"/>
+      <sysproperty key="maven.home" value="/usr/share/maven2"/>
+      <arg value="-Dmaven.test.skip"/>
+      <arg value="-s${basedir}/debian/maven-settings.xml"/>
+      <arg value="plugin:descriptor"/>
+    </java>
+    <ant target="package" antfile="${maven.build.xml}" dir=".">
+      <property name="artifactId" value="maven-compiler-plugin"/>
+    </ant>
+  </target>
+
+  <target name="javadoc">
+    <javadoc destdir="${javadoc.dir}">
+      <packageset dir="src/main/java/"/>
+    </javadoc>
+  </target>
+
+</project>

Added: trunk/maven-compiler-plugin/debian/changelog
===================================================================
--- trunk/maven-compiler-plugin/debian/changelog	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/changelog	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,5 @@
+maven-compiler-plugin (2.0.2-1) unstable; urgency=low
+
+  * Initial release. (Closes: #xxxxxx)
+
+ -- Torsten Werner <twerner at debian.org>  Thu, 04 Dec 2008 19:29:26 +0100

Added: trunk/maven-compiler-plugin/debian/compat
===================================================================
--- trunk/maven-compiler-plugin/debian/compat	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/compat	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1 @@
+5

Added: trunk/maven-compiler-plugin/debian/control
===================================================================
--- trunk/maven-compiler-plugin/debian/control	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/control	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,37 @@
+Source: maven-compiler-plugin
+Section: devel
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>
+Build-Depends: default-jdk, ant, debhelper (>= 5), cdbs, quilt, maven-ant-helper,
+ libmaven-plugin-tools-java, libplexus-compiler-api-java,
+ libplexus-compiler-manager-java, libplexus-compiler-javac-java
+Standards-Version: 3.8.0
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-compiler-plugin
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-compiler-plugin/
+Homepage: http://maven.apache.org/plugins/maven-compiler-plugin/
+
+Package: libmaven-compiler-plugin-java
+Architecture: all
+Section: devel
+Depends: ${misc:Depends}, default-jre | java2-runtime, libmaven-plugin-tools-java,
+ libplexus-compiler-api-java, libplexus-compiler-manager-java,
+ libplexus-compiler-javac-java
+Description: Maven compiler 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
+ .
+ The Compiler Plugin is used to compile the sources of your project. The
+ default compiler is javac and is used to compile Java sources.

Added: trunk/maven-compiler-plugin/debian/copyright
===================================================================
--- trunk/maven-compiler-plugin/debian/copyright	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/copyright	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,32 @@
+This package was debianized by Torsten Werner <twerner at debian.org>.
+
+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>.
+
+Copyright: 2006-2007 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'.

Added: trunk/maven-compiler-plugin/debian/maven-settings.xml
===================================================================
--- trunk/maven-compiler-plugin/debian/maven-settings.xml	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/maven-settings.xml	2008-12-07 19:36:39 UTC (rev 7581)
@@ -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-compiler-plugin/debian/orig-tar.sh
===================================================================
--- trunk/maven-compiler-plugin/debian/orig-tar.sh	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/orig-tar.sh	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+TAR=../maven-compiler-plugin_$2.orig.tar.gz
+DIR=maven-compiler-plugin-$2
+TAG=maven-compiler-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


Property changes on: trunk/maven-compiler-plugin/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/maven-compiler-plugin/debian/rules
===================================================================
--- trunk/maven-compiler-plugin/debian/rules	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/rules	2008-12-07 19:36:39 UTC (rev 7581)
@@ -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              := $(shell dpkg-parsechangelog | egrep '^Source:' | cut -f2 -d' ')
+VERSION              := $(shell dpkg-parsechangelog | egrep '^Version:' | sed 's/Version: \(.*\)-.*/\1/')
+JAVA_HOME            := /usr/lib/jvm/default-java
+DEB_JARS             := maven2 plexus-compiler-api plexus-compiler-manager \
+  plexus-utils
+DEB_ANT_BUILD_TARGET := package #javadoc
+DEB_ANT_BUILDFILE    := debian/build.xml
+DEB_ANT_ARGS         := -Dversion=$(VERSION)
+API_DOCS             := build/api
+
+get-orig-source:
+	uscan --force-download
+
+REPO    := /usr/share/maven-repo
+PLUGINS := $(REPO)/org/apache/maven/plugins
+
+binary-post-install/lib$(PACKAGE)-java::
+	dh_install target/*.jar $(PLUGINS)/$(PACKAGE)/$(VERSION)/
+	install -m644 pom.xml $(DEB_DESTDIR)$(PLUGINS)/$(PACKAGE)/$(VERSION)/$(PACKAGE)-$(VERSION).pom


Property changes on: trunk/maven-compiler-plugin/debian/rules
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/maven-compiler-plugin/debian/watch
===================================================================
--- trunk/maven-compiler-plugin/debian/watch	                        (rev 0)
+++ trunk/maven-compiler-plugin/debian/watch	2008-12-07 19:36:39 UTC (rev 7581)
@@ -0,0 +1,3 @@
+version=3
+http://svn.apache.org/repos/asf/maven/plugins/tags/ \
+  maven-compiler-plugin-(.*)/ debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list