Hello community,

here is the log from the commit of package emacs for openSUSE:Factory checked 
in at 2011-11-25 11:11:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/emacs (Old)
 and      /work/SRC/openSUSE:Factory/.emacs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "emacs", Maintainer is "wer...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/emacs/emacs.changes      2011-11-23 
19:34:40.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.emacs.new/emacs.changes 2011-11-25 
10:12:19.000000000 +0100
@@ -1,0 +2,5 @@
+Thu Nov 24 14:01:22 UTC 2011 - wer...@suse.de
+
+- Avoid SLES10 systems using kernel 2.6.16 
+
+-------------------------------------------------------------------

New:
----
  check-build.sh

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

Other differences:
------------------
++++++ check-build.sh ++++++
#!/bin/bash
#
# Avoid SLES10 systems using kernel 2.6.16
#

case "$(uname -i)" in
*ppc*)
    read -t 10 name dummy version rest < /proc/version
    if test -z "$version" ; then
        echo "FATAL: can not read /proc/version" 1>&2
        exit 1
    fi
    OIFS="$IFS"
    IFS='.-'
    version=($version)
    IFS="$OIFS"
    if test ${version[0]} -lt 2 -o ${version[1]} -lt 6 -o ${version[2]} -lt 32 
; then
        echo "FATAL: kernel too old, need kernel >= 2.6.32 for this package" 
1>&2
        exit 1
    fi
esac
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to