Hello community,

here is the log from the commit of package x11-tools for openSUSE:Factory 
checked in at 2014-11-14 09:18:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/x11-tools (Old)
 and      /work/SRC/openSUSE:Factory/.x11-tools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "x11-tools"

Changes:
--------
--- /work/SRC/openSUSE:Factory/x11-tools/x11-tools.changes      2014-08-25 
11:54:32.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.x11-tools.new/x11-tools.changes 2014-11-14 
09:18:27.000000000 +0100
@@ -1,0 +2,10 @@
+Tue Nov 04 22:55:00 UTC 2014 - Led <led...@gmail.com>
+
+- fix bashsisms in xf86debug script more correctly
+
+-------------------------------------------------------------------
+Sun Oct 19 20:46:00 UTC 2014 - Led <led...@gmail.com>
+
+- fix bashsisms
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ xf86debug ++++++
--- /var/tmp/diff_new_pack.oDiJ83/_old  2014-11-14 09:18:28.000000000 +0100
+++ /var/tmp/diff_new_pack.oDiJ83/_new  2014-11-14 09:18:28.000000000 +0100
@@ -27,7 +27,7 @@
 corefile=`mktemp /tmp/core.Xorg.XXXXXXXXXX`
 
 echo -n "Starting X Server in Debugger ... "
-gdb << EOF &> $tmpfile
+gdb <<EOF > $tmpfile 2>&1
 file  /usr/bin/Xorg
 set args ${1+"$@"}
 handle SIGUSR1 nostop

++++++ xim ++++++
--- /var/tmp/diff_new_pack.oDiJ83/_old  2014-11-14 09:18:28.000000000 +0100
+++ /var/tmp/diff_new_pack.oDiJ83/_new  2014-11-14 09:18:28.000000000 +0100
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # $Id: xim,v 1.28 2004/12/07 11:04:59 mfabian Exp $
 #
@@ -124,9 +124,9 @@
 # command line before using startx. In that case, don't
 # read the system wide default from /etc/sysconfig/language,
 # use the user supplied value instead:
-if [ "$INPUT_METHOD" == "" ] ; then
+if [ -z "$INPUT_METHOD" ] ; then
     echo "sourcing /etc/sysconfig/language to get the value of INPUT_METHOD"
-    source /etc/sysconfig/language
+    . /etc/sysconfig/language
 fi
 
 if [ "$INPUT_METHOD" != "" ]; then
@@ -134,8 +134,8 @@
     echo "Trying  to start this user selected input method first ..."
     if [ -r "/etc/X11/xim.d/$INPUT_METHOD" ] ; then
         echo "sourcing /etc/X11/xim.d/$INPUT_METHOD"
-       source /etc/X11/xim.d/$INPUT_METHOD
-        if [ "$?" == "0" ]; then
+       . /etc/X11/xim.d/$INPUT_METHOD
+        if [ "$?" = "0" ]; then
            echo "Start of $INPUT_METHOD succeeded."
                gnome_ibus_workaround $INPUT_METHOD
            return 0;
@@ -169,8 +169,8 @@
        for im in /etc/X11/xim.d/$subdir/* ; do
            if [ -r $im ] ; then
               echo "sourcing $im ..."
-              source $im
-              if [ "$?" == "0" ]; then
+              . $im
+              if [ "$?" = "0" ]; then
                   echo "$im started sucessfully"
                        gnome_ibus_workaround $im
                   return 0
@@ -183,7 +183,7 @@
    fi
 done
 
-if [ "$im_failed" == 0 ] ; then
+if [ "$im_failed" = 0 ] ; then
     echo "There is no default input method for the current locale."
 else
     echo "All default input methods tried for the current locale failed."
@@ -193,6 +193,4 @@
 # the dummy input method "none" to get reasonable default settings
 # of the relevant environment variables:
 
-source /etc/X11/xim.d/none
-
-
+. /etc/X11/xim.d/none

++++++ xim.template ++++++
--- /var/tmp/diff_new_pack.oDiJ83/_old  2014-11-14 09:18:28.000000000 +0100
+++ /var/tmp/diff_new_pack.oDiJ83/_new  2014-11-14 09:18:28.000000000 +0100
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # Copyright © 2001 SUSE LINUX GmbH Nuernberg, Germany
 #

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

Reply via email to