[Python-modules-commits] r6148 - in packages/pyopengl/trunk/debian (3 files)
shlomme at users.alioth.debian.org
shlomme at users.alioth.debian.org
Tue Aug 12 06:26:52 UTC 2008
Date: Tuesday, August 12, 2008 @ 06:26:50
Author: shlomme
Revision: 6148
* prepare for new upstream release 3.0.0~b3
Modified:
packages/pyopengl/trunk/debian/changelog
packages/pyopengl/trunk/debian/patches/00list
Deleted:
packages/pyopengl/trunk/debian/patches/02_test_fix.dpatch
Modified: packages/pyopengl/trunk/debian/changelog
===================================================================
--- packages/pyopengl/trunk/debian/changelog 2008-08-12 05:32:35 UTC (rev 6147)
+++ packages/pyopengl/trunk/debian/changelog 2008-08-12 06:26:50 UTC (rev 6148)
@@ -1,10 +1,17 @@
-pyopengl (3.0.0~b3-2) UNRELEASED; urgency=low
+pyopengl (3.0.0~b5-1) experimental; urgency=low
- * debian/rules: Use dynamic pyversion for building docs.Don't use hardcoded
- python2.5
+ [Torsten Marek]
+ * New upstream release
+ * debian/patches
+ - removed 02_test_fix.dpatch, not needed anymore
+
+ [Andrea Gasparini]
+ * debian/rules
+ - Use dynamic pyversion for building docs.Don't use hardcoded
+ python2.5
+
+ -- Torsten Marek <shlomme at debian.org> Tue, 12 Aug 2008 08:17:07 +0200
- -- Andrea Gasparini <gaspa at yattaweb.it> Tue, 15 Jul 2008 16:26:13 +0200
-
pyopengl (3.0.0~b3-1) unstable; urgency=low
* New upstream release (Closes: #454988)
Modified: packages/pyopengl/trunk/debian/patches/00list
===================================================================
--- packages/pyopengl/trunk/debian/patches/00list 2008-08-12 05:32:35 UTC (rev 6147)
+++ packages/pyopengl/trunk/debian/patches/00list 2008-08-12 06:26:50 UTC (rev 6148)
@@ -1,3 +1,2 @@
01_no_ctypes_dep
-02_test_fix
03_tk_fix
Deleted: packages/pyopengl/trunk/debian/patches/02_test_fix.dpatch
===================================================================
--- packages/pyopengl/trunk/debian/patches/02_test_fix.dpatch 2008-08-12 05:32:35 UTC (rev 6147)
+++ packages/pyopengl/trunk/debian/patches/02_test_fix.dpatch 2008-08-12 06:26:50 UTC (rev 6148)
@@ -1,37 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 02_test_fix.dpatch by Torsten Marek <shlomme at debian.org>
-##
-## DP: Only execute tests if invoked explicitly, not just imported
-
- at DPATCH@
-diff -urNad pyopengl-3.0.0~b3~/OpenGL/tests/glread_test.py pyopengl-3.0.0~b3/OpenGL/tests/glread_test.py
---- pyopengl-3.0.0~b3~/OpenGL/tests/glread_test.py 2008-06-06 17:57:23.000000000 +0200
-+++ pyopengl-3.0.0~b3/OpenGL/tests/glread_test.py 2008-07-03 11:00:55.000000000 +0200
-@@ -4,10 +4,6 @@
- width = 512
- height = 512
-
--glutInit()
--glutInitWindowSize(512, 512)
--glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH)
--win = glutCreateWindow("Test")
-
- def draw():
- glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
-@@ -30,8 +26,12 @@
- glutDestroyWindow(win)
- quit()
-
--glutDisplayFunc(draw)
--glutKeyboardFunc(keyfunc)
--
--glutMainLoop()
-+if __name__ == "__main__":
-+ glutInit()
-+ glutInitWindowSize(512, 512)
-+ glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH)
-+ win = glutCreateWindow("Test")
-+ glutDisplayFunc(draw)
-+ glutKeyboardFunc(keyfunc)
-
-+ glutMainLoop()
More information about the Python-modules-commits
mailing list