[pkg-java] r18607 - in trunk/java3d/debian: . patches

Tony Mancill tmancill at moszumanska.debian.org
Sun Nov 23 03:02:30 GMT 2014


Author: tmancill
Date: 2014-11-23 03:02:30 +0000 (Sun, 23 Nov 2014)
New Revision: 18607

Added:
   trunk/java3d/debian/patches/typedef.patch
Modified:
   trunk/java3d/debian/changelog
   trunk/java3d/debian/control
   trunk/java3d/debian/patches/series
Log:
merge patch for #769301 into existing -10 packaging

Modified: trunk/java3d/debian/changelog
===================================================================
--- trunk/java3d/debian/changelog	2014-11-19 16:30:37 UTC (rev 18606)
+++ trunk/java3d/debian/changelog	2014-11-23 03:02:30 UTC (rev 18607)
@@ -1,13 +1,19 @@
 java3d (1.5.2+dfsg-10) unstable; urgency=medium
 
   * Team upload.
-  * Updated Standards-Version to 3.9.5 (no changes)
+
+  [ tony mancill ]
+  * Updated Standards-Version to 3.9.6 (no changes)
   * Update Upstream URL in d/control and d/copyright. (Closes: #758413)
   * Use canonical Vcs URLs for packaging repo.
   * Use debhelper 9.
 
- -- tony mancill <tmancill at debian.org>  Mon, 18 Aug 2014 22:38:20 -0700
+  [ Markus Koschany ]
+  * Add typedef.patch. Define GLsizeiptr and GLintptr explicitly to
+    prevent a FTBFS. (Closes: #769301)
 
+ -- Markus Koschany <apo at gambaru.de>  Sun, 23 Nov 2014 00:10:37 +0100
+
 java3d (1.5.2+dfsg-9) unstable; urgency=low
 
   * Team upload.

Modified: trunk/java3d/debian/control
===================================================================
--- trunk/java3d/debian/control	2014-11-19 16:30:37 UTC (rev 18606)
+++ trunk/java3d/debian/control	2014-11-23 03:02:30 UTC (rev 18607)
@@ -14,7 +14,7 @@
  libgl1-mesa-dev,
  libxext-dev,
  libxt-dev
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: http://java3d.java.net
 Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/java3d/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/java3d/

Modified: trunk/java3d/debian/patches/series
===================================================================
--- trunk/java3d/debian/patches/series	2014-11-19 16:30:37 UTC (rev 18606)
+++ trunk/java3d/debian/patches/series	2014-11-23 03:02:30 UTC (rev 18607)
@@ -5,3 +5,4 @@
 05_pic_amd64.patch
 05_pic_i586.patch
 06_java-compat.patch
+typedef.patch

Added: trunk/java3d/debian/patches/typedef.patch
===================================================================
--- trunk/java3d/debian/patches/typedef.patch	                        (rev 0)
+++ trunk/java3d/debian/patches/typedef.patch	2014-11-23 03:02:30 UTC (rev 18607)
@@ -0,0 +1,27 @@
+From: Markus Koschany <apo at gambaru.de>
+Date: Sat, 22 Nov 2014 23:54:59 +0100
+Subject: typedef
+
+Define GLsizeiptr and GLintptr explicitly to prevent a FTBFS.
+This patch may be removed in the future when
+https://bugs.debian.org/765933 gets fixed.
+
+Bug: https://bugs.debian.org/769301
+Forwarded: no
+---
+ j3d-core/src/native/ogl/gldefs.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/j3d-core/src/native/ogl/gldefs.h b/j3d-core/src/native/ogl/gldefs.h
+index bf4434f..d20de17 100644
+--- a/j3d-core/src/native/ogl/gldefs.h
++++ b/j3d-core/src/native/ogl/gldefs.h
+@@ -65,6 +65,8 @@
+ #include <X11/Xlib.h>
+ #include <X11/Xutil.h>
+ 
++typedef ptrdiff_t GLsizeiptr;
++typedef ptrdiff_t GLintptr;
+ #include <GL/gl.h>
+ #include <GL/glx.h>
+ #ifdef Java3D_undef__glext_h_




More information about the pkg-java-commits mailing list