Author: tmancill
Date: 2012-04-22 04:43:54 +0000 (Sun, 22 Apr 2012)
New Revision: 15982

Added:
   tags/c3p0/0.9.1.2-6/
   tags/c3p0/0.9.1.2-6/debian/ant.properties
   tags/c3p0/0.9.1.2-6/debian/changelog
   tags/c3p0/0.9.1.2-6/debian/control
   tags/c3p0/0.9.1.2-6/debian/patches/
   tags/c3p0/0.9.1.2-6/debian/rules
Removed:
   tags/c3p0/0.9.1.2-6/debian/ant.properties
   tags/c3p0/0.9.1.2-6/debian/changelog
   tags/c3p0/0.9.1.2-6/debian/control
   tags/c3p0/0.9.1.2-6/debian/rules
Log:
[svn-buildpackage] Tagging c3p0 0.9.1.2-6

Deleted: tags/c3p0/0.9.1.2-6/debian/ant.properties
===================================================================
--- trunk/c3p0/debian/ant.properties    2012-04-22 03:49:00 UTC (rev 15980)
+++ tags/c3p0/0.9.1.2-6/debian/ant.properties   2012-04-22 04:43:54 UTC (rev 
15982)
@@ -1,91 +0,0 @@
-# >> BASICS <<
-
-#
-# You'll need to supply at least one of j2ee.classpath
-# or j2ee.jar.file.base.dir. All jar files under
-# ${j2ee.jar.file.base.dir} or its subdirectories
-# will be added to the effective classpath of the project.
-#
-
-#j2ee.classpath=
-j2ee.jar.base.dir=/usr/share/java
-
-# >> DEBUGGING AND TRACING <<
-
-# Set this to true if you want logging enabled for logging levels below INFO.
-# If debug is not set, logging code for these messages will be eliminated from
-# the compiled code by virtue of "if (false) { ... }" blocks.
-
-#c3p0-build.debug=
-
-# Set trace to an integer between 0 and 10 (inclusive) to control how the level
-# of detail of debug logging messages. Only makes a difference if c3p0.debug is
-# set to true above. Default to 5 if unset.
-
-#c3p0-build.trace=
-
-# NOTE: You must still configure your logging library to log or display these 
-# debug level messages if you actually want to see any change!
-
-#----------------------------------------------------------------------------
-
-# >> OPTIONAL LIBRARY SUPPRT <<
-
-#
-# You'll only need this property if you want to
-# build-in optional log4j support.
-#
-
-log4j.jar.file=/usr/share/java/log4j-1.2.jar
-
-#
-# You'll only need this property if you want to
-# build the jar of utilities specific to the
-# oracle-thin jdbc driver / dbms
-#
-
-#oracle-thin.jdbc.jar.file=
-
-#----------------------------------------------------------------------------
-
-# >> OPTIONAL TEST SUPPORT
-
-#
-# this stuff is only required if you want to run
-# the various tests. very optional
-#
-
-#test.jdbc.driver.jar.file=
-#test.jdbc.drivers=
-#test.jdbc.url=
-#test.jdbc.user=
-#test.jdbc.password=
-
-#
-# required if you want to run junit tests
-#
-
-#junit.jar.file
-
-# >> VERY VERY OPTIONAL DOCS-TO-WEB SUPPORT
-
-#
-# this stuff is only required if you want to deploy
-# an ear file containing c3p0's docs to a J2EE appserver.
-# via scp. Requires an available executable "scp".
-# 
-# this is a convenience for c3p0's developer, not
-# really intended for other users. just leave blank
-#
-# note that virtual.host modifies a jboss-web.xml file,
-# will do nothing if you are deploying to some other
-# app server
-#
-
-#docwebapp.context.root=
-#docwebapp.virtual.host=
-#docwebear.deploy.user=
-#docwebear.deploy.host=
-#docwebear.deploy.path=
-
-build.apidocs.dir=build/api

Copied: tags/c3p0/0.9.1.2-6/debian/ant.properties (from rev 15981, 
trunk/c3p0/debian/ant.properties)
===================================================================
--- tags/c3p0/0.9.1.2-6/debian/ant.properties                           (rev 0)
+++ tags/c3p0/0.9.1.2-6/debian/ant.properties   2012-04-22 04:43:54 UTC (rev 
15982)
@@ -0,0 +1,96 @@
+
+
+#
+# You'll need to supply at least one of j2ee.classpath
+# or j2ee.jar.file.base.dir. All jar files under
+# ${j2ee.jar.file.base.dir} or its subdirectories
+# will be added to the effective classpath of the project.
+#
+
+#j2ee.classpath=
+j2ee.jar.base.dir=/usr/share/java
+
+# >> DEBUGGING AND TRACING <<
+
+# Set this to true if you want logging enabled for logging levels below INFO.
+# If debug is not set, logging code for these messages will be eliminated from
+# the compiled code by virtue of "if (false) { ... }" blocks.
+
+#c3p0-build.debug=
+
+# Set trace to an integer between 0 and 10 (inclusive) to control how the level
+# of detail of debug logging messages. Only makes a difference if c3p0.debug is
+# set to true above. Default to 5 if unset.
+
+#c3p0-build.trace=
+
+# NOTE: You must still configure your logging library to log or display these 
+# debug level messages if you actually want to see any change!
+
+#----------------------------------------------------------------------------
+
+# >> OPTIONAL LIBRARY SUPPRT <<
+
+#
+# You'll only need this property if you want to
+# build-in optional log4j support.
+#
+
+log4j.jar.file=/usr/share/java/log4j-1.2.jar
+
+#
+# You'll only need this property if you want to
+# build the jar of utilities specific to the
+# oracle-thin jdbc driver / dbms
+#
+
+#oracle-thin.jdbc.jar.file=
+
+#----------------------------------------------------------------------------
+
+# >> OPTIONAL TEST SUPPORT
+
+#
+# this stuff is only required if you want to run
+# the various tests. very optional
+#
+
+test.jdbc.driver.jar.file=/usr/share/java/hsqldb.jar
+test.jdbc.drivers=org.hsqldb.jdbcDriver
+test.jdbc.url=jdbc:hsqldb:file:/tmp/testdb
+test.jdbc.user=SA
+test.jdbc.password=
+
+c3p0.jdbcUrl=jdbc:hsqldb:file:/tmp/testdb
+c3p0.driverClass=org.hsqldb.jdbcDriver
+c3p0.user=SA
+c3p0.password=
+
+#
+# required if you want to run junit tests
+#
+
+junit.jar.file=/usr/share/java/junit.jar
+
+# >> VERY VERY OPTIONAL DOCS-TO-WEB SUPPORT
+
+#
+# this stuff is only required if you want to deploy
+# an ear file containing c3p0's docs to a J2EE appserver.
+# via scp. Requires an available executable "scp".
+# 
+# this is a convenience for c3p0's developer, not
+# really intended for other users. just leave blank
+#
+# note that virtual.host modifies a jboss-web.xml file,
+# will do nothing if you are deploying to some other
+# app server
+#
+
+#docwebapp.context.root=
+#docwebapp.virtual.host=
+#docwebear.deploy.user=
+#docwebear.deploy.host=
+#docwebear.deploy.path=
+
+build.apidocs.dir=build/api

Deleted: tags/c3p0/0.9.1.2-6/debian/changelog
===================================================================
--- trunk/c3p0/debian/changelog 2012-04-22 03:49:00 UTC (rev 15980)
+++ tags/c3p0/0.9.1.2-6/debian/changelog        2012-04-22 04:43:54 UTC (rev 
15982)
@@ -1,77 +0,0 @@
-c3p0 (0.9.1.2-5) unstable; urgency=low
-
-  * Install POM file.
-
- -- Torsten Werner <twer...@debian.org>  Fri, 21 May 2010 22:56:13 +0200
-
-c3p0 (0.9.1.2-4) unstable; urgency=low
-
-  * Team upload
-
-  [ Thierry Carrez ]
-  * Depend on java2-runtime-headless instead of java2-runtime
-
-  [ Torsten Werner ]
-  * Remove Arnaud from uploaders list.
-  * Update Standards-Version: 3.8.4.
-
- -- Torsten Werner <twer...@debian.org>  Mon, 03 May 2010 19:32:21 +0200
-
-c3p0 (0.9.1.2-3) unstable; urgency=low
-
-  * Build-Depend on gcj-jdk (Closes: #539177).
-    (Taken from Ubuntu)
-  * Let libc3p0-java depend on default-jre-headless instead of default-jre.
-    (Taken from Ubuntu)
-  * Updated Standards-Version to 3.8.3.
-
- -- Michael Koch <konque...@gmx.de>  Sun, 06 Sep 2009 22:21:29 +0200
-
-c3p0 (0.9.1.2-2) unstable; urgency=low
-
-  [ Michael Koch ]
-  * Use uscan sf.net helper for SourceForge. Fixes upstream checking.
-  * Updated Standards-Version to 3.7.3.
-  * Added Homepage field.
-
-  [ Varun Hiremath ]
-  * Convert to default-jdk/jre (Closes: #526273)
-  * Bump Standards-Version to 3.8.1
-  * Fix Vcs-* fileds
-
- -- Varun Hiremath <va...@debian.org>  Thu, 07 May 2009 19:04:58 -0400
-
-c3p0 (0.9.1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * Add debian/orig-tar.sh
-  * debian/rules: implement get-orig-source
-  * move debian/README.Debian to debian/REAMDE.Debian-source and update the 
file.
-  * debian/control:
-    + Add Homepage and Build-Depend on debhelper (>= 5)
-    + Add XS-Vcs-{Svn, Browser} headers.
-    + Add myself to Uploaders.
-  * debian/compat: Bump compat to 5
-  * Remove debian/libc3p0-java.* files and install and link jars in
-    debian/rules using DEB_UPSTREAM VERSION.
-  * Fix the package version, dfsg not required as the changes have been
-    documented in debian/README.Debian-source.
-  * Add debian/orig-tar.exclude and remove pre-built docs from orig.tar.gz
-
- -- Varun Hiremath <varunhirem...@gmail.com>  Sun, 16 Sep 2007 13:35:34 +0530
-
-c3p0 (0.9.1.1.dfsg.1-2) unstable; urgency=low
-
-  * Upload to unstable.
-  * Clean out correctly.
-  * Moved debhelper and cdbs from Build-Depends-Indep to Build-Depends.
-  * Fixed address of FSF in debian/copyright.
-  * Added myself to Uploaders.
-
- -- Michael Koch <konque...@gmx.de>  Tue, 10 Jul 2007 23:27:20 +0200
-
-c3p0 (0.9.1.1.dfsg.1-1) experimental; urgency=low
-
-  * Initial Release (closes: #386100).
-
- -- Arnaud Vandyck <av...@debian.org>  Tue,  3 Apr 2007 15:06:17 +0200

Copied: tags/c3p0/0.9.1.2-6/debian/changelog (from rev 15981, 
trunk/c3p0/debian/changelog)
===================================================================
--- tags/c3p0/0.9.1.2-6/debian/changelog                                (rev 0)
+++ tags/c3p0/0.9.1.2-6/debian/changelog        2012-04-22 04:43:54 UTC (rev 
15982)
@@ -0,0 +1,88 @@
+c3p0 (0.9.1.2-6) unstable; urgency=low
+
+  * Team upload.
+  * Remove Michael Koch from Uploaders.  (Closes: #653999)
+  * Apply patch to enable test suite and tune gcj javac output.
+    - Thank you to James Page.  (Closes: #615863)
+  * Bump Standards-Version to 3.9.3 (no changes).
+  * Drop needless dependency on JRE.
+
+ -- tony mancill <tmanc...@debian.org>  Sat, 21 Apr 2012 21:28:15 -0700
+
+c3p0 (0.9.1.2-5) unstable; urgency=low
+
+  * Install POM file.
+
+ -- Torsten Werner <twer...@debian.org>  Fri, 21 May 2010 22:56:13 +0200
+
+c3p0 (0.9.1.2-4) unstable; urgency=low
+
+  * Team upload
+
+  [ Thierry Carrez ]
+  * Depend on java2-runtime-headless instead of java2-runtime
+
+  [ Torsten Werner ]
+  * Remove Arnaud from uploaders list.
+  * Update Standards-Version: 3.8.4.
+
+ -- Torsten Werner <twer...@debian.org>  Mon, 03 May 2010 19:32:21 +0200
+
+c3p0 (0.9.1.2-3) unstable; urgency=low
+
+  * Build-Depend on gcj-jdk (Closes: #539177).
+    (Taken from Ubuntu)
+  * Let libc3p0-java depend on default-jre-headless instead of default-jre.
+    (Taken from Ubuntu)
+  * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch <konque...@gmx.de>  Sun, 06 Sep 2009 22:21:29 +0200
+
+c3p0 (0.9.1.2-2) unstable; urgency=low
+
+  [ Michael Koch ]
+  * Use uscan sf.net helper for SourceForge. Fixes upstream checking.
+  * Updated Standards-Version to 3.7.3.
+  * Added Homepage field.
+
+  [ Varun Hiremath ]
+  * Convert to default-jdk/jre (Closes: #526273)
+  * Bump Standards-Version to 3.8.1
+  * Fix Vcs-* fileds
+
+ -- Varun Hiremath <va...@debian.org>  Thu, 07 May 2009 19:04:58 -0400
+
+c3p0 (0.9.1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Add debian/orig-tar.sh
+  * debian/rules: implement get-orig-source
+  * move debian/README.Debian to debian/REAMDE.Debian-source and update the 
file.
+  * debian/control:
+    + Add Homepage and Build-Depend on debhelper (>= 5)
+    + Add XS-Vcs-{Svn, Browser} headers.
+    + Add myself to Uploaders.
+  * debian/compat: Bump compat to 5
+  * Remove debian/libc3p0-java.* files and install and link jars in
+    debian/rules using DEB_UPSTREAM VERSION.
+  * Fix the package version, dfsg not required as the changes have been
+    documented in debian/README.Debian-source.
+  * Add debian/orig-tar.exclude and remove pre-built docs from orig.tar.gz
+
+ -- Varun Hiremath <varunhirem...@gmail.com>  Sun, 16 Sep 2007 13:35:34 +0530
+
+c3p0 (0.9.1.1.dfsg.1-2) unstable; urgency=low
+
+  * Upload to unstable.
+  * Clean out correctly.
+  * Moved debhelper and cdbs from Build-Depends-Indep to Build-Depends.
+  * Fixed address of FSF in debian/copyright.
+  * Added myself to Uploaders.
+
+ -- Michael Koch <konque...@gmx.de>  Tue, 10 Jul 2007 23:27:20 +0200
+
+c3p0 (0.9.1.1.dfsg.1-1) experimental; urgency=low
+
+  * Initial Release (closes: #386100).
+
+ -- Arnaud Vandyck <av...@debian.org>  Tue,  3 Apr 2007 15:06:17 +0200

Deleted: tags/c3p0/0.9.1.2-6/debian/control
===================================================================
--- trunk/c3p0/debian/control   2012-04-22 03:49:00 UTC (rev 15980)
+++ tags/c3p0/0.9.1.2-6/debian/control  2012-04-22 04:43:54 UTC (rev 15982)
@@ -1,31 +0,0 @@
-Source: c3p0
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
-Uploaders: Michael Koch <konque...@gmx.de>, Varun Hiremath <va...@debian.org>
-Build-Depends: debhelper (>= 7), cdbs, maven-repo-helper
-Build-Depends-Indep: ant, gcj-jdk, liblog4j1.2-java, libmx4j-java
-Standards-Version: 3.8.4
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/c3p0
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/c3p0
-Homepage: http://sourceforge.net/projects/c3p0
-
-Package: libc3p0-java
-Architecture: all
-Depends: ${misc:Depends}, default-jre-headless | java2-runtime-headless, 
liblog4j1.2-java, libmx4j-java
-Description: library for JDBC connection pooling
- c3p0 is an easy-to-use library for making traditional JDBC drivers
- "enterprise-ready" by augmenting them with functionality defined by
- the jdbc3 spec and the optional extensions to jdbc2.
-
-Package: libc3p0-java-doc
-Section: doc
-Architecture: all
-Depends: ${misc:Depends}
-Suggests: libc3p0-java
-Description: library for JDBC connection pooling (documentation)
- c3p0 is an easy-to-use library for making traditional JDBC drivers
- "enterprise-ready" by augmenting them with functionality defined by
- the jdbc3 spec and the optional extensions to jdbc2.
- .
- This package includes the documentation.

Copied: tags/c3p0/0.9.1.2-6/debian/control (from rev 15981, 
trunk/c3p0/debian/control)
===================================================================
--- tags/c3p0/0.9.1.2-6/debian/control                          (rev 0)
+++ tags/c3p0/0.9.1.2-6/debian/control  2012-04-22 04:43:54 UTC (rev 15982)
@@ -0,0 +1,32 @@
+Source: c3p0
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
+Uploaders: Varun Hiremath <va...@debian.org>
+Build-Depends: debhelper (>= 7), cdbs, maven-repo-helper
+Build-Depends-Indep: ant, gcj-jdk, liblog4j1.2-java, libmx4j-java, 
ant-optional,
+ junit, libhsqldb-java
+Standards-Version: 3.9.3
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/c3p0
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/c3p0
+Homepage: http://sourceforge.net/projects/c3p0
+
+Package: libc3p0-java
+Architecture: all
+Depends: ${misc:Depends}, liblog4j1.2-java, libmx4j-java
+Description: library for JDBC connection pooling
+ c3p0 is an easy-to-use library for making traditional JDBC drivers
+ "enterprise-ready" by augmenting them with functionality defined by
+ the jdbc3 spec and the optional extensions to jdbc2.
+
+Package: libc3p0-java-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Suggests: libc3p0-java
+Description: library for JDBC connection pooling (documentation)
+ c3p0 is an easy-to-use library for making traditional JDBC drivers
+ "enterprise-ready" by augmenting them with functionality defined by
+ the jdbc3 spec and the optional extensions to jdbc2.
+ .
+ This package includes the documentation.

Deleted: tags/c3p0/0.9.1.2-6/debian/rules
===================================================================
--- trunk/c3p0/debian/rules     2012-04-22 03:49:00 UTC (rev 15980)
+++ tags/c3p0/0.9.1.2-6/debian/rules    2012-04-22 04:43:54 UTC (rev 15982)
@@ -1,20 +0,0 @@
-#!/usr/bin/make -f
-# debian/rules file for c3p0 (uses cdbs)
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/ant.mk
-
-JAVA_HOME := /usr/lib/jvm/java-gcj
-ANT_HOME := /usr/share/ant
-DEB_JARS := log4j1.2 mx4j
-DEB_ANT_BUILD_TARGET := jar javadocs
-
-clean::
-       ( cd relproj ; ant clean )
-
-install/libc3p0-java::
-       mh_installpom -plibc3p0-java debian/pom.xml
-       mh_installjar -plibc3p0-java debian/pom.xml -l build/c3p0*.jar
-
-get-orig-source:
-       -uscan --upstream-version 0 --rename

Copied: tags/c3p0/0.9.1.2-6/debian/rules (from rev 15981, 
trunk/c3p0/debian/rules)
===================================================================
--- tags/c3p0/0.9.1.2-6/debian/rules                            (rev 0)
+++ tags/c3p0/0.9.1.2-6/debian/rules    2012-04-22 04:43:54 UTC (rev 15982)
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+# debian/rules file for c3p0 (uses cdbs)
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME := /usr/lib/jvm/java-gcj
+ANT_HOME := /usr/share/ant
+DEB_JARS := log4j1.2 mx4j junit ant-junit hsql
+DEB_ANT_BUILD_TARGET := jar javadocs junit-tests 
+
+clean::
+       ( cd relproj ; ant clean )
+
+install/libc3p0-java::
+       mh_installpom -plibc3p0-java debian/pom.xml
+       mh_installjar -plibc3p0-java debian/pom.xml -l build/c3p0*.jar
+
+get-orig-source:
+       -uscan --upstream-version 0 --rename


_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to