tags 449341 + patch thanks Hi,
Attached is the diff for my gst0.10-python 0.10.12-1.1 NMU. It will be uploaded after some tests on hppa. Alex
diff -u gst0.10-python-0.10.12/debian/control gst0.10-python-0.10.12/debian/control --- gst0.10-python-0.10.12/debian/control +++ gst0.10-python-0.10.12/debian/control @@ -28,7 +28,8 @@ Architecture: any Depends: ${shlibs:Depends}, ${python:Depends}, - python-gobject (>= 2.11.2) + python-gobject (>= 2.11.2), + python-libxml2 Provides: ${python:Provides} Replaces: python2.3-gst0.10, python2.4-gst0.10 diff -u gst0.10-python-0.10.12/debian/changelog gst0.10-python-0.10.12/debian/changelog --- gst0.10-python-0.10.12/debian/changelog +++ gst0.10-python-0.10.12/debian/changelog @@ -1,3 +1,11 @@ +gst0.10-python (0.10.12-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Add dependency to python-libxml2 and change load order in + the init of gst0.10-python (Closes: #449341) + + -- Alexander Wirt <[EMAIL PROTECTED]> Mon, 08 Sep 2008 20:22:47 +0000 + gst0.10-python (0.10.12-1) unstable; urgency=low * New upstream release, 'A Wild Finish'. diff -u gst0.10-python-0.10.12/debian/patches/series gst0.10-python-0.10.12/debian/patches/series --- gst0.10-python-0.10.12/debian/patches/series +++ gst0.10-python-0.10.12/debian/patches/series @@ -1,0 +2 @@ +03_fix_libxml_symbolproblem only in patch2: unchanged: --- gst0.10-python-0.10.12.orig/debian/patches/03_fix_libxml_symbolproblem +++ gst0.10-python-0.10.12/debian/patches/03_fix_libxml_symbolproblem @@ -0,0 +1,19 @@ +Index: gst0.10-python-0.10.12/gst/__init__.py +=================================================================== +--- gst0.10-python-0.10.12.orig/gst/__init__.py 2008-09-08 20:34:05.000000000 +0000 ++++ gst0.10-python-0.10.12/gst/__init__.py 2008-09-08 20:34:30.000000000 +0000 +@@ -167,12 +167,12 @@ + + if RTLD_GLOBAL != -1 and RTLD_LAZY != -1: + sys.setdlopenflags(RTLD_LAZY | RTLD_GLOBAL) +- from _gst import * +- import interfaces + try: + import libxml2 + except: + pass ++ from _gst import * ++ import interfaces + + version = get_gst_version +