This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository libjdo-api-java.
commit 2c96a3c06aea92ec3ba3f5b8bfe5a67207166de8 Author: Miguel Landaeta <[email protected]> Date: Tue Jun 8 01:09:09 2010 +0000 * Team upload. * New upstream release. (Closes: #584965). * Bump Standards-Version to 3.8.4. No changes were needed. * Update Vcs-* fields. * Drop unneeded dependences on JREs. * Switch source package to format 3.0 (quilt). --- build.properties | 5 ---- build.xml | 33 --------------------- debian/changelog | 11 +++++++ debian/control | 8 ++--- debian/patches/enable_build_with_ant.diff | 49 +++++++++++++++++++++++++++++++ debian/patches/series | 1 + debian/rules | 2 ++ debian/source/format | 1 + debian/watch | 2 +- 9 files changed, 69 insertions(+), 43 deletions(-) diff --git a/build.properties b/build.properties deleted file mode 100644 index 04fffd4..0000000 --- a/build.properties +++ /dev/null @@ -1,5 +0,0 @@ -class.dir=build -source.dir=jdo2-api-2.0/src/java -jar.name=jdo2-api.jar -doc.dir=docs -doc.packagenames=javax.jdo.* diff --git a/build.xml b/build.xml deleted file mode 100644 index e8fd87a..0000000 --- a/build.xml +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project default="javadoc" name="jdo2-api" basedir="."> - <property file="build.properties"/> - - <target name="clean" description="Clean up"> - <delete dir="${class.dir}"/> - <delete file="${jar.name}"/> - </target> - - <target name="compile" description="Compile the sources"> - <mkdir dir="${class.dir}"/> - <javac srcdir="${source.dir}" destdir="${class.dir}" - deprecation="true" debug="true" optimize="false"/> - </target> - - <target name="javadoc" description="Creates Javadoc documentation" - depends="jar"> - <mkdir dir="${doc.dir}"/> - <javadoc packagenames="${doc.packagenames}" - classpath="${class.dir}/${jar.name}" - sourcepath="${source.dir}" destdir="${doc.dir}"/> - </target> - - <target name="jar" description="Create the jar" depends="compile"> - <jar jarfile="${jar.name}" basedir="${class.dir}"/> - </target> - - <target name="install" depends="jar"> - <mkdir dir="${destdir}/usr/share/java/" /> - <copy file="${jar.name}" todir="${destdir}/usr/share/java/"/> - </target> -</project> diff --git a/debian/changelog b/debian/changelog index 67c106c..946a765 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +libjdo-api-java (2.2-1) UNRELEASED; urgency=low + + * Team upload. + * New upstream release. (Closes: #584965). + * Bump Standards-Version to 3.8.4. No changes were needed. + * Update Vcs-* fields. + * Drop unneeded dependences on JREs. + * Switch source package to format 3.0 (quilt). + + -- Miguel Landaeta <[email protected]> Mon, 07 Jun 2010 19:48:10 -0430 + libjdo-api-java (2.0-3) unstable; urgency=low * Add glassfish-javaee to DEB_JARS and Build-Depends. (Closes: #543056) diff --git a/debian/control b/debian/control index cef3a56..5ce2db2 100644 --- a/debian/control +++ b/debian/control @@ -4,14 +4,14 @@ Priority: extra Maintainer: Debian Java Maintainers <[email protected]> Uploaders: Torsten Werner <[email protected]> Build-Depends: ant, cdbs, debhelper (>= 5), default-jdk, glassfish-javaee -Standards-Version: 3.8.2 -Vcs-Svn: https://bollin.googlecode.com/svn/libjdo-java/trunk -Vcs-Browser: http://bollin.googlecode.com/svn/libjdo-java/trunk +Standards-Version: 3.8.4 +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjdo-api-java +Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjdo-api-java/ Homepage: http://db.apache.org/jdo/ Package: libjdo-api-java Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre | java1-runtime | java2-runtime +Depends: ${misc:Depends} Description: implementation of JSR 243: Java Data Objects 2.0 Java Data Objects (JDO) is a standard way to access persistent data in databases, using plain old Java objects (POJO) to represent persistent data. diff --git a/debian/patches/enable_build_with_ant.diff b/debian/patches/enable_build_with_ant.diff new file mode 100644 index 0000000..da86f94 --- /dev/null +++ b/debian/patches/enable_build_with_ant.diff @@ -0,0 +1,49 @@ +Description: enable build with ant +Author: Torsten Werner <[email protected]> +Forwarded: no +Last-Update: 2010-06-07 + +--- /dev/null ++++ libjdo-api-java-2.2/build.xml +@@ -0,0 +1,33 @@ ++<?xml version="1.0" encoding="UTF-8"?> ++ ++<project default="javadoc" name="jdo2-api" basedir="."> ++ <property file="build.properties"/> ++ ++ <target name="clean" description="Clean up"> ++ <delete dir="${class.dir}"/> ++ <delete file="${jar.name}"/> ++ </target> ++ ++ <target name="compile" description="Compile the sources"> ++ <mkdir dir="${class.dir}"/> ++ <javac srcdir="${source.dir}" destdir="${class.dir}" ++ deprecation="true" debug="true" optimize="false"/> ++ </target> ++ ++ <target name="javadoc" description="Creates Javadoc documentation" ++ depends="jar"> ++ <mkdir dir="${doc.dir}"/> ++ <javadoc packagenames="${doc.packagenames}" ++ classpath="${class.dir}/${jar.name}" ++ sourcepath="${source.dir}" destdir="${doc.dir}"/> ++ </target> ++ ++ <target name="jar" description="Create the jar" depends="compile"> ++ <jar jarfile="${jar.name}" basedir="${class.dir}"/> ++ </target> ++ ++ <target name="install" depends="jar"> ++ <mkdir dir="${destdir}/usr/share/java/" /> ++ <copy file="${jar.name}" todir="${destdir}/usr/share/java/"/> ++ </target> ++</project> +--- /dev/null ++++ libjdo-api-java-2.2/build.properties +@@ -0,0 +1,5 @@ ++class.dir=build ++source.dir=jdo2-api-2.2/src/java ++jar.name=jdo2-api.jar ++doc.dir=docs ++doc.packagenames=javax.jdo.* diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..8e31df3 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +enable_build_with_ant.diff diff --git a/debian/rules b/debian/rules index 7129951..f49c4cb 100755 --- a/debian/rules +++ b/debian/rules @@ -9,3 +9,5 @@ DEB_JARS := glassfish-javaee get-orig-source: uscan --force-download +clean:: + -rm -rf docs diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch index a6922de..9710785 100644 --- a/debian/watch +++ b/debian/watch @@ -1,3 +1,3 @@ version=3 -http://db.apache.org/jdo/releases/release-2.0.cgi .*/jdo2-api-(.*)-src.tar.gz \ +http://db.apache.org/jdo/releases/release-2.2.cgi .*/jdo2-api-(.*)-src.tar.gz \ debian debian/orig-tar.sh -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libjdo-api-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

