[pkg-java] r5133 - in trunk: . libxapool-java libxapool-java/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Tue Dec 18 21:23:31 UTC 2007


Author: twerner
Date: 2007-12-18 21:23:31 +0000 (Tue, 18 Dec 2007)
New Revision: 5133

Added:
   trunk/libxapool-java/
   trunk/libxapool-java/debian/
   trunk/libxapool-java/debian/changelog
   trunk/libxapool-java/debian/compat
   trunk/libxapool-java/debian/control
   trunk/libxapool-java/debian/copyright
   trunk/libxapool-java/debian/orig-tar.sh
   trunk/libxapool-java/debian/rules
   trunk/libxapool-java/debian/watch
Log:
new package XAPool


Added: trunk/libxapool-java/debian/changelog
===================================================================
--- trunk/libxapool-java/debian/changelog	                        (rev 0)
+++ trunk/libxapool-java/debian/changelog	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,5 @@
+libxapool-java (1.5.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #456980)
+
+ -- Torsten Werner <twerner at debian.org>  Tue, 18 Dec 2007 21:46:24 +0100

Added: trunk/libxapool-java/debian/compat
===================================================================
--- trunk/libxapool-java/debian/compat	                        (rev 0)
+++ trunk/libxapool-java/debian/compat	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1 @@
+5

Added: trunk/libxapool-java/debian/control
===================================================================
--- trunk/libxapool-java/debian/control	                        (rev 0)
+++ trunk/libxapool-java/debian/control	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,21 @@
+Source: libxapool-java
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>
+Build-Depends: ant, cdbs, debhelper (>= 5), java-gcj-compat-dev
+Standards-Version: 3.7.3
+Homepage: http://xapool.experlog.com/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libxapool/
+Vcs-Svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/libxapool
+
+Package: libxapool-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends},
+ java-gcj-compat | java1-runtime | java2-runtime
+Suggests: java-virtual-machine
+Description: connection pooling for JDBC
+ XAPool is a software component which allows to:
+ - Store objects with a Generic Pool
+ - Export a DataSource (javax.sql.DataSource)
+ - Export a XADataSource (javax.sql.XADataSource)

Added: trunk/libxapool-java/debian/copyright
===================================================================
--- trunk/libxapool-java/debian/copyright	                        (rev 0)
+++ trunk/libxapool-java/debian/copyright	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,32 @@
+This package was debianized by Torsten Werner <twerner at debian.org> on
+Thu Apr 19 01:06:12 CEST 2007.
+
+It was downloaded from
+http://forge.objectweb.org/project/showfiles.php?group_id=59
+
+Upstream Author: Pierre-Yves Gibello, Xavier Spengler
+
+Copyright: (C) 2000 Lutris Technologies, Inc
+
+License:
+
+    XAPool 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 3 of the
+    License, or (at your option) any later version.
+
+    Foobar 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 Foobar.  If not, see
+    <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL-3'.
+
+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/libxapool-java/debian/orig-tar.sh
===================================================================
--- trunk/libxapool-java/debian/orig-tar.sh	                        (rev 0)
+++ trunk/libxapool-java/debian/orig-tar.sh	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+VERSION=$(dpkg-parsechangelog | sed -ne 's,^Version: \(.*\)-.*,\1,p')
+SOURCE=$(dpkg-parsechangelog | sed -ne 's,Source: \(.*\),\1,p')
+
+DIR=xapool-${VERSION}-src
+
+# clean up the upstream tarball
+tar -x -z -f $3
+tar -c -z -f $3 --exclude '*.ppt' --exclude '*.jar' $DIR
+rm -rf $DIR
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv $3 $origDir
+  echo "moved $3 to $origDir"
+fi
+


Property changes on: trunk/libxapool-java/debian/orig-tar.sh
___________________________________________________________________
Name: svn:executable
   + 

Added: trunk/libxapool-java/debian/rules
===================================================================
--- trunk/libxapool-java/debian/rules	                        (rev 0)
+++ trunk/libxapool-java/debian/rules	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+DEB_BUILDDIR         := build
+JAVA_HOME            := /usr/lib/jvm/java-gcj
+DEB_ANT_BUILD_TARGET := jxl docs
+DEB_ANT_CLEAN_TARGET := clean
+
+get-orig-source:
+	uscan --upstream-version 0 --rename


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

Added: trunk/libxapool-java/debian/watch
===================================================================
--- trunk/libxapool-java/debian/watch	                        (rev 0)
+++ trunk/libxapool-java/debian/watch	2007-12-18 21:23:31 UTC (rev 5133)
@@ -0,0 +1,4 @@
+version=3
+http://download.fr2.forge.objectweb.org/xapool/ xapool-([\d.]+)-src.tgz \
+  debian debian/orig-tar.sh
+




More information about the pkg-java-commits mailing list