at 18.03-beta 974 B view raw
1diff -Nru gst-python-1.2.0-orig/gi/overrides/Makefile.in gst-python-1.2.0/gi/overrides/Makefile.in 2--- gst-python-1.2.0-orig/gi/overrides/Makefile.in 2014-03-22 21:47:56.235364405 +0800 3+++ gst-python-1.2.0/gi/overrides/Makefile.in 2014-03-22 21:48:28.737958066 +0800 4@@ -356,7 +356,7 @@ 5 6 # We install everything in the gi/overrides folder 7 pygioverridesdir = $(PYGI_OVERRIDES_DIR) 8-pygioverrides_PYTHON = Gst.py GstPbutils.py 9+pygioverrides_PYTHON = Gst.py GstPbutils.py __init__.py 10 pygioverridesexecdir = $(PYGI_OVERRIDES_DIR) 11 EXTRA_DIST = Gst.py 12 INCLUDES = $(PYTHON_INCLUDES) 13diff -Nru gst-python-1.2.0-orig/gi/overrides/__init__.py gst-python-1.2.0/gi/overrides/__init__.py 14--- gst-python-1.2.0-orig/gi/overrides/__init__.py 1970-01-01 08:00:00.000000000 +0800 15+++ gst-python-1.2.0/gi/overrides/__init__.py 2014-03-22 21:48:15.442124287 +0800 16@@ -0,0 +1,4 @@ 17+from pkgutil import extend_path 18+ 19+__path__ = extend_path(__path__, __name__) 20+print(__path__, __name__)