diff options
Diffstat (limited to 'meta-extras/packages/python/python-pygtk')
| -rw-r--r-- | meta-extras/packages/python/python-pygtk/nodocs.patch | 13 | ||||
| -rw-r--r-- | meta-extras/packages/python/python-pygtk/prevent_to_get_display_during_import.patch | 14 |
2 files changed, 27 insertions, 0 deletions
diff --git a/meta-extras/packages/python/python-pygtk/nodocs.patch b/meta-extras/packages/python/python-pygtk/nodocs.patch new file mode 100644 index 0000000000..9b2387e959 --- /dev/null +++ b/meta-extras/packages/python/python-pygtk/nodocs.patch | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | Index: pygtk-2.10.4/Makefile.am | ||
| 2 | =================================================================== | ||
| 3 | --- pygtk-2.10.4.orig/Makefile.am | ||
| 4 | +++ pygtk-2.10.4/Makefile.am | ||
| 5 | @@ -4,7 +4,7 @@ if BUILD_GTK | ||
| 6 | GTK_SUBDIR = gtk | ||
| 7 | endif | ||
| 8 | |||
| 9 | -SUBDIRS = codegen . $(GTK_SUBDIR) examples tests docs | ||
| 10 | +SUBDIRS = codegen . $(GTK_SUBDIR) examples tests | ||
| 11 | |||
| 12 | PLATFORM_VERSION = 2.0 | ||
| 13 | |||
diff --git a/meta-extras/packages/python/python-pygtk/prevent_to_get_display_during_import.patch b/meta-extras/packages/python/python-pygtk/prevent_to_get_display_during_import.patch new file mode 100644 index 0000000000..db3469ef57 --- /dev/null +++ b/meta-extras/packages/python/python-pygtk/prevent_to_get_display_during_import.patch | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | Index: pygtk-2.10.4/gtk/__init__.py | ||
| 2 | =================================================================== | ||
| 3 | --- pygtk-2.10.4.orig/gtk/__init__.py 2007-11-27 19:27:05.000000000 -0300 | ||
| 4 | +++ pygtk-2.10.4/gtk/__init__.py 2007-11-27 19:28:22.000000000 -0300 | ||
| 5 | @@ -78,7 +78,8 @@ | ||
| 6 | |||
| 7 | keysyms = LazyModule('keysyms', locals()) | ||
| 8 | |||
| 9 | -_init() | ||
| 10 | +if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'): | ||
| 11 | + init() | ||
| 12 | |||
| 13 | # CAPI | ||
| 14 | _PyGtk_API = _gtk._PyGtk_API | ||
