[pkg-java] r8634 - in trunk/ilf: . debian

Torsten Werner twerner at alioth.debian.org
Sun Jun 28 18:41:30 UTC 2009


Author: twerner
Date: 2009-06-28 18:41:28 +0000 (Sun, 28 Jun 2009)
New Revision: 8634

Added:
   trunk/ilf/build.properties
   trunk/ilf/build.xml
   trunk/ilf/debian/
   trunk/ilf/debian/changelog
   trunk/ilf/debian/compat
   trunk/ilf/debian/control
   trunk/ilf/debian/copyright
   trunk/ilf/debian/orig-tar.sh
   trunk/ilf/debian/rules
   trunk/ilf/debian/watch
Removed:
   trunk/ilf/changelog
   trunk/ilf/compat
   trunk/ilf/control
   trunk/ilf/copyright
   trunk/ilf/orig-tar.sh
   trunk/ilf/rules
   trunk/ilf/watch
Log:
* Change Maintainer: Debian Java Maintainers.
* Update Standards-Version: 3.8.2 (no changes).
* Change Section: java.
* Change to sf redirector in debian/watch.

Added: trunk/ilf/build.properties
===================================================================
--- trunk/ilf/build.properties	                        (rev 0)
+++ trunk/ilf/build.properties	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,3 @@
+project.version=1.5.0
+installdir=/usr/share/java
+

Added: trunk/ilf/build.xml
===================================================================
--- trunk/ilf/build.xml	                        (rev 0)
+++ trunk/ilf/build.xml	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,25 @@
+<project name="ilf" basedir="." default="build">
+
+  <property file="./build.properties"/>
+  <property name="jarfile"
+    value="${ant.project.name}-${project.version}.jar"/>
+
+  <target name="build"
+    description="build the jar file">
+    <mkdir dir="build"/>
+    <javac srcdir="src" destdir="build"/>
+    <jar destfile="${jarfile}" basedir="build" index="yes"/>
+  </target>
+
+  <target name="install" depends="build"
+    description="installs the jar file">
+    <copy file="${jarfile}" todir="${destdir}${installdir}"/>
+  </target>
+
+  <target name="clean"
+     description="clean up the build dir">
+     <delete dir="build"/>
+     <delete file="${jarfile}"/>
+  </target>
+
+</project>

Deleted: trunk/ilf/changelog
===================================================================
--- trunk/ilf/changelog	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/changelog	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,20 +0,0 @@
-ilf (1.6.1-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner <twerner at debian.org>  Sun, 01 Mar 2009 09:35:47 +0100
-
-ilf (1.6.0-1) unstable; urgency=low
-
-  * New upstream release
-  * Switch from kaffe to default-jdk.
-  * Change/add control headers: Vcs-* and Homepage.
-  * Bump Up Standards-Version: 3.8.0.
-
- -- Torsten Werner <twerner at debian.org>  Wed, 11 Feb 2009 23:07:01 +0100
-
-ilf (1.5.0-1) unstable; urgency=low
-
-  * Initial release (Closes: #420289)
-
- -- Torsten Werner <twerner at debian.org>  Sat, 21 Apr 2007 14:36:21 +0200

Deleted: trunk/ilf/compat
===================================================================
--- trunk/ilf/compat	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/compat	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1 +0,0 @@
-5

Deleted: trunk/ilf/control
===================================================================
--- trunk/ilf/control	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/control	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,19 +0,0 @@
-Source: ilf
-Section: libs
-Priority: optional
-Maintainer: Torsten Werner <twerner at debian.org>
-Build-Depends: ant, cdbs, debhelper (>= 5), default-jdk
-Standards-Version: 3.8.0
-Vcs-Browser: http://bollin.googlecode.com/svn/ilf/trunk
-Vcs-Svn: https://bollin.googlecode.com/svn/ilf/trunk
-Homepage: http://www.infonode.net
-
-Package: libilf-java
-Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre | java2-runtime
-Suggests: java-virtual-machine
-Description: InfoNode Look and Feel
- InfoNode Look and Feel is a Java Swing look and feel based on the Metal look
- and feel. It's designed to have a slim, clean appearance. It has support for
- themes.
- .

Deleted: trunk/ilf/copyright
===================================================================
--- trunk/ilf/copyright	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/copyright	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,29 +0,0 @@
-This package was debianized by Torsten Werner <twerner at debian.org> on
-Sat Apr 21 11:36:15 CEST 2007.
-
-It was downloaded from
-http://sourceforge.net/project/showfiles.php?group_id=110922&package_id=127905
-
-Upstream Author: NNL Technology <info at infonode.net>
-
-Copyright 2007 NNL Technology <info at infonode.net>
-
-License:
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
-
-
-The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
-


Property changes on: trunk/ilf/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Copied: trunk/ilf/debian/changelog (from rev 8628, trunk/ilf/changelog)
===================================================================
--- trunk/ilf/debian/changelog	                        (rev 0)
+++ trunk/ilf/debian/changelog	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,29 @@
+ilf (1.6.1-2) unstable; urgency=low
+
+  * Change Maintainer: Debian Java Maintainers.
+  * Update Standards-Version: 3.8.2 (no changes).
+  * Change Section: java.
+  * Change to sf redirector in debian/watch.
+
+ -- Torsten Werner <twerner at debian.org>  Sun, 28 Jun 2009 20:39:20 +0200
+
+ilf (1.6.1-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner <twerner at debian.org>  Sun, 01 Mar 2009 09:35:47 +0100
+
+ilf (1.6.0-1) unstable; urgency=low
+
+  * New upstream release
+  * Switch from kaffe to default-jdk.
+  * Change/add control headers: Vcs-* and Homepage.
+  * Bump Up Standards-Version: 3.8.0.
+
+ -- Torsten Werner <twerner at debian.org>  Wed, 11 Feb 2009 23:07:01 +0100
+
+ilf (1.5.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #420289)
+
+ -- Torsten Werner <twerner at debian.org>  Sat, 21 Apr 2007 14:36:21 +0200


Property changes on: trunk/ilf/debian/changelog
___________________________________________________________________
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/compat (from rev 8628, trunk/ilf/compat)
===================================================================
--- trunk/ilf/debian/compat	                        (rev 0)
+++ trunk/ilf/debian/compat	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1 @@
+5


Property changes on: trunk/ilf/debian/compat
___________________________________________________________________
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/control (from rev 8628, trunk/ilf/control)
===================================================================
--- trunk/ilf/debian/control	                        (rev 0)
+++ trunk/ilf/debian/control	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,18 @@
+Source: ilf
+Section: java
+Priority: optional
+Maintainer: Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), default-jdk
+Standards-Version: 3.8.2
+Vcs-Browser: http://bollin.googlecode.com/svn/ilf/trunk
+Vcs-Svn: https://bollin.googlecode.com/svn/ilf/trunk
+Homepage: http://www.infonode.net
+
+Package: libilf-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre | java2-runtime
+Suggests: java-virtual-machine
+Description: InfoNode Look and Feel
+ InfoNode Look and Feel is a Java Swing look and feel based on the Metal look
+ and feel. It's designed to have a slim, clean appearance. It has support for
+ themes.


Property changes on: trunk/ilf/debian/control
___________________________________________________________________
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/copyright (from rev 8628, trunk/ilf/copyright)
===================================================================
--- trunk/ilf/debian/copyright	                        (rev 0)
+++ trunk/ilf/debian/copyright	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,29 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Sat Apr 21 11:36:15 CEST 2007.
+
+It was downloaded from
+http://sourceforge.net/project/showfiles.php?group_id=110922&package_id=127905
+
+Upstream Author: NNL Technology <info at infonode.net>
+
+Copyright 2007 NNL Technology <info at infonode.net>
+
+License:
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+


Property changes on: trunk/ilf/debian/copyright
___________________________________________________________________
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/orig-tar.sh (from rev 8628, trunk/ilf/orig-tar.sh)
===================================================================
--- trunk/ilf/debian/orig-tar.sh	                        (rev 0)
+++ trunk/ilf/debian/orig-tar.sh	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+# clean up the upstream tarball
+unzip $3
+tar -c -z -f ilf_$2.orig.tar.gz ilf-gpl-$2
+rm -rf ilf-gpl-$2 $3
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv ilf_$2.orig.tar.gz $origDir
+  echo "moved ilf_$2.orig.tar.gz to $origDir"
+fi
+
+exit 0
+


Property changes on: trunk/ilf/debian/orig-tar.sh
___________________________________________________________________
Added: svn:executable
   + 
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/rules (from rev 8628, trunk/ilf/rules)
===================================================================
--- trunk/ilf/debian/rules	                        (rev 0)
+++ trunk/ilf/debian/rules	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,16 @@
+#!/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/default-java
+DEB_ANT_INSTALL_TARGET := install -Ddestdir=$(DEB_DESTDIR)
+PACKAGE                := ilf-$(DEB_UPSTREAM_VERSION)
+
+install/libilf-java::
+	dh_link /usr/share/java/$(PACKAGE).jar \
+	  /usr/share/java/ilf.jar
+
+get-orig-source:
+	uscan --force-download
+


Property changes on: trunk/ilf/debian/rules
___________________________________________________________________
Added: svn:executable
   + 
Added: svn:mergeinfo
   + 

Copied: trunk/ilf/debian/watch (from rev 8628, trunk/ilf/watch)
===================================================================
--- trunk/ilf/debian/watch	                        (rev 0)
+++ trunk/ilf/debian/watch	2009-06-28 18:41:28 UTC (rev 8634)
@@ -0,0 +1,3 @@
+version=3
+http://sf.net/infonode/ ilf-gpl-(.*)-src.zip debian debian/orig-tar.sh
+


Property changes on: trunk/ilf/debian/watch
___________________________________________________________________
Added: svn:mergeinfo
   + 

Deleted: trunk/ilf/orig-tar.sh
===================================================================
--- trunk/ilf/orig-tar.sh	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/orig-tar.sh	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,18 +0,0 @@
-#!/bin/sh -e
-
-# called by uscan with '--upstream-version' <version> <file>
-
-# clean up the upstream tarball
-unzip $3
-tar -c -z -f ilf_$2.orig.tar.gz ilf-gpl-$2
-rm -rf ilf-gpl-$2 $3
-
-# move to directory 'tarballs'
-if [ -r .svn/deb-layout ]; then
-  . .svn/deb-layout
-  mv ilf_$2.orig.tar.gz $origDir
-  echo "moved ilf_$2.orig.tar.gz to $origDir"
-fi
-
-exit 0
-

Deleted: trunk/ilf/rules
===================================================================
--- trunk/ilf/rules	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/rules	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,16 +0,0 @@
-#!/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/default-java
-DEB_ANT_INSTALL_TARGET := install -Ddestdir=$(DEB_DESTDIR)
-PACKAGE                := ilf-$(DEB_UPSTREAM_VERSION)
-
-install/libilf-java::
-	dh_link /usr/share/java/$(PACKAGE).jar \
-	  /usr/share/java/ilf.jar
-
-get-orig-source:
-	uscan --force-download
-

Deleted: trunk/ilf/watch
===================================================================
--- trunk/ilf/watch	2009-06-28 18:41:19 UTC (rev 8633)
+++ trunk/ilf/watch	2009-06-28 18:41:28 UTC (rev 8634)
@@ -1,4 +0,0 @@
-version=3
-http://heanet.dl.sourceforge.net/sourceforge/infonode/ ilf-gpl-(.*)-src.zip \
-  debian debian/orig-tar.sh
-




More information about the pkg-java-commits mailing list