--- libswingworker-java-1.1.orig/debian/compat +++ libswingworker-java-1.1/debian/compat @@ -0,0 +1 @@ +5 --- libswingworker-java-1.1.orig/debian/changelog +++ libswingworker-java-1.1/debian/changelog @@ -0,0 +1,20 @@ +libswingworker-java (1.1-0ubuntu3) intrepid; urgency=low + + * replace explicit dependency on openjdk-6-jre (LP: #259393) + * remove log file + + -- Yulia Novozhilova Tue, 19 Aug 2008 18:46:27 +0400 + +libswingworker-java (1.1-0ubuntu2) hardy; urgency=low + + * Replace icedtea-java7 dependencies with openjdk-6 (LP: #203636) + * Remove redundant entry from debian/libswingworker-java-doc.dirs + + -- Marek Slama Thu, 20 Mar 2008 10:00:00 +0100 + +libswingworker-java (1.1-0ubuntu1) hardy; urgency=low + + * Initial version. (LP: #185960) + + -- Marek Slama Thu, 24 Jan 2008 10:00:00 +0100 + --- libswingworker-java-1.1.orig/debian/copyright +++ libswingworker-java-1.1/debian/copyright @@ -0,0 +1,59 @@ +This package was debianized by Marek Slama on +24-Jan-2008. + +The current Debian maintainer is Marek Slama + +Upstream downloaded from: + https://swingworker.dev.java.net/files/documents/2810/51782/swing-worker-src-1.1.zip + +Upstream home page: + http://swingworker.dev.java.net/ + +Copyright: + + - - - - - copyright notice and license for Debian packaging - - - - - + +Copyright 2007 Sun Microsystems, Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + - - - - - copyright notice and license for upstream - - - - - + +Copyright 2007 Sun Microsystems, Inc. + +Use of this software is governed by the terms of the license below: + + This library 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.1 of the License, or (at your option) any later version. + + This library 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 library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. --- libswingworker-java-1.1.orig/debian/libswingworker-java.dirs +++ libswingworker-java-1.1/debian/libswingworker-java.dirs @@ -0,0 +1 @@ +usr/share/java --- libswingworker-java-1.1.orig/debian/rules +++ libswingworker-java-1.1/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +DEB_TAR_SRCDIR :=. + +JAVA_HOME=/usr/lib/jvm/default-java + +include /usr/share/cdbs/1/rules/tarball.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/debhelper.mk + +# package name +sw-pkg := libswingworker-java + +build/$(sw-pkg):: stamp-build-$(sw-pkg) + +# This target is here to avoid multiple invocation of build target. +# build/$(sw-pkg) is invoked 2 times when building binary packages. +stamp-build-$(sw-pkg): + ant -f $(DEB_SRCDIR)/build.xml -Djavadoc.dir=dist/javadoc/api bundles + touch $@ + +install/$(sw-pkg):: + install -m 644 $(DEB_SRCDIR)/dist/bundles/swing-worker.jar debian/$(sw-pkg)/usr/share/java/swing-worker-$(DEB_UPSTREAM_VERSION).jar + dh_link -p$(sw-pkg) usr/share/java/swing-worker-$(DEB_UPSTREAM_VERSION).jar usr/share/java/swing-worker.jar + +install/$(sw-pkg)-doc:: + dh_installdocs -p$(sw-pkg)-doc $(DEB_SRCDIR)/dist/javadoc/api +clean:: + # these files are left by cdbs (a bug?) + -rm -f *.cdbs-config_list + -rm -f stamp-build-$(sw-pkg) --- libswingworker-java-1.1.orig/debian/libswingworker-java-doc.dirs +++ libswingworker-java-1.1/debian/libswingworker-java-doc.dirs @@ -0,0 +1 @@ +usr/share/doc/libswingworker-java-doc --- libswingworker-java-1.1.orig/debian/control +++ libswingworker-java-1.1/debian/control @@ -0,0 +1,35 @@ +Source: libswingworker-java +Section: libs +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Marek Slama +Build-Depends: debhelper (>=5), cdbs (>=0.4.8) +Build-Depends-Indep: ant, default-jdk, unzip +Standards-Version: 3.7.3 +Homepage: http://swingworker.dev.java.net/ + +Package: libswingworker-java +Architecture: all +Section: libs +Priority: optional +Depends: default-jre | java2-runtime +Suggests: libswingworker-java-doc +Description: Swing Worker API + SwingWorker is designed for situations where you need + to have a long running task run in a background thread + and provide updates to the UI either when done, or + while processing. This project is a backport of SwingWorker + included into Java 1.6. + +Package: libswingworker-java-doc +Architecture: all +Section: doc +Priority: optional +Description: Swing Worker API + SwingWorker is designed for situations where you need + to have a long running task run in a background thread + and provide updates to the UI either when done, or + while processing. This project is a backport of SwingWorker + included into Java 1.6. + . + This package contains Javadoc API documentation.