Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2014-11-28 08:46:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2014-11-24 
11:13:14.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-11-28 
08:46:58.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Nov 26 09:31:55 UTC 2014 - g...@opensuse.org
+
+- remove support for the unmaintained GTK UI plugin (bnc#901511)
+- 3.1.111
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.1.110.tar.bz2

New:
----
  yast2-3.1.111.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.bRmgkS/_old  2014-11-28 08:46:59.000000000 +0100
+++ /var/tmp/diff_new_pack.bRmgkS/_new  2014-11-28 08:46:59.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.110
+Version:        3.1.111
 Release:        0
 Url:            https://github.com/yast/yast-yast2
 

++++++ yast2-3.1.110.tar.bz2 -> yast2-3.1.111.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.110/library/general/src/fillup/sysconfig.yast2 
new/yast2-3.1.111/library/general/src/fillup/sysconfig.yast2
--- old/yast2-3.1.110/library/general/src/fillup/sysconfig.yast2        
2014-11-14 20:27:37.000000000 +0100
+++ new/yast2-3.1.111/library/general/src/fillup/sysconfig.yast2        
2014-11-26 10:36:13.000000000 +0100
@@ -13,7 +13,7 @@
 #       presence and adapt accordingly
 WANTED_SHELL="auto"
 
-## Type: list(auto,qt,gtk,ncurses)
+## Type: list(auto,qt,ncurses)
 ## Default: "auto"
 # Default UI backend for YaST
 # selects the GUI plugin to be used to render yast widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.110/package/yast2.changes 
new/yast2-3.1.111/package/yast2.changes
--- old/yast2-3.1.110/package/yast2.changes     2014-11-14 20:27:37.000000000 
+0100
+++ new/yast2-3.1.111/package/yast2.changes     2014-11-26 10:36:13.000000000 
+0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Wed Nov 26 09:31:55 UTC 2014 - g...@opensuse.org
+
+- remove support for the unmaintained GTK UI plugin (bnc#901511)
+- 3.1.111
+
+-------------------------------------------------------------------
 Wed Nov 12 14:04:51 UTC 2014 - lsle...@suse.cz
 
 - removed RegistrationStatus.pm module (obsolete, not supported
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.110/package/yast2.spec 
new/yast2-3.1.111/package/yast2.spec
--- old/yast2-3.1.110/package/yast2.spec        2014-11-14 20:27:37.000000000 
+0100
+++ new/yast2-3.1.111/package/yast2.spec        2014-11-26 10:36:13.000000000 
+0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.1.110
+Version:        3.1.111
 Release:        0
 URL:            https://github.com/yast/yast-yast2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.110/scripts/yast2 
new/yast2-3.1.111/scripts/yast2
--- old/yast2-3.1.110/scripts/yast2     2014-11-14 20:27:37.000000000 +0100
+++ new/yast2-3.1.111/scripts/yast2     2014-11-26 10:36:13.000000000 +0100
@@ -140,37 +140,25 @@
 {
     if [ "$WANTED_GUI" = "auto" ]; then
        probe_desktop_gui
-       WANTED_GUI=$DESKTOP_GUI
+       WANTED_GUI=qt
        GUI_SELECTION=auto
     fi
 
     if [ "$WANTED_GUI" = "gtk" ]; then
-       if check_gtk; then
-           SELECTED_GUI=gtk
-       else
-           if check_qt; then
-               SELECTED_GUI=qt
-               WANTED_GUI=qt
-               if [ "$GUI_SELECTION" != "auto" ]; then
-                   echo >&2 "GTK GUI wanted but not found, falling back to Qt."
-               fi
-           else
-               echo >&2 "GTK GUI wanted but not found, falling back to 
ncurses."
+       if check_qt; then
+           SELECTED_GUI=qt
+           WANTED_GUI=qt
+           if [ "$GUI_SELECTION" != "auto" ]; then
+               echo >&2 "The GTK GUI has been retired, falling back to Qt."
            fi
+       else
+           echo >&2 "The GTK GUI has been retired, falling back to ncurses."
        fi
     elif [ "$WANTED_GUI" = "qt" ]; then
        if check_qt; then
            SELECTED_GUI=qt
        else
-           if check_gtk; then
-               SELECTED_GUI=gtk
-               WANTED_GUI=gtk
-               if [ "$GUI_SELECTION" != "auto" ]; then
-                   echo >&2 "Qt GUI wanted but not found, falling back to GTK."
-               fi
-           else
-               echo >&2 "Qt GUI wanted but not found, falling back to ncurses."
-           fi
+           echo >&2 "Qt GUI wanted but not found, falling back to ncurses."
        fi
     elif [ "$SELECTED_GUI" != "gtk" -a "$WANTED_GUI" != "ncurses" ]; then
        echo >&2 "Unknown GUI '$WANTED_GUI', falling back to ncurses."
@@ -391,11 +379,9 @@
        echo "Something is wrong with the YaST user interface, NCurses selected 
but no terminal available." >&2
        exit_code=1             # also skips y2base later
     fi
-elif [ "$SELECTED_GUI" = "qt" -o "$SELECTED_GUI" = "gtk" ]; then
+elif [ "$SELECTED_GUI" = "qt" ]; then
 
-    if [ "$SELECTED_GUI" = "qt" ]; then
-       set_qt_home_dir
-    fi
+    set_qt_home_dir
 
     # find which control center shell we want, if there is none we
     # fall back to the built-in ycp menu
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.110/scripts/yast2-funcs 
new/yast2-3.1.111/scripts/yast2-funcs
--- old/yast2-3.1.110/scripts/yast2-funcs       2014-11-14 20:27:37.000000000 
+0100
+++ new/yast2-3.1.111/scripts/yast2-funcs       2014-11-26 10:36:13.000000000 
+0100
@@ -69,14 +69,6 @@
 }
 
 #
-# check if the gtk plugin and all necessary libraries are present
-#
-function check_gtk()
-{
-    check_libyui_plugin gtk || check_plugin libpy2gtk.so.2 "the gtk frontend"
-}
-
-#
 # check if the ncurses plugin and all necessary libraries are present
 #
 function check_ncurses()

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to