Merge lp:~jtaylor/ubuntu/natty/pyfltk/fix-779340 into lp:ubuntu/natty/pyfltk

Proposed by Julian Taylor
Status: Merged
Merge reported by: Colin Watson
Merged at revision: not available
Proposed branch: lp:~jtaylor/ubuntu/natty/pyfltk/fix-779340
Merge into: lp:ubuntu/natty/pyfltk
Diff against target: 43 lines (+24/-0)
3 files modified
debian/changelog (+7/-0)
debian/patches/opengl_fix (+16/-0)
debian/patches/series (+1/-0)
To merge this branch: bzr merge lp:~jtaylor/ubuntu/natty/pyfltk/fix-779340
Reviewer Review Type Date Requested Status
Marc Deslauriers Approve
Ubuntu branches Pending
Review via email: mp+68194@code.launchpad.net

Description of the change

simple fix to make sure that the extension is linked against the needed libgl

To post a comment you must log in.
Revision history for this message
Marc Deslauriers (mdeslaur) wrote :

Looks good, ACK! Thanks.

I've uploaded it to natty-proposed, and will prepare an SRU.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2011-02-07 04:18:27 +0000
3+++ debian/changelog 2011-07-17 22:51:18 +0000
4@@ -1,3 +1,10 @@
5+pyfltk (1.1.5-3ubuntu0.1) natty; urgency=low
6+
7+ * Added debian/patches/opengl_fix. This corrects the inability to import
8+ pyfltk when compiled with the new g++ linker (LP: #779340)
9+
10+ -- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 18 Jul 2011 00:41:21 +0200
11+
12 pyfltk (1.1.5-3) unstable; urgency=low
13
14 * debian/control:
15
16=== added file 'debian/patches/opengl_fix'
17--- debian/patches/opengl_fix 1970-01-01 00:00:00 +0000
18+++ debian/patches/opengl_fix 2011-07-17 22:51:18 +0000
19@@ -0,0 +1,16 @@
20+Description: This corrects import error when compiled with new g++ linker.
21+Author: Julian Taylor <jtaylor.debian@googlemail.com>
22+
23+Index: pyfltk-1.1.5/setup.py
24+===================================================================
25+--- pyfltk-1.1.5.orig/setup.py 2011-05-16 16:52:59.000000000 -0500
26++++ pyfltk-1.1.5/setup.py 2011-05-16 16:53:44.000000000 -0500
27+@@ -241,7 +241,7 @@
28+ lowercase_item = item.lower()
29+ if string.find(lowercase_item, "pthread") >= 0:
30+ doMulti = True
31+- if string.find(lowercase_item, "fltk") < 0 and string.find(lowercase_item, "gl") >= 0:
32++ if string.find(lowercase_item, "fltk") >= 0 and string.find(lowercase_item, "gl") >= 0:
33+ doOpenGL = True
34+ if string.find(lowercase_item, "fltk") >= 0 and string.find(lowercase_item, "forms") >= 0:
35+ doForms = True
36
37=== modified file 'debian/patches/series'
38--- debian/patches/series 2010-01-09 15:51:20 +0000
39+++ debian/patches/series 2011-07-17 22:51:18 +0000
40@@ -1,2 +1,3 @@
41 no_docs
42 platform_startswith
43+opengl_fix

Subscribers

People subscribed via source and target branches

to all changes: