[pkg-java] r4257 - trunk/buoy/debian
kumanna-guest at alioth.debian.org
kumanna-guest at alioth.debian.org
Sun Sep 23 09:34:35 UTC 2007
Author: kumanna-guest
Date: 2007-09-23 09:34:35 +0000 (Sun, 23 Sep 2007)
New Revision: 4257
Added:
trunk/buoy/debian/orig-tar.sh
trunk/buoy/debian/watch
Modified:
trunk/buoy/debian/
trunk/buoy/debian/README.Debian-source
trunk/buoy/debian/changelog
trunk/buoy/debian/control
trunk/buoy/debian/rules
Log:
* New upstream release (Closes: #426729)
* Bump Standards Version to 3.7.2.
* Move cdbs and debhelper from Build-Depends-Indep to Build-Depends.
* Add orig-tar.sh for repackaging upstream zip.
* Repackaged directory is now buoy-<version>.orig.
* Added Kumar Appaiah and Varun Hiremath to Uploaders. Removed Wolfgang Baer.
* Create a buoy-<version>.jar and symlink it to buoy.jar.
* Add Homepage field to debian/control.
Property changes on: trunk/buoy/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Modified: trunk/buoy/debian/README.Debian-source
===================================================================
--- trunk/buoy/debian/README.Debian-source 2007-09-22 10:29:55 UTC (rev 4256)
+++ trunk/buoy/debian/README.Debian-source 2007-09-23 09:34:35 UTC (rev 4257)
@@ -3,16 +3,8 @@
Upstream provides a zip file with both the source and the compiled jar
file, as well as the generated documentation. To make this into a
-sensible orig.tar.gz, the following is done:
+sensible orig.tar.gz, the orig-tar.sh script in the package source is
+used to remove the buoy.jar and the documentation, since these are
+generated at compile time.
- wget http://heanet.dl.sourceforge.net/sourceforge/buoy/Buoy1.6.zip
- mkdir buoy-1.6
- cd buoy-1.6
- unzip ../Buoy1.6.zip
- mv "Buoy Folder"/* .
- rmdir "Buoy Folder"
- rm -rf docs Buoy.jar
- cd ..
- tar zcf buoy_1.6.orig.tar.gz buoy-1.6
-
-This produces a tarball with only the source.
+ -- Kumar Appaiah <akumar at ee.iitm.ac.in>, Sun, 16 Sep 2007 20:25:57 +0530
Modified: trunk/buoy/debian/changelog
===================================================================
--- trunk/buoy/debian/changelog 2007-09-22 10:29:55 UTC (rev 4256)
+++ trunk/buoy/debian/changelog 2007-09-23 09:34:35 UTC (rev 4257)
@@ -1,3 +1,16 @@
+buoy (1.8-1) unstable; urgency=low
+
+ * New upstream release (Closes: #426729)
+ * Bump Standards Version to 3.7.2.
+ * Move cdbs and debhelper from Build-Depends-Indep to Build-Depends.
+ * Add orig-tar.sh for repackaging upstream zip.
+ * Repackaged directory is now buoy-<version>.orig.
+ * Added Kumar Appaiah and Varun Hiremath to Uploaders. Removed Wolfgang Baer.
+ * Create a buoy-<version>.jar and symlink it to buoy.jar.
+ * Add Homepage field to debian/control.
+
+ -- Kumar Appaiah <akumar at ee.iitm.ac.in> Sun, 23 Sep 2007 15:10:05 +0530
+
buoy (1.6-2) unstable; urgency=low
[ Petter Reinholdtsen ]
Modified: trunk/buoy/debian/control
===================================================================
--- trunk/buoy/debian/control 2007-09-22 10:29:55 UTC (rev 4256)
+++ trunk/buoy/debian/control 2007-09-23 09:34:35 UTC (rev 4257)
@@ -2,9 +2,11 @@
Section: libs
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Petter Reinholdtsen <pere at debian.org>, Wolfgang Baer <WBaer at gmx.de>
-Build-Depends-Indep: debhelper (>= 4.2.30), kaffe, cdbs, ant
-Standards-Version: 3.6.2
+Uploaders: Petter Reinholdtsen <pere at debian.org>, Varun Hiremath <varunhiremath at gmail.com>, Kumar Appaiah <akumar at ee.iitm.ac.in>
+Build-Depends-Indep: kaffe, ant
+Build-Depends: debhelper (>= 4.2.30), cdbs
+Standards-Version: 3.7.2
+Homepage: http://buoy.sourceforge.net/
Package: libbuoy-java
Architecture: all
@@ -17,5 +19,3 @@
directly, including a cleaner and simpler API, a far more powerful event
handling mechanism, a better system for laying out components, and built in
support for serializing and reconstructing user interfaces as XML.
- .
- Homepage: http://buoy.sourceforge.net/
Added: trunk/buoy/debian/orig-tar.sh
===================================================================
--- trunk/buoy/debian/orig-tar.sh (rev 0)
+++ trunk/buoy/debian/orig-tar.sh 2007-09-23 09:34:35 UTC (rev 4257)
@@ -0,0 +1,20 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+ZIP=../Buoy$2.zip
+DIR=buoy-$2.orig
+
+# clean up the upstream tarball
+unzip $ZIP
+mv "Buoy Folder" $DIR
+GZIP=--best tar czf $3 --exclude '*.jar' --exclude 'docs' --exclude '.svn' $DIR
+rm -rf $ZIP $DIR
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+ . .svn/deb-layout
+ mv $3 $origDir
+ echo "moved $3 to $origDir"
+fi
+
+exit 0
Property changes on: trunk/buoy/debian/orig-tar.sh
___________________________________________________________________
Name: executable
+ 1
Name: svn:executable
+ *
Modified: trunk/buoy/debian/rules
===================================================================
--- trunk/buoy/debian/rules 2007-09-22 10:29:55 UTC (rev 4256)
+++ trunk/buoy/debian/rules 2007-09-23 09:34:35 UTC (rev 4257)
@@ -17,4 +17,9 @@
DESTDIR=debian/libbuoy-java
install/libbuoy-java:: buoy.jar
- install -m644 buoy.jar $(DESTDIR)/usr/share/java/buoy.jar
+ install -m644 buoy.jar $(DESTDIR)/usr/share/java/buoy-$(DEB_UPSTREAM_VERSION).jar
+ dh_link /usr/share/java/buoy-$(DEB_UPSTREAM_VERSION).jar \
+ /usr/share/java/buoy.jar
+
+get-orig-source:
+ -uscan --upstream-version 0
Added: trunk/buoy/debian/watch
===================================================================
--- trunk/buoy/debian/watch (rev 0)
+++ trunk/buoy/debian/watch 2007-09-23 09:34:35 UTC (rev 4257)
@@ -0,0 +1,3 @@
+version=3
+http://heanet.dl.sourceforge.net/sourceforge/buoy/ \
+ Buoy(.*)\.zip debian debian/orig-tar.sh
More information about the pkg-java-commits
mailing list