[pkg-java] r8032 - in trunk: . ivy ivy/debian

varun at alioth.debian.org varun at alioth.debian.org
Mon Mar 2 06:41:41 UTC 2009


Author: varun
Date: 2009-03-02 06:41:41 +0000 (Mon, 02 Mar 2009)
New Revision: 8032

Added:
   trunk/ivy/
   trunk/ivy/debian/
   trunk/ivy/debian/ant.properties
   trunk/ivy/debian/build.xml
   trunk/ivy/debian/changelog
   trunk/ivy/debian/compat
   trunk/ivy/debian/control
   trunk/ivy/debian/copyright
   trunk/ivy/debian/orig-tar.sh
   trunk/ivy/debian/rules
   trunk/ivy/debian/watch
Log:
* New package ivy.



Property changes on: trunk/ivy/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/ivy/debian/ant.properties
===================================================================
--- trunk/ivy/debian/ant.properties	                        (rev 0)
+++ trunk/ivy/debian/ant.properties	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,4 @@
+project.name=ivy
+class.dir=classes
+source.dir=src/java
+jar.name=ivy.jar

Added: trunk/ivy/debian/build.xml
===================================================================
--- trunk/ivy/debian/build.xml	                        (rev 0)
+++ trunk/ivy/debian/build.xml	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<project default="jar" name="${project.name}" basedir="..">
+  <property file="./build.properties" />
+  <patternset id="compiler.resources">
+    <include name="**/?*.properties" />
+  </patternset>
+  <target name="clean">
+    <delete dir="${class.dir}" quiet="true" />
+    <delete file="${jar.name}" quiet="true" />
+    <delete dir="${doc.dir}" quiet="true" />
+  </target>
+
+  <target name="compile">
+    <mkdir dir="${class.dir}" />
+    <javac srcdir="${source.dir}" destdir="${class.dir}"
+	   debug="true" source="1.5"/>
+    <copy todir="${class.dir}">
+      <fileset dir="${source.dir}">
+        <patternset refid="compiler.resources" />
+      </fileset>
+    </copy>
+  </target>
+
+  <target name="jar" description="o Create the jar" depends="compile">
+    <jar jarfile="${jar.name}" basedir="${class.dir}"/>
+  </target>
+
+  <target name="javadoc" description="Creates Javadoc documentation">
+    <mkdir dir="${doc.dir}" />
+    <javadoc packagenames="com.sun.*"
+    sourcepath="${source.dir}" destdir="${doc.dir}" />
+  </target>
+
+</project>

Added: trunk/ivy/debian/changelog
===================================================================
--- trunk/ivy/debian/changelog	                        (rev 0)
+++ trunk/ivy/debian/changelog	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,5 @@
+ivy (2.0.0-1) unstable; urgency=low
+
+  * Initial upload
+
+ -- Varun Hiremath <varun at debian.org>  Mon, 02 Mar 2009 01:39:48 -0500

Added: trunk/ivy/debian/compat
===================================================================
--- trunk/ivy/debian/compat	                        (rev 0)
+++ trunk/ivy/debian/compat	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1 @@
+6

Added: trunk/ivy/debian/control
===================================================================
--- trunk/ivy/debian/control	                        (rev 0)
+++ trunk/ivy/debian/control	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,22 @@
+Source: ivy
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varun at debian.org>, Torsten Werner <twerner at debian.org>
+Build-Depends: cdbs, debhelper (>= 6)
+Build-Depends-Indep: ant, openjdk-6-jdk, libcommons-httpclient-java,
+ libcommons-lang-java, libcommons-cli-java, liboro-java,
+ libcommons-collections-java, libcommons-vfs-java, junit,
+ libjsch-java
+Standards-Version: 3.8.0
+Homepage: http://ant.apache.org/ivy/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/ivy
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/ivy
+
+Package: ivy
+Architecture: all
+Depends: default-jre | java2-runtime
+Description: The agile dependency manager
+ Ivy is a very powerful dependency manager oriented toward Java
+ dependency management, even though it could be used to manage
+ dependencies of any kind.

Added: trunk/ivy/debian/copyright
===================================================================
--- trunk/ivy/debian/copyright	                        (rev 0)
+++ trunk/ivy/debian/copyright	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,16 @@
+This package was debianized by Varun Hiremath <varun at debian.org> on
+Mon,  2 Mar 2009 01:09:21 -0500
+
+It was downloaded from http://www.apache.org/dist/ant/ivy/
+
+Upstream Authors: The Apache Software Foundation.
+
+Copyright: (C) 2009 The Apache Software Foundation.
+
+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'
+
+The Debian packaging is (C) 2009, Varun Hiremath <varun at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/ivy/debian/orig-tar.sh
===================================================================
--- trunk/ivy/debian/orig-tar.sh	                        (rev 0)
+++ trunk/ivy/debian/orig-tar.sh	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv $3 $origDir
+  echo "moved $3 to $origDir"
+fi


Property changes on: trunk/ivy/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/ivy/debian/rules
===================================================================
--- trunk/ivy/debian/rules	                        (rev 0)
+++ trunk/ivy/debian/rules	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+JAVA_HOME 		:= /usr/lib/jvm/java-6-openjdk
+DEB_ANT_BUILD_TARGET	:= jar
+DEB_ANT_BUILDFILE	:= debian/build.xml
+DEB_JARS		:= commons-httpclient commons-lang commons-cli commons-collections\
+			commons-vfs junit jsch oro
+
+install/ivy::
+	install -m 644 -D ivy.jar $(DEB_DESTDIR)/usr/share/java/ivy-$(DEB_UPSTREAM_VERSION).jar
+	dh_link /usr/share/java/ivy-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/ivy.jar
+
+get-orig-source:
+	-uscan --force-download --rename


Property changes on: trunk/ivy/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/ivy/debian/watch
===================================================================
--- trunk/ivy/debian/watch	                        (rev 0)
+++ trunk/ivy/debian/watch	2009-03-02 06:41:41 UTC (rev 8032)
@@ -0,0 +1,2 @@
+version=3
+http://www.apache.org/dist/ant/ivy/([\d\.]+)/apache-ivy-([\d\.]+)-src.tar.gz debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list