[pkg-java] r4413 - in trunk: . liblaf-plugin-java liblaf-plugin-java/debian
varun-guest at alioth.debian.org
varun-guest at alioth.debian.org
Mon Oct 15 12:54:34 UTC 2007
Author: varun-guest
Date: 2007-10-15 12:54:34 +0000 (Mon, 15 Oct 2007)
New Revision: 4413
Added:
trunk/liblaf-plugin-java/
trunk/liblaf-plugin-java/debian/
trunk/liblaf-plugin-java/debian/ant.properties
trunk/liblaf-plugin-java/debian/build.xml
trunk/liblaf-plugin-java/debian/changelog
trunk/liblaf-plugin-java/debian/compat
trunk/liblaf-plugin-java/debian/control
trunk/liblaf-plugin-java/debian/copyright
trunk/liblaf-plugin-java/debian/orig-tar.sh
trunk/liblaf-plugin-java/debian/rules
Log:
* Move liblaf-plugin-java to pkg-java svn.
Property changes on: trunk/liblaf-plugin-java/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: trunk/liblaf-plugin-java/debian/ant.properties
===================================================================
--- trunk/liblaf-plugin-java/debian/ant.properties (rev 0)
+++ trunk/liblaf-plugin-java/debian/ant.properties 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,3 @@
+class.dir=build
+source.dir=.
+jar.name=laf-plugin.jar
Added: trunk/liblaf-plugin-java/debian/build.xml
===================================================================
--- trunk/liblaf-plugin-java/debian/build.xml (rev 0)
+++ trunk/liblaf-plugin-java/debian/build.xml 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="jar" name="laf-plugin" basedir="..">
+ <property file="build.properties"/>
+
+ <patternset id="compiler.resources">
+ <include name="**/?*.properties" />
+ <include name="**/?*.xml" />
+ <include name="**/?*.gif" />
+ <include name="**/?*.png" />
+ <include name="**/?*.jpeg" />
+ <include name="**/?*.jpg" />
+ <include name="**/?*.html" />
+ <include name="**/?*.dtd" />
+ <include name="**/?*.tld" />
+ <include name="**/?*.ttf" />
+ </patternset>
+
+ <target name="clean" description="Clean up">
+ <delete dir="${class.dir}"/>
+ <delete file="${jar.name}"/>
+ </target>
+
+ <target name="compile" description="Compile the sources">
+ <mkdir dir="${class.dir}"/>
+ <javac srcdir="${source.dir}" destdir="${class.dir}"
+ deprecation="true" debug="true" optimize="false"/>
+ <copy todir="${class.dir}">
+ <fileset dir="${source.dir}">
+ <patternset refid="compiler.resources" />
+ </fileset>
+ </copy>
+ </target>
+
+ <target name="javadoc" description="Creates Javadoc documentation">
+ <mkdir dir="${doc.dir}"/>
+ <javadoc packagenames="info.clearthought.layout.*"
+ sourcepath="${source.dir}" destdir="${doc.dir}"/>
+ </target>
+
+ <target name="jar" description="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 file="${jar.name}" todir="${destdir}/usr/share/java/"/>
+ </target>
+</project>
Added: trunk/liblaf-plugin-java/debian/changelog
===================================================================
--- trunk/liblaf-plugin-java/debian/changelog (rev 0)
+++ trunk/liblaf-plugin-java/debian/changelog 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,29 @@
+liblaf-plugin-java (0.2-4) unstable; urgency=low
+
+ * Move the package to pkg-java svn.
+ * Set Maintainer to Debian Java Maintainers and add myself to Uploaders.
+ * Move the build scripts to debian dir.
+
+ -- Varun Hiremath <varunhiremath at gmail.com> Mon, 15 Oct 2007 18:32:55 +0530
+
+liblaf-plugin-java (0.2-3) unstable; urgency=low
+
+ * Switch from kaffe to java-gcj-compat-dev.
+ * debian/control: Set Priority optional from extra.
+ * Remove debian/install and install jar from debian/rules and create
+ symbolic link.
+
+ -- Varun Hiremath <varunhiremath at gmail.com> Thu, 11 Oct 2007 15:17:44 +0530
+
+liblaf-plugin-java (0.2-2) unstable; urgency=low
+
+ * Include the *.properties and images in the jar file.
+ * debian/control: Add myself to Uploaders
+
+ -- Varun Hiremath <varunhiremath at gmail.com> Wed, 08 Aug 2007 00:39:43 +0530
+
+liblaf-plugin-java (0.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #426043)
+
+ -- Torsten Werner <twerner at debian.org> Mon, 21 May 2007 22:23:26 +0200
Added: trunk/liblaf-plugin-java/debian/compat
===================================================================
--- trunk/liblaf-plugin-java/debian/compat (rev 0)
+++ trunk/liblaf-plugin-java/debian/compat 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1 @@
+5
Added: trunk/liblaf-plugin-java/debian/control
===================================================================
--- trunk/liblaf-plugin-java/debian/control (rev 0)
+++ trunk/liblaf-plugin-java/debian/control 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,19 @@
+Source: liblaf-plugin-java
+Section: libs
+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: https://laf-plugin.dev.java.net/
+XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/liblaf-plugin-java
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/liblaf-plugin-java
+
+Package: liblaf-plugin-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | java2-runtime
+Description: support for third-party components in Java look-and-feel libraries
+ The goal of this project is to provide a generic plugin framework for
+ look-and-feels and define the interface of a common kind of plugins - the
+ component plugins.
Added: trunk/liblaf-plugin-java/debian/copyright
===================================================================
--- trunk/liblaf-plugin-java/debian/copyright (rev 0)
+++ trunk/liblaf-plugin-java/debian/copyright 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,69 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Fri May 25 21:52:49 CEST 2007.
+
+It was downloaded from
+<https://laf-plugin.dev.java.net/servlets/ProjectDocumentList?folderID=4894&expandFolder=4894&folderID=6870>.
+
+Upstream Authors:
+Erik Vickroy
+Kirill Grouchnikov
+Robert Beeger
+Frederic Lavigne
+Pattrick Gotthardt
+
+Copyright: (c) 2005 Kirill Grouchnikov and Erik Vickroy
+All rights reserved.
+
+License:
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of the Kirill Grouchnikov and Erik Vickroy nor
+ the names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ THE POSSIBILITY OF SUCH DAMAGE.
+
+On Debian systems, the complete text of the BSD License can be
+found in `/usr/share/common-licenses/BSD'.
+
+
+This project uses the third-party NanoXML Lite XML parser.
+
+Copyright (c) 2000-2002 Marc De Scheemaecker, All Rights Reserved.
+
+License:
+ This software is provided 'as-is', without any express or implied warranty.
+ In no event will the author be held liable for any damages arising from the
+ use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software in a
+ product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+
+The Debian packaging is (C) 2007, Torsten Werner <twerner at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: trunk/liblaf-plugin-java/debian/orig-tar.sh
===================================================================
--- trunk/liblaf-plugin-java/debian/orig-tar.sh (rev 0)
+++ trunk/liblaf-plugin-java/debian/orig-tar.sh 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,23 @@
+#!/bin/sh -e
+
+# $1 = version
+DIR=liblaf-plugin-java-$1
+ZIP=laf-plugin-src.zip
+TAR=../liblaf-plugin-java_$1.orig.tar.gz
+
+# Download the sources
+wget https://laf-plugin.dev.java.net/files/documents/4261/41254/$ZIP
+
+# clean up the upstream tarball
+unzip -d $DIR $ZIP
+tar -c -z -f $TAR $DIR
+rm -rf $DIR $ZIP
+
+# 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/liblaf-plugin-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/liblaf-plugin-java/debian/rules
===================================================================
--- trunk/liblaf-plugin-java/debian/rules (rev 0)
+++ trunk/liblaf-plugin-java/debian/rules 2007-10-15 12:54:34 UTC (rev 4413)
@@ -0,0 +1,15 @@
+#!/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_BUILDFILE := debian/build.xml
+DEB_ANT_BUILD_TARGET := jar
+
+install/liblaf-plugin-java::
+ install -m 644 -D laf-plugin.jar $(DEB_DESTDIR)/usr/share/java/laf-plugin-$(DEB_UPSTREAM_VERSION).jar
+ dh_link /usr/share/java/laf-plugin-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/laf-plugin.jar
+
+get-orig-source:
+ sh debian/orig-tar.sh $(DEB_UPSTREAM_VERSION)
Property changes on: trunk/liblaf-plugin-java/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the pkg-java-commits
mailing list