[pkg-java] r4407 - in trunk: . kunststoff kunststoff/debian
varun-guest at alioth.debian.org
varun-guest at alioth.debian.org
Mon Oct 15 07:46:59 UTC 2007
Author: varun-guest
Date: 2007-10-15 07:46:59 +0000 (Mon, 15 Oct 2007)
New Revision: 4407
Added:
trunk/kunststoff/
trunk/kunststoff/debian/
trunk/kunststoff/debian/README.Debian-source
trunk/kunststoff/debian/ant.properties
trunk/kunststoff/debian/build.xml
trunk/kunststoff/debian/changelog
trunk/kunststoff/debian/compat
trunk/kunststoff/debian/control
trunk/kunststoff/debian/copyright
trunk/kunststoff/debian/orig-tar.sh
trunk/kunststoff/debian/rules
trunk/kunststoff/debian/watch
Log:
* Initial inject of kunststoff to pkg-java svn
Property changes on: trunk/kunststoff/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: trunk/kunststoff/debian/README.Debian-source
===================================================================
--- trunk/kunststoff/debian/README.Debian-source (rev 0)
+++ trunk/kunststoff/debian/README.Debian-source 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,13 @@
+kunststoff
+==========
+
+The upstream supplied source package contains binary jar files.
+Currently no clean source distribution exists. Therefore, the upstream
+sources were modified to comply with the Debian Free Software
+Guidelines.
+
+Use the rules/get-orig-source target to create the orig.tar.gz.
+For more details on repackaging of upstream sources please see the
+debian/orig-tar.sh file.
+
+-- Varun Hiremath <varunhiremath at gmail.com> Mon, 27 Aug 2007 19:02:53 +0530
Added: trunk/kunststoff/debian/ant.properties
===================================================================
--- trunk/kunststoff/debian/ant.properties (rev 0)
+++ trunk/kunststoff/debian/ant.properties 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,3 @@
+class.dir=class
+source.dir=src
+jar.name=kunststoff.jar
Added: trunk/kunststoff/debian/build.xml
===================================================================
--- trunk/kunststoff/debian/build.xml (rev 0)
+++ trunk/kunststoff/debian/build.xml 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="kunststoff" basedir="..">
+ <property file="./build.properties"/>
+
+ <target name="clean">
+ <delete dir="${class.dir}" quiet="true"/>
+ <delete file="${jar.name}" quiet="true"/>
+ </target>
+
+ <target name="compile">
+ <mkdir dir="${class.dir}"/>
+ <javac srcdir="${source.dir}" destdir="${class.dir}"
+ deprecation="true" debug="true" optimize="false"/>
+ </target>
+
+ <target name="jar" description="o Create the jar" depends="compile">
+ <jar jarfile="${jar.name}" basedir="${class.dir}"/>
+ </target>
+
+ <target name="install" depends="jar">
+ <mkdir dir="${destdir}/usr/share/java/" />
+ <copy todir="${destdir}/usr/share/java/">
+ <fileset file="${jar.name}" />
+ </copy>
+ </target>
+</project>
Added: trunk/kunststoff/debian/changelog
===================================================================
--- trunk/kunststoff/debian/changelog (rev 0)
+++ trunk/kunststoff/debian/changelog 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,34 @@
+kunststoff (2.0.2-4) unstable; urgency=low
+
+ * Move the package to pkg-java svn.
+ * debian/control:
+ + Set Priority to optional from extra
+ + Set Maintainer to Debian Java Maintainers and add myself to Uploaders
+ * Move the build scripts to debian dir.
+ * Remove the hard coded version from build.properties and install the
+ versioned jar from debian/rules.
+
+ -- Varun Hiremath <varunhiremath at gmail.com> Thu, 11 Oct 2007 13:48:46 +0530
+
+kunststoff (2.0.2-3) unstable; urgency=low
+
+ [ Varun Hiremath ]
+ * Add debian/README.Debian-source file.
+ * debian/control: add XS-Vcs-{Svn,Browser} headers.
+
+ [ Torsten Werner ]
+ * Switch to java-gcj-compat-dev from kaffe.
+
+ -- Torsten Werner <twerner at debian.org> Sat, 06 Oct 2007 00:29:07 +0200
+
+kunststoff (2.0.2-2) unstable; urgency=low
+
+ * Change architecture to all. (Closes: #423844)
+
+ -- Torsten Werner <twerner at debian.org> Mon, 14 May 2007 20:24:15 +0200
+
+kunststoff (2.0.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #422337)
+
+ -- Varun Hiremath <varunhiremath at gmail.com> Fri, 4 May 2007 18:57:24 +0530
Added: trunk/kunststoff/debian/compat
===================================================================
--- trunk/kunststoff/debian/compat (rev 0)
+++ trunk/kunststoff/debian/compat 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1 @@
+5
Added: trunk/kunststoff/debian/control
===================================================================
--- trunk/kunststoff/debian/control (rev 0)
+++ trunk/kunststoff/debian/control 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,19 @@
+Source: kunststoff
+Section: utils
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Varun Hiremath <varunhiremath at gmail.com>, Torsten Werner <twerner at debian.org>
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: ant, java-gcj-compat-dev
+Standards-Version: 3.7.2
+Homepage: http://www.incors.org/archive/
+XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/kunststoff
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/kunststoff
+
+Package: kunststoff
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
+Description: suite of skins for different applications
+ The Kunststoff Look & Feel is a completely free Look & Feel for Java
+ Swing applications. It supports many widgets (e.g JInnerFrame,
+ JProgressBar, JToolBar) and provides customizable gradient colors.
Added: trunk/kunststoff/debian/copyright
===================================================================
--- trunk/kunststoff/debian/copyright (rev 0)
+++ trunk/kunststoff/debian/copyright 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,30 @@
+This package was debianized by Varun Hiremath <varunhiremath at gmail.com> on
+Fri, 4 May 2007 18:57:24 +0530.
+
+It was downloaded from http://www.incors.org/archive/
+
+Upstream Author: INCORS GmbH (www.incors.com)
+
+Copyright: (C) 2002 INCORS GmbH (www.incors.com)
+
+License:
+
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This package 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is (C) 2007, Varun Hiremath <varunhiremath at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: trunk/kunststoff/debian/orig-tar.sh
===================================================================
--- trunk/kunststoff/debian/orig-tar.sh (rev 0)
+++ trunk/kunststoff/debian/orig-tar.sh 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+TAR=kunststoff_$2.orig.tar.gz
+
+# clean up the upstream tarball
+unzip $3
+tar -c -z -f $TAR src/* licence.txt
+rm -rf $3 src/ licence.txt kunststoff.jar
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+ . .svn/deb-layout
+ mv $TAR $origDir
+ echo "moved $TAR to $origDir"
+fi
+
+exit 0
Property changes on: trunk/kunststoff/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/kunststoff/debian/rules
===================================================================
--- trunk/kunststoff/debian/rules (rev 0)
+++ trunk/kunststoff/debian/rules 2007-10-15 07:46:59 UTC (rev 4407)
@@ -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/java-gcj
+DEB_ANT_INSTALL_TARGET := jar
+DEB_ANT_BUILDFILE := debian/build.xml
+
+install/kunststoff::
+ install -m 644 -D kunststoff.jar $(DEB_DESTDIR)/usr/share/java/kunststoff-$(DEB_UPSTREAM_VERSION).jar
+ dh_link /usr/share/java/kunststoff-$(DEB_UPSTREAM_VERSION).jar \
+ /usr/share/java/kunststoff.jar
+
+get-orig-source:
+ -uscan --upstream-version 0
Property changes on: trunk/kunststoff/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/kunststoff/debian/watch
===================================================================
--- trunk/kunststoff/debian/watch (rev 0)
+++ trunk/kunststoff/debian/watch 2007-10-15 07:46:59 UTC (rev 4407)
@@ -0,0 +1,4 @@
+version=3
+opts=uversionmangle=s/\_/\./g \
+http://www.incors.org/archive/ kunststoff-(.*)\.zip \
+debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list