commit grep for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package grep for openSUSE:Factory checked in 
at 2014-04-06 09:53:57

Comparing /work/SRC/openSUSE:Factory/grep (Old)
 and  /work/SRC/openSUSE:Factory/.grep.new (New)


Package is grep

Changes:

--- /work/SRC/openSUSE:Factory/grep/grep.changes2014-02-24 
06:52:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.grep.new/grep.changes   2014-04-06 
09:53:58.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 25 15:10:02 UTC 2014 - sch...@suse.de
+
+- mb-non-UTF8-performance.patch: make performance-measuring less
+  system-sensitive
+
+---

New:

  mb-non-UTF8-performance.patch



Other differences:
--
++ grep.spec ++
--- /var/tmp/diff_new_pack.cKXVSK/_old  2014-04-06 09:53:59.0 +0200
+++ /var/tmp/diff_new_pack.cKXVSK/_new  2014-04-06 09:53:59.0 +0200
@@ -26,6 +26,8 @@
 Source0:http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
 Source2:http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
 Source3:
http://savannah.gnu.org/project/memberlist-gpgkeys.php?group=grepdownload=1#/%{name}.keyring
+# PATCH-FIX-UPSTREAM 
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=6e3ea0dd74426fd394225d3f9dc132e40cd92fd2
+Patch0: mb-non-UTF8-performance.patch
 
 BuildRequires:  makeinfo
 BuildRequires:  pcre-devel
@@ -45,6 +47,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %if 0%{?suse_version}  1120
 echo 
ac_cv_search_pcre_compile=\${ac_cv_search_pcre_compile=%{_libdir}/libpcre.a} 
config.cache
 %endif



++ mb-non-UTF8-performance.patch ++
Index: grep-2.18/tests/init.cfg
===
--- grep-2.18.orig/tests/init.cfg
+++ grep-2.18/tests/init.cfg
@@ -103,6 +103,21 @@ require_unibyte_locale()
   skip_ 'no unibyte locale found'
 }
 
+# Define hi_res_time_ to a function that prints the current time
+# as a floating point number with greater than 1-second resolution.
+# Otherwise, skip the requiring test.
+require_hi_res_time_()
+{
+  local cmd
+  for cmd in 'date +%s.%N' \
+  'perl -le use Time::HiRes qw(time); print scalar time()'; do
+  case $($cmd) in
+  *.[0-9]*) eval 'hi_res_time_() { '$cmd'; }'; break;;
+  esac
+  done
+  type hi_res_time_ || skip_ no high-resolution timer support
+}
+
 require_JP_EUC_locale_()
 {
   local locale=ja_JP.eucJP
Index: grep-2.18/tests/mb-non-UTF8-performance
===
--- grep-2.18.orig/tests/mb-non-UTF8-performance
+++ grep-2.18/tests/mb-non-UTF8-performance
@@ -1,5 +1,7 @@
 #!/bin/sh
 # grep-2.17 would take nearly 200x longer to run the command below.
+# The 200x is on an Intel i7-based system.
+# On an AMD FX-4100, it would take up to 2500x longer.
 
 # Copyright 2014 Free Software Foundation, Inc.
 
@@ -18,15 +20,26 @@
 
 . ${srcdir=.}/init.sh; path_prepend_ ../src
 require_timeout_
+require_hi_res_time_
 
 fail=0
 
-require_JP_EUC_locale_
-
 yes $(printf '%078d' 0) | head -5  in || framework_failure_
 
+start=$(hi_res_time_)
+LC_ALL=C grep -i foobar in; st=$?
+stop=$(hi_res_time_)
+
+# Use a multiple of the LC_ALL=C duration as the timeout for the JP/EUC test.
+# A multiple of 3 seems to be enough for i5,i7, but AMD needs 25.
+timeout=$($AWK 'BEGIN { print 50 * ('$stop' - '$start')}'  /dev/null)
+
+test $st = 1 || fail=1
+
+require_JP_EUC_locale_
+
 # Expect no match, i.e., exit status of 1.  Anything else is an error.
-timeout 4 grep -i foobar in; st=$?
+timeout $timeout grep -i foobar in; st=$?
 test $st = 1 || fail=1
 
 Exit $fail
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-04-06 09:54:08

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-03-11 
17:25:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-04-06 
09:54:09.0 +0200
@@ -1,0 +2,51 @@
+Mon Mar 31 10:13:11 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140329
+  + add check in tic for mismatch between ccc and initp/initc
+  + cancel ccc in putty-256color and konsole-256color for consistency
+with the cancelled initc capability (patch by Sven Zuhlsdorf).
+  + add xterm+256setaf building block for various terminals which only
+get the 256-color feature half-implemented -TD
+  + updated st entry (leaving the 0.1.1 version as simpleterm) to
+0.4.1 -TD
+
+---
+Thu Mar 27 13:57:11 UTC 2014 - wer...@suse.de
+
+- Make sure that libgpm is always loaded dynamically 
+
+---
+Wed Mar 26 09:04:28 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140323
+  + fix typo in mlterm entry (report by Gabriele Balducci) -TD
+- Add ncurses patch 20140322
+  + use types from stdint.h in sample build-scripts for chtype, etc.
+  + modify configure script and curses.h.in to allow the types specified
+using --with-chtype and related options to be defined in stdint.h
+  + add terminology entry -TD
+  + add mlterm3 entry, use that as mlterm -TD
+  + inherit mlterm-256color from mlterm -TD
+
+---
+Tue Mar 18 17:18:00 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140315
+  + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
+top-row is adjusted as needed to ensure that the current item is
+on the screen (patch by Johann Klammer).
+  + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
+be opaque, e.g., in the pthread configuration (prompted by patch by
+Soren Brinkmann).
+
+---
+Wed Mar 12 08:53:39 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140308
+  + modify ifdef in read_entry.c to handle the case where
+NCURSES_USE_DATABASE is not defined (patch by Xin Li).
+  + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
+  + add logic to win_driver.c to save/restore screen contents when not
+allocating a console-buffer (cf: 20140215).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.hztWad/_old  2014-04-06 09:54:11.0 +0200
+++ /var/tmp/diff_new_pack.hztWad/_new  2014-04-06 09:54:11.0 +0200
@@ -379,6 +379,10 @@
 # libtinfo (is linked with) and therefore there is no
 # advantage about splitting of a libtinfo (IMHO).
 #
+%if 0%{?suse_version}  1310
+SO=$(rpm -ql gpm-devel|grep %{_libdir})
+SO=%{_libdir}/$(readlink $SO)
+%endif
 touch --reference=README config.sub config.guess
  $SCREENLOG
 tail -q -s 0.5 -f $SCREENLOG  pid=$!
@@ -393,7 +397,11 @@
--with-manpage-renames=${PWD}/man/man_db.renames \
--with-manpage-aliases  \
--with-ospeed=speed_t   \
+%if 0%{?suse_version}  1310
+   --with-gpm=$SO  \
+%else
--with-gpm  \
+%endif
--with-dlsym\
--with-termlib=tinfo\
--with-ticlib=tic   \

++ ncurses-5.9-patches.tar.bz2 ++
 3191 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.hztWad/_old  2014-04-06 09:54:14.0 +0200
+++ /var/tmp/diff_new_pack.hztWad/_new  2014-04-06 09:54:14.0 +0200
@@ -9,7 +9,7 @@
  #include stdio.h
  
  #if defined(__cplusplus)
-@@ -4350,12 +4350,15 @@ cat $cf_edit_man CF_EOF
+@@ -4355,12 +4355,15 @@ cat $cf_edit_man CF_EOF
echo '? missing rename for '\$cf_source
cf_target=\$cf_source
fi
@@ -27,7 +27,7 @@
sed -f $cf_man_alias \\
  CF_EOF
  
-@@ -4365,7 +4368,7 @@ cat $cf_edit_man CF_EOF
+@@ -4370,7 +4373,7 @@ cat $cf_edit_man CF_EOF
  CF_EOF
  else
  cat $cf_edit_man CF_EOF
@@ -36,7 +36,7 @@
  CF_EOF
  fi
  
-@@ -4405,7 +4408,7 @@ cat $cf_edit_man CF_EOF
+@@ -4410,7 +4413,7 @@ cat $cf_edit_man CF_EOF
mv \$TMP.$cf_so_strip \$TMP
fi
fi
@@ -45,7 +45,7 @@
  CF_EOF
  fi
  
-@@ -4414,23 +4417,23 @@ case $MANPAGE_FORMAT in #(vi
+@@ -4419,23 +4422,23 @@ case $MANPAGE_FORMAT in 

commit shadow for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package shadow for openSUSE:Factory checked 
in at 2014-04-06 09:54:11

Comparing /work/SRC/openSUSE:Factory/shadow (Old)
 and  /work/SRC/openSUSE:Factory/.shadow.new (New)


Package is shadow

Changes:

--- /work/SRC/openSUSE:Factory/shadow/shadow.changes2013-12-13 
12:01:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.shadow.new/shadow.changes   2014-04-06 
09:54:15.0 +0200
@@ -1,0 +2,6 @@
+Mon Mar 31 22:00:00 UTC 2014 - tbehr...@suse.com
+
+- Add patch useradd-mkdirs.diff: fix for bnc#865563, create all parts
+  of the path
+
+---

New:

  useradd-mkdirs.diff



Other differences:
--
++ shadow.spec ++
--- /var/tmp/diff_new_pack.LWzg03/_old  2014-04-06 09:54:16.0 +0200
+++ /var/tmp/diff_new_pack.LWzg03/_new  2014-04-06 09:54:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package shadow
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -40,6 +40,7 @@
 Patch8: shadow-4.1.5.1-errmsg.patch
 Patch9: shadow-4.1.5.1-backup-mode.patch
 Patch10:encryption_method_nis.diff
+Patch11:useradd-mkdirs.diff
 BuildRequires:  audit-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libattr-devel
@@ -69,6 +70,7 @@
 %patch8 -p0
 %patch9 -p1
 %patch10 -p0
+%patch11 -p1
 
 iconv -f ISO88591 -t utf-8  doc/HOWTO  doc/HOWTO.utf8
 mv -v doc/HOWTO.utf8 doc/HOWTO

++ useradd-mkdirs.diff ++
diff --git a/src/useradd.c b/src/useradd.c
index fa93853..a9f8caa 100644
--- a/src/useradd.c
+++ b/src/useradd.c
@@ -1757,6 +1757,13 @@ static void usr_update (void)
 static void create_home (void)
 {
if (access (user_home, F_OK) != 0) {
+   char path[strlen (user_home) + 2];
+   char *bhome, *cp;
+
+   path[0] = '\0';
+   bhome = strdup (user_home);
+   ++bhome;
+
 #ifdef WITH_SELINUX
if (set_selinux_file_context (user_home) != 0) {
fprintf (stderr,
@@ -1765,19 +1772,42 @@ static void create_home (void)
fail_exit (E_HOMEDIR);
}
 #endif
-   /* XXX - create missing parent directories.  --marekm */
-   if (mkdir (user_home, 0) != 0) {
-   fprintf (stderr,
-_(%s: cannot create directory %s\n),
-Prog, user_home);
+
+   /* Check for every part of the path, if the directory
+  exists. If not, create it with permissions 755 and
+  owner root:root.
+*/
+   cp = strtok (bhome, /);
+   while (cp) {
+   strcat (path, /);
+   strcat (path, cp);
+   if (access (path, F_OK) != 0) {
+   if (mkdir (path, 0) != 0) {
+   fprintf (stderr,
+_(%s: cannot create directory 
%s\n),
+Prog, path);
 #ifdef WITH_AUDIT
-   audit_logger (AUDIT_ADD_USER, Prog,
- adding home directory,
- user_name, (unsigned int) user_id,
- SHADOW_AUDIT_FAILURE);
+   audit_logger (AUDIT_ADD_USER, Prog,
+ adding home 
directory,
+ user_name, 
(unsigned int) user_id,
+ 
SHADOW_AUDIT_FAILURE);
 #endif
-   fail_exit (E_HOMEDIR);
+   fail_exit (E_HOMEDIR);
+   }
+   if (chown (path, 0, 0)  0) {
+   fprintf (stderr,
+_(%s: warning: chown on `%s' 
failed: %m\n),
+Prog, path);
+   }
+   if (chmod (path, 0777)  0) {
+   fprintf (stderr,
+_(%s: warning: chmod on `%s' 
failed: %m\n),
+Prog, path);
+

commit sqlite3 for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package sqlite3 for openSUSE:Factory checked 
in at 2014-04-06 09:55:27

Comparing /work/SRC/openSUSE:Factory/sqlite3 (Old)
 and  /work/SRC/openSUSE:Factory/.sqlite3.new (New)


Package is sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/sqlite3/sqlite3.changes  2014-04-01 
06:46:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.sqlite3.new/sqlite3.changes 2014-04-06 
09:55:28.0 +0200
@@ -1,0 +2,8 @@
+Thu Apr  3 19:29:14 UTC 2014 - andreas.stie...@gmx.de
+
+- SQLite 3.8.4.3:
+  - fix for a problem that might cause incorrect query results on a
+query that mixes DISTINCT, GROUP BY in a subquery, and ORDER BY
+- Fix obsolete-not-provided warning on sqlite-64bit for ppc64
+
+---

Old:

  sqlite-autoconf-3080402.tar.gz
  sqlite-doc-3080402.zip

New:

  sqlite-autoconf-3080403.tar.gz
  sqlite-doc-3080403.zip



Other differences:
--
++ sqlite3.spec ++
--- /var/tmp/diff_new_pack.ee8jZb/_old  2014-04-06 09:55:29.0 +0200
+++ /var/tmp/diff_new_pack.ee8jZb/_new  2014-04-06 09:55:29.0 +0200
@@ -21,9 +21,9 @@
 %define oname sqlite
 
 Name:   %pname
-Version:3.8.4.2
+Version:3.8.4.3
 Release:0
-%define tarversion 3080402
+%define tarversion 3080403
 Summary:Embeddable SQL Database Engine
 License:SUSE-Public-Domain
 Group:  Productivity/Databases/Servers
@@ -45,7 +45,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # bug437293
 %ifarch ppc64
-Obsoletes:  sqlite-64bit
+Obsoletes:  sqlite-64bit  %{version}
+Provides:   sqlite-64bit = %{version}
 %endif
 #
 

++ sqlite-autoconf-3080402.tar.gz - sqlite-autoconf-3080403.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlite-autoconf-3080402/configure 
new/sqlite-autoconf-3080403/configure
--- old/sqlite-autoconf-3080402/configure   2014-03-26 20:13:02.0 
+0100
+++ new/sqlite-autoconf-3080403/configure   2014-04-03 19:21:46.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for sqlite 3.8.4.2.
+# Generated by GNU Autoconf 2.69 for sqlite 3.8.4.3.
 #
 # Report bugs to http://www.sqlite.org.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='sqlite'
 PACKAGE_TARNAME='sqlite'
-PACKAGE_VERSION='3.8.4.2'
-PACKAGE_STRING='sqlite 3.8.4.2'
+PACKAGE_VERSION='3.8.4.3'
+PACKAGE_STRING='sqlite 3.8.4.3'
 PACKAGE_BUGREPORT='http://www.sqlite.org'
 PACKAGE_URL=''
 
@@ -1313,7 +1313,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures sqlite 3.8.4.2 to adapt to many kinds of systems.
+\`configure' configures sqlite 3.8.4.3 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1383,7 +1383,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of sqlite 3.8.4.2:;;
+ short | recursive ) echo Configuration of sqlite 3.8.4.3:;;
esac
   cat \_ACEOF
 
@@ -1489,7 +1489,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-sqlite configure 3.8.4.2
+sqlite configure 3.8.4.3
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1813,7 +1813,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by sqlite $as_me 3.8.4.2, which was
+It was created by sqlite $as_me 3.8.4.3, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2631,7 +2631,7 @@
 
 # Define the identity of the package.
  PACKAGE='sqlite'
- VERSION='3.8.4.2'
+ VERSION='3.8.4.3'
 
 
 cat confdefs.h _ACEOF
@@ -13196,7 +13196,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by sqlite $as_me 3.8.4.2, which was
+This file was extended by sqlite $as_me 3.8.4.3, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -13253,7 +13253,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-sqlite config.status 3.8.4.2
+sqlite config.status 3.8.4.3
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\\$ac_cs_config\\
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-users for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package yast2-users for openSUSE:Factory 
checked in at 2014-04-06 09:55:37

Comparing /work/SRC/openSUSE:Factory/yast2-users (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-users.new (New)


Package is yast2-users

Changes:

--- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes  2014-03-27 
06:17:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-users.new/yast2-users.changes 
2014-04-06 09:55:38.0 +0200
@@ -1,0 +2,13 @@
+Fri Apr  4 06:56:10 UTC 2014 - jreidin...@suse.com
+
+- fix warning about constant redefinition (bnc#871805)
+- 3.1.20
+
+---
+Thu Apr  3 14:36:39 UTC 2014 - jreidin...@suse.com
+
+- remember user input in user dialog when going forward and back
+  (bnc#865540)
+- 3.1.19
+
+---

Old:

  yast2-users-3.1.18.tar.bz2

New:

  yast2-users-3.1.20.tar.bz2



Other differences:
--
++ yast2-users.spec ++
--- /var/tmp/diff_new_pack.YAyUGB/_old  2014-04-06 09:55:39.0 +0200
+++ /var/tmp/diff_new_pack.YAyUGB/_new  2014-04-06 09:55:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-users
-Version:3.1.18
+Version:3.1.20
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-users-3.1.18.tar.bz2 - yast2-users-3.1.20.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.18/package/yast2-users.changes 
new/yast2-users-3.1.20/package/yast2-users.changes
--- old/yast2-users-3.1.18/package/yast2-users.changes  2014-03-25 
11:48:57.0 +0100
+++ new/yast2-users-3.1.20/package/yast2-users.changes  2014-04-04 
09:52:49.0 +0200
@@ -1,4 +1,17 @@
 ---
+Fri Apr  4 06:56:10 UTC 2014 - jreidin...@suse.com
+
+- fix warning about constant redefinition (bnc#871805)
+- 3.1.20
+
+---
+Thu Apr  3 14:36:39 UTC 2014 - jreidin...@suse.com
+
+- remember user input in user dialog when going forward and back
+  (bnc#865540)
+- 3.1.19
+
+---
 Tue Mar 25 11:27:14 CET 2014 - jsuch...@suse.cz
 
 - do not encrypt already crypted password of imported user
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.18/package/yast2-users.spec 
new/yast2-users-3.1.20/package/yast2-users.spec
--- old/yast2-users-3.1.18/package/yast2-users.spec 2014-03-25 
11:48:57.0 +0100
+++ new/yast2-users-3.1.20/package/yast2-users.spec 2014-04-04 
09:52:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-users
-Version:3.1.18
+Version:3.1.20
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.18/src/clients/inst_user_first.rb 
new/yast2-users-3.1.20/src/clients/inst_user_first.rb
--- old/yast2-users-3.1.18/src/clients/inst_user_first.rb   2014-03-25 
11:48:57.0 +0100
+++ new/yast2-users-3.1.20/src/clients/inst_user_first.rb   2014-04-04 
09:52:49.0 +0200
@@ -428,12 +428,6 @@
   )
 end
 UsersSimple.UnLoadCracklib if @use_pw_for_root
-  elsif @ret == :back
-# reset to defaults
-UsersSimple.SetAutologinUser()
-UsersSimple.SetRootAlias()
-UsersSimple.SetRootPassword()
-UsersSimple.SetUsers([])
   end
 
   Wizard.CloseDialog if Mode.normal
@@ -717,7 +711,7 @@
   return true
 end
 
-  end
+  end unless defined? InstUserFirstClient
 end
 
 Yast::InstUserFirstClient.new.main

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



commit zip for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package zip for openSUSE:Factory checked in 
at 2014-04-06 09:56:03

Comparing /work/SRC/openSUSE:Factory/zip (Old)
 and  /work/SRC/openSUSE:Factory/.zip.new (New)


Package is zip

Changes:

--- /work/SRC/openSUSE:Factory/zip/zip.changes  2013-04-05 13:17:11.0 
+0200
+++ /work/SRC/openSUSE:Factory/.zip.new/zip.changes 2014-04-06 
09:56:04.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr  3 23:00:00 UTC 2014 - tbehr...@suse.com
+
+- Fix bnc#785305
+  * Add patch zip-3.0-nomutilation.patch
+
+---

New:

  zip-3.0-nomutilation.patch



Other differences:
--
++ zip.spec ++
--- /var/tmp/diff_new_pack.ZGML0i/_old  2014-04-06 09:56:04.0 +0200
+++ /var/tmp/diff_new_pack.ZGML0i/_new  2014-04-06 09:56:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package zip
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,6 +31,7 @@
 Patch5: zip-3.0-optflags.patch
 Patch6: zip-3.0-tempfile.patch
 Patch7: zip-notimestamp.patch
+Patch8: zip-3.0-nomutilation.patch
 Provides:   crzip = %{version}
 Obsoletes:  crzip  %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -47,6 +48,7 @@
 %patch5
 %patch6
 %patch7
+%patch8
 
 %build
 make %{?_smp_mflags} -f unix/Makefile prefix=/usr CC=gcc %{optflags} 
-DLARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 generic_gcc

++ zip-3.0-nomutilation.patch ++
Date: Thu Apr  3 23:00:00 UTC 2014
From: tbehr...@suse.com

Don't clobber include/exclude pattern lists by in2ex/ex2in's chopping
off path prefixes.

--- zip.c~  2008-07-05 18:34:06.0 +0200
+++ zip.c   2014-04-03 22:38:36.855065116 +0200
@@ -3217,9 +3217,14 @@
   /* if nothing matches include list then still create an empty 
archive */
   allow_empty_archive = 1;
 case 'x':   /* Exclude following files */
+{
+  int old_pathput = pathput;
+  pathput = 1;
   add_filter((int) option, value);
+  pathput = old_pathput;
   free(value);
   break;
+}
 #ifdef S_IFLNK
 case 'y':   /* Store symbolic links as such */
   linkput = 1;  break;
@@ -3322,8 +3327,11 @@
 /* just ignore as just marks what follows as non-option arguments 
*/
 
   } else if (kk == 6) {
+int old_pathput = pathput;
+pathput = 1;
 /* value is R pattern */
 add_filter((int)'R', value);
+pathput = old_pathput;
 free(value);
 if (first_listarg == 0) {
   first_listarg = argnum;
@@ -3387,8 +3395,11 @@
 {
   kk = 4;
   if (recurse == 2) {
+int old_pathput = pathput;
+pathput = 1;
 /* reading patterns from stdin */
 add_filter((int)'R', pp);
+pathput = old_pathput;
   } else {
 /* file argument now processed later */
 add_name(pp);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-vm for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package yast2-vm for openSUSE:Factory 
checked in at 2014-04-06 09:55:33

Comparing /work/SRC/openSUSE:Factory/yast2-vm (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-vm.new (New)


Package is yast2-vm

Changes:

--- /work/SRC/openSUSE:Factory/yast2-vm/yast2-vm.changes2014-04-03 
16:38:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-vm.new/yast2-vm.changes   2014-04-06 
09:55:34.0 +0200
@@ -1,0 +2,10 @@
+Wed Apr  2 16:13:41 MDT 2014 - carn...@suse.com
+
+- bnc#871633 - yast2 virtualization fails to install xen pattern
+- Print correct message at end of install depending on what was
+  selected
+- Adjust alignment and spacing of main dialog
+- Cleanup whitespace in code
+- 3.1.6
+
+---

Old:

  yast2-vm-3.1.5.tar.bz2

New:

  yast2-vm-3.1.6.tar.bz2



Other differences:
--
++ yast2-vm.spec ++
--- /var/tmp/diff_new_pack.qkJrIK/_old  2014-04-06 09:55:35.0 +0200
+++ /var/tmp/diff_new_pack.qkJrIK/_new  2014-04-06 09:55:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-vm
-Version:3.1.5
+Version:3.1.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-vm-3.1.5.tar.bz2 - yast2-vm-3.1.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.5/package/yast2-vm.changes 
new/yast2-vm-3.1.6/package/yast2-vm.changes
--- old/yast2-vm-3.1.5/package/yast2-vm.changes 2014-03-26 11:17:01.0 
+0100
+++ new/yast2-vm-3.1.6/package/yast2-vm.changes 2014-04-04 09:51:48.0 
+0200
@@ -1,4 +1,14 @@
 ---
+Wed Apr  2 16:13:41 MDT 2014 - carn...@suse.com
+
+- bnc#871633 - yast2 virtualization fails to install xen pattern
+- Print correct message at end of install depending on what was
+  selected
+- Adjust alignment and spacing of main dialog
+- Cleanup whitespace in code
+- 3.1.6
+
+---
 Wed Mar 12 15:49:26 CET 2014 - agin...@suse.com
 
 - use patterns instead of packages list (SLES and openSUSE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.5/package/yast2-vm.spec 
new/yast2-vm-3.1.6/package/yast2-vm.spec
--- old/yast2-vm-3.1.5/package/yast2-vm.spec2014-03-26 11:17:01.0 
+0100
+++ new/yast2-vm-3.1.6/package/yast2-vm.spec2014-04-04 09:51:48.0 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-vm
-Version:3.1.5
+Version:3.1.6
 Release:0
 Group: System/YaST
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vm-3.1.5/src/modules/VM_XEN.rb 
new/yast2-vm-3.1.6/src/modules/VM_XEN.rb
--- old/yast2-vm-3.1.5/src/modules/VM_XEN.rb2014-03-26 12:22:03.0 
+0100
+++ new/yast2-vm-3.1.6/src/modules/VM_XEN.rb2014-04-04 09:51:48.0 
+0200
@@ -220,78 +220,89 @@
   # error popup
   abortmsg = _(The installation will be aborted.)
 
-def Information
-  widgets = Frame(_(Choose Hypervisor(s) to install),
- HBox(VBox(
-   Label(server: all minimal system to get a 
running Hypervisor),
-   Label(tools: configure, manage and monitor 
virtual machines),
-   ),
-  ),
- )
-end
-def VMButtonBox
-  widgetB = ButtonBox(
-  PushButton(Id(:accept), Label.AcceptButton),
-  PushButton(Id(:cancel), Label.CancelButton),
-  )
-end
-def KVMDialog
-  widgetKVM = Frame(_(KVM Hypervisor),
-HBox(
- Left(CheckBox(Id(:kvm_server), Opt(:key_F6), KVM 
server)),
- Left(CheckBox(Id(:kvm_tools), Opt(:key_F7), KVM 
tools)),
- ),
-)
-end
-def LXCDialog
-  widgetLXC = Frame(_(libvirt LXC containers),
-HBox(
- Left(CheckBox(Id(:lxc), Opt(:key_F4), libvirt 
LXC daemon)),
- ),
-)
-end
-
-# Generate a pop dialog to allow user selection of Xen or KVM
-if is_s390 == true
-  UI.OpenDialog(
-VBox(
- Information(),
- VSpacing(1),
- KVMDialog(),
- LXCDialog(),
- VMButtonBox(),
-  

commit gcc for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package gcc for openSUSE:Factory checked in 
at 2014-04-06 09:55:56

Comparing /work/SRC/openSUSE:Factory/gcc (Old)
 and  /work/SRC/openSUSE:Factory/.gcc.new (New)


Package is gcc

Changes:

--- /work/SRC/openSUSE:Factory/gcc/gcc.changes  2014-02-06 07:06:17.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gcc.new/gcc.changes 2014-04-06 
09:55:57.0 +0200
@@ -1,0 +2,5 @@
+Fri Mar 21 12:29:29 UTC 2014 - rguent...@suse.com
+
+- Link to the system compiler LTO plugin from /usr/lib/bfd-plugins.
+
+---



Other differences:
--
++ gcc.spec ++
--- /var/tmp/diff_new_pack.5u3ghf/_old  2014-04-06 09:55:58.0 +0200
+++ /var/tmp/diff_new_pack.5u3ghf/_new  2014-04-06 09:55:58.0 +0200
@@ -399,6 +399,9 @@
 ln -sf gcc-%{gcc_suffix} $RPM_BUILD_ROOT%{_prefix}/bin/cc
 ln -sf g++-%{gcc_suffix}.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/c++.1.gz
 ln -sf gcc-%{gcc_suffix}.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/cc.1.gz
+# Install the LTO linker plugin so it is auto-loaded by BFD
+mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/bfd-plugins
+ln -s `gcc-%{gcc_suffix} -print-file-name=liblto_plugin.so.0.0.0` 
$RPM_BUILD_ROOT%{_prefix}/lib/bfd-plugins/liblto_plugin.so.0.0.0
 
 %files
 %defattr(-,root,root)
@@ -408,6 +411,8 @@
 %{_prefix}/bin/gcc-ar
 %{_prefix}/bin/gcc-nm
 %{_prefix}/bin/gcc-ranlib
+%dir %{_prefix}/lib/bfd-plugins
+%{_prefix}/lib/bfd-plugins/liblto_plugin.so.0.0.0
 %doc %{_mandir}/man1/gcc.1.gz
 %doc %{_mandir}/man1/cc.1.gz
 %doc %{_mandir}/man1/gcov.1.gz

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



commit python-pycadf for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package python-pycadf for openSUSE:Factory 
checked in at 2014-04-06 09:55:23

Comparing /work/SRC/openSUSE:Factory/python-pycadf (Old)
 and  /work/SRC/openSUSE:Factory/.python-pycadf.new (New)


Package is python-pycadf

Changes:

--- /work/SRC/openSUSE:Factory/python-pycadf/python-pycadf.changes  
2014-03-09 20:17:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pycadf.new/python-pycadf.changes 
2014-04-06 09:55:25.0 +0200
@@ -1,0 +2,11 @@
+Wed Apr  2 08:51:51 UTC 2014 - speili...@suse.com
+
+- Update to version 0.5:
+  * Updated from global requirements
+  * add OpenStack Foundation as author
+  * pycadf documentation
+  * Updated from global requirements
+  * add docstrings to functions
+- Add _service file for easier updates
+
+---

Old:

  pycadf-0.4.1.tar.gz

New:

  _service
  pycadf-0.5.tar.gz



Other differences:
--
++ python-pycadf.spec ++
--- /var/tmp/diff_new_pack.obzxB7/_old  2014-04-06 09:55:25.0 +0200
+++ /var/tmp/diff_new_pack.obzxB7/_new  2014-04-06 09:55:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-pycadf
-Version:0.4.1
+Version:0.5
 Release:0
 Summary:DMTF Cloud Audit (CADF) data mode
 License:Apache-2.0
@@ -46,12 +46,13 @@
 Requires:   python-iso8601 = 0.1.8
 Requires:   python-netaddr = 0.7.6
 Requires:   python-oslo.config = 1.2.0
-Requires:   python-oslo.messaging
+Requires:   python-oslo.messaging = 1.3.0a4
 Requires:   python-pytz = 2010h
 Requires:   python-six = 1.4.1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
+BuildRequires:  python-discover
 %else
 BuildArch:  noarch
 %endif

++ _service ++
services
  service name=download_files mode=disabled
param name=changesgenerateenable/param
  /service
  service name=python_requires mode=disabled
  /service
  service name=refresh_patches mode=disabled
param name=changesgenerateenable/param
  /service
/services
++ pycadf-0.4.1.tar.gz - pycadf-0.5.tar.gz ++
 2351 lines of diff (skipped)

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



commit binutils for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package binutils for openSUSE:Factory 
checked in at 2014-04-06 09:55:48

Comparing /work/SRC/openSUSE:Factory/binutils (Old)
 and  /work/SRC/openSUSE:Factory/.binutils.new (New)


Package is binutils

Changes:

--- /work/SRC/openSUSE:Factory/binutils/binutils.changes2014-02-28 
16:21:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.binutils.new/binutils.changes   2014-04-06 
09:55:49.0 +0200
@@ -1,0 +2,24 @@
+Thu Apr  3 10:56:19 UTC 2014 - rguent...@suse.com
+
+- binutils-2.24-auto-plugin.diff: Update from git commit that went
+  to trunk.
+
+---
+Wed Mar 26 15:29:34 UTC 2014 - m...@suse.de
+
+- Update to current 2.24 branch at 25f1c421:
+  AVX512 fixes, new x86 instructions clflushopt, xsaves, xsavec, xrstors.
+  aarch64: linker fixes for PLT stubs, correct float const 0.0 parsing,
+  support ifunc in static links.
+  Fix ld/16643 (problem with GCed sections).
+  powerpc64le: fix ld segfault with --emit-relocs.
+  Fix buffer underrun in x86 disassembler.
+  Fix merging of skipped weak symbols.  [bnc #863764]
+
+---
+Mon Mar 24 13:58:29 UTC 2014 - rguent...@suse.com
+
+- Add binutils-2.24-auto-plugin.diff to make plugin auto-load work
+  for GCC LTO objects.  [bso#14698]
+
+---
cross-aarch64-binutils.changes: same change
cross-arm-binutils.changes: same change
cross-avr-binutils.changes: same change
cross-hppa-binutils.changes: same change
cross-hppa64-binutils.changes: same change
cross-i386-binutils.changes: same change
cross-ia64-binutils.changes: same change
cross-m68k-binutils.changes: same change
cross-mips-binutils.changes: same change
cross-ppc-binutils.changes: same change
cross-ppc64-binutils.changes: same change
cross-ppc64le-binutils.changes: same change
cross-s390-binutils.changes: same change
cross-s390x-binutils.changes: same change
cross-sparc-binutils.changes: same change
cross-sparc64-binutils.changes: same change
cross-spu-binutils.changes: same change
cross-x86_64-binutils.changes: same change

Old:

  binutils-2.24-branch.diff

New:

  binutils-2.24-auto-plugin.diff
  binutils-2.24-branch.diff.gz



Other differences:
--
++ binutils.spec ++
--- /var/tmp/diff_new_pack.QOmGB3/_old  2014-04-06 09:55:52.0 +0200
+++ /var/tmp/diff_new_pack.QOmGB3/_new  2014-04-06 09:55:52.0 +0200
@@ -82,7 +82,7 @@
 Source1:pre_checkin.sh
 Source2:README.First-for.SuSE.packagers
 Source3:baselibs.conf
-Patch1: binutils-2.24-branch.diff
+Patch1: binutils-2.24-branch.diff.gz
 Patch3: binutils-skip-rpaths.patch
 Patch4: s390-biarch.diff
 Patch5: x86-64-biarch.patch
@@ -97,6 +97,7 @@
 Patch18:gold-depend-on-opcodes.diff
 Patch22:binutils-bfd_h.patch
 Patch23:pie-m68k.patch
+Patch24:binutils-2.24-auto-plugin.diff
 Patch90:cross-avr-nesc-as.patch
 Patch92:cross-avr-omit_section_dynsym.patch
 Patch93:cross-avr-size.patch
@@ -168,6 +169,7 @@
 %patch18
 %patch22
 %patch23 -p1
+%patch24 -p1
 %if %{TARGET} == avr
 cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
 %patch90

++ cross-aarch64-binutils.spec ++
--- /var/tmp/diff_new_pack.QOmGB3/_old  2014-04-06 09:55:53.0 +0200
+++ /var/tmp/diff_new_pack.QOmGB3/_new  2014-04-06 09:55:53.0 +0200
@@ -85,7 +85,7 @@
 Source1:pre_checkin.sh
 Source2:README.First-for.SuSE.packagers
 Source3:baselibs.conf
-Patch1: binutils-2.24-branch.diff
+Patch1: binutils-2.24-branch.diff.gz
 Patch3: binutils-skip-rpaths.patch
 Patch4: s390-biarch.diff
 Patch5: x86-64-biarch.patch
@@ -100,6 +100,7 @@
 Patch18:gold-depend-on-opcodes.diff
 Patch22:binutils-bfd_h.patch
 Patch23:pie-m68k.patch
+Patch24:binutils-2.24-auto-plugin.diff
 Patch90:cross-avr-nesc-as.patch
 Patch92:cross-avr-omit_section_dynsym.patch
 Patch93:cross-avr-size.patch
@@ -171,6 +172,7 @@
 %patch18
 %patch22
 %patch23 -p1
+%patch24 -p1
 %if %{TARGET} == avr
 cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
 %patch90

cross-arm-binutils.spec: same change
cross-avr-binutils.spec: same change
cross-hppa-binutils.spec: same change
cross-hppa64-binutils.spec: same change
cross-i386-binutils.spec: same change
cross-ia64-binutils.spec: same change
cross-m68k-binutils.spec: same change
cross-mips-binutils.spec: same change
cross-ppc-binutils.spec: same change
cross-ppc64-binutils.spec: same change
cross-ppc64le-binutils.spec: same change

commit util-linux for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory 
checked in at 2014-04-06 09:56:38

Comparing /work/SRC/openSUSE:Factory/util-linux (Old)
 and  /work/SRC/openSUSE:Factory/.util-linux.new (New)


Package is util-linux

Changes:

--- /work/SRC/openSUSE:Factory/util-linux/util-linux.changes2014-03-22 
07:49:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.util-linux.new/util-linux.changes   
2014-04-06 09:56:40.0 +0200
@@ -1,0 +2,13 @@
+Tue Apr  1 18:49:26 UTC 2014 - sweet_...@gmx.de
+
+- remove unnecessarily added patches from SLE11:
+  * util-linux-update-default-commit-interval.patch, openSUSE  has
+never changed the default and neither will SLE12
+  * sfdisk-warn-about-2TB-limit.patch, fixed by upstream years ago
+  * umount-avoid-readlink.patch, this patch only affects unused
+code and the used code does not have this bug
+- edit util-linux-lscpu-improve-hypervisor-detection.patch to not
+  change the default behaviour of lscpu -p as documented in it's
+  man page. Now this patch only affects the summary output.
+
+---

Old:

  sfdisk-warn-about-2TB-limit.patch
  umount-avoid-readlink.patch
  util-linux-update-default-commit-interval.patch



Other differences:
--
++ util-linux.spec ++
--- /var/tmp/diff_new_pack.DsExGG/_old  2014-04-06 09:56:41.0 +0200
+++ /var/tmp/diff_new_pack.DsExGG/_new  2014-04-06 09:56:41.0 +0200
@@ -120,16 +120,10 @@
 Patch20:util-linux-HACK-boot.localfs.diff
 # PATCH-FEATURE-SLES util-linux-ng-2.16-squashfs3-detect.patch bnc666893 
mszer...@suse.cz -- Detect squashfs version = 3 as squashfs3 and version = 4 
as squashfs.
 Patch21:util-linux-ng-2.16-squashfs3-detect.patch
-# PATCH-FEATURE-SLES fdisk-warn-about-2TB-limit.patch bnc495657 
pu...@novell.com -- Warn about 2TB limit.
-Patch22:sfdisk-warn-about-2TB-limit.patch
 # PATCH-FEATURE-SLES util-linux-ng-2.19.1-barrier_documentation.patch 
bnc489740 j...@suse.cz -- Document barrier option in mount.8.
 Patch23:util-linux-ng-2.19.1-barrier_documentation.patch
 # PATCH-FEATURE-SLES util-linux-lscpu-improve-hypervisor-detection.patch 
fate310255 pu...@novell.com -- Improve hypervisor detection.
 Patch24:util-linux-lscpu-improve-hypervisor-detection.patch
-# PATCH-FIX-SLES umount-avoid-readlink.patch bnc794529 pu...@suse.com -- 
umount: avoid calling readlink on mountpoints if not necessary.
-Patch25:umount-avoid-readlink.patch
-# PATCH-FIX-SLES util-linux-update-default-commit-interval.patch bnc#809480 
pu...@suse.com -- Update default commit interval.
-Patch26:util-linux-update-default-commit-interval.patch
 ##
 ## klogconsole
 ##
@@ -260,11 +254,8 @@
 %patch20 -p1
 #
 %patch21 -p1
-%patch22 -p1
 %patch23 -p1
 %patch24 -p1
-%patch25 -p1
-%patch26 -p1
 #
 # setctsid
 cp -p %{S:22} %{S:23} .


++ util-linux-lscpu-improve-hypervisor-detection.patch ++
--- /var/tmp/diff_new_pack.DsExGG/_old  2014-04-06 09:56:41.0 +0200
+++ /var/tmp/diff_new_pack.DsExGG/_new  2014-04-06 09:56:41.0 +0200
@@ -1,7 +1,3 @@

- sys-utils/lscpu.c |  156 
--
- 1 file changed, 152 insertions(+), 4 deletions(-)
-
 Index: util-linux-2.24.1/sys-utils/lscpu.c
 ===
 --- util-linux-2.24.1.orig/sys-utils/lscpu.c
@@ -192,25 +188,6 @@
  
/* IBM PR/SM */
} else if (path_exist(_PATH_PROC_SYSINFO)) {
-@@ -1181,6 +1322,7 @@ print_parsable(struct lscpu_desc *desc,
-   }
-   fputs(data  *data ? data : , stdout);
-   }
-+  printf(,HvVendor,VirtType);
-   putchar('\n');
- 
-   /*
-@@ -1210,7 +1352,9 @@ print_parsable(struct lscpu_desc *desc,
-buf, sizeof(buf));
-   fputs(data  *data ? data : , stdout);
-   }
--  putchar('\n');
-+  printf(,%s,%s\n,
-+ hv_vendors[desc-hyper] ? hv_vendors[desc-hyper] : 
none,
-+ virt_types[desc-virtype]);
-   }
- }
- 
 Index: util-linux-2.24.1/sys-utils/lscpu.h
 ===
 --- util-linux-2.24.1.orig/sys-utils/lscpu.h

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



commit file for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2014-04-06 09:56:11

Comparing /work/SRC/openSUSE:Factory/file (Old)
 and  /work/SRC/openSUSE:Factory/.file.new (New)


Package is file

Changes:

--- /work/SRC/openSUSE:Factory/file/file.changes2014-03-18 
13:37:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.file.new/file.changes   2014-04-06 
09:56:12.0 +0200
@@ -1,0 +2,25 @@
+Fri Mar 28 10:24:18 UTC 2014 - wer...@suse.de
+
+- Update to file version 5.18
+  * add fmtcheck(3) for those who don't have it
+  * prevent mime entries from being attached to magic
+entries with no descriptions
+  * adjust magic strength for regex type
+  * remove superfluous ascmagic with encoding test
+  * fix regression fix echo -ne \012\013\014 | file -i -
+which printed binary instead of application/octet-stream
+  * add size_t overflow check for magic file size
+  * experimental support for matching with CFD CLSID
+  * Cache old LC_CTYPE locale before setting it to C, so
+we can use it to restore LC_CTYPE instead of asking
+setlocale() to scan the environment variables.
+- Refresh patches
+  file-5.07-elf.dif becomes file-5.18-elf.dif
+  file-5.12-javacheck.dif becomes file-5.18-javacheck.dif
+  file-5.12-endian.patch becomes file-5.18-endian.patch
+  file-5.15-clear-invalid.patch
+- Drop patch
+  0001-off-by-one-in-out-of-bounds-calculations-Jan-Kaluza.patch
+  now part of upstream
+
+---

Old:

  0001-off-by-one-in-out-of-bounds-calculations-Jan-Kaluza.patch
  file-5.07-elf.dif
  file-5.12-endian.patch
  file-5.12-javacheck.dif
  file-5.17.tar.gz

New:

  file-5.18-elf.dif
  file-5.18-endian.patch
  file-5.18-javacheck.dif
  file-5.18.tar.gz



Other differences:
--
++ file.spec ++
--- /var/tmp/diff_new_pack.TTejuD/_old  2014-04-06 09:56:13.0 +0200
+++ /var/tmp/diff_new_pack.TTejuD/_new  2014-04-06 09:56:13.0 +0200
@@ -30,7 +30,7 @@
 %endif
 #
 # Set Version also in python-magic.spec
-Version:5.17
+Version:5.18
 Release:0
 Summary:A Tool to Determine File Types
 License:BSD-2-Clause
@@ -43,7 +43,7 @@
 Patch5: file-5.14-tex.dif
 Patch7: file-4.20-ssd.dif
 Patch8: file-4.20-xen.dif
-Patch9: file-5.07-elf.dif
+Patch9: file-5.18-elf.dif
 Patch10:file-5.14-printf.dif
 Patch11:file-5.12-zip.dif
 Patch12:file-5.17-option.dif
@@ -51,18 +51,16 @@
 Patch15:file-4.21-xcursor.dif
 Patch20:file-4.24-mips.dif
 Patch22:file-4.24-cromfs.dif
-Patch25:file-5.12-javacheck.dif
+Patch25:file-5.18-javacheck.dif
 Patch26:file-4.24-solv.dif
 Patch27:file-5.12-zip2.0.dif
 Patch28:file-5.07-iso9660.dif
 Patch31:file-5.07-biorad.dif
 Patch32:file-5.07-clicfs.dif
 Patch33:file-5.16-ocloexec.patch
-Patch34:file-5.12-endian.patch
+Patch34:file-5.18-endian.patch
 Patch35:file-5.12-nitpick.dif
 Patch36:file-5.15-clear-invalid.patch
-# PATCH-FIX-USTREAM last patch for bnc#866750 - CVE-2014-2270: file: crash 
when parsing some PE executables
-Patch37:0001-off-by-one-in-out-of-bounds-calculations-Jan-Kaluza.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _miscdir%{_datadir}/misc
@@ -128,7 +126,6 @@
 %patch34 -p0 -b .endian
 %patch35 -p0 -b .nitpick
 %patch36 -p1 -b .clear
-%patch37 -p0 -b .CVE-2014-2270
 %patch -b .0
 test -s src/magic.h.in || cp -p src/magic.h src/magic.h.in
 

++ python-magic.spec ++
--- /var/tmp/diff_new_pack.TTejuD/_old  2014-04-06 09:56:13.0 +0200
+++ /var/tmp/diff_new_pack.TTejuD/_new  2014-04-06 09:56:13.0 +0200
@@ -23,7 +23,7 @@
 BuildRequires:  python-devel
 BuildRequires:  zlib-devel
 Url:http://www.darwinsys.com/file/
-Version:5.17
+Version:5.18
 Release:0
 Summary:Python module to use libmagic
 License:BSD-3-Clause and BSD-4-Clause

++ file-5.15-clear-invalid.patch ++
--- /var/tmp/diff_new_pack.TTejuD/_old  2014-04-06 09:56:13.0 +0200
+++ /var/tmp/diff_new_pack.TTejuD/_new  2014-04-06 09:56:13.0 +0200
@@ -21,5 +21,5 @@
  16   leshort 0xff00 processor-specific,
 -18   clear   x
  18   leshort 0   no machine,
- 18   leshort 1   ATT WE32100
- 18   leshort 2   SPARC
+ 18   leshort 1   ATT WE32100,
+ 18   leshort 2   SPARC,

++ file-5.07-elf.dif - file-5.18-elf.dif ++
--- 

commit ca-certificates for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package ca-certificates for openSUSE:Factory 
checked in at 2014-04-06 09:56:17

Comparing /work/SRC/openSUSE:Factory/ca-certificates (Old)
 and  /work/SRC/openSUSE:Factory/.ca-certificates.new (New)


Package is ca-certificates

Changes:

--- /work/SRC/openSUSE:Factory/ca-certificates/ca-certificates.changes  
2013-12-17 10:00:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.ca-certificates.new/ca-certificates.changes 
2014-04-06 09:56:18.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr  4 11:38:17 UTC 2014 - lnus...@suse.de
+
+- package correct permissions of generated  directories (bnc#871639)
+
+---



Other differences:
--
++ ca-certificates.spec ++
--- /var/tmp/diff_new_pack.dNXpMK/_old  2014-04-06 09:56:19.0 +0200
+++ /var/tmp/diff_new_pack.dNXpMK/_new  2014-04-06 09:56:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ca-certificates
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -72,8 +72,8 @@
 install -d m 755 %{buildroot}%{ssletcdir}
 install -d m 755 %{buildroot}/etc/ca-certificates/update.d
 install -d m 755 %{buildroot}%{_prefix}/lib/ca-certificates/update.d
-install -d m 755 %{buildroot}/var/lib/ca-certificates/pem
-install -d m 755 %{buildroot}/var/lib/ca-certificates/openssl
+install -d m 555 %{buildroot}/var/lib/ca-certificates/pem
+install -d m 555 %{buildroot}/var/lib/ca-certificates/openssl
 ln -s /var/lib/ca-certificates/pem %{buildroot}%{sslcerts}
 %if %{with cabundle}
 install -D -m 644 /dev/null %{buildroot}/%{cabundle}

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



commit php5 for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:Factory checked in 
at 2014-04-06 09:56:22

Comparing /work/SRC/openSUSE:Factory/php5 (Old)
 and  /work/SRC/openSUSE:Factory/.php5.new (New)


Package is php5

Changes:

--- /work/SRC/openSUSE:Factory/php5/php5.changes2014-03-20 
06:53:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes   2014-04-06 
09:56:23.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr  4 12:20:16 UTC 2014 - pgaj...@suse.com
+
+- fixed CVE-2014-2497 [bnc#868624]
+
+---

New:

  php5-5.5.10-CVE-2014-2497.patch



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.zdNWZ7/_old  2014-04-06 09:56:24.0 +0200
+++ /var/tmp/diff_new_pack.zdNWZ7/_new  2014-04-06 09:56:24.0 +0200
@@ -176,6 +176,7 @@
 Patch19:php5-big-file-upload.patch
 Patch20:php5-per-mod-log.patch
 Patch21:php5-apache24-updates.patch
+Patch22:php5-5.5.10-CVE-2014-2497.patch
 Url:http://www.php.net
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:PHP5 Core Files
@@ -1331,6 +1332,7 @@
 %patch19 -p1
 %patch20 -p1
 %patch21 -p1
+%patch22
 # Safety check for API version change.
 vapi=`sed -n '/#define PHP_API_VERSION/{s/.* //;p}' main/php.h`
 if test x${vapi} != x%{apiver}; then


++ php5-5.5.10-CVE-2014-2497.patch ++
Description: Patch to fix PHP bug 66901.
Author: Andres Mejia mej...@amazon.com
Forwarded: no

Index: ext/gd/libgd/gdxpm.c
===
--- ext/gd/libgd/gdxpm.c.orig   2014-02-05 11:00:36.0 +0100
+++ ext/gd/libgd/gdxpm.c2014-04-04 14:06:15.991206709 +0200
@@ -39,6 +39,14 @@
number = image.ncolors;
colors = (int *) safe_emalloc(number, sizeof(int), 0);
for (i = 0; i  number; i++) {
+   if (!image.colorTable[i].c_color)
+   {
+   /* unsupported color key or color key not defined */
+   gdImageDestroy(im);
+   gdFree(colors);
+   im = 0;
+   goto done;
+   }
switch (strlen (image.colorTable[i].c_color)) {
case 4:
buf[1] = '\0';
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rpmlint for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2014-04-06 09:56:34

Comparing /work/SRC/openSUSE:Factory/rpmlint (Old)
 and  /work/SRC/openSUSE:Factory/.rpmlint.new (New)


Package is rpmlint

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2014-03-28 
12:13:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2014-04-06 
09:56:35.0 +0200
@@ -1,0 +2,15 @@
+Fri Apr  4 13:03:42 UTC 2014 - lnus...@suse.de
+
+- allow /run (bnc#870190)
+
+---
+Wed Apr  2 15:19:05 UTC 2014 - dmuel...@suse.com
+
+- update KMPPolicycheck 
+
+---
+Sat Mar 29 17:23:46 UTC 2014 - ch...@computersalat.de
+
+- added group 'squid' for squid
+
+---



Other differences:
--
++ config ++
--- /var/tmp/diff_new_pack.QjUPQh/_old  2014-04-06 09:56:36.0 +0200
+++ /var/tmp/diff_new_pack.QjUPQh/_new  2014-04-06 09:56:36.0 +0200
@@ -188,6 +188,7 @@
 'sapdb',
 'shadow',
 'snort',
+'squid',
 'sshd',
 'suse-ncc',
 'svn',

++ rpmlint-checks-master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckFilelist.py 
new/rpmlint-checks-master/CheckFilelist.py
--- old/rpmlint-checks-master/CheckFilelist.py  2014-01-30 10:26:12.0 
+0100
+++ new/rpmlint-checks-master/CheckFilelist.py  2014-04-04 15:03:30.0 
+0200
@@ -80,6 +80,7 @@
 '/var/adm/',
 '/var/nis/',
 '/emul/',
+'/run/',
 )
 
 # computed from goodprefixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckKDE4Deps.py 
new/rpmlint-checks-master/CheckKDE4Deps.py
--- old/rpmlint-checks-master/CheckKDE4Deps.py  2014-03-05 15:05:40.0 
+0100
+++ new/rpmlint-checks-master/CheckKDE4Deps.py  2014-04-04 15:03:30.0 
+0200
@@ -17,6 +17,10 @@
 import stat
 
 _kde4_pimlibs=(
+libakonadi-kde.so.4,
+libakonadi-kabc.so.4,
+libakonadi-kcal.so.4,
+libakonadi-kmime.so.4,
 libgpgme++-pth.so.1.1.0,
 libgpgme++-pthread.so.1.1.0,
 libgpgme++.so.1.1.0,
@@ -45,11 +49,7 @@
 )
 
 _kde4_libakonadi4 = (
-libakonadi-kde.so.4,
-libakonadi-kabc.so.4,
-libakonadi-kcal.so.4,
-libakonadi-kmime.so.4,
-libakonadiprotocolinternals.so.1,
+libakonadiprotocolinternals.so.1
 )
 
 class KDE4Check(AbstractCheck.AbstractCheck):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/KMPPolicyCheck.py 
new/rpmlint-checks-master/KMPPolicyCheck.py
--- old/rpmlint-checks-master/KMPPolicyCheck.py 2014-03-05 15:05:40.0 
+0100
+++ new/rpmlint-checks-master/KMPPolicyCheck.py 2014-04-04 15:03:30.0 
+0200
@@ -83,7 +83,7 @@
 'suse-policy-kmp-excessive-supplements',
  ,
 'suse-policy-kmp-missing-supplements',
-Make sure your 'BuildRequires:' include 'kernel-syms' and 
'module-init-tools'
+Make sure your 'BuildRequires:' include 'kernel-syms' and 'modutils'
 for proper dependencies to be built.
 ,
 )

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



commit aaa_base for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2014-04-06 09:54:04

Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and  /work/SRC/openSUSE:Factory/.aaa_base.new (New)


Package is aaa_base

Changes:

--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes2014-03-11 
17:25:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2014-04-06 
09:54:06.0 +0200
@@ -11,0 +12,6 @@
+Mon Mar  3 13:59:54 UTC 2014 - thomas.bl...@suse.com
+
+- move tmp file removal parameters from cron to systemd (fate#314974)
+  fate-314974.patch
+
+---

New:

  fate-314974.patch



Other differences:
--
++ aaa_base.spec ++
--- /var/tmp/diff_new_pack.mfAYXC/_old  2014-04-06 09:54:07.0 +0200
+++ /var/tmp/diff_new_pack.mfAYXC/_new  2014-04-06 09:54:07.0 +0200
@@ -55,6 +55,7 @@
 #
 Source1:README.packaging.txt
 Source99:   aaa_base-rpmlintrc
+Patch1: fate-314974.patch
 
 %description
 This package installs several important configuration files and central 
scripts.
@@ -83,6 +84,8 @@
 
 %prep
 %setup -q
+%patch1 -p1
+chmod 755 files/usr/bin/systemd-tmpfiles-keep
 
 %build
 make CFLAGS=$RPM_OPT_FLAGS CC=%{__cc} %{?_smp_mflags}
@@ -191,6 +194,7 @@
 /usr/bin/safe-rm
 /usr/bin/safe-rmdir
 /usr/bin/setJava
+/usr/bin/systemd-tmpfiles-keep
 /usr/lib/restricted/bin/hostname
 /usr/sbin/Check
 /usr/sbin/sysconf_addword

++ aaa_base-13.2+git20140310.a57750d.tar.xz ++

++ fate-314974.patch ++
diff -Naur orig/aaa_base.pre mod/aaa_base.pre
--- orig/aaa_base.pre   2013-10-08 12:09:34.632146253 +0200
+++ mod/aaa_base.pre2014-03-05 12:31:28.0 +0100
@@ -237,3 +237,147 @@
 if test -f /root/.gnupg/secring.gpg ; then
   cp -a /root/.gnupg/secring.gpg /root/.gnupg/secring.gpg.aaa_save
 fi
+
+# fate 314974: port tmpdir removal parameters from /etc/sysconfig/cron to 
/etc/tmpfiles.d/tmp.conf
+# we don't take action if /etc/sysconfig/cron is not present
+if [ -f /etc/sysconfig/cron ]; then
+   . /etc/sysconfig/cron
+
+# we need at least a skeleton of tmp.conf
+   if [ ! -f /etc/tmpfiles.d/tmp.conf ]; then
+  if [ -f /usr/lib/tmpfiles.d/tmp.conf ]; then
+ cp /usr/lib/tmpfiles.d/tmp.conf /etc/tmpfiles.d/tmp.conf
+  else
+ echo #  This file is part of systemd.
+   #
+   #  systemd is free software; you can redistribute it and/or 
modify it
+   #  under the terms of the GNU Lesser General Public License as 
published by
+   #  the Free Software Foundation; either version 2.1 of the 
License, or
+   #  (at your option) any later version.
+
+   # See tmpfiles.d(5) for details
+
+   # Clear tmp directories separately, to make them easier to 
override
+   # SUSE policy: we don't clean those directories
+   d /tmp 1777 root root -
+   d /var/tmp 1777 root root -
+   #  | sed 's/^ *//g'  /etc/tmpfiles.d/tmp.conf
+  fi
+   fi
+
+# transform settings from /etc/sysconfig/cron to /etc/tmpfiles.d/tmp.conf
+   if [ ${#MAX_DAYS_IN_TMP} -gt 0 ] || [ ${#TMP_DIRS_TO_CLEAR} -gt 0 ]; 
then
+  ISINTTMP=`test $MAX_DAYS_IN_TMP -eq $MAX_DAYS_IN_TMP 2/dev/null ; 
echo $?`
+  if [ $ISINTTMP -eq 0 ]; then
+ for DIR in $TMP_DIRS_TO_CLEAR; do
+DIRENT=`sed -n \c^d $DIR cp /etc/tmpfiles.d/tmp.conf`
+if [ -n $DIRENT ]; then
+   AGE=`echo $DIRENT | cut -d   -f 6`
+  if [ $AGE == - ]  [ $MAX_DAYS_IN_TMP -gt 0 ]; then
+ MODENT+=`sed -n \c^d $DIR cs/-/$MAX_DAYS_IN_TMPd/p 
/etc/tmpfiles.d/tmp.conf | sed 's/^d/\\\nd/'`
+  else
+ MODENT+=`echo $DIRENT | sed 's/^d/\\\nd/'`
+  fi
+elif [ $MAX_DAYS_IN_TMP -gt 0 ]; then
+   MODENT+=`echo \nd $DIR 1777 root root $MAX_DAYS_IN_TMPd`
+elif [ $MAX_DAYS_IN_TMP -eq 0 ]; then
+   MODENT+=`echo \nd $DIR 1777 root root -`
+fi
+ done
+ if [ ${#TMP_DIRS_TO_CLEAR} -eq 0 ]  [ $MAX_DAYS_IN_TMP -gt 0 ]; 
then
+MODENT+=`echo \nd /tmp 1777 root root $MAX_DAYS_IN_TMPd`
+ fi
+  fi
+   fi
+
+   if [ -n $MAX_DAYS_IN_LONG_TMP ] || [ -n  $LONG_TMP_DIRS_TO_CLEAR ]; then
+  ISINTTMP=`test $MAX_DAYS_IN_LONG_TMP -eq $MAX_DAYS_IN_LONG_TMP 
2/dev/null ; echo $?`
+  if [ $ISINTTMP -eq 0 ]; then
+ for DIR in $LONG_TMP_DIRS_TO_CLEAR; do
+DIRENT=`sed -n \c^d $DIR cp /etc/tmpfiles.d/tmp.conf`
+if [ -n $DIRENT ]; then
+   AGE=`echo $DIRENT | cut -d   -f 6`
+

commit bash for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2014-04-06 09:54:10

Comparing /work/SRC/openSUSE:Factory/bash (Old)
 and  /work/SRC/openSUSE:Factory/.bash.new (New)


Package is bash

Changes:

--- /work/SRC/openSUSE:Factory/bash/bash.changes2014-03-19 
13:57:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2014-04-06 
09:54:14.0 +0200
@@ -1,0 +2,12 @@
+Tue Apr  1 12:31:38 UTC 2014 - wer...@suse.de
+
+- Add bash upstream patch 46 to fix a problem introduced by patch
+  32 a problem with $@ and arrays expanding empty positional
+  parameters or array elements when using substring expansion,
+  pattern substitution, or case modfication.  The empty parameters
+  or array elements are removed instead of expanding to empty
+  strings ().
+- Add readline upstream patch 5: The readline shared library
+  helper script needs to be updated for Mac OS X 10.9
+
+---



Other differences:
--
++ bash-4.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.2-patches/bash42-046 
new/bash-4.2-patches/bash42-046
--- old/bash-4.2-patches/bash42-046 1970-01-01 01:00:00.0 +0100
+++ new/bash-4.2-patches/bash42-046 2014-03-31 22:50:19.0 +0200
@@ -0,0 +1,55 @@
+BASH PATCH REPORT
+=
+
+Bash-Release:  4.2
+Patch-ID:  bash42-046
+
+Bug-Reported-by:   Theodoros V. Kalamatianos thk...@gmail.com
+Bug-Reference-ID:  20140112011131.ge17...@infinity.metashade.com
+Bug-Reference-URL: 
http://lists.gnu.org/archive/html/bug-bash/2014-01/msg00044.html
+
+Bug-Description:
+
+Bash-4.2 patch 32 introduced a problem with $@ and arrays expanding empty
+positional parameters or array elements when using substring expansion,
+pattern substitution, or case modfication.  The empty parameters or array
+elements are removed instead of expanding to empty strings ().
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.2-patched/subst.c2012-12-31 11:52:56.0 -0500
+--- subst.c2014-03-31 14:19:56.0 -0400
+***
+*** 7243,7247 
+ret = alloc_word_desc ();
+ret-word = temp1;
+!   if (temp1  QUOTED_NULL (temp1)  (quoted  
(Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
+   ret-flags |= W_QUOTED|W_HASQUOTEDNULL;
+return ret;
+--- 7243,7253 
+ret = alloc_word_desc ();
+ret-word = temp1;
+!   /* We test quoted_dollar_atp because we want variants with 
double-quoted
+!   $@ to take a different code path. In fact, we make sure at the end
+!   of expand_word_internal that we're only looking at these flags if
+!   quoted_dollar_at == 0. */
+!   if (temp1  
+!   (quoted_dollar_atp == 0 || *quoted_dollar_atp == 0) 
+!QUOTED_NULL (temp1)  (quoted  (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
+   ret-flags |= W_QUOTED|W_HASQUOTEDNULL;
+return ret;
+*** ../bash-4.2-patched/patchlevel.h   Sat Jun 12 20:14:48 2010
+--- patchlevel.h   Thu Feb 24 21:41:34 2011
+***
+*** 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 45
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 46
+  
+  #endif /* _PATCHLEVEL_H_ */

++ readline-6.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/readline-6.2-patches/readline62-005 
new/readline-6.2-patches/readline62-005
--- old/readline-6.2-patches/readline62-005 1970-01-01 01:00:00.0 
+0100
+++ new/readline-6.2-patches/readline62-005 2013-11-19 15:38:18.0 
+0100
@@ -0,0 +1,72 @@
+  READLINE PATCH REPORT
+  =
+
+Readline-Release: 6.2
+Patch-ID: readline62-005
+
+Bug-Reported-by:   ludwig.schwa...@gmail.com
+Bug-Reference-ID:  
caj3rg108nlnrwxj81vb4bcqbvohguwovkthekwprbwe9xye...@mail.gmail.com
+Bug-Reference-URL: 
https://lists.gnu.org/archive/html/bug-readline/2013-11/msg0.html
+
+Bug-Description:
+
+The readline shared library helper script needs to be updated for Mac OS X
+10.9 (Mavericks, darwin13).
+
+Patch (apply with `patch -p0'):
+
+*** ../readline-6.2-patched/support/shobj-conf 2011-11-23 19:26:47.0 
-0500
+--- support/shobj-conf 2013-11-15 08:09:51.0 -0500
+***
+*** 158,162 
+  
+  # Darwin/MacOS X
+! darwin[89]*|darwin1[012]*)
+   

commit gdbm for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package gdbm for openSUSE:Factory checked in 
at 2014-04-06 09:54:06

Comparing /work/SRC/openSUSE:Factory/gdbm (Old)
 and  /work/SRC/openSUSE:Factory/.gdbm.new (New)


Package is gdbm

Changes:

--- /work/SRC/openSUSE:Factory/gdbm/gdbm.changes2013-03-07 
07:20:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdbm.new/gdbm.changes   2014-04-06 
09:54:07.0 +0200
@@ -1,0 +2,9 @@
+Mon Mar 31 10:52:05 UTC 2014 - pgaj...@suse.com
+
+- update to 1.11:
+  * Improved dump format.
+  * New function: gdbm_count.
+  * New utilities: gdbm_dump and gdbm_load.
+  * gdbmtool
+
+---

Old:

  gdbm-1.10.tar.gz

New:

  gdbm-1.11.tar.gz



Other differences:
--
++ gdbm.spec ++
--- /var/tmp/diff_new_pack.mn2YOW/_old  2014-04-06 09:54:08.0 +0200
+++ /var/tmp/diff_new_pack.mn2YOW/_new  2014-04-06 09:54:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gdbm
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
 
 Name:   gdbm
 %define lname  libgdbm4
-Url:http://directory.fsf.org/GNU/gdbm.html
+Url:http://www.gnu.org.ua/software/gdbm/
 #!BuildIgnore: man
 # bug437293
 %ifarch ppc64
 Obsoletes:  gdbm-64bit
 %endif
 #
-Version:1.10
+Version:1.11
 Release:0
 Summary:GNU dbm key/data database
 License:GPL-3.0+
@@ -103,7 +103,7 @@
 
 %prep
 %setup -q
-%patch4 -p1
+%patch4
 
 %build
 aclocal
@@ -144,7 +144,7 @@
 
 %files devel
 %defattr(-,root,root)
-%{_bindir}/testgdbm
+%{_bindir}/*
 %{_includedir}/dbm.h
 %{_includedir}/gdbm.h
 %{_includedir}/ndbm.h
@@ -155,6 +155,7 @@
 %{_libdir}/libgdbm_compat.so
 %{_libdir}/libndbm.a
 %{_libdir}/libndbm.so
+%{_mandir}/man1/*.gz
 %{_mandir}/man3/gdbm.3.gz
 %exclude %{_libdir}/*.la
 

++ gdbm-1.10.tar.gz - gdbm-1.11.tar.gz ++
 69171 lines of diff (skipped)

++ gdbm-no-build-date.patch ++
--- /var/tmp/diff_new_pack.mn2YOW/_old  2014-04-06 09:54:09.0 +0200
+++ /var/tmp/diff_new_pack.mn2YOW/_new  2014-04-06 09:54:09.0 +0200
@@ -1,17 +1,14 @@
-diff -urN gdbm-1.10.orig/src/version.c gdbm-1.10/src/version.c
 gdbm-1.10.orig/src/version.c   2012-09-23 16:12:24.331788076 +0800
-+++ gdbm-1.10/src/version.c2012-09-23 16:24:17.517221527 +0800
-@@ -24,11 +24,8 @@
-The DIST_DATE magic below is replaced by the actual date when
+Index: src/version.c
+===
+--- src/version.c.orig 2014-03-31 12:37:27.178806783 +0200
 src/version.c  2014-03-31 12:38:48.329789877 +0200
+@@ -25,9 +25,6 @@
 making the distdir. */
  const char * gdbm_version = GDBM version  PACKAGE_VERSION . 
--13/11/2011
+ 25/12/2013
 -#if defined(__STDC__)  defined(__DATE__)  defined(__TIME__)
 -   (built  __DATE__   __TIME__ )
 -#endif
--;
-+13/11/2011;
-+
+ ;
  int const gdbm_version_number[3] = {
GDBM_VERSION_MAJOR,
-   GDBM_VERSION_MINOR,


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



commit tar for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package tar for openSUSE:Factory checked in 
at 2014-04-06 09:54:00

Comparing /work/SRC/openSUSE:Factory/tar (Old)
 and  /work/SRC/openSUSE:Factory/.tar.new (New)


Package is tar

Changes:

--- /work/SRC/openSUSE:Factory/tar/tar.changes  2014-01-11 11:12:33.0 
+0100
+++ /work/SRC/openSUSE:Factory/.tar.new/tar.changes 2014-04-06 
09:54:01.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 26 17:46:39 UTC 2014 - vci...@suse.com
+
+- fix an infinite loop in handle_option (bnc#867919 and bnc#870422)
+  * added tar-fix_eternal_loop_in_handle_option.patch
+
+---

New:

  tar-fix_eternal_loop_in_handle_option.patch



Other differences:
--
++ tar.spec ++
--- /var/tmp/diff_new_pack.HBMHtn/_old  2014-04-06 09:54:02.0 +0200
+++ /var/tmp/diff_new_pack.HBMHtn/_new  2014-04-06 09:54:02.0 +0200
@@ -34,6 +34,7 @@
 Patch3: tar-wildcards.patch
 Patch6: tar-backup-spec-fix-paths.patch
 Patch7: tar-1.26-remove_O_NONBLOCK.patch
+Patch8: tar-fix_eternal_loop_in_handle_option.patch
 Patch10:paxutils-rtapelib_mtget.patch
 Patch20:add_readme-tests.patch
 %if 0%{?suse_version} = %min_suse_ver
@@ -77,6 +78,7 @@
 %patch3 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 %patch10 -p1
 %patch20 -p1
 


++ tar-fix_eternal_loop_in_handle_option.patch ++
commit c13948fd0aef759e95038bd28416077b12f7dd29
Author: Vitezslav Cizek vci...@suse.cz
Date:   Wed Mar 26 18:34:53 2014 +0100

fix an eternal loop in handle_option

diff --git a/src/names.c b/src/names.c
index 9fc0ad5..963ec07 100644
--- a/src/names.c
+++ b/src/names.c
@@ -439,7 +439,7 @@ handle_option (const char *str)
   int i;
 
   while (*str  isspace (*str))
-;
+str++;
   if (*str != '-')
 return 1;
 

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



commit systemd-rpm-macros for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package systemd-rpm-macros for 
openSUSE:Factory checked in at 2014-04-06 09:53:59

Comparing /work/SRC/openSUSE:Factory/systemd-rpm-macros (Old)
 and  /work/SRC/openSUSE:Factory/.systemd-rpm-macros.new (New)


Package is systemd-rpm-macros

Changes:

--- /work/SRC/openSUSE:Factory/systemd-rpm-macros/systemd-rpm-macros.changes
2014-02-28 16:25:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.systemd-rpm-macros.new/systemd-rpm-macros.changes   
2014-04-06 09:54:00.0 +0200
@@ -1,0 +2,11 @@
+Thu Mar 27 14:44:53 UTC 2014 - wer...@suse.de
+
+- Add a %_ntpunitsdir macro 
+
+---
+Thu Mar 27 12:22:11 UTC 2014 - fcro...@suse.com
+
+- Add support to not restart services if running in YaST2 or
+  if DISABLE_RESTART_ON_UPDATE is set to yes [bnc#858429]
+
+---



Other differences:
--
++ macros.systemd ++
--- /var/tmp/diff_new_pack.CdSwC4/_old  2014-04-06 09:54:00.0 +0200
+++ /var/tmp/diff_new_pack.CdSwC4/_new  2014-04-06 09:54:00.0 +0200
@@ -35,6 +35,7 @@
 %_journalcatalogdir /usr/lib/systemd/catalog
 %_tmpfilesdir /usr/lib/tmpfiles.d
 %_sysctldir /usr/lib/sysctl.d
+%_ntpunitsdir /usr/lib/systemd/ntp-units.d
 
 %service_add_pre() 
\
 test -n $FIRST_ARG || FIRST_ARG=$1   
\
@@ -106,7 +107,9 @@
 test -n $FIRST_ARG || FIRST_ARG=$1   
\
 if [ $FIRST_ARG -ge 1 ]; then  
\
 # Package upgrade, not uninstall   
\
-  /usr/bin/systemctl try-restart %{?*} /dev/null 21 || :
\
+  if test $YAST_IS_RUNNING != instsys -a $DISABLE_RESTART_ON_UPDATE != 
yes ; then \
+/usr/bin/systemctl try-restart %{?*} /dev/null 21 || :  
\
+  fi \
 else # package uninstall   
\
   for service in %{?*} ; do
\
 sysv_service=${service%.*} 
\

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



commit pcre for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package pcre for openSUSE:Factory checked in 
at 2014-04-06 09:54:02

Comparing /work/SRC/openSUSE:Factory/pcre (Old)
 and  /work/SRC/openSUSE:Factory/.pcre.new (New)


Package is pcre

Changes:

--- /work/SRC/openSUSE:Factory/pcre/pcre.changes2014-03-15 
17:38:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.pcre.new/pcre.changes   2014-04-06 
09:54:03.0 +0200
@@ -1,0 +2,26 @@
+Sun Mar 23 20:50:04 UTC 2014 - tchva...@suse.com
+
+- Add automake and autoconf as explicit deps as we run autoreconf
+
+---
+Sun Mar 23 20:49:02 UTC 2014 - tchva...@suse.com
+
+- Add patch pcre-8.21-multilib.patch to fix RPATH issues.
+  * The patch is taken from RedHat.
+
+---
+Sun Mar 23 20:47:05 UTC 2014 - tchva...@suse.com
+
+- Clean up with the spec cleaner. Use -j1 in tests as it is not
+  really thread safe
+
+---
+Sun Mar 23 20:35:09 UTC 2014 - tchva...@suse.com
+
+- Version bump to 8.34:
+  * warning fixes
+  * perl fixes
+  * unocode6.3.0 support
+  * gconv support
+
+---

Old:

  pcre-8.33.tar.bz2
  pcre-8.33.tar.bz2.sig

New:

  pcre-8.21-multilib.patch
  pcre-8.34.tar.bz2
  pcre-8.34.tar.bz2.sig



Other differences:
--
++ pcre.spec ++
--- /var/tmp/diff_new_pack.EWglJC/_old  2014-04-06 09:54:04.0 +0200
+++ /var/tmp/diff_new_pack.EWglJC/_new  2014-04-06 09:54:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pcre
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,25 +17,28 @@
 
 
 Name:   pcre
-Version:8.33
+Version:8.34
 Release:0
 Summary:A library for Perl-compatible regular expressions
 License:BSD-3-Clause
 Group:  System/Libraries
 Url:http://www.pcre.org/
-
 #SVN-Clone:svn://vcs.exim.org/pcre/code/trunk
 #Freecode-URL: http://freecode.com/projects/pcre
-Source: 
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%name-%version.tar.bz2
-Source2:
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%name-%version.tar.bz2.sig
-Source3:%name.keyring
+Source: 
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2
+Source2:
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2.sig
+Source3:%{name}.keyring
 Source4:baselibs.conf
 #PATCH-FIX-UPSTREAM crrodrig...@opensuse.org 
http://bugs.exim.org/show_bug.cgi?id=1173
-Patch:  pcre-8.32-visibility.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch0: pcre-8.32-visibility.patch
+#PATCH-FIX-OPENSUSE tchva...@suse.cz upstream thinks it is good idea to use 
rpath, taken from RH
+Patch1: pcre-8.21-multilib.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
 BuildRequires:  pkg-config
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # bug437293
 %ifarch ppc64
 Obsoletes:  pcre-64bit
@@ -68,7 +71,7 @@
 %packagedevel-static
 Summary:A library for Perl-compatible regular expressions
 Group:  System/Libraries
-Requires:   pcre-devel = %version
+Requires:   pcre-devel = %{version}
 
 %description devel-static
 The PCRE library is a set of functions that implement regular
@@ -146,15 +149,16 @@
 as Perl 5.
 
 %prep
-%{?gpg_verify: %gpg_verify %{S:2}}
+%{?gpg_verify: %gpg_verify %{SOURCE2}}
 %setup -q
-%patch -p1
+%patch0 -p1
+%patch1 -p1
 
 %build
 # Available JIT archs see sljit/sljitConfig.h
 autoreconf -fiv
 %configure \
-%ifarch %ix86 x86_64 %arm ppc ppc64 mips sparc
+%ifarch %{ix86} x86_64 %{arm} ppc ppc64 mips sparc
--enable-jit \
 %endif
--enable-static \
@@ -164,18 +168,18 @@
--enable-pcre16 \
--enable-utf8 \
 --enable-unicode-properties
-%{__make} %{?_smp_mflags} V=1
+make %{?_smp_mflags} V=1
 
 %install
-make install DESTDIR=%buildroot
-%{__mkdir_p} %{buildroot}/%{_defaultdocdir}
-mv %{buildroot}/usr/share/doc/pcre %{buildroot}/%{_defaultdocdir}/pcre-doc
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+mkdir -p %{buildroot}/%{_defaultdocdir}
+mv %{buildroot}%{_datadir}/doc/pcre %{buildroot}/%{_defaultdocdir}/pcre-doc
 #empty dependecy_libs
-%{__rm} -f