diff options
author | monsta <[email protected]> | 2016-11-06 14:42:18 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-06 14:42:18 +0300 |
commit | 65371f53dbb06180b750dad7c19e7bcf0f8651d6 (patch) | |
tree | 0b387d0a17207e13ce662da55970c97b50bc55db /data | |
parent | 7dd02941b3647477dfe0cf8177c2eeff8bfe7b84 (diff) | |
download | pluma-65371f53dbb06180b750dad7c19e7bcf0f8651d6.tar.bz2 pluma-65371f53dbb06180b750dad7c19e7bcf0f8651d6.tar.xz |
drop Python plugins support and --enable-python build option
it requires PyGTK so won't even build with GTK+3
but keep plugins themselves for future porting to libpeas
Diffstat (limited to 'data')
-rw-r--r-- | data/pluma-bugreport.sh.in | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/data/pluma-bugreport.sh.in b/data/pluma-bugreport.sh.in index 5aa2178e..4d97a6ae 100644 --- a/data/pluma-bugreport.sh.in +++ b/data/pluma-bugreport.sh.in @@ -1,10 +1,7 @@ #!/bin/sh -ENABLE_PYTHON=@enable_python@ - PKG_CONFIG_MODULES="glib-2.0 gtk+-2.0 gtksourceview-2.0 \ - pygobject-2.0 pygtk-2.0 \ - pygtksourceview-2.0 enchant iso-codes" + enchant iso-codes" echo_padded () { @@ -54,20 +51,3 @@ else fi echo -echo "Python module versions:" -if test "$ENABLE_PYTHON" = "yes" -then - echo_padded "python" - python -V 2>&1 | cut -c8- - - echo_padded "pygtk" - python -c "import gtk, sys; \ - sys.stdout.write('%d.%d.%d ' % gtk.pygtk_version); \ - sys.stdout.write('(GTK+ %d.%d.%d)' % gtk.gtk_version)" \ - 2>/dev/null - echo -else - echo " Python support was not enabled at compile time." -fi -echo - |