[pkg-java] r4420 - in trunk: . libswingx-java libswingx-java/debian libswingx-java/debian/patches

varun-guest at alioth.debian.org varun-guest at alioth.debian.org
Mon Oct 15 16:58:53 UTC 2007


Author: varun-guest
Date: 2007-10-15 16:58:53 +0000 (Mon, 15 Oct 2007)
New Revision: 4420

Added:
   trunk/libswingx-java/
   trunk/libswingx-java/debian/
   trunk/libswingx-java/debian/README.Debian-source
   trunk/libswingx-java/debian/ant.properties
   trunk/libswingx-java/debian/build.xml
   trunk/libswingx-java/debian/changelog
   trunk/libswingx-java/debian/compat
   trunk/libswingx-java/debian/control
   trunk/libswingx-java/debian/copyright
   trunk/libswingx-java/debian/docs
   trunk/libswingx-java/debian/orig-tar.sh
   trunk/libswingx-java/debian/patches/
   trunk/libswingx-java/debian/patches/series
   trunk/libswingx-java/debian/patches/swingworker.diff
   trunk/libswingx-java/debian/rules
   trunk/libswingx-java/debian/watch
Log:
* Move libswingx-java to pkg-java svn



Property changes on: trunk/libswingx-java/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: trunk/libswingx-java/debian/README.Debian-source
===================================================================
--- trunk/libswingx-java/debian/README.Debian-source	                        (rev 0)
+++ trunk/libswingx-java/debian/README.Debian-source	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,13 @@
+libswingx-java
+==============
+
+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/libswingx-java/debian/ant.properties
===================================================================
--- trunk/libswingx-java/debian/ant.properties	                        (rev 0)
+++ trunk/libswingx-java/debian/ant.properties	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,2 @@
+installdir=/usr/share/java
+

Added: trunk/libswingx-java/debian/build.xml
===================================================================
--- trunk/libswingx-java/debian/build.xml	                        (rev 0)
+++ trunk/libswingx-java/debian/build.xml	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,47 @@
+<project name="swingx" basedir=".." default="build">
+
+  <property name="jarfile" value="${ant.project.name}.jar"/>
+
+  <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="build"
+    description="build the jar file">
+    <mkdir dir="build"/>
+    <javac destdir="build">
+      <src path="src/beaninfo"/>
+      <src path="src/java"/>
+    </javac>
+    <copy todir="build">
+	<fileset dir="src/beaninfo">
+		<patternset refid="compiler.resources" />
+	</fileset>
+	<fileset dir="src/java">
+		<patternset refid="compiler.resources" />
+	</fileset>
+    </copy>
+    <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>

Added: trunk/libswingx-java/debian/changelog
===================================================================
--- trunk/libswingx-java/debian/changelog	                        (rev 0)
+++ trunk/libswingx-java/debian/changelog	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,21 @@
+libswingx-java (20070722-2) unstable; urgency=low
+
+  * Include the *.properties files and images in the jars.
+  * debian/control: Add XS-Vcs-{Svn,Browser} headers.
+  * Add debian/README.Debian-source file.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Wed, 08 Aug 2007 00:20:45 +0530
+
+libswingx-java (20070722-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/control: Add myself to Uploaders
+  * Update patches/swingworker.diff patch file.
+
+ -- Varun Hiremath <varunhiremath at gmail.com>  Sat, 04 Aug 2007 00:54:49 +0530
+
+libswingx-java (20070513-1) unstable; urgency=low
+
+  * Initial release (Closes: #420344)
+
+ -- Torsten Werner <twerner at debian.org>  Sat, 21 Apr 2007 14:39:02 +0200

Added: trunk/libswingx-java/debian/compat
===================================================================
--- trunk/libswingx-java/debian/compat	                        (rev 0)
+++ trunk/libswingx-java/debian/compat	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1 @@
+5

Added: trunk/libswingx-java/debian/control
===================================================================
--- trunk/libswingx-java/debian/control	                        (rev 0)
+++ trunk/libswingx-java/debian/control	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,32 @@
+Source: libswingx-java
+Section: contrib/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), quilt
+Build-Depends-Indep: ant, libbatik-java, sun-java6-jdk
+Standards-Version: 3.7.2
+Homepage: https://swingx.dev.java.net/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libswingx-java
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libswingx-java
+
+Package: libswingx-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, sun-java6-jre | java1-runtime | java2-runtime
+Suggests: java-virtual-machine
+Description: extensions to the Swing GUI toolkit
+ This package contains extensions to the Swing GUI toolkit, including new and
+ enhanced components that provide functionality commonly required by rich
+ client applications. Highlights include:
+  - Sorting, filtering, highlighting for tables, trees, and lists
+  - Find/search
+  - Auto-completion
+  - Login/authentication framework
+  - TreeTable component
+  - Collapsible panel component
+  - Date picker component
+  - Tip-of-the-Day component
+ .
+ Many of these features will eventually be incorporated into the Swing toolkit,
+ although API compatibility will not be guaranteed. The SwingX project focuses
+ exclusively on the raw components themselves.

Added: trunk/libswingx-java/debian/copyright
===================================================================
--- trunk/libswingx-java/debian/copyright	                        (rev 0)
+++ trunk/libswingx-java/debian/copyright	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,83 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Sat Apr 21 15:20:16 CEST 2007.
+
+It was downloaded from
+http://swinglabs.org/hudson/job/SwingX%20Weekly%20Build/lastStableBuild/
+
+Upstream Author: SwingLabs SwingX Project
+
+Copyright (c) 2005-2006 Sun Microsystems, Inc., 4150 Network Circle, Santa
+Clara, California 95054, U.S.A. All rights reserved.  Use is subject
+to license terms below.  Sun, Sun Microsystems and the Sun logo are
+trademarks or registered trademarks of Sun Microsystems, Inc. in the
+U.S. and other countries.
+
+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.
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+
+JXTipOfTheDayTest.java is Copyright (c) 2007 L2FProd.com and
+
+    Licensed 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 content of the directories src/java/org/jdesktop/swingx/image,
+src/java/org/jdesktop/swingx/graphics, and src/java/org/jdesktop/swingx/geom
+are
+
+    Dual-licensed under LGPL (Sun and Romain Guy) and BSD (Romain Guy).
+
+    Copyright 2005 Sun Microsystems, Inc., 4150 Network Circle,
+    Santa Clara, California 95054, U.S.A. All rights reserved.
+
+    Copyright (c) 2006 Romain Guy <romain.guy at mac.com>
+    All rights reserved.
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+    2. 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.
+    3. The name of the author may not be used to endorse or promote products
+       derived from this software without specific prior written permission.
+
+    THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
+
+
+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/libswingx-java/debian/docs
===================================================================
--- trunk/libswingx-java/debian/docs	                        (rev 0)
+++ trunk/libswingx-java/debian/docs	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,2 @@
+docs/*
+

Added: trunk/libswingx-java/debian/orig-tar.sh
===================================================================
--- trunk/libswingx-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libswingx-java/debian/orig-tar.sh	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,21 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+
+TAR=../libswingx-java_$2.orig.tar.gz
+DIR=libswingx-java-$2.orig
+
+# clean up and repackage the upstream zip file
+unzip $3
+mv swingx-*-src $DIR
+tar -c -z -f $TAR --exclude '*.jar' $DIR
+rm -rf $DIR $3
+
+# 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/libswingx-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/libswingx-java/debian/patches/series
===================================================================
--- trunk/libswingx-java/debian/patches/series	                        (rev 0)
+++ trunk/libswingx-java/debian/patches/series	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1 @@
+swingworker.diff

Added: trunk/libswingx-java/debian/patches/swingworker.diff
===================================================================
--- trunk/libswingx-java/debian/patches/swingworker.diff	                        (rev 0)
+++ trunk/libswingx-java/debian/patches/swingworker.diff	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,12 @@
+diff -urN swingx-2007_07_22-src.orig/src/java/org/jdesktop/swingx/auth/LoginService.java swingx-2007_07_22-src/src/java/org/jdesktop/swingx/auth/LoginService.java
+--- swingx-2007_07_22-src.orig/src/java/org/jdesktop/swingx/auth/LoginService.java	2007-08-04 00:35:55.000000000 +0530
++++ swingx-2007_07_22-src/src/java/org/jdesktop/swingx/auth/LoginService.java	2007-08-04 00:37:57.000000000 +0530
+@@ -27,7 +27,7 @@
+ import javax.swing.event.EventListenerList;
+ 
+ import org.jdesktop.beans.AbstractBean;
+-import org.jdesktop.swingworker.SwingWorker;
++import javax.swing.SwingWorker;
+ 
+ /**
+  * <b>LoginService</b> is the abstract base class for all classes implementing

Added: trunk/libswingx-java/debian/rules
===================================================================
--- trunk/libswingx-java/debian/rules	                        (rev 0)
+++ trunk/libswingx-java/debian/rules	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,13 @@
+#!/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
+
+JAVA_HOME		:= /usr/lib/jvm/java-6-sun
+DEB_ANT_BUILDFILE	:= debian/build.xml
+DEB_ANT_INSTALL_TARGET	:= install -Ddestdir=$(DEB_DESTDIR)
+DEB_JARS		:= batik
+
+get-orig-source:
+	uscan --upstream-version 0


Property changes on: trunk/libswingx-java/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/libswingx-java/debian/watch
===================================================================
--- trunk/libswingx-java/debian/watch	                        (rev 0)
+++ trunk/libswingx-java/debian/watch	2007-10-15 16:58:53 UTC (rev 4420)
@@ -0,0 +1,4 @@
+version=3
+opts="uversionmangle=s/_//g" \
+  http://swinglabs.org/hudson/job/SwingX%20Weekly%20Build/lastStableBuild/ \
+  .*/swingx-(.*)-src.zip debian debian/orig-tar.sh




More information about the pkg-java-commits mailing list