This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository java3d.
commit 0ae1a2fc9bb4844ba0f39d495db6bd76af3abc40 Author: Onkar Shinde <[email protected]> Date: Sat Jan 16 19:50:20 2010 +0000 java3d 1.5.2+dfsg-5 --- debian/changelog | 18 ++++++++++++++++-- debian/control | 7 +++---- debian/patches/02_fix_generic_ftbfs.patch | 15 +++++++++------ debian/rules | 2 +- 4 files changed, 29 insertions(+), 13 deletions(-) diff --git a/debian/changelog b/debian/changelog index fd32635..85b9b89 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,23 @@ -java3d (1.5.2+dfsg-5) UNRELEASED; urgency=low +java3d (1.5.2+dfsg-5) unstable; urgency=low [ Sylvestre Ledru ] * Remove myself from the package - -- Sylvestre Ledru <[email protected]> Sun, 20 Sep 2009 11:23:53 +0200 + [ Onkar Shinde ] + * debian/control + - Change build dependency default-jdk to openjdk-6-jdk. This library uses + Sun specific APIs. + This change will put package in DEPWAIT on certain arch. But DEPWAIT is + better than FTBFS. (Closes: #559768) + - Change dependency default-jre to openjdk-6-jre. + - Remove -XS-Autobuild. Not needed anymore. + - Update standards version to 3.8.3. + * debian/rules + - Change JAVA_HOME to correspond to openjdk. + * debian/patches/02_fix_generic_ftbfs.patch + - Allow the build to continue on kFreeBSD as well. (Closes: #559766) + + -- Onkar Shinde <[email protected]> Sat, 09 Jan 2010 18:19:12 +0530 java3d (1.5.2+dfsg-4) unstable; urgency=low diff --git a/debian/control b/debian/control index dc8bab4..f1205ec 100644 --- a/debian/control +++ b/debian/control @@ -5,19 +5,18 @@ Maintainer: Debian Java Maintainers <[email protected] Uploaders: Petter Reinholdtsen <[email protected]>, Jonny Lamb <[email protected]>, Onkar Shinde <[email protected]>, Torsten Werner <[email protected]> -Build-Depends: debhelper (>= 5), cdbs, default-jdk, ant-optional, libvecmath-java, mesa-common-dev, libgl1-mesa-dev, libxext-dev, libxt-dev, quilt -Standards-Version: 3.8.2 +Build-Depends: debhelper (>= 5), cdbs, openjdk-6-jdk, ant-optional, libvecmath-java, mesa-common-dev, libgl1-mesa-dev, libxext-dev, libxt-dev, quilt +Standards-Version: 3.8.3 Homepage: http://java3d.dev.java.net Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/java3d/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/java3d/ -XS-Autobuild: yes DM-Upload-Allowed: yes Package: libjava3d-java Architecture: all Section: java Suggests: libjava3d-java-doc -Depends: ${misc:Depends}, default-jre | java5-runtime, libjava3d-jni (>= ${source:Version}), +Depends: ${misc:Depends}, openjdk-6-jre | java5-runtime, libjava3d-jni (>= ${source:Version}), libvecmath-java Description: Java 3D API (java library) The Java 3D API enables the creation of three-dimensional graphics diff --git a/debian/patches/02_fix_generic_ftbfs.patch b/debian/patches/02_fix_generic_ftbfs.patch index 5e75bb5..faf9a85 100644 --- a/debian/patches/02_fix_generic_ftbfs.patch +++ b/debian/patches/02_fix_generic_ftbfs.patch @@ -1,7 +1,7 @@ Index: java3d-1.5.2+dfsg/j3d-core/build.xml =================================================================== ---- java3d-1.5.2+dfsg.orig/j3d-core/build.xml 2008-05-23 22:31:19.000000000 +0200 -+++ java3d-1.5.2+dfsg/j3d-core/build.xml 2009-09-15 11:56:34.000000000 +0200 +--- java3d-1.5.2+dfsg.orig/j3d-core/build.xml 2010-01-09 18:52:55.000000000 +0530 ++++ java3d-1.5.2+dfsg/j3d-core/build.xml 2010-01-09 20:24:13.000000000 +0530 @@ -196,6 +196,15 @@ <property name="install.bin" value="lib/ppc"/> </target> @@ -27,12 +27,15 @@ Index: java3d-1.5.2+dfsg/j3d-core/build.xml <property name="build-debug-gen" location="${build}/${platform}/debug/gen"/> <property name="build-opt-gen" location="${build}/${platform}/opt/gen"/> <property name="docname" value="${build.relprefix}-${version_file}-doc"/> -@@ -382,6 +391,10 @@ +@@ -382,6 +391,13 @@ <os name="linux" arch="ppc"/> </condition> + <condition property="isLinuxGeneric"> ++ <or> + <os name="linux"/> ++ <os name="GNU/kFreeBSD"/> ++ </or> + </condition> + <condition property="isSolarisOnSparc"> @@ -40,8 +43,8 @@ Index: java3d-1.5.2+dfsg/j3d-core/build.xml </condition> Index: java3d-1.5.2+dfsg/j3d-core/src/native/build.xml =================================================================== ---- java3d-1.5.2+dfsg.orig/j3d-core/src/native/build.xml 2008-02-28 21:17:58.000000000 +0100 -+++ java3d-1.5.2+dfsg/j3d-core/src/native/build.xml 2009-09-15 11:56:34.000000000 +0200 +--- java3d-1.5.2+dfsg.orig/j3d-core/src/native/build.xml 2010-01-09 18:52:55.000000000 +0530 ++++ java3d-1.5.2+dfsg/j3d-core/src/native/build.xml 2010-01-09 20:23:04.000000000 +0530 @@ -45,6 +45,13 @@ <property name="osNativeScreenInfo" value="X11NativeScreenInfo"/> </target> @@ -91,7 +94,7 @@ Index: java3d-1.5.2+dfsg/j3d-core/src/native/build.xml Index: java3d-1.5.2+dfsg/j3d-core/src/native/ogl/build-linux-generic.xml =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ java3d-1.5.2+dfsg/j3d-core/src/native/ogl/build-linux-generic.xml 2009-09-15 11:57:25.000000000 +0200 ++++ java3d-1.5.2+dfsg/j3d-core/src/native/ogl/build-linux-generic.xml 2010-01-09 20:23:04.000000000 +0530 @@ -0,0 +1,74 @@ +<?xml version="1.0"?> + diff --git a/debian/rules b/debian/rules index 6d4ba40..3f42dfb 100755 --- a/debian/rules +++ b/debian/rules @@ -4,7 +4,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk -JAVA_HOME := /usr/lib/jvm/default-java +JAVA_HOME := /usr/lib/jvm/java-6-openjdk DEB_JARS := ant-nodeps vecmath DEB_ANT_BUILDFILE := j3d-core/build.xml DEB_ANT_CLEAN_TARGET := clean -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/java3d.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

