commit gv for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gv for openSUSE:Factory checked in 
at 2013-02-28 07:10:48

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


Package is gv, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gv/gv.changes2013-02-25 20:34:40.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gv.new/gv.changes   2013-02-28 
10:17:26.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 26 17:00:33 UTC 2013 - wer...@suse.de
+
+- Add patch gv-3.7.2-libzio.dif: make libzio usable (bnc#805149)
+
+---

New:

  gv-3.7.2-libzio.dif



Other differences:
--
++ gv.spec ++
--- /var/tmp/diff_new_pack.avSHZZ/_old  2013-02-28 10:17:27.0 +0100
+++ /var/tmp/diff_new_pack.avSHZZ/_new  2013-02-28 10:17:27.0 +0100
@@ -19,6 +19,8 @@
 Name:   gv
 BuildRequires:  automake
 BuildRequires:  help2man
+BuildRequires:  libbz2-devel
+BuildRequires:  libzio-devel
 BuildRequires:  makeinfo
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11
@@ -28,6 +30,8 @@
 %else
 BuildRequires:  xaw3d
 %endif
+BuildRequires:  xz-devel
+BuildRequires:  zlib-devel
 %if %suse_version  1100
 BuildRequires:  desktop-data-SuSE
 %endif
@@ -48,6 +52,8 @@
 Source2:gv.png
 Patch1: gv-3.7.0.dif
 Patch2: gv-3.7.0-I18N-mb.patch
+# PATCH-FIX-OPENSUSE: make libzio usable
+Patch3: gv-3.7.2-libzio.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{expand: %%global _exec_prefix %(type -p pkg-config /dev/null  pkg-config 
--variable prefix x11 || echo /usr/X11R6)}
 %if %_exec_prefix == /usr/X11R6
@@ -77,8 +83,9 @@
 %prep
 %setup
 echo  src/Makefile.am
-%patch1 -p0
-%patch2 -p0
+%patch1 -p0 -b .one
+%patch2 -p0 -b .two
+%patch3 -p0 -b .zio
 
 %build
 autoreconf -fis

++ gv-3.7.2-libzio.dif ++
--- configure.ac
+++ configure.ac2013-02-26 17:06:18.609444764 +
@@ -73,6 +73,14 @@ AC_CHECK_HEADER(bzlib.h,[
   do
 AC_CHECK_LIB($lib, BZ2_bzopen, [LIBS=$LIBS -l$lib ; break])
   done])
+AC_CHECK_HEADER(lzmadec.h, [
+  for lib in lzma lzmadec; do
+AC_CHECK_LIB($lib, lzmadec_open, [LIBS=$LIBS -l$lib; break])
+  done])
+ AC_CHECK_HEADER(lzma.h, [
+  for lib in lzma; do
+AC_CHECK_LIB($lib, lzma_easy_encoder, [LIBS=$LIBS -l$lib; break])
+  done])
 AC_CHECK_HEADER(zio.h,[
 AC_CHECK_LIB(zio, fzopen, [LIBS=$LIBS -lzio ; AC_DEFINE(HAVE_ZIO, 1, 
[Have ZIO Library])],[LIBS=$savedLIBS])
   ],[LIBS=$savedLIBS])
--- src/ps.c
+++ src/ps.c2013-02-26 16:58:04.321444640 +
@@ -385,10 +385,11 @@ psscan(fileP,filename,filename_raw,filen
 int ignore_dsc; /* Derived from scanstyle.
   If set the document structure will be 
ignored.
*/
-unsigned char b[3]; /* The first 3 bytes of the input file */
+unsigned char b[5]; /* The first 3 bytes of the input file */
 
 BEGINMESSAGE(psscan)
 
+#ifndef HAVE_ZIO
 if (cmd_uncompress) {
   if ( fread(b, sizeof(char), 3, *fileP) != 3  ||   /* If ((read error) OR 
*/
( memcmp(b, \037\235, 2) != 0/*   (not compress AND 
*/
@@ -398,6 +399,21 @@ psscan(fileP,filename,filename_raw,filen
cmd_uncompress=NULL;
   }
 }
+#else
+if (cmd_uncompress) {
+  if ( fread(b, sizeof(char), 5, *fileP) != 5  ||   /* If read error OR */
+   ( memcmp(b, \037\235, 2) != 0/*   not compress */
+ memcmp(b, \037\236, 2) != 0  
+ memcmp(b, \037\213, 2) != 0/*   not gzip */
+ memcmp(b, BZh,  3) != 0/*   not bzip2 */
+ memcmp(b, ]\0\0\200,5) != 0  
+ memcmp(b, \377LZMA, 5) != 0  
+ memcmp(b, \3757zXZ, 5) != 0  )) {
+rewind(*fileP);
+   cmd_uncompress=NULL;
+  }
+}
+#endif
 #ifndef HAVE_ZIO
 if (cmd_uncompress) {
   struct document *retval = NULL;

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



commit libEMF for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libEMF for openSUSE:Factory checked 
in at 2013-02-28 07:11:33

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


Package is libEMF, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libEMF/libEMF.changes2012-11-24 
21:27:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.libEMF.new/libEMF.changes   2013-02-28 
10:18:16.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:20:03 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ libEMF.spec ++
--- /var/tmp/diff_new_pack.c35Ev4/_old  2013-02-28 10:18:17.0 +0100
+++ /var/tmp/diff_new_pack.c35Ev4/_new  2013-02-28 10:18:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libEMF
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -24,7 +24,7 @@
 Url:http://libemf.sourceforge.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Library for Manipulation with Enhanced MetaFile (EMF, ECMA-234)
-License:LGPL-2.1+ ; GPL-2.0+
+License:LGPL-2.1+ and GPL-2.0+
 Group:  System/Libraries
 # taken from includes/wine/winnt.h
 ExclusiveArch:  alpha %arm %ix86 mips ppc ppc64 sparc s390 s390x x86_64
@@ -73,7 +73,7 @@
 
 %package devel
 Summary:Library for manipulation with Enhanced MetaFile (EMF, ECMA-234)
-License:LGPL-2.1+ ; GPL-2.0+
+License:LGPL-2.1+ and GPL-2.0+
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
 Requires:   libEMF1 = %{version}

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



commit libvisio for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libvisio for openSUSE:Factory 
checked in at 2013-02-28 07:12:01

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


Package is libvisio, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libvisio/libvisio.changes2012-12-05 
13:58:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvisio.new/libvisio.changes   2013-02-28 
10:18:50.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 26 13:33:06 CET 2013 - fridrich.st...@suse.com
+
+- Bump version to 0.0.25
+  * don't throw from parser to the outer world
+  * fix line height conversion with fixed line-height
+  * fix incorrect colour conversion in documents without cached hex value
+  * convert page names
+  * miscellaneous coverty fixes
+
+---

Old:

  libvisio-0.0.23.tar.xz

New:

  libvisio-0.0.25.tar.xz



Other differences:
--
++ libvisio.spec ++
--- /var/tmp/diff_new_pack.Yb5Sg7/_old  2013-02-28 10:18:51.0 +0100
+++ /var/tmp/diff_new_pack.Yb5Sg7/_new  2013-02-28 10:18:51.0 +0100
@@ -19,7 +19,7 @@
 %define libname libvisio-0_0-0
 
 Name:   libvisio
-Version:0.0.23
+Version:0.0.25
 Release:0
 License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Summary:Library for parsing the MS Visio file format structure

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



commit patterns-openSUSE for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2013-02-28 07:13:03

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


Package is patterns-openSUSE, Maintainer is co...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes  
2013-02-26 16:23:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2013-02-28 10:19:42.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 09:38:44 UTC 2013 - co...@suse.com
+
+Do not rely on preprocessor, set __i386__ explicitly on %ix86
+
+---



Other differences:
--
++ patterns-openSUSE-data.tar.bz2 ++

++ patterns-openSUSE.spec.in ++
--- /var/tmp/diff_new_pack.pYzfez/_old  2013-02-28 10:19:44.0 +0100
+++ /var/tmp/diff_new_pack.pYzfez/_new  2013-02-28 10:19:44.0 +0100
@@ -49,11 +49,17 @@
 %setup -q -n patterns-openSUSE-data
 
 %build
+%ifarch %ix86
+export EXPLICIT_UNAME=i386
+%endif
+%ifarch x86_64
+export EXPLICIT_UNAME=x86_64
+%endif
 for i in data/*; do sh %SOURCE1 $i; done | perl %SOURCE4 | \
uniq  data/REST-DVD-SUGGESTS
 for i in gnome kde4; do 
-  sh %{SOURCE1} toinstall/rest_cd_$i/requires  t  \
-mv t toinstall/rest_cd_$i/requires
+  sh %{SOURCE1} toinstall/rest_cd_$i/requires  n.$i  \
+mv n.$i toinstall/rest_cd_$i/requires
 done
 /usr/sbin/patterns_utf8
 
@@ -65,6 +71,12 @@
 # For generation of -32bit/-x86/-64bit patterns
 export RPM_BUILD_ROOT 
 export RPM_SOURCE_DIR
+%ifarch %ix86
+export EXPLICIT_UNAME=i386
+%endif
+%ifarch x86_64
+export EXPLICIT_UNAME=x86_64
+%endif
 sh -e %{SOURCE5} %{version} %{release} %{_target_cpu} openSUSE
 /usr/sbin/patterns_lint $RPM_BUILD_ROOT/CD1/suse/setup/descr/*.pat
 rm $RPM_BUILD_ROOT/CD1/suse/setup/descr/kde4_cd-*.pat

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



commit proxymngr for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package proxymngr for openSUSE:Factory 
checked in at 2013-02-28 07:13:18

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


Package is proxymngr, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/proxymngr/proxymngr.changes  2012-05-08 
12:00:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.proxymngr.new/proxymngr.changes 2013-02-28 
10:21:03.0 +0100
@@ -1,0 +2,16 @@
+Tue Feb 26 20:07:56 UTC 2013 - zai...@opensuse.org
+
+- Update to version 1.0.3:
+  + install: Use sysconfdir instead of libdir for config files.
+  + man: Set correct config file location in man page
+  + Mark Usage() with _X_NORETURN to silence gcc warning
+  + Add const qualifiers to clear gcc -Wwrite-strings warnings
+  + config: replace deprecated AM_CONFIG_HEADER with
+AC_CONFIG_HEADERS
+  + Add $(AM_V_GEN) to silence pmconfig creation rule
+  + proxymngr depends on xproto, not x11 (Xlib)
+- Drop proxymngr.diff patch, fixed upstream.
+- Replace pkgconfig(x11) BuildRequires with pkgconfig(xproto)
+  BuildRequires, following upstream changes.
+
+---

Old:

  proxymngr-1.0.2.tar.bz2
  proxymngr.diff

New:

  proxymngr-1.0.3.tar.bz2



Other differences:
--
++ proxymngr.spec ++
--- /var/tmp/diff_new_pack.E25fmH/_old  2013-02-28 10:21:04.0 +0100
+++ /var/tmp/diff_new_pack.E25fmH/_new  2013-02-28 10:21:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package proxymngr
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,23 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   proxymngr
-Version:1.0.2
+Version:1.0.3
 Release:0
-License:MIT
 Summary:X proxy manager service
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Utilities
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
-# proxymngr.diff -- Change path to config file
-Patch0: proxymngr.diff
 BuildRequires:  lbxproxy
-# needed for patch0
-BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(ice)
-BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xorg-macros) = 1.8
+BuildRequires:  pkgconfig(xproto) = 7.0.17
 BuildRequires:  pkgconfig(xproxymngproto)
 BuildRequires:  pkgconfig(xt)
 Requires:   lbxproxy
@@ -47,9 +44,6 @@
 
 %prep
 %setup -q
-%patch0 -p0
-# needed for patch0
-autoreconf -fi
 
 %build
 %configure

++ proxymngr-1.0.2.tar.bz2 - proxymngr-1.0.3.tar.bz2 ++
 9521 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/proxymngr-1.0.2/ChangeLog new/proxymngr-1.0.3/ChangeLog
--- old/proxymngr-1.0.2/ChangeLog   2010-10-30 22:29:56.0 +0200
+++ new/proxymngr-1.0.3/ChangeLog   2013-02-11 02:25:22.0 +0100
@@ -1,3 +1,85 @@
+commit 173166cff3d37a71098bf9b194b0cbe8dae0564c
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sun Feb 10 17:21:40 2013 -0800
+
+proxymngr 1.0.3
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 41a2f89c2644dc66fbddf84af7cf02f0be323059
+Author: Egbert Eich e...@freedesktop.org
+Date:   Thu May 19 09:30:06 2011 +0200
+
+install: Use sysconfdir instead of libdir for config files.
+
+Most X packages today install their config files in sysconfigdir,
+only a few are left which still put their configuration in libdir.
+
+Signed-off-by: Egbert Eich e...@freedesktop.org
+Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 4e07066c12f2e2ef69ec4e56f702452c1216c035
+Author: Egbert Eich e...@freedesktop.org
+Date:   Thu May 19 09:29:10 2011 +0200
+
+man: Set correct config file location in man page
+
+Change the config file location from a hard coded path to what is
+set during build.
+
+Signed-off-by: Egbert Eich e...@freedesktop.org
+Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 

commit python-django for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package python-django for openSUSE:Factory 
checked in at 2013-02-28 07:13:27

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


Package is python-django, Maintainer is radma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/python-django/python-django.changes  
2012-12-19 11:53:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-django.new/python-django.changes 
2013-02-28 10:21:20.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 26 19:49:02 UTC 2013 - alexan...@exatati.com.br
+
+- Update to 1.5:
+  - Please read the release notes
+https://docs.djangoproject.com/en/1.5/releases/1.5
+
+---

Old:

  Django-1.4.3.tar.bz2

New:

  Django-1.5.tar.bz2



Other differences:
--
++ python-django.spec ++
--- /var/tmp/diff_new_pack.tonLBh/_old  2013-02-28 10:21:21.0 +0100
+++ /var/tmp/diff_new_pack.tonLBh/_new  2013-02-28 10:21:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,7 +17,7 @@
 
 
 Name:   python-django
-Version:1.4.3
+Version:1.5
 Release:0
 Summary:A high-level Python Web framework
 License:BSD-3-Clause
@@ -59,7 +59,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS LICENSE README
+%doc AUTHORS LICENSE README.rst
 %{_bindir}/django-admin*
 %{python_sitelib}/*
 %{_sysconfdir}/bash_completion.d/django_bash_completion.sh

++ Django-1.4.3.tar.bz2 - Django-1.5.tar.bz2 ++
 578223 lines of diff (skipped)

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



commit xfsinfo for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package xfsinfo for openSUSE:Factory checked 
in at 2013-02-28 07:13:51

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


Package is xfsinfo, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xfsinfo/xfsinfo.changes  2012-05-08 
12:05:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.xfsinfo.new/xfsinfo.changes 2013-02-28 
10:23:39.0 +0100
@@ -1,0 +2,14 @@
+Tue Feb 26 19:14:54 UTC 2013 - zai...@opensuse.org
+
+- Update to version 1.0.4:
+  + Print normalized version for X.Org servers, the way xdpyinfo
+does.
+  + Remove CVS/RCS id tags.
+  + Mark usage() as _X_NORETURN.
+  + config:
+- Add missing AC_CONFIG_SRCDIR.
+- Replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS.
+- Move man pages into their own directory.
+  + man: remove trailing spaces and tabs.
+
+---

Old:

  xfsinfo-1.0.3.tar.bz2

New:

  xfsinfo-1.0.4.tar.bz2



Other differences:
--
++ xfsinfo.spec ++
--- /var/tmp/diff_new_pack.yyXqXb/_old  2013-02-28 10:23:40.0 +0100
+++ /var/tmp/diff_new_pack.yyXqXb/_new  2013-02-28 10:23:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xfsinfo
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,18 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   xfsinfo
-Version:1.0.3
+Version:1.0.4
 Release:0
-License:MIT
 Summary:X font server information utility
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Utilities
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libfs)
 BuildRequires:  pkgconfig(xorg-macros) = 1.8
-BuildRequires:  pkgconfig(xproto)
+BuildRequires:  pkgconfig(xproto) = 7.0.17
 # This was part of the xorg-x11 package up to version 7.6
 Conflicts:  xorg-x11 = 7.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ xfsinfo-1.0.3.tar.bz2 - xfsinfo-1.0.4.tar.bz2 ++
 10358 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xfsinfo-1.0.3/ChangeLog new/xfsinfo-1.0.4/ChangeLog
--- old/xfsinfo-1.0.3/ChangeLog 2010-10-31 00:56:12.0 +0200
+++ new/xfsinfo-1.0.4/ChangeLog 2013-02-11 00:40:08.0 +0100
@@ -1,3 +1,81 @@
+commit 4c717e41a5d894ef833815396b0de057b53213aa
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sun Feb 10 15:39:31 2013 -0800
+
+xfsinfo 1.0.4
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 57d7eb7506cef9ffeda231c8896fc2c90be34b60
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Jan 12 18:02:58 2013 -0800
+
+Print normalized version for X.Org servers, the way xdpyinfo does
+
+Results in output like:
+vendor string:X.Org Foundation
+vendor release number:  10102000
+X.Org xfs version: 1.1.2
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+Reviewed-by: Julien Cristau jcris...@debian.org
+
+commit e249bb674751f9a9a50a47d89eefdb8b783a8de4
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Jan 12 17:53:32 2013 -0800
+
+Remove CVS/RCS id tags
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 899c9a296a8a086e7a61a2690b5446fb7cffe5b5
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Jan 12 17:47:47 2013 -0800
+
+Mark usage() as _X_NORETURN
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 8e014e7c75e88811cdb7b8e39389b8f49b6a
+Author: Alan Coopersmith alan.coopersm...@oracle.com
+Date:   Sat Jan 12 17:43:28 2013 -0800
+
+config: Add missing AC_CONFIG_SRCDIR
+
+Regroup AC statements under the Autoconf initialization section.
+Regroup AM statements under the Automake initialization section.
+
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+
+commit 

commit xkbutils for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package xkbutils for openSUSE:Factory 
checked in at 2013-02-28 07:14:47

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


Package is xkbutils, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xkbutils/xkbutils.changes2012-05-08 
12:05:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.xkbutils.new/xkbutils.changes   2013-02-28 
10:23:42.0 +0100
@@ -1,0 +2,28 @@
+Tue Feb 26 19:06:26 UTC 2013 - zai...@opensuse.org
+
+- Update to version 1.0.4:
+  + Declare bit to shift as unsigned to clear compiler warning.
+  + Add -version flags to all three commands.
+  + Combine usage message strings/calls.
+  + Delete unused macros from utils.h.
+  + Remove unused u*alloc functions from utils.c.
+  + Remove unused uStringDup function.
+  + Make configure actually check for strcasecmp.
+  + Remove unused debug  function tracing infrastructure from
+utils.c.
+  + Mark uFatalError as _X_NORETURN.
+  + Add printf attributes to utils.c printing functions.
+  + Declare utils.c functions as taking const char * arguments.
+  + Remove unused streq() macro.
+  + Remove unused #ifdef notyet typedef.
+  + Remove CVS version tags.
+  + Convert to X.Org standard coding style.
+  + Fix typo in SetValues which could fail to detect a change if
+only width/height changed.
+  + config:
+- Add missing AC_CONFIG_SRCDIR.
+- Replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS.
+- Move man pages into their own directory.
+  + man: Remove trailing spaces and tabs.
+
+---

Old:

  xkbutils-1.0.3.tar.bz2

New:

  xkbutils-1.0.4.tar.bz2



Other differences:
--
++ xkbutils.spec ++
--- /var/tmp/diff_new_pack.FHLMRY/_old  2013-02-28 10:23:43.0 +0100
+++ /var/tmp/diff_new_pack.FHLMRY/_new  2013-02-28 10:23:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xkbutils
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   xkbutils
-Version:1.0.3
+Version:1.0.4
 Release:0
-License:MIT
 Summary:Collection of small utilities utilizing the X11 XKeyboard 
extension
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Utilities
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(inputproto)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xaw7)
 BuildRequires:  pkgconfig(xorg-macros) = 1.8
-BuildRequires:  pkgconfig(xproto)
+BuildRequires:  pkgconfig(xproto) = 7.0.17
 BuildRequires:  pkgconfig(xt)
 # This was part of the xorg-x11 package up to version 7.6
 Conflicts:  xorg-x11 = 7.6

++ xkbutils-1.0.3.tar.bz2 - xkbutils-1.0.4.tar.bz2 ++
 13880 lines of diff (skipped)

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



commit xsm for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package xsm for openSUSE:Factory checked in 
at 2013-02-28 07:14:59

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


Package is xsm, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xsm/xsm.changes  2012-05-08 12:08:25.0 
+0200
+++ /work/SRC/openSUSE:Factory/.xsm.new/xsm.changes 2013-02-28 
10:23:51.0 +0100
@@ -1,0 +2,27 @@
+Tue Feb 26 18:48:26 UTC 2013 - zai...@opensuse.org
+
+- Update to version 1.0.3:
+  + Use mode_t, not int, for umask return/argument value.
+  + Use standard autoconf defines for mkstemp  putenv instead of
+imake leftovers.
+  + install: Use sysconfdir instead of libdir for config files.
+  + Add size limit to scanf string specifier.
+  + Fix some gcc -Wwrite-strings warnings.
+  + Terminate execl() arguments with NULL instead of 0.
+  + Convert a couple last sprintf calls to snprintf.
+  + Convert XtMalloc + sprintf to XtAsprintf. Depends on libXt 
+1.0.99 to ensure XtAsprintf is available.
+  + config:
+- Add missing AC_CONFIG_SRCDIR
+- Replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS.
+- Replace deprecated AC_HELP_STRING with AS_HELP_STRING.
+- Move man pages into their own directory.
+  + man:
+- Replace hard coded man page section with substitution
+  strings.
+- Remove trailing spaces and tabs.
+  +  Make System() prototype for Solaris in xsm.h actually a
+ prototype.
+- Drop xsm.diff patch, fixed upstream.
+
+---

Old:

  xsm-1.0.2.tar.bz2
  xsm.diff

New:

  xsm-1.0.3.tar.bz2



Other differences:
--
++ xsm.spec ++
--- /var/tmp/diff_new_pack.cLubB0/_old  2013-02-28 10:23:53.0 +0100
+++ /var/tmp/diff_new_pack.cLubB0/_new  2013-02-28 10:23:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xsm
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,25 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   xsm
-Version:1.0.2
+Version:1.0.3
 Release:0
-License:MIT
 Summary:X Session Manager
-Url:http://xorg.freedesktop.org/
+License:MIT
 Group:  System/X11/Utilities
+Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
-# xsm.diff -- Change path to config file
-Patch0: xsm.diff
-# needed for patch0
-BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(ice)
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xaw7)
 BuildRequires:  pkgconfig(xorg-macros) = 1.8
-BuildRequires:  pkgconfig(xt)
+BuildRequires:  pkgconfig(xt)  1.0.99
 # default rsh command is ssh
 Requires:   openssh
 # This was part of the xorg-x11 package up to version 7.6
@@ -52,9 +49,6 @@
 
 %prep
 %setup -q
-%patch0 -p0
-# needed for patch0
-autoreconf -fi
 
 %build
 %configure

++ xsm-1.0.2.tar.bz2 - xsm-1.0.3.tar.bz2 ++
 11840 lines of diff (skipped)

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



commit yast2-control-center for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-control-center for 
openSUSE:Factory checked in at 2013-02-28 07:15:59

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


Package is yast2-control-center, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-control-center/yast2-control-center.changes
2012-05-07 22:53:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-control-center.new/yast2-control-center.changes
   2013-02-28 10:23:59.0 +0100
@@ -1,0 +2,12 @@
+Tue Feb 26 15:20:07 CET 2013 - tgoettlic...@suse.de
+
+- Adapted requirement for libyui-qt4
+- Version: 2.22.4
+
+---
+Tue Feb 26 15:09:31 CET 2013 - tgoettlic...@suse.de
+
+- Added requirement for yast2-theme
+- Version: 2.22.3
+
+---

New:

  yast2-control-center-2.22.4.tar.bz2



Other differences:
--
++ yast2-control-center.spec ++
--- /var/tmp/diff_new_pack.eA2iIE/_old  2013-02-28 10:24:00.0 +0100
+++ /var/tmp/diff_new_pack.eA2iIE/_new  2013-02-28 10:24:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-control-center
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,17 +16,21 @@
 #
 
 
-
 Name:   yast2-control-center
-Version:2.22.2
+Version:2.22.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-control-center-2.22.2.tar.bz2
-Group:  System/YaST
-License:GPL-2.0
-BuildRequires:  libdrm-devel libjpeg-devel libqt4-devel pkgconfig 
update-desktop-files yast2-devtools
+Source0:yast2-control-center-2.22.4.tar.bz2
 BuildRequires:  cmake
+BuildRequires:  libdrm-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  libqt4-devel
+BuildRequires:  pkgconfig
+BuildRequires:  update-desktop-files
+BuildRequires:  yast2-devtools
+
+Requires:   yast2_theme
 
 %if 0%{?force_gcc_46}
 BuildRequires:  gcc46
@@ -36,22 +40,29 @@
 %endif
 
 Summary:YaST2 - Control Center
-Requires:   yast2 yast2-control-center-binary
-Provides:   y2c_menu y2m_menu yast2-menu
-Obsoletes:  y2c_menu y2m_menu yast2-menu
+License:GPL-2.0
+Group:  System/YaST
+Requires:   yast2
+Requires:   yast2-control-center-binary
+Provides:   y2c_menu
+Provides:   y2m_menu
+Provides:   yast2-menu
+Obsoletes:  y2c_menu
+Obsoletes:  y2m_menu
+Obsoletes:  yast2-menu
 
 %description
 This package contains the menu selection component for YaST2.
 
 %package qt
 Summary:YaST2 - Control Center (Qt Version)
+Group:  System/YaST
 Requires:   yast2-control-center
 Provides:   yast2-control-center-binary
 Provides:   yast2-control-center:%{_prefix}/lib/YaST2/bin/y2controlcenter
-Recommends: yast2-qt
+Recommends: libyui-qt4
 Supplements:kdebase3
 Supplements:kdebase4-session
-Group:  System/YaST
 
 %description qt
 This package contains the menu selection component for YaST2 using the

++ yast2-control-center-2.22.2.tar.bz2 ++

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



commit yast2-control-center-gnome for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-control-center-gnome for 
openSUSE:Factory checked in at 2013-02-28 07:16:17

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


Package is yast2-control-center-gnome, Maintainer is 
gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-control-center-gnome/yast2-control-center-gnome.changes
2012-01-12 15:27:24.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-control-center-gnome.new/yast2-control-center-gnome.changes
   2013-02-28 10:24:00.0 +0100
@@ -1,0 +2,19 @@
+Wed Feb 27 10:06:42 CET 2013 - tgoettlic...@suse.de
+
+- Added dependency to yast2_theme
+- Release 2.23.3
+
+---
+Fri Feb 22 00:00:00 UTC 2013 - mike.catanz...@gmail.com
+
+Release 2.23.0
+
+Update code to gnome-control-center 3.6 branch. Most significant change
+is bigger sizes for the window and all icons.
+
+* configure.in.in: now requires x11
+* src/cut-n-paste/: update code from gnome-control-center
+* src/{control-center.c,gnome-control-center.c,shell.ui}: rebase on updated 
code
+* src/patch/: update patch to current changes
+
+---

Old:

  yast2-control-center-gnome-2.21.3.tar.bz2

New:

  yast2-control-center-gnome-2.23.3.tar.bz2



Other differences:
--
++ yast2-control-center-gnome.spec ++
--- /var/tmp/diff_new_pack.qwpdVu/_old  2013-02-28 10:24:01.0 +0100
+++ /var/tmp/diff_new_pack.qwpdVu/_new  2013-02-28 10:24:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-control-center-gnome
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,14 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   yast2-control-center-gnome
-Version:2.21.3
+Version:2.23.3
 Release:0
+
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Source0:yast2-control-center-gnome-%{version}.tar.bz2
+
 Summary:YaST2 - Control Center (GNOME version)
 License:GPL-2.0+
 Group:  System/YaST
-Url:http://en.opensuse.org/YaST2-GTK
-Source: %{name}-%{version}.tar.bz2
+
+#Source: %{name}-%{version}.tar.bz2
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
@@ -32,6 +37,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libgnome-menu-3.0)
 Requires:   yast2-control-center
+Requires:   yast2_theme
 Supplements:gnome-main-menu
 Provides:   yast2-control-center-binary
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-control-center-gnome-2.21.3.tar.bz2 - 
yast2-control-center-gnome-2.23.3.tar.bz2 ++
 25144 lines of diff (skipped)

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



commit yast2-fcoe-client for openSUSE:Factory

2013-02-28 Thread h_root


binutRj7E2VFJ.bin
Description: Binary data


commit yast2-http-server for openSUSE:Factory

2013-02-28 Thread h_root


binfh2zMSKqAy.bin
Description: Binary data


commit yast2-instserver for openSUSE:Factory

2013-02-28 Thread h_root


binLF3CH0phoe.bin
Description: Binary data


commit yast2-metapackage-handler for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-metapackage-handler for 
openSUSE:Factory checked in at 2013-02-28 07:27:52

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


Package is yast2-metapackage-handler, Maintainer is mvid...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-metapackage-handler/yast2-metapackage-handler.changes
  2011-10-03 09:26:22.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-metapackage-handler.new/yast2-metapackage-handler.changes
 2013-02-28 10:24:14.0 +0100
@@ -1,0 +2,5 @@
+Thu Mar 29 15:33:17 CEST 2012 - jsuch...@suse.cz
+
+- merged proofread texts 
+
+---



Other differences:
--
++ yast2-metapackage-handler.spec ++
--- /var/tmp/diff_new_pack.5nxPTD/_old  2013-02-28 10:24:15.0 +0100
+++ /var/tmp/diff_new_pack.5nxPTD/_new  2013-02-28 10:24:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-metapackage-handler
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   yast2-metapackage-handler
 Version:0.8.14
@@ -25,34 +23,30 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-metapackage-handler-%{version}.tar.bz2
 
-Prefix: /usr
-
-Group:  System/YaST
-License:GPL-2.0+
-
 # should be required by devtools
-BuildRequires:  perl-XML-Writer pkgconfig
+BuildRequires:  perl-XML-Writer
+BuildRequires:  pkgconfig
 # y2tool
 BuildRequires:  yast2-devtools
 # ycpc
 BuildRequires:  yast2-core
 # we have a Perl part
-BuildRequires:  yast2-perl-bindings
 BuildRequires:  perl-XML-XPath
 BuildRequires:  yast2
 BuildRequires:  yast2-country-data
-BuildRequires:  yast2-transfer
 BuildRequires:  yast2-packager
+BuildRequires:  yast2-perl-bindings
+BuildRequires:  yast2-transfer
 # desktop files
 BuildRequires:  update-desktop-files
 
 Patch0: SLE.diff
 Patch1: 103.diff
 
-Requires:   yast2-perl-bindings
 Requires:   perl-XML-XPath
 Requires:   yast2
 Requires:   yast2-packager
+Requires:   yast2-perl-bindings
 Requires:   yast2-transfer
 # Language
 Requires:   yast2-country-data
@@ -62,6 +56,8 @@
 BuildArch:  noarch
 
 Summary:YaST2 - Easy Installation of Add-on RPMs using Metapackages
+License:GPL-2.0+
+Group:  System/YaST
 
 %description
 With this technology users can install packages and add repositories
@@ -79,23 +75,22 @@
 %endif
 
 %build
-%{prefix}/bin/y2tool y2autoconf
-%{prefix}/bin/y2tool y2automake
+%{_prefix}/bin/y2tool y2autoconf
+%{_prefix}/bin/y2tool y2automake
 autoreconf --force --install
 
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
-%{?suse_update_config:%{suse_update_config -f}}
-./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
+./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works
 make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-[ -e %{prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
-for f in `find $RPM_BUILD_ROOT/%{prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
+[ -e %{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
+for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
 d=${f##*/}
 %suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
 done
@@ -129,7 +124,7 @@
 
 %files
 %defattr(-,root,root)
-%doc %{prefix}/share/doc/packages/yast2-metapackage-handler
+%doc %{_prefix}/share/doc/packages/yast2-metapackage-handler
 /sbin/OneClickInstallUI
 /sbin/OneClickInstallUrlHandler
 /sbin/OneClickInstallCLI

++ yast2-metapackage-handler-0.8.14.tar.bz2 ++
 3530 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude 

commit yast2-python-bindings for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-python-bindings for 
openSUSE:Factory checked in at 2013-02-28 07:28:09

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


Package is yast2-python-bindings, Maintainer is yast2-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-python-bindings/yast2-python-bindings.changes  
2012-06-28 17:23:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-python-bindings.new/yast2-python-bindings.changes
 2013-02-28 10:24:18.0 +0100
@@ -1,0 +2,5 @@
+Fri Jun 29 14:14:02 CEST 2012 - aschn...@suse.de
+
+- blocxx is no longer needed for build
+
+---



Other differences:
--
++ yast2-python-bindings.spec ++
--- /var/tmp/diff_new_pack.Bb1aKc/_old  2013-02-28 10:24:18.0 +0100
+++ /var/tmp/diff_new_pack.Bb1aKc/_new  2013-02-28 10:24:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-python-bindings
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -23,7 +23,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-python-bindings-%{version}.tar.bz2
 
-BuildRequires:  blocxx-devel
 BuildRequires:  curl-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libtool

++ yast2-python-bindings-2.20.1.tar.bz2 ++
 6745 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-python-bindings-2.20.1/configure.in 
new/yast2-python-bindings-2.20.1/configure.in
--- old/yast2-python-bindings-2.20.1/configure.in   2012-06-26 
16:11:04.0 +0200
+++ new/yast2-python-bindings-2.20.1/configure.in   2013-02-11 
17:34:58.0 +0100
@@ -1,6 +1,6 @@
 dnl configure.in for yast2-python-bindings
 dnl
-dnl -- This file is generated by y2autoconf 2.21.9 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
 AC_INIT(yast2-python-bindings, 2.20.1, http://bugs.opensuse.org/, 
yast2-python-bindings)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-python-bindings-2.20.1/libtool.m4 
new/yast2-python-bindings-2.20.1/libtool.m4
--- old/yast2-python-bindings-2.20.1/libtool.m4 2012-06-26 16:11:07.0 
+0200
+++ new/yast2-python-bindings-2.20.1/libtool.m4 2013-02-11 17:35:04.0 
+0100
@@ -1,8 +1,8 @@
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 #
 #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
-# Inc.
+# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+# Foundation, Inc.
 #   Written by Gordon Matzigkeit, 1996
 #
 # This file is free software; the Free Software Foundation gives
@@ -11,8 +11,8 @@
 
 m4_define([_LT_COPYING], [dnl
 #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
-# Inc.
+# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+# Foundation, Inc.
 #   Written by Gordon Matzigkeit, 1996
 #
 #   This file is part of GNU Libtool.
@@ -146,6 +146,8 @@
 AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
 AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
 
+_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build 
system])dnl
+dnl
 _LT_DECL([], [host_alias], [0], [The host system])dnl
 _LT_DECL([], [host], [0])dnl
 _LT_DECL([], [host_os], [0])dnl
@@ -637,7 +639,7 @@
 m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
 configured by $[0], generated by m4_PACKAGE_STRING.
 
-Copyright (C) 2010 Free Software Foundation, Inc.
+Copyright (C) 2011 Free Software Foundation, Inc.
 This config.lt script is free software; the Free Software Foundation
 gives unlimited permision to copy, 

commit yast2-reipl for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-reipl for openSUSE:Factory 
checked in at 2013-02-28 07:28:35

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


Package is yast2-reipl, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-reipl/yast2-reipl.changes  2012-01-17 
16:17:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-reipl.new/yast2-reipl.changes 
2013-02-28 10:24:19.0 +0100
@@ -1,0 +2,5 @@
+Thu Mar 29 15:51:01 CEST 2012 - jsuch...@suse.cz
+
+- merge proofread texts 
+
+---



Other differences:
--
++ yast2-reipl.spec ++
--- /var/tmp/diff_new_pack.a18fP8/_old  2013-02-28 10:24:19.0 +0100
+++ /var/tmp/diff_new_pack.a18fP8/_new  2013-02-28 10:24:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-reipl
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -35,7 +35,8 @@
 BuildRequires:  yast2-storage
 BuildRequires:  yast2-testsuite
 
-Requires:   yast2-storage yast2-bootloader
+Requires:   yast2-bootloader
+Requires:   yast2-storage
 # Wizard::SetDesktopTitleAndIcon
 Requires:   yast2 = 2.21.22
 

++ yast2-reipl-2.21.1.tar.bz2 ++
 4149 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-reipl-2.21.1/MAINTAINER new/yast2-reipl-2.21.1/MAINTAINER
--- old/yast2-reipl-2.21.1/MAINTAINER   2008-09-05 12:34:17.0 +0200
+++ new/yast2-reipl-2.21.1/MAINTAINER   2013-01-22 11:50:47.0 +0100
@@ -1 +1 @@
-Mark Hamzy ha...@us.ibm.com
+Steffen Winterfeldt snw...@suse.de
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-reipl-2.21.1/Makefile.am.common 
new/yast2-reipl-2.21.1/Makefile.am.common
--- old/yast2-reipl-2.21.1/Makefile.am.common   2012-01-13 14:15:35.0 
+0100
+++ new/yast2-reipl-2.21.1/Makefile.am.common   2013-02-26 18:00:49.0 
+0100
@@ -30,7 +30,7 @@
 dist-hook: check-syntax
 
 CHECK_SYNTAX = true
-check-syntax: $(client_DATA) $(ycpchook)
+check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
@if test $(client_DATA); then \
  if $(CHECK_SYNTAX); then \
TO_CHECK=$(filter %.ycp,$^); \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-reipl-2.21.1/autodocs-ycp.ami new/yast2-reipl-2.21.1/autodocs-ycp.ami
--- old/yast2-reipl-2.21.1/autodocs-ycp.ami 2012-01-13 14:15:35.0 
+0100
+++ new/yast2-reipl-2.21.1/autodocs-ycp.ami 2013-02-26 18:00:49.0 
+0100
@@ -1,5 +1,5 @@
 # -*- makefile -*- Automake include file
-# $Id: autodocs-ycp.ami 57644 2009-06-19 08:38:11Z mvidner $
+# $Id$
 
 # Builds source documentation for YCP sources
 # Uses ycpdoc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-reipl-2.21.1/configure.in new/yast2-reipl-2.21.1/configure.in
--- old/yast2-reipl-2.21.1/configure.in 2012-01-13 14:15:35.0 +0100
+++ new/yast2-reipl-2.21.1/configure.in 2013-02-26 18:00:48.0 +0100
@@ -1,6 +1,6 @@
 dnl configure.in for yast2-reipl
 dnl
-dnl -- This file is generated by y2autoconf 2.21.7 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
 AC_INIT(yast2-reipl, 2.21.1, http://bugs.opensuse.org/, yast2-reipl)
@@ -20,7 +20,7 @@
 dnl Important YaST2 variables
 VERSION=2.21.1
 RPMNAME=yast2-reipl
-MAINTAINER=Mark Hamzy 

commit yast2-scanner for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-scanner for openSUSE:Factory 
checked in at 2013-02-28 07:28:43

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


Package is yast2-scanner, Maintainer is jsm...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-scanner/yast2-scanner.changes  
2012-05-21 07:33:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-scanner.new/yast2-scanner.changes 
2013-02-28 10:24:20.0 +0100
@@ -12,0 +13,5 @@
+Thu Mar 29 15:58:34 CEST 2012 - jsuch...@suse.cz
+
+- merge proofread texts 
+
+---



Other differences:
--
++ yast2-scanner.spec ++
--- /var/tmp/diff_new_pack.8ftt6I/_old  2013-02-28 10:24:21.0 +0100
+++ /var/tmp/diff_new_pack.8ftt6I/_new  2013-02-28 10:24:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-scanner
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -19,9 +19,16 @@
 Name:   yast2-scanner
 Version:2.23.0
 Release:0
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-scanner-%{version}.tar.bz2
+
+BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  doxygen
 BuildRequires:  libtool
+BuildRequires:  libxslt
+BuildRequires:  perl-XML-Writer
+BuildRequires:  sgml-skel
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-libX11-devel
 BuildRequires:  yast2
@@ -49,19 +56,29 @@
 sane-backends.
 
 %prep
-%setup -q
+%setup -n yast2-scanner-%{version}
 
 %build
-make -f Makefile.cvs
+%{_prefix}/bin/y2tool y2autoconf
+%{_prefix}/bin/y2tool y2automake
+autoreconf --force --install
+
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
+
+./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works
 make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-%suse_update_desktop_file -d ycc_scanner scanner
+[ -e %{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
+for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
+d=${f##*/}
+%suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
+done
+
 # Exclude libX11, libXau, libxcb, and libxcb-xlib from the requires list
 # which are pulled in by Autoreqprov because of the displaytest tool:
 cat  EOF  %{my_requires}

++ yast2-scanner-2.23.0.tar.bz2 ++
 50796 lines of diff (skipped)

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



commit yast2-sshd for openSUSE:Factory

2013-02-28 Thread h_root


binWSeuvFxtLH.bin
Description: Binary data


commit yast2-theme for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory 
checked in at 2013-02-28 07:31:53

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


Package is yast2-theme, Maintainer is yast2-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/yast2-theme/yast2-theme.changes  2011-10-19 
00:57:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme.changes 
2013-02-28 10:24:26.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 13 11:15:13 CET 2012 - tgoettlic...@suse.de
+
+- confirmed license GPL v2
+- 2.21.19
+
+---

Old:

  yast2-theme-2.21.18.tar.bz2

New:

  yast2-theme-2.21.19.tar.bz2



Other differences:
--
++ yast2-theme.spec ++
--- /var/tmp/diff_new_pack.iUkvfA/_old  2013-02-28 10:24:27.0 +0100
+++ /var/tmp/diff_new_pack.iUkvfA/_new  2013-02-28 10:24:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-theme
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,68 +15,65 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   yast2-theme
-Version:2.21.18
+Version:2.21.19
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-theme-2.21.18.tar.bz2
-
-Prefix: /usr
+Source0:yast2-theme-%{version}.tar.bz2
 
-Group:  System/YaST
-License:GPL-2.0+
-BuildRequires:  fdupes hicolor-icon-theme pkg-config update-desktop-files 
yast2-devtools yast2-qt-branding-openSUSE
+BuildRequires:  fdupes
+BuildRequires:  hicolor-icon-theme
+BuildRequires:  pkg-config
+BuildRequires:  update-desktop-files
+BuildRequires:  yast2-devtools
+BuildRequires:  yast2-qt-branding-openSUSE
 BuildArch:  noarch
 Summary:YaST2 - Theme
+License:GPL-2.0
+Group:  System/YaST
 
 %description
 Contains the SuSE Linux theme for YaST2.
 
 %package openSUSE
 Summary:YaST2 - Theme (openSUSE)
-Version:2.21.18
-
-
 Group:  System/YaST
-Provides:   yast2_theme = %{version}
+Version:2.21.19
+Release:0
 Provides:   yast2-theme-UnitedLinux
 Provides:   yast2-theme-openSUSE-any
+Provides:   yast2_theme = %{version}
 PreReq: /bin/ln
 Requires:   hicolor-icon-theme
 
 %package openSUSE-Crystal
 Summary:YaST2 - Theme (openSUSE)
-Version:2.21.18
-
-
 Group:  System/YaST
-Provides:   yast2_theme = %{version}
+Version:2.21.19
+Release:0
 Provides:   yast2-theme-openSUSE-any
+Provides:   yast2_theme = %{version}
 PreReq: /bin/ln yast2-theme-openSUSE
 
 %package openSUSE-Oxygen
 Summary:YaST2 - Theme (openSUSE)
-Version:2.21.18
-
-
 Group:  System/YaST
-Provides:   yast2_theme = %{version}
+Version:2.21.19
+Release:0
 Provides:   yast2-theme-openSUSE-any
+Provides:   yast2_theme = %{version}
 PreReq: /bin/ln yast2-theme-openSUSE
 Conflicts:  yast2-theme-openSUSE-Crystal
 
 %package SLE
 Summary:YaST2 - SLE Theme
-Version:2.21.18
-
-
 Group:  System/YaST
-Provides:   yast2_theme = %{version}
+Version:2.21.19
+Release:0
 Provides:   yast2-theme-NLD = 0.4.5
+Provides:   yast2_theme = %{version}
 Obsoletes:  yast2-theme-NLD = 0.4.5
 PreReq: /bin/ln
 
@@ -95,32 +92,31 @@
 Family.
 
 %prep
-%setup -n yast2-theme-2.21.18
+%setup -n yast2-theme-%{version}
 
 %build
-%{prefix}/bin/y2tool y2autoconf
-%{prefix}/bin/y2tool y2automake
+%{_prefix}/bin/y2tool y2autoconf
+%{_prefix}/bin/y2tool y2automake
 autoreconf --force --install
 
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
-%{?suse_update_config:%{suse_update_config -f}}
-./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
+./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works
 make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-[ -e %{prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
-for f in `find $RPM_BUILD_ROOT/%{prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
+[ -e 

commit yast2-tv for openSUSE:Factory

2013-02-28 Thread h_root


binpI6fXP4dsK.bin
Description: Binary data


commit flash-player for openSUSE:12.1:Update

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:12.1:Update checked in at 2013-02-28 13:45:48

Comparing /work/SRC/openSUSE:12.1:Update/flash-player (Old)
 and  /work/SRC/openSUSE:12.1:Update/.flash-player.new (New)


Package is flash-player, Maintainer is dmuel...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.ctse12/_old  2013-02-28 13:45:50.0 +0100
+++ /var/tmp/diff_new_pack.ctse12/_new  2013-02-28 13:45:50.0 +0100
@@ -1 +1 @@
-link package='flash-player.1338' cicount='copy' /
+link package='flash-player.1392' cicount='copy' /

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



commit flash-player for openSUSE:12.2:NonFree:Update

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:12.2:NonFree:Update checked in at 2013-02-28 13:45:52

Comparing /work/SRC/openSUSE:12.2:NonFree:Update/flash-player (Old)
 and  /work/SRC/openSUSE:12.2:NonFree:Update/.flash-player.new (New)


Package is flash-player, Maintainer is dmuel...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.knZZBl/_old  2013-02-28 13:45:54.0 +0100
+++ /var/tmp/diff_new_pack.knZZBl/_new  2013-02-28 13:45:54.0 +0100
@@ -1 +1 @@
-link package='flash-player.1338' cicount='copy' /
+link package='flash-player.1392' cicount='copy' /

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



commit flash-player for openSUSE:12.3:NonFree:Update

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:12.3:NonFree:Update checked in at 2013-02-28 13:45:59

Comparing /work/SRC/openSUSE:12.3:NonFree:Update/flash-player (Old)
 and  /work/SRC/openSUSE:12.3:NonFree:Update/.flash-player.new (New)


Package is flash-player, Maintainer is dmuel...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.zvkOXV/_old  2013-02-28 13:46:01.0 +0100
+++ /var/tmp/diff_new_pack.zvkOXV/_new  2013-02-28 13:46:01.0 +0100
@@ -1 +1 @@
-link package='flash-player.1261' cicount='copy' /
+link package='flash-player.1392' cicount='copy' /

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



commit polkit-default-privs for openSUSE:12.3:Update

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:12.3:Update checked in at 2013-02-28 13:49:13

Comparing /work/SRC/openSUSE:12.3:Update/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:12.3:Update/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is meiss...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package='polkit-default-privs.1385' cicount='copy' /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit autotrace for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package autotrace for openSUSE:Factory 
checked in at 2013-03-01 07:11:51

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


Package is autotrace, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/autotrace/autotrace.changes  2011-10-03 
09:13:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.autotrace.new/autotrace.changes 2013-03-01 
07:11:52.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 05:59:30 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ autotrace.spec ++
--- /var/tmp/diff_new_pack.XhO9Uv/_old  2013-03-01 07:11:54.0 +0100
+++ /var/tmp/diff_new_pack.XhO9Uv/_new  2013-03-01 07:11:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package autotrace
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,16 +16,16 @@
 #
 
 
-
 Name:   autotrace
-BuildRequires:  gcc-c++ pstoedit-devel
+BuildRequires:  gcc-c++
 BuildRequires:  libtool
-License:GPL-2.0+ ; LGPL-2.1+
-Group:  Productivity/Graphics/Convertors
+BuildRequires:  pstoedit-devel
 Summary:Program for Converting Bitmaps to Vector Graphics
+License:GPL-2.0+ and LGPL-2.1+
+Group:  Productivity/Graphics/Convertors
 Provides:   bitmap_tracing
 Version:0.31.1
-Release:629
+Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:pstoedit.m4
 Patch:  %{name}-%{version}-quotefix.diff
@@ -48,10 +48,8 @@
 Martin Weber mart...@gmx.net
 
 %package -n libautotrace3
-License:GPL-2.0+ ; LGPL-2.1+
-
-Group:  System/Libraries
 Summary:Library for converting bitmaps to vector graphics
+Group:  System/Libraries
 
 %description -n libautotrace3
 AutoTrace is a program for converting bitmaps to vector graphics. The
@@ -66,10 +64,9 @@
 Martin Weber mart...@gmx.net
 
 %package devel
-License:GPL-2.0+ ; LGPL-2.1+
 
-Group:  Development/Libraries/C and C++
 Summary:Library for converting bitmaps to vector graphics
+Group:  Development/Libraries/C and C++
 Requires:   libautotrace3 = %{version}
 
 %description devel

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



commit banshee for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package banshee for openSUSE:Factory checked 
in at 2013-03-01 07:12:03

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


Package is banshee, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/banshee/banshee.changes  2013-01-13 
14:05:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.banshee.new/banshee.changes 2013-03-01 
07:12:04.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 15:32:57 CET 2013 - h...@opensuse.org
+
+- Add banshee-avoid-dbus-race.patch: fixing random crashes
+  (bnc#800230, bgo#692374).
+
+---

New:

  banshee-avoid-dbus-race.patch



Other differences:
--
++ banshee.spec ++
--- /var/tmp/diff_new_pack.fLcQnm/_old  2013-03-01 07:12:05.0 +0100
+++ /var/tmp/diff_new_pack.fLcQnm/_new  2013-03-01 07:12:05.0 +0100
@@ -28,6 +28,8 @@
 Source99:   %{name}-rpmlintrc
 # PATCH-FIX-UPSTREAM banshee-dmcs-before-gmcs.patch bnc#798267 
dims...@opensuse.org -- Favor dmcs over gmcs... Fixes issues with mono 3.0. 
Taken from git
 Patch0: banshee-dmcs-before-gmcs.patch
+# PATCH-FIX-UPSTREAM banshee-avoid-dbus-race.patch bnc#800230 bgo#692374 
h...@opensuse.org -- Fixes random crashes with new D-Bus.
+Patch1: banshee-avoid-dbus-race.patch
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
@@ -265,6 +267,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 translation-update-upstream po banshee
 
 %build


++ banshee-avoid-dbus-race.patch ++
From 459be46e3bd086deba369f367e6198d0b25f1a7c Mon Sep 17 00:00:00 2001
From: Hans Petter Jansson h...@cl.no
Date: Tue, 26 Feb 2013 02:43:37 +0100
Subject: [PATCH] Avoid race when using GConf and DBus with threads

GConf causes us to make indirect calls to libdbus from multiple threads,
resulting in crashes if left uninitialized. As a workaround, we initialize
dbus-glib for multithreading.
---
 .../Banshee.Gui/GtkBaseClient.cs   |8 
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs 
b/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
index c5c5675..1df06ad 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
@@ -28,6 +28,7 @@
 
 using System;
 using System.IO;
+using System.Runtime.InteropServices;
 
 using Mono.Addins;
 
@@ -100,6 +101,10 @@ namespace Banshee.Gui
 {
 }
 
+internal const string LIBDBUSGLIB1 = libdbus-glib-1.so.2;
+[DllImport (LIBDBUSGLIB1, CallingConvention=CallingConvention.Cdecl, 
SetLastError=true)]
+internal static extern void dbus_g_thread_init ();
+
 protected virtual void InitializeGtk ()
 {
 Log.Debug (Initializing GTK);
@@ -107,6 +112,9 @@ namespace Banshee.Gui
 if (!GLib.Thread.Supported) {
 GLib.Thread.Init ();
 }
+
+dbus_g_thread_init ();
+
 Gtk.Application.Init ();
 
 if (ApplicationContext.CommandLine.Contains (debug-gtkrc)) {
-- 
1.7.7

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



commit banshee for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package banshee for openSUSE:12.3 checked in 
at 2013-03-01 07:12:10

Comparing /work/SRC/openSUSE:12.3/banshee (Old)
 and  /work/SRC/openSUSE:12.3/.banshee.new (New)


Package is banshee, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.3/banshee/banshee.changes 2013-01-31 
01:12:44.0 +0100
+++ /work/SRC/openSUSE:12.3/.banshee.new/banshee.changes2013-03-01 
07:12:16.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 15:32:57 CET 2013 - h...@opensuse.org
+
+- Add banshee-avoid-dbus-race.patch: fixing random crashes
+  (bnc#800230, bgo#692374).
+
+---

New:

  banshee-avoid-dbus-race.patch



Other differences:
--
++ banshee.spec ++
--- /var/tmp/diff_new_pack.JkFDX6/_old  2013-03-01 07:12:16.0 +0100
+++ /var/tmp/diff_new_pack.JkFDX6/_new  2013-03-01 07:12:16.0 +0100
@@ -28,6 +28,8 @@
 Source99:   %{name}-rpmlintrc
 # PATCH-FIX-UPSTREAM banshee-dmcs-before-gmcs.patch bnc#798267 
dims...@opensuse.org -- Favor dmcs over gmcs... Fixes issues with mono 3.0. 
Taken from git
 Patch0: banshee-dmcs-before-gmcs.patch
+# PATCH-FIX-UPSTREAM banshee-avoid-dbus-race.patch bnc#800230 bgo#692374 
h...@opensuse.org -- Fixes random crashes with new D-Bus.
+Patch1: banshee-avoid-dbus-race.patch
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
@@ -265,6 +267,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 translation-update-upstream po banshee
 
 %build


++ banshee-avoid-dbus-race.patch ++
From 459be46e3bd086deba369f367e6198d0b25f1a7c Mon Sep 17 00:00:00 2001
From: Hans Petter Jansson h...@cl.no
Date: Tue, 26 Feb 2013 02:43:37 +0100
Subject: [PATCH] Avoid race when using GConf and DBus with threads

GConf causes us to make indirect calls to libdbus from multiple threads,
resulting in crashes if left uninitialized. As a workaround, we initialize
dbus-glib for multithreading.
---
 .../Banshee.Gui/GtkBaseClient.cs   |8 
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs 
b/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
index c5c5675..1df06ad 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui/GtkBaseClient.cs
@@ -28,6 +28,7 @@
 
 using System;
 using System.IO;
+using System.Runtime.InteropServices;
 
 using Mono.Addins;
 
@@ -100,6 +101,10 @@ namespace Banshee.Gui
 {
 }
 
+internal const string LIBDBUSGLIB1 = libdbus-glib-1.so.2;
+[DllImport (LIBDBUSGLIB1, CallingConvention=CallingConvention.Cdecl, 
SetLastError=true)]
+internal static extern void dbus_g_thread_init ();
+
 protected virtual void InitializeGtk ()
 {
 Log.Debug (Initializing GTK);
@@ -107,6 +112,9 @@ namespace Banshee.Gui
 if (!GLib.Thread.Supported) {
 GLib.Thread.Init ();
 }
+
+dbus_g_thread_init ();
+
 Gtk.Application.Init ();
 
 if (ApplicationContext.CommandLine.Contains (debug-gtkrc)) {
-- 
1.7.7

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



commit bison for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package bison for openSUSE:Factory checked 
in at 2013-03-01 07:12:42

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


Package is bison, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/bison/bison.changes  2012-11-17 
07:20:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.bison.new/bison.changes 2013-03-01 
07:12:44.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb  6 06:11:30 UTC 2013 - adr...@suse.com
+
+- bison update to 2.7
+  * Changes in the format of error messages
+  * New format for error reports: carets
+  * New value for %define variable: api.pure full
+  * New %define variable: api.location.type (glr.cc, lalr1.cc, lalr1.java)
+  * Exception safety (lalr1.cc)
+  * Graph improvements in DOT and XSLT
+  * %language is no longer an experimental feature.
+
+---

Old:

  bison-2.6.5.tar.xz

New:

  bison-2.7.tar.xz



Other differences:
--
++ bison.spec ++
--- /var/tmp/diff_new_pack.hNsmRA/_old  2013-03-01 07:12:45.0 +0100
+++ /var/tmp/diff_new_pack.hNsmRA/_new  2013-03-01 07:12:45.0 +0100
@@ -18,13 +18,13 @@
 
 Name:   bison
 BuildRequires:  gcc-c++
-BuildRequires:  xz
+BuildRequires:  xz flex
 Requires(pre):  %install_info_prereq
 # bug437293
 %ifarch ppc64
 Obsoletes:  bison-64bit
 %endif
-Version:2.6.5
+Version:2.7
 Release:0
 Summary:The GNU Parser Generator
 License:GPL-3.0+

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



commit bluez for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package bluez for openSUSE:Factory checked 
in at 2013-03-01 07:13:35

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


Package is bluez, Maintainer is a...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/bluez/bluez-gstreamer.changes2013-01-22 
14:59:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez.new/bluez-gstreamer.changes   
2013-03-01 07:13:37.0 +0100
@@ -1,0 +2,18 @@
+Thu Feb 28 14:45:10 UTC 2013 - seife+...@b1-systems.com
+
+- add bluez-4.101-new-automake.diff, fix build with automake-1.13.1
+
+---
+Fri Jan 25 08:05:27 UTC 2013 - seife+...@b1-systems.com
+
+- also run spec-cleaner on bluez-gstreamer.spec, add README for
+  packagers, fix bluez-gstreamer changelog
+
+---
+Mon Jan 21 11:16:34 UTC 2013 - dims...@opensuse.org
+
+- Unconditionally enable the systemd bluetooth service (actual
+  activation of bluez is triggered by udev) (bnc#796671).
+- Run spec-cleaner.
+
+---
--- /work/SRC/openSUSE:Factory/bluez/bluez.changes  2013-01-29 
10:27:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez.new/bluez.changes 2013-03-01 
07:13:37.0 +0100
@@ -1,0 +2,11 @@
+Thu Feb 28 14:45:10 UTC 2013 - seife+...@b1-systems.com
+
+- add bluez-4.101-new-automake.diff, fix build with automake-1.13.1
+
+---
+Fri Jan 25 08:05:27 UTC 2013 - seife+...@b1-systems.com
+
+- also run spec-cleaner on bluez-gstreamer.spec, add README for
+  packagers, fix bluez-gstreamer changelog
+
+---

New:

  README.packagers
  bluez-4.101-new-automake.diff



Other differences:
--
++ bluez-gstreamer.spec ++
--- /var/tmp/diff_new_pack.x2JcLe/_old  2013-03-01 07:13:38.0 +0100
+++ /var/tmp/diff_new_pack.x2JcLe/_new  2013-03-01 07:13:38.0 +0100
@@ -18,17 +18,27 @@
 
 
 Name:   bluez-gstreamer
-BuildRequires:  dbus-1-devel = 1.4
 BuildRequires:  flex
 BuildRequires:  libcap-ng-devel
+BuildRequires:  pkgconfig(dbus-1) = 1.4
 %if 0%{?suse_version}  1130
 BuildRequires:  pkgconfig(systemd)
 %endif
+Version:4.101
+Release:0
+Summary:Bluetooth Sound Support
+License:GPL-2.0+
+Group:  Productivity/Multimedia/Sound/Utilities
+Url:http://www.bluez.org
+Source: bluez-%{version}.tar.bz2
+Source3:bluetooth.sysconfig
+Source6:README.SUSE
+Source99:   README.packagers
+# fix for new automake, will not go upstream (upstream is at bluez-5)
+Patch1: bluez-4.101-new-automake.diff
 BuildRequires:  alsa-devel
 BuildRequires:  automake
 BuildRequires:  check-devel
-BuildRequires:  glib2-devel = 2.28
-BuildRequires:  gstreamer-0_10-devel
 BuildRequires:  gstreamer-0_10-plugins-base-devel
 BuildRequires:  libsndfile-devel
 BuildRequires:  libtool
@@ -37,19 +47,12 @@
 BuildRequires:  pkg-config
 BuildRequires:  readline-devel
 BuildRequires:  udev
+BuildRequires:  pkgconfig(glib-2.0) = 2.28
+BuildRequires:  pkgconfig(gstreamer-0.10)
 BuildRequires:  pkgconfig(libnl-1)
-Url:http://www.bluez.org
-Version:4.101
-Release:0
-Summary:Bluetooth Sound Support
-License:GPL-2.0+
-Group:  Productivity/Multimedia/Sound/Utilities
-Source: bluez-%{version}.tar.bz2
-Source3:bluetooth.sysconfig
-Source6:README.SUSE
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   libbluetooth3 = %{version}
-Provides:   bluez-audio:%_libdir/gstreamer-0.10/libgstbluetooth.so
+Provides:   bluez-audio:%{_libdir}/gstreamer-0.10/libgstbluetooth.so
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %( echo `rpm -q --queryformat %%{version} udev` )  144
 %define OLD_UDEV 1
 %else
@@ -61,16 +64,10 @@
 
 The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., USA.
 
-
-
-Authors:
-
-Marcel Holtmann mar...@holtmann.org
-and others, see AUTHORS in the documentation of the bluez package.
-
 %prep
 %setup -n bluez-%{version} -q
-cp %{S:6} .
+%patch1 -p1
+cp %{SOURCE6} .
 
 %build
 autoreconf -fiv
@@ -94,14 +91,14 @@
 make %{?_smp_mflags} all V=1
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
-rm -rf $RPM_BUILD_ROOT/usr/[^l]* $RPM_BUILD_ROOT/[^u]* 
$RPM_BUILD_ROOT/%{_libdir}/[^g]*
-rm -rf $RPM_BUILD_ROOT/%{_libdir}/pkgconfig 
$RPM_BUILD_ROOT/%{_libdir}/*bluetooth* $RPM_BUILD_ROOT/usr/include 
-rm -rf $RPM_BUILD_ROOT/usr/lib/udev 

commit boost for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package boost for openSUSE:Factory checked 
in at 2013-03-01 07:14:39

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


Package is boost, Maintainer is p...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/boost/boost.changes  2013-01-30 
09:29:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.boost.new/boost.changes 2013-03-01 
07:14:40.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 18:34:09 UTC 2013 - dmuel...@suse.com
+
+- build without openmpi on aarch64 for now 
+
+---



Other differences:
--
++ boost.spec ++
--- /var/tmp/diff_new_pack.iCBwiO/_old  2013-03-01 07:14:42.0 +0100
+++ /var/tmp/diff_new_pack.iCBwiO/_new  2013-03-01 07:14:42.0 +0100
@@ -31,7 +31,7 @@
 # Just hardcode build_mpi to 1 as soon as openmpi builds on all
 # named architectures.
 
-%ifarch s390 s390x ia64 hppa
+%ifarch s390 s390x ia64 hppa aarch64
 %define build_mpi 0
 %else
 %define build_mpi 1

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



commit build for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package build for openSUSE:Factory checked 
in at 2013-03-01 07:15:14

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


Package is build, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/build/build.changes  2012-12-05 
13:47:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.build.new/build.changes 2013-03-01 
07:15:15.0 +0100
@@ -1,0 +2,11 @@
+Wed Feb 27 09:14:05 UTC 2013 - adr...@suse.de
+
+- ARM AArch64 support added
+- Generic system emulator support as VM added
+- s390 z/VM build environment support added
+- support collecting resource statistics during build (for OBS 2.4)
+- rpm5 fixes
+- kvm support for armv7l
+- mount /dev/pts with right permissions
+
+---

Old:

  obs-build-20121123.tar.gz
  osc

New:

  obs-build-20130227.tar.gz



Other differences:
--
++ build-initvm.spec ++
--- /var/tmp/diff_new_pack.RBBjIe/_old  2013-03-01 07:15:16.0 +0100
+++ /var/tmp/diff_new_pack.RBBjIe/_new  2013-03-01 07:15:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package build-initvm
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -20,7 +20,7 @@
 Summary:A Script to Build SUSE Linux RPMs
 License:GPL-2.0+
 Group:  Development/Tools/Building
-Version:20121123
+Version:20130227
 Release:0
 Source: obs-build-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ build.spec ++
--- /var/tmp/diff_new_pack.RBBjIe/_old  2013-03-01 07:15:16.0 +0100
+++ /var/tmp/diff_new_pack.RBBjIe/_new  2013-03-01 07:15:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package build
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -20,7 +20,7 @@
 Summary:A Script to Build SUSE Linux RPMs
 License:GPL-2.0+ and GPL-2.0
 Group:  Development/Tools/Building
-Version:20121123
+Version:20130227
 Release:0
 #!BuildIgnore:  build-mkbaselibs
 Source: obs-build-%{version}.tar.gz

++ PKGBUILD ++
--- /var/tmp/diff_new_pack.RBBjIe/_old  2013-03-01 07:15:16.0 +0100
+++ /var/tmp/diff_new_pack.RBBjIe/_new  2013-03-01 07:15:16.0 +0100
@@ -1,5 +1,5 @@
 pkgname=build
-pkgver=20121123
+pkgver=20130227
 pkgrel=1
 pkgdesc=Build packages in sandbox
 arch=('i686' 'x86_64')
@@ -8,7 +8,7 @@
 groups=('base-devel')
 depends=('perl')
 source=(obs-build-${pkgver}.tar.gz)
-md5sums=('2c66ccbe77cedb3f15d20816d6715440')
+md5sums=('3db9a882f3c7c57c0a89833230324c66')
 
 package() {
   msg Installing build ...

++ build.dsc ++
--- /var/tmp/diff_new_pack.RBBjIe/_old  2013-03-01 07:15:16.0 +0100
+++ /var/tmp/diff_new_pack.RBBjIe/_new  2013-03-01 07:15:16.0 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: build
-Version: 20121123
+Version: 20130227
 Binary: build
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: all

++ obs-build-20121123.tar.gz - obs-build-20130227.tar.gz ++
 1677 lines of diff (skipped)

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



commit calligra for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package calligra for openSUSE:Factory 
checked in at 2013-03-01 07:15:46

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


Package is calligra, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/calligra/calligra.changes2013-02-18 
20:28:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.calligra.new/calligra.changes   2013-03-01 
07:15:51.0 +0100
@@ -1,0 +2,19 @@
+Fri Feb 22 23:22:27 UTC 2013 - asterios.dra...@gmail.com
+
+- Update to 2.6.1:
+  * General:
+- Fixes for several different crashes. See for instance bugs kde#314676,
+  kde#314747
+- Several new or improved icons for different applications.
+- General look and feel on Windows improved by hardcoding the theme.
+  * Filters:
+- A new filter for the MOBI ebook format was released with 2.6.1. This
+  filter was scheduled for 2.6.0 but was withheld because of some bugs that
+  were discovered late in the release cycle.
+- Much improvement in exporting tables in the HTML export filter.
+- Fix options in the CSV export dialog (bug kde#314766)
+- Removed oxygen-icon-theme build requirement (not needed anymore).
+- Recommend kexi-sqlite3-driver for kexi (as the preferred driver).
+- Require calligra-words-common for the calligra-words package.
+
+---

Old:

  calligra-2.6.0.tar.bz2

New:

  calligra-2.6.1.tar.bz2



Other differences:
--
++ calligra.spec ++
--- /var/tmp/diff_new_pack.xvRJIp/_old  2013-03-01 07:15:56.0 +0100
+++ /var/tmp/diff_new_pack.xvRJIp/_new  2013-03-01 07:15:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   calligra
-Version:2.6.0
+Version:2.6.1
 Release:0
 Summary:Libraries and Base Files for the KDE Office Suite
 License:GPL-2.0+ and LGPL-2.1+ and GFDL-1.2
@@ -31,9 +31,7 @@
 %endif
 BuildRequires:  fdupes
 BuildRequires:  fftw3-devel
-%if 0%{?suse_version}  1140
 BuildRequires:  freetds-devel
-%endif
 BuildRequires:  glew-devel
 BuildRequires:  gsl-devel
 BuildRequires:  java-devel
@@ -55,9 +53,7 @@
 BuildRequires:  libqca2-devel
 BuildRequires:  librcps-devel
 BuildRequires:  libsoprano-devel
-%if 0%{?suse_version}  1140
 BuildRequires:  libspnav-devel
-%endif
 %if 0%{?suse_version}  1220
 BuildRequires:  libvisio-devel
 %endif
@@ -66,13 +62,11 @@
 BuildRequires:  libwps-devel
 BuildRequires:  marble-devel
 BuildRequires:  mysql-devel
+BuildRequires:  nepomuk-core-devel
 BuildRequires:  okular-devel
 %if 0%{?suse_version}  1210
 BuildRequires:  openjpeg-devel
 %endif
-# Needed to copy some icons to the hicolor directory (so they can be used with 
other icon themes)
-BuildRequires:  nepomuk-core-devel
-BuildRequires:  oxygen-icon-theme
 BuildRequires:  postgresql-devel
 BuildRequires:  pstoedit
 BuildRequires:  sqlite-devel
@@ -122,6 +116,16 @@
 
 This package contains the base files and libraries for the Suite.
 
+%package author
+Summary:Minimalistic Word Processor
+License:GPL-2.0 and GPL-2.0+ and LGPL-2.1+
+Group:  Productivity/Office/Suite
+Requires:   calligra-words-common = %{version}
+%kde4_runtime_requires
+
+%description author
+Author is the minimalistic word processor application of the Calligra Suite.
+
 %package braindump
 Summary:Mind Mapper Application
 License:GPL-2.0+ and LGPL-2.1+
@@ -142,7 +146,7 @@
 Requires:   calligra-krita
 Requires:   calligra-plan
 Requires:   calligra-sheets
-Requires:   calligra-words
+Requires:   calligra-words-common
 # koffice2 was last used at version 2.3.1 in openSUSE 12.1
 Obsoletes:  koffice2-devel  %{version}
 
@@ -150,6 +154,15 @@
 This package contains the build environment needed to compile Calligra
 applications.
 
+%package doc
+Summary:Documentation of the Calligra Suite
+License:GFDL-1.2
+Group:  Documentation/HTML
+Requires:   %{name} = %{version}
+
+%description doc
+Documentation of the Calligra Office Suite applications.
+
 %package flow
 Summary:Flow Chart Drawing Application
 License:GPL-2.0+ and LGPL-2.1+
@@ -181,12 +194,12 @@
 Group:  Productivity/Office/Suite
 Requires:   %{name} = %{version}
 Requires:   libktexteditor
+Recommends: kexi-sqlite3-driver
 Suggests:   kexi-mssql-driver
 Suggests:   kexi-mysql-driver
 Suggests:   kexi-postgresql-driver
 Suggests:   kexi-spreadsheet-import
 Suggests:   kexi-xbase-driver
-Suggests:   kexi-sqlite3-driver
 # koffice2 was last used at version 2.3.1 in openSUSE 12.1
 Obsoletes:  koffice2-kexi  %{version}
 

commit cifs-utils for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package cifs-utils for openSUSE:Factory 
checked in at 2013-03-01 07:16:51

Comparing /work/SRC/openSUSE:Factory/cifs-utils (Old)
 and  /work/SRC/openSUSE:Factory/.cifs-utils.new (New)


Package is cifs-utils, Maintainer is sjayara...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/cifs-utils/cifs-utils.changes2013-01-24 
15:34:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.cifs-utils.new/cifs-utils.changes   
2013-03-01 07:16:53.0 +0100
@@ -1,0 +2,11 @@
+Tue Feb 26 12:07:11 UTC 2013 - lmue...@suse.com
+
+- Add cifstab named configuration file to post-12.2 systems; (bnc#804822).
+- Really use of the existing cifs init script; (bnc#697218).
+
+---
+Wed Feb 21 10:34:55 UTC 2013 - lmue...@suse.com
+
+- Remove superfluous restart or stop of the cifs service; (bnc#804822).
+
+---
@@ -225,0 +237,5 @@
+
+---
+Fri Jan 14 15:22:51 CET 2011 - lmue...@suse.de
+
+- Move the cifs init script nfs dependencies from Required to Should.

New:

  cifstab



Other differences:
--
++ cifs-utils.spec ++
--- /var/tmp/diff_new_pack.g9o74A/_old  2013-03-01 07:16:54.0 +0100
+++ /var/tmp/diff_new_pack.g9o74A/_new  2013-03-01 07:16:54.0 +0100
@@ -24,9 +24,15 @@
 Group:  System/Filesystems
 Url:http://www.samba.org/linux-cifs/cifs-utils/
 Source: %{name}-%{version}.tar.bz2
+%if %{_vendor} == suse
+%define  NET_CFGDIR network
+%else
+%define  NET_CFGDIR network-scripts
+%endif
 Source1:cifs.init
 Source2:mkinitrd_scripts_boot-cifs.sh
 Source3:mkinitrd_scripts_setup-cifs.sh
+Source4:cifstab
 Patch:  1a01f7c4b90695211d12291d7a24bec05b1f2922.diff
 %if 0%{?suse_version}
 PreReq: insserv %{?fillup_prereq} mkinitrd
@@ -108,35 +114,47 @@
%{__install} -m 0755 ${RPM_SOURCE_DIR}/mkinitrd_scripts_boot-cifs.sh 
${RPM_BUILD_ROOT}/lib/mkinitrd/scripts/boot-cifs.sh
%{__install} -m 0755 ${RPM_SOURCE_DIR}/mkinitrd_scripts_setup-cifs.sh 
${RPM_BUILD_ROOT}/lib/mkinitrd/scripts/setup-cifs.sh
 %endif
+%if 0%{?suse_version} == 0 || 0%{?suse_version}  1221
+mkdir -p \
+   ${RPM_BUILD_ROOT}/%{_sysconfdir}/sysconfig/%{NET_CFGDIR}/if-{down,up}.d 
\
+   ${RPM_BUILD_ROOT}/%{_sysconfdir}/samba \
+   ${RPM_BUILD_ROOT}/%{_sbindir} \
+   ${RPM_BUILD_ROOT}/var/run
+install -m 0755 -p ${RPM_SOURCE_DIR}/cifs.init 
${RPM_BUILD_ROOT}/%{_sysconfdir}/init.d/cifs
+install -m 0600 -p ${RPM_SOURCE_DIR}/cifstab 
${RPM_BUILD_ROOT}/%{_sysconfdir}/samba/cifstab
+ln -s %{_sysconfdir}/init.d/${cifs_init_script} 
${RPM_BUILD_ROOT}/%{_sbindir}/rccifs
+touch 
${RPM_BUILD_ROOT}/%{_sysconfdir}/sysconfig/%{NET_CFGDIR}/if-{down,up}.d/${script}
 \
+   ${RPM_BUILD_ROOT}/var/run/cifs
+%endif
 # Hardlink duplicate files
 %if 0%{?suse_version}  1110
 %fdupes ${RPM_BUILD_ROOT}
 %endif
 
-%preun
-%if 0%{?suse_version}
-%{stop_on_removal cifs}
-%else
-if [ $1 = 0 ] ; then
-   test -x /sbin/chkconfig  /sbin/chkconfig --del cifs
+%pre
+# non SUSE + post-12.2, update, no cifstab, but smbfstab
+if [ ! 0%{?suse_version} -lt 1221 -a \
+   ${1:-0} -gt 1 -a \
+   ! -e /etc/samba/cifstab -a \
+   -f /etc/samba/smbfstab ]; then
+   cp -a /etc/samba/smbfstab /var/adm/backup/etc_samba_smbfstab-move
+   chkconfig -c smbfs  /var/adm/backup/etc_samba_smbfs-enabled || :
 fi
-%endif
-
-exit 0
 
 %post
+if [ ${1:-0} -gt 1 -a -f /var/adm/backup/etc_samba_smbfstab-move ]; then
+   test -f /etc/samba/cifstab  \
+   mv /etc/samba/cifstab /etc/samba/cifstab.rpmnew
+   mv /var/adm/backup/etc_samba_smbfstab-move /etc/samba/cifstab
+   if [ -f /var/adm/backup/etc_samba_smbfs-enabled ]; then
+   chkconfig -a cifs /dev/null
+   rm /var/adm/backup/etc_samba_smbfs-enabled
+   fi
+fi
 [ -x /sbin/mkinitrd_setup ]  mkinitrd_setup
 exit 0
 
 %postun
-%if 0%{?suse_version}
-%{restart_on_update cifs}
-%{insserv_cleanup}
-%else
-if [ $1 -ge 1 ]; then
-   %{initdir}/cifs restart /dev/null
-fi 
-%endif
 [ -x /sbin/mkinitrd_setup ]  mkinitrd_setup
 exit 0
 
@@ -174,6 +192,13 @@
 %{_libdir}/%{name}/idmapwb.so
 %doc %{_mandir}/man8/idmapwb.8.*
 %endif
+%if 0%{?suse_version} == 0 || 0%{?suse_version}  1221
+%attr(0754,root,root) %config %{_sysconfdir}/init.d/cifs
+%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/samba/cifstab
+%{_sbindir}/rccifs
+%dir %{_sysconfdir}/samba
+%ghost %{_localstatedir}/run/cifs
+%endif
 
 %files devel
 %defattr(-,root,root)

++ cifs.init ++
--- 

commit csync2 for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package csync2 for openSUSE:Factory checked 
in at 2013-03-01 07:17:03

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


Package is csync2, Maintainer is j...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/csync2/csync2.changes2012-06-05 
15:29:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.csync2.new/csync2.changes   2013-03-01 
07:17:04.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 06:00:00 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ csync2.spec ++
--- /var/tmp/diff_new_pack.6EJEpV/_old  2013-03-01 07:17:05.0 +0100
+++ /var/tmp/diff_new_pack.6EJEpV/_new  2013-03-01 07:17:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package csync2
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,7 +17,7 @@
 
 
 Summary:Cluster synchronization tool
-License:GPL-2.0+ ; LGPL-2.1+
+License:GPL-2.0+ and LGPL-2.1+
 Group:  Productivity/Clustering/HA
 
 Name:   csync2

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



commit emacs-auctex for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package emacs-auctex for openSUSE:Factory 
checked in at 2013-03-01 07:17:17

Comparing /work/SRC/openSUSE:Factory/emacs-auctex (Old)
 and  /work/SRC/openSUSE:Factory/.emacs-auctex.new (New)


Package is emacs-auctex, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/emacs-auctex/emacs-auctex.changes
2012-07-24 14:58:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.emacs-auctex.new/emacs-auctex.changes   
2013-03-01 07:17:18.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 22 17:08:38 UTC 2013 - wer...@suse.de
+
+- Make dinbrief work again
+
+---

New:

  auctex-11.86-dinbrief.dif



Other differences:
--
++ emacs-auctex.spec ++
--- /var/tmp/diff_new_pack.GeBUgO/_old  2013-03-01 07:17:19.0 +0100
+++ /var/tmp/diff_new_pack.GeBUgO/_new  2013-03-01 07:17:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package emacs-auctex
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -49,6 +49,7 @@
 Url:http://www.gnu.org/software/auctex
 Patch:  auctex-11.86.dif
 Patch1: auctex-11.85-preview.dif
+Patch2: auctex-11.86-dinbrief.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -73,6 +74,7 @@
 %setup -n auctex-%{version}
 %patch
 %patch1
+%patch2
 
 %build
 unset ${!LC_*}

++ auctex-11.86-dinbrief.dif ++
--- style/dinbrief.el
+++ style/dinbrief.el   2013-02-22 17:00:33.501443992 +
@@ -1,93 +1,143 @@
-;;; dinbrief.el - Special code for LaTeX-Style dinbrief.
+;; Copyright (C) 1994, 2013  Free Software Foundation, Inc.
 
-;; Contributed by Werner Fink t...@itap.physik.uni-stuttgart.de
-;; Please direct comments to him.
+;; Author: Werner Fink wer...@suse.de
+;; Maintainer: auctex-de...@gnu.org
+;; Keywords: tex
+
+;; This file is part of AUCTeX.
+
+;; AUCTeX is free software; you can redistribute it and/or modify it
+;; under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+
+;; AUCTeX is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with AUCTeX; see the file COPYING.  If not, write to the Free
+;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+;; 02110-1301, USA.
+
+;;; dinbrief.el - Special code for LaTeX class dinbrief.
 
 ;;; Commentary:
 
-;; LaTeX-Style: dinbrief.sty
-;;  Server: rusinfo.rus.uni-stuttgart.de
-;;   Directory: /pub/soft/tex/macros/latex/contrib/letters
+;; LaTeX Class: dinbrief.cls
 
 ;;; Code:
 
+(require 'tex)
+
 (TeX-add-style-hook dinbrief
  (function
   (lambda ()
+(add-hook 'LaTeX-document-style-hook
+ 'LaTeX-dinbrief-style)
 (LaTeX-add-environments
- '(letter LaTeX-recipient-hook))
+ '(letter LaTeX-dinbrief-env-recipient)
+ dinquote)
 (TeX-add-symbols
- '(Absender Absender: )
- '(Postvermerk Postvermerk: )
- '(Datum Datum: )
- '(Betreff Betreff: )
- '(Behandlungsvermerk Behandlungsvermerk: )
- '(Verteiler Verteiler: )
- makelabel Retourlabel
- '(Anlagen Anlagen: )
- '(Fenster Fenster \(ja/nein\): )
- '(Retouradresse Retouradresse: )
+ '(address Absender: )
+ '(postremark Postvermerk: )
+ '(date Datum: )
+ '(subject Betreff: )
+ '(handling Behandlungsvermerk: )
+ '(cc Verteiler: )
+ '(place Heutiger Ort: )
+ makelabels
+ nowindowrules
+ windowrules
+ nowindowtics
+ windowtics
+ disabledraftstandard
+ enabledraftstandard
+ centeraddress
+ normaladdress
+ '(encl Anlagen: )
+ '(backaddress Retouradresse: )
  '(signature Unterschrift: )
  '(opening Anrede: )
- '(closing Schlu\s: )
+ '(closing Schluss: )
+
+(defmacro LaTeX-dinbrief-insert (rest args)
+  Insert text ignoring active markers.
+  `(progn (if (TeX-mark-active) (TeX-deactivate-mark))
+ (insert ,@args)))
+
+(defun LaTeX-dinbrief-style ()
+  Insert some useful packages for writing german letters.
+  (save-excursion
+(goto-char (point-min)) ; insert before \begin{document}
+(if (re-search-forward .begin.document. (point-max) t)
+

commit file for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2013-03-01 07:17:35

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


Package is file, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/file/file.changes2013-02-19 
16:17:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.file.new/file.changes   2013-03-01 
07:17:37.0 +0100
@@ -1,0 +2,25 @@
+Tue Feb 26 17:33:36 UTC 2013 - wer...@suse.de
+
+- Add patch file-5.13-return.patch: avoid doubled return
+
+---
+Fri Feb 22 10:14:36 UTC 2013 - wer...@suse.de
+
+- Update to file version 5.13 (mainly bug fixes)
+  * add elf reading of debug info to determine if file is stripped
+  * use pread()
+  * change mime description size from 64 to 80 to accommodate OOXML.
+  * Warn about inconsistent continuation levels.
+  * Change fsmagic to add a space after it prints.
+  * Make getline public so that file can link against it.
+Perhaps it is better to rename it, or hide it differently.
+Fixes builds on platforms that do not provide it.
+  * Add SuS d{,1,2,4,8}, u{,1,2,4,8} and document
+what long, int, short, etc is (Guy Harris)
+  * add magic_version function and constant
+  * Redo memory allocation and de-allocation.
+(prevents double frees on non mmap platforms)
+  * Fix bug with name/use having to do with passing
+found state from the parent to the child and back.
+
+---

Old:

  file-5.12-llong.dif
  file-5.12-upstream.patch
  file-5.12.dif
  file-5.12.tar.gz

New:

  file-5.13-return.patch
  file-5.13.dif
  file-5.13.tar.gz



Other differences:
--
++ file.spec ++
--- /var/tmp/diff_new_pack.8p7erb/_old  2013-03-01 07:17:38.0 +0100
+++ /var/tmp/diff_new_pack.8p7erb/_new  2013-03-01 07:17:38.0 +0100
@@ -30,16 +30,15 @@
 %endif
 #
 # Set Version also in python-magic.spec
-Version:5.12
+Version:5.13
 Release:0
 Summary:A Tool to Determine File Types
 License:BSD-2-Clause
 Group:  Productivity/File utilities
 Source: ftp://ftp.astron.com/pub/file/file-%{version}.tar.gz
 Source2:baselibs.conf
-Patch:  file-5.12.dif
+Patch:  file-5.13.dif
 Patch1: file-5.12-misc.dif
-Patch2: file-5.12-llong.dif
 Patch4: file-4.24-autoconf.dif
 Patch5: file-4.03-tex.dif
 Patch7: file-4.20-ssd.dif
@@ -62,7 +61,8 @@
 Patch33:file-5.12-ocloexec.patch
 Patch34:file-5.12-endian.patch
 Patch35:file-5.12-nitpick.dif
-Patch42:file-5.12-upstream.patch
+# PATCH-FIX-UPSTREAM: avoid doubled return
+Patch36:file-5.13-return.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _miscdir%{_datadir}/misc
@@ -103,9 +103,7 @@
 
 %prep
 %setup -q -n file-%{version}
-%patch42 -p1
 %patch1  -p0 -b .misc
-%patch2  -p0 -b .llong
 %patch4  -p0 -b .conf
 %patch5  -p0 -b .tex
 %patch7  -p0 -b .ssd
@@ -130,7 +128,10 @@
 %patch33 -p0 -b .clexe
 %patch34 -p0 -b .endian
 %patch35 -p0 -b .nitpick
+%patch36 -p0 -b .return
 %patch -b .0
+test -s src/magic.h.in || cp -p src/magic.h src/magic.h.in
+
 %build
 export LANG=POSIX
 export LC_ALL=POSIX

++ file-5.13-return.patch ++
--- src/cdf.c
+++ src/cdf.c   2013-02-26 17:30:21.073444930 +
@@ -250,8 +250,6 @@ cdf_read(const cdf_info_t *info, off_t o
if (info-i_fd == -1)
return -1;
 
-   return -1;
-
if (pread(info-i_fd, buf, len, off) != (ssize_t)len)
return -1;
 
++ file-5.12-llong.dif - file-5.13.dif ++
--- /work/SRC/openSUSE:Factory/file/file-5.12-llong.dif 2013-01-29 
06:55:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.file.new/file-5.13.dif  2013-03-01 
07:17:37.0 +0100
@@ -1,10 +1,586 @@
 configure.ac
-+++ configure.ac   2013-01-23 12:57:44.605952352 +
-@@ -107,6 +107,7 @@ AC_TYPE_UINT32_T
- AC_TYPE_INT32_T
- AC_TYPE_UINT64_T
- AC_TYPE_INT64_T
-+AC_CHECK_SIZEOF(long long)
- AC_FUNC_MMAP
- AC_FUNC_FORK
- AC_FUNC_MBRTOWC
+--- magic/Magdir/elf
 magic/Magdir/elf   2013-01-22 15:12:11.0 +
+@@ -127,7 +127,7 @@
+ 18   leshort 47  Renesas H8/300H,
+ 18   leshort 48  Renesas H8S,
+ 18   leshort 49  Renesas H8/500,
+-18   leshort 50  IA-64,
++18   leshort 50  IA-64 (Intel 64 bit architecture),
+ 18   leshort 51  Stanford MIPS-X,
+ 18   leshort 52  Motorola 

commit fritzing for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package fritzing for openSUSE:Factory 
checked in at 2013-03-01 07:19:11

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


Package is fritzing, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fritzing/fritzing.changes2013-01-14 
09:40:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.fritzing.new/fritzing.changes   2013-03-01 
07:19:13.0 +0100
@@ -1,0 +2,17 @@
+Tue Feb 26 08:26:00 UTC 2013 - b...@vdm-design.de
+
+  - update to version 0.7.12b, now depends on boost-devel
+* autorouter: remove excess bendpoints
+* gerber export drill files now visible in MSN Gerber Viewer (set the m.n 
format to 2.4)
+* Updated Dutch translation (thanks Davy)
+* Updated Greek translation (thanks Alexander)
+* hide individual part silkscreen
+* imported parts now go to MyParts bin instead of Contrib
+* PNG export now taking much less disk space (thanks Jerome)
+* max pin count for generic IC bumped to 128
+* handful of fixes to DRC
+* find part in sketch (text search)
+* rgb led hole size enlarged
+* lots of little bug fixes
+
+---

Old:

  fritzing-0.7.11b.source.tar.bz2

New:

  fritzing-0.7.12b.source.tar.bz2



Other differences:
--
++ fritzing.spec ++
--- /var/tmp/diff_new_pack.NOwU9V/_old  2013-03-01 07:19:14.0 +0100
+++ /var/tmp/diff_new_pack.NOwU9V/_new  2013-03-01 07:19:14.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   fritzing
-Version:0.7.11b
+Version:0.7.12b
 Release:0
 Summary:Intuitive EDA platform featuring from prototype to product
 License:GPL-3.0+
@@ -26,6 +26,7 @@
 Source0:
http://fritzing.org/download/%{version}/source-tarball/%{name}-%{version}.source.tar.bz2
 Requires:   libqt4-sql-sqlite
 Requires:   libqt4-x11
+BuildRequires:  boost-devel
 BuildRequires:  desktop-file-utils
 BuildRequires:  libqt4-devel = 4.7
 %if 0%{?suse_version} || 0%{?sles_version}

++ debian.changelog ++
--- /var/tmp/diff_new_pack.NOwU9V/_old  2013-03-01 07:19:14.0 +0100
+++ /var/tmp/diff_new_pack.NOwU9V/_new  2013-03-01 07:19:14.0 +0100
@@ -1,3 +1,9 @@
+fritzing (0.7.12b-0) stable; urgency=low
+
+  * new upstream release 0.7.12b
+
+ -- Thomas Zimmermann b...@vdm-design.de  Tue, 26 Feb 2013 09:35:00 +0100
+
 fritzing (0.7.11b-0) stable; urgency=low
 
   * new upstream release 0.7.11b

++ debian.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debian/control new/debian/control
--- old/debian/control  2012-01-09 20:42:12.0 +0100
+++ new/debian/control  2013-02-26 09:34:03.0 +0100
@@ -2,13 +2,13 @@
 Section: electronics
 Priority: optional
 Maintainer: Brendan Howell bren...@howell-ersatz.com
-Build-Depends: debhelper (= 7.0.12), libqtcore4, libqtgui4, libstdc++6, 
libc6, qt4-qmake, libqt4-dev, zlib1g-dev
+Build-Depends: debhelper (= 7.0.12), libqtcore4 (=4.7), libqtgui4 (=4.7), 
libstdc++6, libc6, qt4-qmake, libqt4-dev (=4.7), zlib1g-dev, libboost-dev
 Standards-Version: 3.8.3
 Homepage: http://fritzing.org
 
 Package: fritzing
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libqtcore4, libqt4-gui, 
libqt4-network, libqt4-sql, libqt4-svg, libqt4-xml, libqt4-sql-sqlite
+Depends: ${shlibs:Depends}, ${misc:Depends}, libqtcore4 (=4.7), libqt4-gui 
(=4.7), libqt4-network (=4.7), libqt4-sql (=4.7), libqt4-svg (=4.7), 
libqt4-xml (=4.7), libqt4-sql-sqlite (=4.7)
 Description: Easy-to-use, electronic design software.
  Fritzing is an open source project designed to help one transition from a
  prototype to a finished project. Aimed at users who want to produce or 
document

++ fritzing-0.7.11b.source.tar.bz2 - fritzing-0.7.12b.source.tar.bz2 ++
/work/SRC/openSUSE:Factory/fritzing/fritzing-0.7.11b.source.tar.bz2 
/work/SRC/openSUSE:Factory/.fritzing.new/fritzing-0.7.12b.source.tar.bz2 
differ: char 4, line 1

++ fritzing.dsc ++
--- /var/tmp/diff_new_pack.NOwU9V/_old  2013-03-01 07:19:14.0 +0100
+++ /var/tmp/diff_new_pack.NOwU9V/_new  2013-03-01 07:19:14.0 +0100
@@ -1,10 +1,10 @@
 Format: 1.0
 Source: fritzing
-Version: 0.7.11b
+Version: 0.7.12b
 Binary: fritzing
 Maintainer: Brendan Howell bren...@howell-ersatz.com
 Architecture: any
-Build-Depends: debhelper (= 7.0.12), libqtcore4, libqtgui4, libstdc++6, 
libc6, qt4-qmake, libqt4-dev, zlib1g-dev, libqt4-sql-sqlite
+Build-Depends: debhelper (= 7.0.12), libqtcore4 (=4.7), libqtgui4 (=4.7), 
libstdc++6, libc6, qt4-qmake, libqt4-dev (=4.7), zlib1g-dev, libqt4-sql-sqlite 

commit gnome-control-center for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2013-03-01 07:20:00

Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-control-center.new (New)


Package is gnome-control-center, Maintainer is gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2013-01-30 15:10:58.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2013-03-01 07:20:02.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 26 20:23:09 UTC 2013 - dims...@opensuse.org
+
+- Do not package gnome-control-center.rules (bnc#804966): On
+  openSUSE defining the use of the wheel group is up to the
+  administrator.
+
+---



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.jtlEJ0/_old  2013-03-01 07:20:03.0 +0100
+++ /var/tmp/diff_new_pack.jtlEJ0/_new  2013-03-01 07:20:03.0 +0100
@@ -26,7 +26,6 @@
 Name:   gnome-control-center
 Version:3.6.3
 Release:0
-# FIXME: stop owning %%{_datadir}/polkit-1/rules.d once polkit = 0.106 is in 
(should be soon-ish, end of 09/2012)
 # FIXME: in 12.3 and later, check if we still need patch2 
(gnome-control-center-hide-region-system-tab.patch) (see bnc#703833)
 Summary:The GNOME Control Center
 License:GPL-2.0+
@@ -191,10 +190,10 @@
 
 %install
 %make_install
-%if 0%{?suse_version} = 1120
-rm %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
 find %{buildroot} -type f -name *.la -delete -print
+
+# We do not package gnome-control-center.rules (bnc#804966)
+rm %{buildroot}%{_datadir}/polkit-1/rules.d/gnome-control-center.rules
 %find_lang %{name}-2.0 %{?no_lang_C}
 %find_lang %{name}-2.0-timezones %{name}-2.0.lang
 %suse_update_desktop_file gnome-control-center
@@ -245,7 +244,8 @@
 %{_datadir}/icons/hicolor/*/*/*.svg
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.datetime.policy
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy
-%{_datadir}/polkit-1/rules.d/gnome-control-center.rules
+# We do not package gnome-control-center.rules
+#{_datadir}/polkit-1/rules.d/gnome-control-center.rules
 %dir %{_datadir}/sounds/gnome
 %dir %{_datadir}/sounds/gnome/default
 %dir %{_datadir}/sounds/gnome/default/alerts


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



commit gnome-control-center for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:12.3 checked in at 2013-03-01 07:20:08

Comparing /work/SRC/openSUSE:12.3/gnome-control-center (Old)
 and  /work/SRC/openSUSE:12.3/.gnome-control-center.new (New)


Package is gnome-control-center, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.3/gnome-control-center/gnome-control-center.changes   
2013-01-31 01:18:12.0 +0100
+++ 
/work/SRC/openSUSE:12.3/.gnome-control-center.new/gnome-control-center.changes  
2013-03-01 07:20:09.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 26 20:23:09 UTC 2013 - dims...@opensuse.org
+
+- Do not package gnome-control-center.rules (bnc#804966): On
+  openSUSE defining the use of the wheel group is up to the
+  administrator.
+
+---



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.gVmo1E/_old  2013-03-01 07:20:10.0 +0100
+++ /var/tmp/diff_new_pack.gVmo1E/_new  2013-03-01 07:20:10.0 +0100
@@ -26,7 +26,6 @@
 Name:   gnome-control-center
 Version:3.6.3
 Release:0
-# FIXME: stop owning %%{_datadir}/polkit-1/rules.d once polkit = 0.106 is in 
(should be soon-ish, end of 09/2012)
 # FIXME: in 12.3 and later, check if we still need patch2 
(gnome-control-center-hide-region-system-tab.patch) (see bnc#703833)
 Summary:The GNOME Control Center
 License:GPL-2.0+
@@ -191,10 +190,10 @@
 
 %install
 %make_install
-%if 0%{?suse_version} = 1120
-rm %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
 find %{buildroot} -type f -name *.la -delete -print
+
+# We do not package gnome-control-center.rules (bnc#804966)
+rm %{buildroot}%{_datadir}/polkit-1/rules.d/gnome-control-center.rules
 %find_lang %{name}-2.0 %{?no_lang_C}
 %find_lang %{name}-2.0-timezones %{name}-2.0.lang
 %suse_update_desktop_file gnome-control-center
@@ -245,7 +244,8 @@
 %{_datadir}/icons/hicolor/*/*/*.svg
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.datetime.policy
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy
-%{_datadir}/polkit-1/rules.d/gnome-control-center.rules
+# We do not package gnome-control-center.rules
+#{_datadir}/polkit-1/rules.d/gnome-control-center.rules
 %dir %{_datadir}/sounds/gnome
 %dir %{_datadir}/sounds/gnome/default
 %dir %{_datadir}/sounds/gnome/default/alerts


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



commit gnome-packagekit for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-packagekit for 
openSUSE:Factory checked in at 2013-03-01 07:20:27

Comparing /work/SRC/openSUSE:Factory/gnome-packagekit (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-packagekit.new (New)


Package is gnome-packagekit, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gnome-packagekit/gnome-packagekit.changes
2013-02-11 11:00:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-packagekit.new/gnome-packagekit.changes   
2013-03-01 07:20:28.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 26 22:26:58 UTC 2013 - dims...@opensuse.org
+
+- Update gnome-packagekit-OnlyShowIn.patch: change NoDisplay to
+  false for gpk-prefs and gpk-update-viewer (bnc#803201).
+- Don't mangle categories of gpk-prefs: the upstream ones are just
+  fine (showing up in Settings).
+
+---



Other differences:
--
++ gnome-packagekit.spec ++
--- /var/tmp/diff_new_pack.CcpwLl/_old  2013-03-01 07:20:29.0 +0100
+++ /var/tmp/diff_new_pack.CcpwLl/_new  2013-03-01 07:20:29.0 +0100
@@ -111,7 +111,7 @@
 %suse_update_desktop_file gpk-install-catalog
 %suse_update_desktop_file gpk-install-local-file
 %suse_update_desktop_file gpk-log Settings
-%suse_update_desktop_file -r gpk-prefs GTK GNOME System 
X-SuSE-ServiceConfiguration
+%suse_update_desktop_file gpk-prefs
 %suse_update_desktop_file gpk-service-pack
 %suse_update_desktop_file gpk-update-viewer
 


++ gnome-packagekit-OnlyShowIn.patch ++
--- /var/tmp/diff_new_pack.CcpwLl/_old  2013-03-01 07:20:29.0 +0100
+++ /var/tmp/diff_new_pack.CcpwLl/_new  2013-03-01 07:20:29.0 +0100
@@ -1,7 +1,7 @@
-Index: gnome-packagekit-3.6.0/data/gpk-application.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-application.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-application.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-application.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-application.desktop.in
 gnome-packagekit-3.6.1/data/gpk-application.desktop.in
 @@ -6,6 +6,6 @@ Exec=gpk-application
  Terminal=false
  Type=Application
@@ -10,32 +10,35 @@
 +OnlyShowIn=GNOME;
  StartupNotify=true
  
-Index: gnome-packagekit-3.6.0/data/gpk-log.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-log.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-log.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-log.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-log.desktop.in
 gnome-packagekit-3.6.1/data/gpk-log.desktop.in
 @@ -8,4 +8,4 @@ Type=Application
  NoDisplay=true
  Categories=GNOME;GTK;System;
  StartupNotify=true
 -
 +OnlyShowIn=GNOME;
-Index: gnome-packagekit-3.6.0/data/gpk-prefs.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-prefs.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-prefs.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-prefs.desktop.in
-@@ -6,6 +6,6 @@ Exec=gpk-prefs
+--- gnome-packagekit-3.6.1.orig/data/gpk-prefs.desktop.in
 gnome-packagekit-3.6.1/data/gpk-prefs.desktop.in
+@@ -5,7 +5,7 @@ Icon=gpk-prefs
+ Exec=gpk-prefs
  Terminal=false
  Type=Application
- Categories=Settings;X-GNOME-SystemSettings;
+-Categories=Settings;X-GNOME-SystemSettings;
 -NotShowIn=KDE;
++Categories=Settings;X-GNOME-Settings-Panel;
 +OnlyShowIn=GNOME;
  StartupNotify=true
- NoDisplay=true
-Index: gnome-packagekit-3.6.0/data/gpk-update-viewer.desktop.in
+-NoDisplay=true
++NoDisplay=false
+Index: gnome-packagekit-3.6.1/data/gpk-update-viewer.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-update-viewer.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-update-viewer.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-update-viewer.desktop.in
 gnome-packagekit-3.6.1/data/gpk-update-viewer.desktop.in
 @@ -6,6 +6,6 @@ Exec=gpk-update-viewer
  Terminal=false
  Type=Application
@@ -43,21 +46,22 @@
 -NotShowIn=KDE;
 +OnlyShowIn=GNOME;
  StartupNotify=true
- NoDisplay=true
-Index: gnome-packagekit-3.6.0/data/gpk-service-pack.desktop.in
+-NoDisplay=true
++NoDisplay=false
+Index: gnome-packagekit-3.6.1/data/gpk-service-pack.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-service-pack.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-service-pack.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-service-pack.desktop.in
 gnome-packagekit-3.6.1/data/gpk-service-pack.desktop.in
 @@ -8,4 +8,5 

commit gnome-packagekit for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-packagekit for openSUSE:12.3 
checked in at 2013-03-01 07:20:31

Comparing /work/SRC/openSUSE:12.3/gnome-packagekit (Old)
 and  /work/SRC/openSUSE:12.3/.gnome-packagekit.new (New)


Package is gnome-packagekit, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.3/gnome-packagekit/gnome-packagekit.changes   
2013-02-11 11:00:08.0 +0100
+++ /work/SRC/openSUSE:12.3/.gnome-packagekit.new/gnome-packagekit.changes  
2013-03-01 07:20:31.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 26 22:26:58 UTC 2013 - dims...@opensuse.org
+
+- Update gnome-packagekit-OnlyShowIn.patch: change NoDisplay to
+  false for gpk-prefs and gpk-update-viewer (bnc#803201).
+- Don't mangle categories of gpk-prefs: the upstream ones are just
+  fine (showing up in Settings).
+
+---



Other differences:
--
++ gnome-packagekit.spec ++
--- /var/tmp/diff_new_pack.Lgs2Dv/_old  2013-03-01 07:20:32.0 +0100
+++ /var/tmp/diff_new_pack.Lgs2Dv/_new  2013-03-01 07:20:32.0 +0100
@@ -111,7 +111,7 @@
 %suse_update_desktop_file gpk-install-catalog
 %suse_update_desktop_file gpk-install-local-file
 %suse_update_desktop_file gpk-log Settings
-%suse_update_desktop_file -r gpk-prefs GTK GNOME System 
X-SuSE-ServiceConfiguration
+%suse_update_desktop_file gpk-prefs
 %suse_update_desktop_file gpk-service-pack
 %suse_update_desktop_file gpk-update-viewer
 


++ gnome-packagekit-OnlyShowIn.patch ++
--- /var/tmp/diff_new_pack.Lgs2Dv/_old  2013-03-01 07:20:32.0 +0100
+++ /var/tmp/diff_new_pack.Lgs2Dv/_new  2013-03-01 07:20:32.0 +0100
@@ -1,7 +1,7 @@
-Index: gnome-packagekit-3.6.0/data/gpk-application.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-application.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-application.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-application.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-application.desktop.in
 gnome-packagekit-3.6.1/data/gpk-application.desktop.in
 @@ -6,6 +6,6 @@ Exec=gpk-application
  Terminal=false
  Type=Application
@@ -10,32 +10,35 @@
 +OnlyShowIn=GNOME;
  StartupNotify=true
  
-Index: gnome-packagekit-3.6.0/data/gpk-log.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-log.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-log.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-log.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-log.desktop.in
 gnome-packagekit-3.6.1/data/gpk-log.desktop.in
 @@ -8,4 +8,4 @@ Type=Application
  NoDisplay=true
  Categories=GNOME;GTK;System;
  StartupNotify=true
 -
 +OnlyShowIn=GNOME;
-Index: gnome-packagekit-3.6.0/data/gpk-prefs.desktop.in
+Index: gnome-packagekit-3.6.1/data/gpk-prefs.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-prefs.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-prefs.desktop.in
-@@ -6,6 +6,6 @@ Exec=gpk-prefs
+--- gnome-packagekit-3.6.1.orig/data/gpk-prefs.desktop.in
 gnome-packagekit-3.6.1/data/gpk-prefs.desktop.in
+@@ -5,7 +5,7 @@ Icon=gpk-prefs
+ Exec=gpk-prefs
  Terminal=false
  Type=Application
- Categories=Settings;X-GNOME-SystemSettings;
+-Categories=Settings;X-GNOME-SystemSettings;
 -NotShowIn=KDE;
++Categories=Settings;X-GNOME-Settings-Panel;
 +OnlyShowIn=GNOME;
  StartupNotify=true
- NoDisplay=true
-Index: gnome-packagekit-3.6.0/data/gpk-update-viewer.desktop.in
+-NoDisplay=true
++NoDisplay=false
+Index: gnome-packagekit-3.6.1/data/gpk-update-viewer.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-update-viewer.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-update-viewer.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-update-viewer.desktop.in
 gnome-packagekit-3.6.1/data/gpk-update-viewer.desktop.in
 @@ -6,6 +6,6 @@ Exec=gpk-update-viewer
  Terminal=false
  Type=Application
@@ -43,21 +46,22 @@
 -NotShowIn=KDE;
 +OnlyShowIn=GNOME;
  StartupNotify=true
- NoDisplay=true
-Index: gnome-packagekit-3.6.0/data/gpk-service-pack.desktop.in
+-NoDisplay=true
++NoDisplay=false
+Index: gnome-packagekit-3.6.1/data/gpk-service-pack.desktop.in
 ===
 gnome-packagekit-3.6.0.orig/data/gpk-service-pack.desktop.in
-+++ gnome-packagekit-3.6.0/data/gpk-service-pack.desktop.in
+--- gnome-packagekit-3.6.1.orig/data/gpk-service-pack.desktop.in
 gnome-packagekit-3.6.1/data/gpk-service-pack.desktop.in
 @@ -8,4 +8,5 @@ 

commit gnome-shell for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2013-03-01 07:20:50

Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-shell.new (New)


Package is gnome-shell, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2013-02-14 
20:38:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2013-03-01 07:20:52.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 22 21:58:09 UTC 2013 - zai...@opensuse.org
+
+- Update to version 3.6.3.1:
+  + Fix regression in reentrancy fix for 3.6.3 (bgo#689295).
+  + Updated translations.
+- Drop g-s-fix-notification-expansion.patch: fixed upstream.
+
+---

Old:

  g-s-fix-notification-expansion.patch
  gnome-shell-3.6.3.tar.xz

New:

  gnome-shell-3.6.3.1.tar.xz



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.CVjiRd/_old  2013-03-01 07:20:53.0 +0100
+++ /var/tmp/diff_new_pack.CVjiRd/_new  2013-03-01 07:20:53.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-shell
-Version:3.6.3
+Version:3.6.3.1
 Release:0
 Summary:GNOME Shell
 License:GPL-2.0+
@@ -28,10 +28,8 @@
 Patch1: gnome-shell-private-connection.patch
 # PATCH-FIX-UPSTREAM gnome-shell-nmlibexecdir.patch bgo#693590 
dims...@opensuse.org -- Allow NetworkManager installation to use different 
libexecdir than gnome-shell
 Patch2: gnome-shell-nmlibexecdir.patch
-# PATCH-FIX-UPSTREAM g-s-fix-notification-expansion.patch bgo#689295 
badshah...@gmail.com -- Fix notification not expanding into tray, a regression 
due to earlier commits; patch taken from upstream git
-Patch3: g-s-fix-notification-expansion.patch
 BuildRequires:  docbook-xsl-stylesheets
-# Needed for patch4
+# Needed for patch2
 BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
@@ -137,11 +135,10 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 translation-update-upstream
 
 %build
-# Needed for patch4
+# Needed for patch2
 NOCONFIGURE=1 gnome-autogen.sh
 export BROWSER_PLUGIN_DIR=%{_libdir}/browser-plugins
 %configure \

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



commit gnome-shell for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:12.3 
checked in at 2013-03-01 07:21:08

Comparing /work/SRC/openSUSE:12.3/gnome-shell (Old)
 and  /work/SRC/openSUSE:12.3/.gnome-shell.new (New)


Package is gnome-shell, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/gnome-shell/gnome-shell.changes 2013-02-14 
20:38:57.0 +0100
+++ /work/SRC/openSUSE:12.3/.gnome-shell.new/gnome-shell.changes
2013-03-01 07:21:10.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 22 21:58:09 UTC 2013 - zai...@opensuse.org
+
+- Update to version 3.6.3.1:
+  + Fix regression in reentrancy fix for 3.6.3 (bgo#689295).
+  + Updated translations.
+- Drop g-s-fix-notification-expansion.patch: fixed upstream.
+
+---

Old:

  g-s-fix-notification-expansion.patch
  gnome-shell-3.6.3.tar.xz

New:

  gnome-shell-3.6.3.1.tar.xz



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.ambFMq/_old  2013-03-01 07:21:10.0 +0100
+++ /var/tmp/diff_new_pack.ambFMq/_new  2013-03-01 07:21:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-shell
-Version:3.6.3
+Version:3.6.3.1
 Release:0
 Summary:GNOME Shell
 License:GPL-2.0+
@@ -28,10 +28,8 @@
 Patch1: gnome-shell-private-connection.patch
 # PATCH-FIX-UPSTREAM gnome-shell-nmlibexecdir.patch bgo#693590 
dims...@opensuse.org -- Allow NetworkManager installation to use different 
libexecdir than gnome-shell
 Patch2: gnome-shell-nmlibexecdir.patch
-# PATCH-FIX-UPSTREAM g-s-fix-notification-expansion.patch bgo#689295 
badshah...@gmail.com -- Fix notification not expanding into tray, a regression 
due to earlier commits; patch taken from upstream git
-Patch3: g-s-fix-notification-expansion.patch
 BuildRequires:  docbook-xsl-stylesheets
-# Needed for patch4
+# Needed for patch2
 BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
@@ -137,11 +135,10 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 translation-update-upstream
 
 %build
-# Needed for patch4
+# Needed for patch2
 NOCONFIGURE=1 gnome-autogen.sh
 export BROWSER_PLUGIN_DIR=%{_libdir}/browser-plugins
 %configure \

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



commit installation-images for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2013-03-01 07:22:18

Comparing /work/SRC/openSUSE:Factory/installation-images (Old)
 and  /work/SRC/openSUSE:Factory/.installation-images.new (New)


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2013-02-26 07:02:01.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2013-03-01 07:22:20.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 26 15:12:41 CET 2013 - snw...@suse.de
+
+- add nfs mount to initrd (bnc #799496)
+
+---
+Tue Feb 26 12:10:52 CET 2013 - snw...@suse.de
+
+- ppc64 fixes
+
+---

Old:

  installation-images-13.75.tar.bz2

New:

  installation-images-13.77.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.EevMb3/_old  2013-03-01 07:22:22.0 +0100
+++ /var/tmp/diff_new_pack.EevMb3/_new  2013-03-01 07:22:22.0 +0100
@@ -375,9 +375,9 @@
 Summary:Installation Image Files
 License:GPL-2.0+
 Group:  Metapackages
-Version:13.75
+Version:13.77
 Release:0
-Source: installation-images-13.75.tar.bz2
+Source: installation-images-13.77.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 

++ installation-images-13.75.tar.bz2 - installation-images-13.77.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/VERSION 
new/installation-images-13.77/VERSION
--- old/installation-images-13.75/VERSION   2013-02-25 16:05:54.0 
+0100
+++ new/installation-images-13.77/VERSION   2013-02-26 15:12:37.0 
+0100
@@ -1 +1 @@
-13.75
+13.77
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-13.75/bin/mk_ppc_installation-images_bootbinaries.sh 
new/installation-images-13.77/bin/mk_ppc_installation-images_bootbinaries.sh
--- 
old/installation-images-13.75/bin/mk_ppc_installation-images_bootbinaries.sh
2013-02-06 14:17:27.0 +0100
+++ 
new/installation-images-13.77/bin/mk_ppc_installation-images_bootbinaries.sh
2013-02-26 12:08:47.0 +0100
@@ -46,8 +46,8 @@
 gzip -fcv9 /boot/vmlinux-*-default $CD1/suseboot/linux32.gz
 fi
 if test $do_64 = true ; then
-cp -pfv $bdir/initrd-ppc64   $CD1/suseboot/initrd64
-gzip -fcv9 /boot/vmlinux-*-ppc64   $CD1/suseboot/linux64.gz
+cp -pfv $bdir/initrd-default   $CD1/suseboot/initrd64
+gzip -fcv9 /boot/vmlinux-*-default   $CD1/suseboot/linux64.gz
 fi
 
 if [ -f /lib/lilo/chrp/mkzimage_cmdline ] ; then
@@ -59,15 +59,15 @@
 if test $do_64 = true ; then
/bin/mkzimage \
--board chrp \
-   --vmlinux /boot/vmlinux-*-ppc64 \
-   --initrd $bdir/initrd-ppc64 \
+   --vmlinux /boot/vmlinux-*-default \
+   --initrd $bdir/initrd-default \
--output $CD1/suseboot/inst64
 #
if test 42 = false ; then
/bin/mkzimage \
--board iseries \
-   --vmlinux /boot/vmlinux-*-ppc64 \
-   --initrd $bdir/initrd-ppc64 \
+   --vmlinux /boot/vmlinux-*-default \
+   --initrd $bdir/initrd-default \
--output $CD1/ISERIES64
fi
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/changelog 
new/installation-images-13.77/changelog
--- old/installation-images-13.75/changelog 2013-02-25 16:05:57.0 
+0100
+++ new/installation-images-13.77/changelog 2013-02-26 15:12:40.0 
+0100
@@ -1,4 +1,10 @@
-2013-02-25:sl_12.3-HEAD
+2013-02-26:sl_12.3-HEAD
+   - add nfs mount to initrd (bnc #799496)
+
+2013-02-26:sl_12.3-13.76
+   - ppc64 fixes
+
+2013-02-25:sl_12.3-13.75
- include ip compat links
 
 2013-02-13:sl_12.3-13.74
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/data/initrd/all_modules 
new/installation-images-13.77/data/initrd/all_modules
--- old/installation-images-13.75/data/initrd/all_modules   2013-02-06 
14:17:27.0 +0100
+++ new/installation-images-13.77/data/initrd/all_modules   2013-02-26 
12:08:47.0 +0100
@@ -2089,6 +2089,8 @@
 mtouch  i586 ia64 ppc x86_64
 multipath   i586 ia64 ppc ppc64 s390x x86_64
 mv643xx_eth

commit installation-images for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:12.3 checked in at 2013-03-01 07:22:21

Comparing /work/SRC/openSUSE:12.3/installation-images (Old)
 and  /work/SRC/openSUSE:12.3/.installation-images.new (New)


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/installation-images/installation-images.changes 
2013-02-26 06:52:09.0 +0100
+++ 
/work/SRC/openSUSE:12.3/.installation-images.new/installation-images.changes
2013-03-01 07:22:22.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 26 15:12:41 CET 2013 - snw...@suse.de
+
+- add nfs mount to initrd (bnc #799496)
+
+---
+Tue Feb 26 12:10:52 CET 2013 - snw...@suse.de
+
+- ppc64 fixes
+
+---

Old:

  installation-images-13.75.tar.bz2

New:

  installation-images-13.77.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.KfYOLl/_old  2013-03-01 07:22:23.0 +0100
+++ /var/tmp/diff_new_pack.KfYOLl/_new  2013-03-01 07:22:23.0 +0100
@@ -375,9 +375,9 @@
 Summary:Installation Image Files
 License:GPL-2.0+
 Group:  Metapackages
-Version:13.75
+Version:13.77
 Release:0
-Source: installation-images-13.75.tar.bz2
+Source: installation-images-13.77.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 

++ installation-images-13.75.tar.bz2 - installation-images-13.77.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/VERSION 
new/installation-images-13.77/VERSION
--- old/installation-images-13.75/VERSION   2013-02-25 16:05:54.0 
+0100
+++ new/installation-images-13.77/VERSION   2013-02-26 15:12:37.0 
+0100
@@ -1 +1 @@
-13.75
+13.77
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-13.75/bin/mk_ppc_installation-images_bootbinaries.sh 
new/installation-images-13.77/bin/mk_ppc_installation-images_bootbinaries.sh
--- 
old/installation-images-13.75/bin/mk_ppc_installation-images_bootbinaries.sh
2013-02-06 14:17:27.0 +0100
+++ 
new/installation-images-13.77/bin/mk_ppc_installation-images_bootbinaries.sh
2013-02-26 12:08:47.0 +0100
@@ -46,8 +46,8 @@
 gzip -fcv9 /boot/vmlinux-*-default $CD1/suseboot/linux32.gz
 fi
 if test $do_64 = true ; then
-cp -pfv $bdir/initrd-ppc64   $CD1/suseboot/initrd64
-gzip -fcv9 /boot/vmlinux-*-ppc64   $CD1/suseboot/linux64.gz
+cp -pfv $bdir/initrd-default   $CD1/suseboot/initrd64
+gzip -fcv9 /boot/vmlinux-*-default   $CD1/suseboot/linux64.gz
 fi
 
 if [ -f /lib/lilo/chrp/mkzimage_cmdline ] ; then
@@ -59,15 +59,15 @@
 if test $do_64 = true ; then
/bin/mkzimage \
--board chrp \
-   --vmlinux /boot/vmlinux-*-ppc64 \
-   --initrd $bdir/initrd-ppc64 \
+   --vmlinux /boot/vmlinux-*-default \
+   --initrd $bdir/initrd-default \
--output $CD1/suseboot/inst64
 #
if test 42 = false ; then
/bin/mkzimage \
--board iseries \
-   --vmlinux /boot/vmlinux-*-ppc64 \
-   --initrd $bdir/initrd-ppc64 \
+   --vmlinux /boot/vmlinux-*-default \
+   --initrd $bdir/initrd-default \
--output $CD1/ISERIES64
fi
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/changelog 
new/installation-images-13.77/changelog
--- old/installation-images-13.75/changelog 2013-02-25 16:05:57.0 
+0100
+++ new/installation-images-13.77/changelog 2013-02-26 15:12:40.0 
+0100
@@ -1,4 +1,10 @@
-2013-02-25:sl_12.3-HEAD
+2013-02-26:sl_12.3-HEAD
+   - add nfs mount to initrd (bnc #799496)
+
+2013-02-26:sl_12.3-13.76
+   - ppc64 fixes
+
+2013-02-25:sl_12.3-13.75
- include ip compat links
 
 2013-02-13:sl_12.3-13.74
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-13.75/data/initrd/all_modules 
new/installation-images-13.77/data/initrd/all_modules
--- old/installation-images-13.75/data/initrd/all_modules   2013-02-06 
14:17:27.0 +0100
+++ new/installation-images-13.77/data/initrd/all_modules   2013-02-26 
12:08:47.0 +0100
@@ -2089,6 +2089,8 @@
 mtouch  i586 ia64 ppc x86_64
 multipath   i586 ia64 ppc ppc64 s390x x86_64
 mv643xx_eth   ppc   

commit kiwi for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2013-03-01 07:23:31

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


Package is kiwi, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2013-02-23 
08:08:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2013-03-01 
07:23:33.0 +0100
@@ -1,0 +2,39 @@
+Thu Feb 28 12:42:42 CET 2013 - m...@suse.de
+
+- v5.04.56 released
+  
+---
+Thu Feb 28 12:40:22 CET 2013 - m...@suse.de
+  
+- fixed KIWILinuxRC::installBootLoaderGrub2()
+  + install grub2 only in BIOS mode, in EFI mode this doesn't make sense
+  + make sure the grub2 config file also lands on the EFI (fat) partition
+  when in UEFI mode the precompiled and signed grub.efi image searches
+  there for the configuration
+  
+---
+Wed Feb 27 23:34:30 CET 2013 - m...@suse.de
+  
+- v5.04.55 released
+  
+---
+Wed Feb 27 19:07:20 CET 2013 - m...@suse.de
+  
+- fixed UEFI bootloader setup for grub2 based disk images
+  + fixed creation of image install CDs in EFI mode
+  + call findAndCopyMagicBlock only if hybrid is requested
+  
+---
+Mon Feb 25 09:50:01 CET 2013 - m...@suse.de
+  
+- v5.04.54 released
+  
+---
+Mon Feb 25 09:47:51 CET 2013 - m...@suse.de
+  
+- added vmxFlavour-uefi and xenFlavour-uefi profiles to the
+  suse-SLE11-JeOS template image description. Given that
+  SLE11 SP3 is used these profiles can be used to build
+  UEFI images based on grub2
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.XuOdPi/_old  2013-03-01 07:23:35.0 +0100
+++ /var/tmp/diff_new_pack.XuOdPi/_new  2013-03-01 07:23:35.0 +0100
@@ -26,7 +26,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.04.53
+Version:5.04.56
 Release:0
 # requirements to build packages
 BuildRequires:  e2fsprogs

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2013-02-21 15:51:36.0 +0100
+++ new/kiwi/.revision  2013-02-21 15:51:36.0 +0100
@@ -1 +1 @@
-4111e7b900c8cdba3be23213c31ced08931c297b
+a3bdf56b57a7da45ec3c0b1a317ad7a197a1efa4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIBoot.pm new/kiwi/modules/KIWIBoot.pm
--- old/kiwi/modules/KIWIBoot.pm2013-02-21 15:51:36.0 +0100
+++ new/kiwi/modules/KIWIBoot.pm2013-02-27 23:54:12.0 +0100
@@ -904,13 +904,14 @@
my $base;
my $opts;
if ($bootloader eq grub2) {
-   # let mkisofs run grub2 eltorito image...
-   $base = -V \$volid\ -A \$appid\ ;
-   $base.= -R -J -f -b boot/grub2/i386-pc/eltorito.img 
-no-emul-boot ;
-   $base.= -boot-load-size 4 -boot-info-table -udf 
-allow-limited-size ;
+   # let mkisofs run grub2 efi or eltorito image...
+   $base = -V \$volid\ -A \$appid\ -R -J -f ;
if (($firmware eq efi) || ($firmware eq uefi)) {
-   $base.= -eltorito-alt-boot -b boot/$efi_arch/efi ;
-   $base.= -no-emul-boot ;
+   $base.= -b boot/$efi_arch/efi -no-emul-boot ;
+   } else {
+   $base.= -b boot/grub2/i386-pc/eltorito.img 
-no-emul-boot ;
+   $base.= -boot-load-size 4 -boot-info-table -udf ;
+   $base.= -allow-limited-size ;
}
$opts.= -joliet-long ;
} elsif ($bootloader eq grub) {
@@ -3326,8 +3327,8 @@
#==
# Stage files
#--
-   $stages{bios}{initrd}   = 'usr/lib/grub2/$grubpc/*';
-   $stages{bios}{stageSRC} = /usr/lib/grub2/$grubpc;
+   $stages{bios}{initrd}   = 'usr/lib/$grub/$grubpc/*';
+   $stages{bios}{stageSRC} = /usr/lib/$grub/$grubpc;
$stages{bios}{stageDST} = /boot/grub2/$grubpc;
if (($firmware eq efi) || ($firmware eq uefi)) {
 

commit kiwi for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:12.3 checked in at 
2013-03-01 07:23:35

Comparing /work/SRC/openSUSE:12.3/kiwi (Old)
 and  /work/SRC/openSUSE:12.3/.kiwi.new (New)


Package is kiwi, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/kiwi/kiwi.changes   2013-02-23 08:08:34.0 
+0100
+++ /work/SRC/openSUSE:12.3/.kiwi.new/kiwi.changes  2013-03-01 
07:23:43.0 +0100
@@ -1,0 +2,39 @@
+Thu Feb 28 12:42:42 CET 2013 - m...@suse.de
+
+- v5.04.56 released
+  
+---
+Thu Feb 28 12:40:22 CET 2013 - m...@suse.de
+  
+- fixed KIWILinuxRC::installBootLoaderGrub2()
+  + install grub2 only in BIOS mode, in EFI mode this doesn't make sense
+  + make sure the grub2 config file also lands on the EFI (fat) partition
+  when in UEFI mode the precompiled and signed grub.efi image searches
+  there for the configuration
+  
+---
+Wed Feb 27 23:34:30 CET 2013 - m...@suse.de
+  
+- v5.04.55 released
+  
+---
+Wed Feb 27 19:07:20 CET 2013 - m...@suse.de
+  
+- fixed UEFI bootloader setup for grub2 based disk images
+  + fixed creation of image install CDs in EFI mode
+  + call findAndCopyMagicBlock only if hybrid is requested
+  
+---
+Mon Feb 25 09:50:01 CET 2013 - m...@suse.de
+  
+- v5.04.54 released
+  
+---
+Mon Feb 25 09:47:51 CET 2013 - m...@suse.de
+  
+- added vmxFlavour-uefi and xenFlavour-uefi profiles to the
+  suse-SLE11-JeOS template image description. Given that
+  SLE11 SP3 is used these profiles can be used to build
+  UEFI images based on grub2
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.zPLHfY/_old  2013-03-01 07:23:44.0 +0100
+++ /var/tmp/diff_new_pack.zPLHfY/_new  2013-03-01 07:23:44.0 +0100
@@ -26,7 +26,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.04.53
+Version:5.04.56
 Release:0
 # requirements to build packages
 BuildRequires:  e2fsprogs

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2013-02-21 15:51:36.0 +0100
+++ new/kiwi/.revision  2013-02-21 15:51:36.0 +0100
@@ -1 +1 @@
-4111e7b900c8cdba3be23213c31ced08931c297b
+a3bdf56b57a7da45ec3c0b1a317ad7a197a1efa4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIBoot.pm new/kiwi/modules/KIWIBoot.pm
--- old/kiwi/modules/KIWIBoot.pm2013-02-21 15:51:36.0 +0100
+++ new/kiwi/modules/KIWIBoot.pm2013-02-27 23:54:12.0 +0100
@@ -904,13 +904,14 @@
my $base;
my $opts;
if ($bootloader eq grub2) {
-   # let mkisofs run grub2 eltorito image...
-   $base = -V \$volid\ -A \$appid\ ;
-   $base.= -R -J -f -b boot/grub2/i386-pc/eltorito.img 
-no-emul-boot ;
-   $base.= -boot-load-size 4 -boot-info-table -udf 
-allow-limited-size ;
+   # let mkisofs run grub2 efi or eltorito image...
+   $base = -V \$volid\ -A \$appid\ -R -J -f ;
if (($firmware eq efi) || ($firmware eq uefi)) {
-   $base.= -eltorito-alt-boot -b boot/$efi_arch/efi ;
-   $base.= -no-emul-boot ;
+   $base.= -b boot/$efi_arch/efi -no-emul-boot ;
+   } else {
+   $base.= -b boot/grub2/i386-pc/eltorito.img 
-no-emul-boot ;
+   $base.= -boot-load-size 4 -boot-info-table -udf ;
+   $base.= -allow-limited-size ;
}
$opts.= -joliet-long ;
} elsif ($bootloader eq grub) {
@@ -3326,8 +3327,8 @@
#==
# Stage files
#--
-   $stages{bios}{initrd}   = 'usr/lib/grub2/$grubpc/*';
-   $stages{bios}{stageSRC} = /usr/lib/grub2/$grubpc;
+   $stages{bios}{initrd}   = 'usr/lib/$grub/$grubpc/*';
+   $stages{bios}{stageSRC} = /usr/lib/$grub/$grubpc;
$stages{bios}{stageDST} = /boot/grub2/$grubpc;
if (($firmware eq efi) || ($firmware eq uefi)) {

commit ksh for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package ksh for openSUSE:Factory checked in 
at 2013-03-01 07:23:46

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


Package is ksh, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/ksh/ksh.changes  2013-02-17 17:04:18.0 
+0100
+++ /work/SRC/openSUSE:Factory/.ksh.new/ksh.changes 2013-03-01 
07:23:47.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 13:10:09 UTC 2013 - wer...@suse.de
+
+- Add patch ksh93-heredoclex.dif: substitution in here-document
+  results in syntax error (bnc#804998)
+
+---

New:

  ksh93-heredoclex.dif



Other differences:
--
++ ksh.spec ++
--- /var/tmp/diff_new_pack.nE4vvC/_old  2013-03-01 07:23:48.0 +0100
+++ /var/tmp/diff_new_pack.nE4vvC/_new  2013-03-01 07:23:48.0 +0100
@@ -122,6 +122,8 @@
 Patch30:ksh93-pathtemp.dif
 # PATCH-FIX-UPSTREAM ksh93-dttree-crash.dif [bnc#795324]
 Patch31:ksh93-dttree-crash.dif
+# PATCH-FIX-UPSTREAM ksh93-heredoclex.dif [bnc#804998]
+Patch32:ksh93-heredoclex.dif
 Patch42:ksh-locale.patch
 
 %description
@@ -207,6 +209,7 @@
 %patch29
 %patch30
 %patch31
+%patch32
 
 %build
   #

++ ksh93-heredoclex.dif ++
--- src/cmd/ksh93/sh/lex.c
+++ src/cmd/ksh93/sh/lex.c  2013-02-26 12:21:11.618820739 +0100
@@ -1559,6 +1559,7 @@ static int comsub(register Lex_t *lp, in
register intline=lp-sh-inlineno;
char *first,*cp=fcseek(0),word[5];
int off, messages=0, assignok=lp-assignok, csub;
+   struct ionod *inheredoc = lp-heredoc;
struct lexstate save;
save = lp-lex;
csub = lp-comsub;
@@ -1683,7 +1684,7 @@ done:
lp-lexd.dolparen--;
lp-lex = save;
lp-assignok = (endchar(lp)==RBRACT?assignok:0);
-   if(lp-heredoc)
+   if(lp-heredoc  !inheredoc)

errormsg(SH_DICT,ERROR_exit(SYNBAD),e_lexsyntax5,lp-sh-inlineno,lp-heredoc-ioname);
return(messages);
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libdc1394 for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libdc1394 for openSUSE:Factory 
checked in at 2013-03-01 07:24:05

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


Package is libdc1394, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libdc1394/libdc1394.changes  2012-03-11 
20:04:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.libdc1394.new/libdc1394.changes 2013-03-01 
07:24:06.0 +0100
@@ -1,0 +2,13 @@
+Tue Jan 29 14:27:01 UTC 2013 - matwey.korni...@gmail.com
+
+- Drop support of libdc1394-1 (which is unused for a long time)
+
+---
+Mon Jan 28 07:17:50 UTC 2013 - matwey.korni...@gmail.com
+
+- Update to 2.2.1
+   - updated all licenses to LPGL2 (bnc#777083)
+   - misc fixes
+   - don't expose internal symbols
+
+---

Old:

  libdc1394-1.2.2.tar.bz2
  libdc1394-2.2.0.tar.bz2
  libdc1394.raw1394_set_iso_handler.patch

New:

  libdc1394-2.2.1.tar.bz2



Other differences:
--
++ libdc1394.spec ++
--- /var/tmp/diff_new_pack.KJ0DXM/_old  2013-03-01 07:24:07.0 +0100
+++ /var/tmp/diff_new_pack.KJ0DXM/_new  2013-03-01 07:24:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libdc1394
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,12 +16,7 @@
 #
 
 
-# if Build_12 is equal to 0 don't build version 1.2.2
-%define Build_12 0
-
 Name:   libdc1394
-%define libdc1394_12_version 1.2.2
-%define libdc1394_version 2.2.0
 BuildRequires:  autoconf
 %if 0%{?suse_version}  1110
 BuildRequires:  libSDL-devel
@@ -38,21 +33,19 @@
 %if 0%{?suse_version} = 1210
 BuildRequires:  libv4l-devel = 0.8.4
 %endif
-Version:%{libdc1394_version}
+Version:2.2.1
 Release:0
 Summary:1394-Based Digital Camera Control Library
 License:LGPL-2.1+
 Group:  Hardware/Camera
 Url:http://sourceforge.net/projects/libdc1394/
-Source1:libdc1394-%{libdc1394_12_version}.tar.bz2
-Source2:libdc1394-%{libdc1394_version}.tar.bz2
-Source3:%{name}-rpmlintrc
+Source0:libdc1394-%{version}.tar.bz2
+Source1:%{name}-rpmlintrc
 Patch0: libdc1394.no-x11.patch
 Patch1: libdc1394.ac.patch
 Patch2: libdc1394-swab_fix.patch
-Patch3: libdc1394.raw1394_set_iso_handler.patch
-Patch4: libdc1394-v4l-2.6.38.patch
-Patch5: libdc1394-visibility.patch
+Patch3: libdc1394-v4l-2.6.38.patch
+Patch4: libdc1394-visibility.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -61,38 +54,6 @@
 the low-level functionality provided by libraw1394 to communicate with
 the camera.
 
-%if %{Build_12} = 1
-
-%package -n libdc1394_control12
-Version:%{libdc1394_12_version}
-Release:0
-Summary:1394-Based Digital Camera Control Library
-Group:  Hardware/Camera
-
-%description -n libdc1394_control12
-This library provides functionality for controlling any camera that
-conforms to the 1394-Based Digital Camera Specification (which can be
-found at 
http://www.1394ta.org/Download/Technology/Specifications/Camera120.pdf).
-It utilizes the low-level functionality provided by libraw1394 to
-communicate with the camera.
-
-%package -n libdc1394_control12-devel
-Version:%{libdc1394_12_version}
-Release:0
-Summary:1394-Based Digital Camera Control Library
-Group:  Development/Libraries/C and C++
-Requires:   libdc1394_control12 = %{libdc1394_12_version}
-Requires:   libraw1394-devel
-
-%description -n libdc1394_control12-devel
-This library provides functionality for controlling any camera that
-conforms to the 1394-Based Digital Camera Specification (which can be
-found at 
http://www.1394ta.org/Download/Technology/Specifications/Camera120.pdf).
-It utilizes the low-level functionality provided by libraw1394 to
-communicate with the camera.
-
-%endif
-
 %package 22
 Summary:1394-Based Digital Camera Control Library
 Group:  Hardware/Camera
@@ -107,8 +68,8 @@
 %package devel
 Summary:Development libraries and header files for dc1394
 Group:  Development/Libraries/C and C++
-Requires:   libdc1394 = %{libdc1394_version}
-Requires:   libdc1394-22 = %{libdc1394_version}
+Requires:   libdc1394 = %{version}
+Requires:   libdc1394-22 = %{version}
 

commit libdrm for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libdrm for openSUSE:Factory checked 
in at 2013-03-01 07:24:15

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


Package is libdrm, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libdrm/libdrm.changes2013-02-07 
10:33:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.libdrm.new/libdrm.changes   2013-03-01 
07:24:17.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 16:40:51 UTC 2013 - dmuel...@suse.com
+
+- disable valgrind support for aarch64 
+
+---



Other differences:
--
++ libdrm.spec ++
--- /var/tmp/diff_new_pack.66201u/_old  2013-03-01 07:24:18.0 +0100
+++ /var/tmp/diff_new_pack.66201u/_new  2013-03-01 07:24:18.0 +0100
@@ -47,7 +47,7 @@
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(pciaccess) = 0.10
 BuildRequires:  pkgconfig(pthread-stubs)
-%ifnarch armv5el armv5tel
+%ifnarch armv5el armv5tel aarch64
 BuildRequires:  pkgconfig(valgrind)
 %endif
 

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



commit libkdcraw for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libkdcraw for openSUSE:Factory 
checked in at 2013-03-01 07:24:29

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


Package is libkdcraw, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes  2013-02-04 
19:06:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.libkdcraw.new/libkdcraw.changes 2013-03-01 
07:24:30.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb 28 14:55:30 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Drop all unneeded BuildRequires
+- Add missing BuildRequires
+- Enable lcms2 and rawspeed codec support
+- Utilize includedir macro from kde4-filesystem
+
+---



Other differences:
--
++ libkdcraw.spec ++
--- /var/tmp/diff_new_pack.3yNsSV/_old  2013-03-01 07:24:30.0 +0100
+++ /var/tmp/diff_new_pack.3yNsSV/_new  2013-03-01 07:24:30.0 +0100
@@ -25,27 +25,15 @@
 Url:http://www.kde.org
 Source0:%{name}-%{version}.tar.xz
 Patch1: libraw-disable-mosaic-packs.patch
-BuildRequires:  OpenEXR-devel
-BuildRequires:  chmlib-devel
-BuildRequires:  fribidi-devel
-BuildRequires:  libdjvulibre-devel
-BuildRequires:  libepub-devel
-BuildRequires:  libexiv2-devel
-BuildRequires:  libgphoto2-devel
+BuildRequires:  libjasper-devel
+BuildRequires:  libjpeg-devel
 BuildRequires:  libkde4-devel
-BuildRequires:  libpoppler-qt4-devel
-BuildRequires:  libqca2-devel
-BuildRequires:  libqimageblitz-devel
+BuildRequires:  liblcms2-devel
 BuildRequires:  libraw-devel
-BuildRequires:  libsoprano-devel
-BuildRequires:  libspectre-devel
-BuildRequires:  net-snmp-devel
+BuildRequires:  openmpi-devel
 BuildRequires:  oxygen-icon-theme-large
-BuildRequires:  soprano-backend-redland
-BuildRequires:  texlive
-BuildRequires:  texlive-devel
-BuildRequires:  texlive-latex
 BuildRequires:  xz
+BuildRequires:  pkgconfig(libxml-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 
@@ -65,7 +53,7 @@
 rm -rf libraw/demosaic-pack-*
 
 %build
-  %cmake_kde4 -d build
+  %cmake_kde4 -d build -- -DENABLE_LCMS2=true -DENABLE_RAWSPEED=true
   %make_jobs
 
 %install
@@ -116,7 +104,7 @@
 %files devel
 %defattr(-,root,root)
 %doc COPYING README
-%{_includedir}/libkdcraw/
+%{_kde4_includedir}/libkdcraw/
 %_kde4_libdir/libkdcraw.so
 %_kde4_libdir/pkgconfig/libkdcraw.pc
 


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



commit libkipi for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libkipi for openSUSE:Factory checked 
in at 2013-03-01 07:24:58

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


Package is libkipi, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/libkipi/libkipi.changes  2013-02-04 
19:06:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.libkipi.new/libkipi.changes 2013-03-01 
07:24:59.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 14:35:21 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Drop all unneeded BuildRequires
+- Utilize includedir macro from kde4-filesystem
+
+---



Other differences:
--
++ libkipi.spec ++
--- /var/tmp/diff_new_pack.ledzDm/_old  2013-03-01 07:25:00.0 +0100
+++ /var/tmp/diff_new_pack.ledzDm/_new  2013-03-01 07:25:00.0 +0100
@@ -17,25 +17,8 @@
 
 
 Name:   libkipi
-BuildRequires:  OpenEXR-devel
-BuildRequires:  chmlib-devel
-BuildRequires:  fribidi-devel
-BuildRequires:  libdjvulibre-devel
-BuildRequires:  libepub-devel
-BuildRequires:  libexiv2-devel
-BuildRequires:  libgphoto2-devel
 BuildRequires:  libkde4-devel
-BuildRequires:  libpoppler-qt4-devel
-BuildRequires:  libqca2-devel
-BuildRequires:  libqimageblitz-devel
-BuildRequires:  libsoprano-devel
-BuildRequires:  libspectre-devel
-BuildRequires:  net-snmp-devel
 BuildRequires:  oxygen-icon-theme-large
-BuildRequires:  soprano-backend-redland
-BuildRequires:  texlive
-BuildRequires:  texlive-devel
-BuildRequires:  texlive-latex
 BuildRequires:  xz
 Summary:KDE Image Plugin Interface
 License:BSD-3-Clause and GPL-2.0+ and LGPL-2.1+ and MIT
@@ -102,7 +85,7 @@
 %defattr(-,root,root)
 %doc COPYING README
 %_kde4_libdir/libkipi.so
-/usr/include/libkipi/
+%_kde4_includedir/libkipi/
 %_kde4_libdir/pkgconfig/libkipi.pc
 
 %changelog


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



commit libkolabxml for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libkolabxml for openSUSE:Factory 
checked in at 2013-03-01 07:25:12

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


Package is libkolabxml, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libkolabxml/libkolabxml.changes  2013-01-17 
13:18:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.libkolabxml.new/libkolabxml.changes 
2013-03-01 07:25:13.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb 27 08:45:25 UTC 2013 - a...@ajaissle.de
+
+- New upstream version 0.8.3
+  * adds capabilities to read/write a new XML format
+- Update fix_php5_bindings.diff
+
+---

Old:

  libkolabxml-0.8.1.tar.gz

New:

  libkolabxml-0.8.3.tar.gz



Other differences:
--
++ libkolabxml.spec ++
--- /var/tmp/diff_new_pack.mwMkTy/_old  2013-03-01 07:25:14.0 +0100
+++ /var/tmp/diff_new_pack.mwMkTy/_new  2013-03-01 07:25:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libkolabxml
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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,7 +17,7 @@
 
 
 Name:   libkolabxml
-Version:0.8.1
+Version:0.8.3
 Release:0
 %define soname  0
 Summary:Kolab XML Format Schema Definitions Library

++ fix_php5_bindings.diff ++
--- /var/tmp/diff_new_pack.mwMkTy/_old  2013-03-01 07:25:14.0 +0100
+++ /var/tmp/diff_new_pack.mwMkTy/_new  2013-03-01 07:25:14.0 +0100
@@ -1,22 +1,22 @@
 src/php/CMakeLists.txt 2012-08-15 16:50:12.0 +0200
-+++ src/php/CMakeLists.txt 2012-12-24 01:04:29.812585496 +0100
-@@ -10,9 +10,8 @@
+--- src/php/CMakeLists.txt.orig2013-02-26 12:31:37.0 +0100
 src/php/CMakeLists.txt 2013-02-27 10:46:32.858763766 +0100
+@@ -10,8 +10,8 @@ add_custom_command(OUTPUT ${CMAKE_CURREN
  VERBATIM
  )
  
 -SET_SOURCE_FILES_PROPERTIES(${KOLAB_SWIG_PHP_SOURCE_FILE} PROPERTIES 
GENERATED 1)
 -ADD_CUSTOM_TARGET(generate_php_bindings ALL DEPENDS 
${KOLAB_SWIG_PHP_SOURCE_FILE})
--
 +set_source_files_properties(${KOLAB_SWIG_PHP_SOURCE_FILE} PROPERTIES 
GENERATED 1)
 +add_custom_target(generate_php_bindings ALL DEPENDS 
${KOLAB_SWIG_PHP_SOURCE_FILE})
  
+ 
  #Compile PHP Bindings
- # Since there is no php library we can't compile with -Wl,--no-undefined
-@@ -20,25 +19,54 @@
+@@ -19,35 +19,57 @@ ADD_CUSTOM_TARGET(generate_php_bindings
+ if (APPLE)
  set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -flat_namespace -undefined 
suppress )
  endif()
- 
--find_package(PHP4 5.3 REQUIRED)
++set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -Wno-unused-variable 
-Wno-unused-label -Wno-maybe-uninitialized -Wno-unused-function )
++
 +# Try to find PHP5
 +find_path(PHP_INCLUDE_DIR NAMES main/php.h PATH_SUFFIXES php php5)
 +find_program(PHP_EXECUTABLE NAMES php)
@@ -44,27 +44,7 @@
 +  if(_PHP_VERSION_ID_MATCH)
 +string(REGEX REPLACE #define PHP_VERSION_ID[ ]*([0-9]*)\n \\1 
PHP_VERSION_ID ${_PHP_VERSION_ID_MATCH})
 +  endif()
- 
--if (PHP4_FOUND)
--include_directories(${PHP4_INCLUDE_PATH})
--add_library(phpbindings SHARED ${KOLAB_SWIG_PHP_SOURCE_FILE})
--target_link_libraries(phpbindings kolabxml)
--SET_TARGET_PROPERTIES(phpbindings PROPERTIES OUTPUT_NAME kolabformat)
--SET_TARGET_PROPERTIES(phpbindings PROPERTIES PREFIX )
--
--configure_file(test.php ${CMAKE_CURRENT_BINARY_DIR} COPYONLY)
--
--set(PHP_INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/phpbindings CACHE 
STRING Install directory for php bindings.)
--
--install(TARGETS phpbindings LIBRARY DESTINATION ${PHP_INSTALL_DIR})
--
--install( FILES
--${CMAKE_CURRENT_BINARY_DIR}/kolabformat.php
--DESTINATION ${PHP_INSTALL_DIR}
--)
--else(PHP4_FOUND)
--message(WARNING not building php bindings because php was not found)
--endif (PHP4_FOUND)
++
 +  # Include the needed PHP5 subdirs
 +  set(PHP_INCLUDE_DIRS ${PHP_INCLUDE_DIR} ${PHP_INCLUDE_DIR}/main 
${PHP_INCLUDE_DIR}/TSRM ${PHP_INCLUDE_DIR}/Zend )
 +endif()
@@ -88,3 +68,35 @@
 +else()
 +  message(WARNING not building php bindings because php was not found)
 +endif()
+ 
+-# Debian (Wheezy) won't be able to find PHP using find_package. In packaging 
libkolabxml
+-# for it, we define the include path and executable during the build.
+-if (NOT PHP4_INCLUDE_PATH OR NOT PHP4_EXECUTABLE)
+-find_package(PHP4 5.3 REQUIRED)
+-endif (NOT PHP4_INCLUDE_PATH OR NOT PHP4_EXECUTABLE)
+-
+-if (PHP4_FOUND 

commit libksane for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libksane for openSUSE:Factory 
checked in at 2013-03-01 07:25:20

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


Package is libksane, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libksane/libksane.changes2013-02-04 
20:52:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.libksane.new/libksane.changes   2013-03-01 
07:25:22.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 14:56:59 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Drop all unneeded BuildRequires
+- Utilize includedir macro from kde4-filesystem 
+
+---



Other differences:
--
++ libksane.spec ++
--- /var/tmp/diff_new_pack.NX0Rz0/_old  2013-03-01 07:25:22.0 +0100
+++ /var/tmp/diff_new_pack.NX0Rz0/_new  2013-03-01 07:25:22.0 +0100
@@ -17,20 +17,8 @@
 
 
 Name:   libksane
-BuildRequires:  chmlib-devel
-BuildRequires:  fribidi-devel
-BuildRequires:  libdjvulibre-devel
-BuildRequires:  libepub-devel
-BuildRequires:  libexiv2-devel
-BuildRequires:  libgphoto2-devel
 BuildRequires:  libkde4-devel
-BuildRequires:  libpoppler-qt4-devel
-BuildRequires:  libqca2-devel
-BuildRequires:  libqimageblitz-devel
-BuildRequires:  libspectre-devel
 BuildRequires:  oxygen-icon-theme-large
-BuildRequires:  texlive-devel
-BuildRequires:  texlive-latex
 BuildRequires:  xz
 %if 0%{?suse_version}  1130
 BuildRequires:  sane-backends-devel
@@ -105,7 +93,7 @@
  
 %files devel
 %defattr(-,root,root)
-/usr/include/libksane/
+%_kde4_includedir/libksane/
 %_kde4_libdir/pkgconfig/libksane.pc
 %_kde4_libdir/libksane.so
 %_datadir/icons/hicolor/*/actions/*.png


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



commit libmemcache for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libmemcache for openSUSE:Factory 
checked in at 2013-03-01 07:25:30

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


Package is libmemcache, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libmemcache/libmemcache.changes  2012-02-16 
10:06:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmemcache.new/libmemcache.changes 
2013-03-01 07:25:32.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 06:04:53 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ libmemcache.spec ++
--- /var/tmp/diff_new_pack.bqNq0M/_old  2013-03-01 07:25:32.0 +0100
+++ /var/tmp/diff_new_pack.bqNq0M/_new  2013-03-01 07:25:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmemcache
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -30,7 +30,7 @@
 Patch2: libmemcache-1.4.0.rc2_preserve_cflags.patch
 #
 Summary:A client library for memcached
-License:BSD-3-Clause ; MIT
+License:BSD-3-Clause and MIT
 Group:  Development/Libraries/C and C++
 BuildRequires:  libtool
 

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



commit libstorage for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:Factory 
checked in at 2013-03-01 07:25:41

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


Package is libstorage, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libstorage/libstorage.changes2013-02-22 
16:53:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage.new/libstorage.changes   
2013-03-01 07:25:43.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 18:19:47 CET 2013 - f...@suse.de
+
+- version 2.23.8
+- fix handling of inactive raid devices (bnc#798275)
+
+---
@@ -13 +19 @@
-  /dev/mapper/dm
+  /dev/mapper/dm (bnc#805169)

Old:

  libstorage-2.23.7.tar.bz2

New:

  libstorage-2.23.8.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.qs5nFl/_old  2013-03-01 07:25:44.0 +0100
+++ /var/tmp/diff_new_pack.qs5nFl/_new  2013-03-01 07:25:44.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.23.7
+Version:2.23.8
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2

++ libstorage-2.23.7.tar.bz2 - libstorage-2.23.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/VERSION 
new/libstorage-2.23.8/VERSION
--- old/libstorage-2.23.7/VERSION   2013-02-21 16:25:43.0 +0100
+++ new/libstorage-2.23.8/VERSION   2013-02-28 15:36:33.0 +0100
@@ -1 +1 @@
-2.23.7
+2.23.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/bindings/python/libstorage.py 
new/libstorage-2.23.8/bindings/python/libstorage.py
--- old/libstorage-2.23.7/bindings/python/libstorage.py 2013-02-21 
19:20:06.0 +0100
+++ new/libstorage-2.23.8/bindings/python/libstorage.py 2013-02-28 
15:44:59.0 +0100
@@ -856,6 +856,9 @@
 __swig_setmethods__[spares] = _libstorage.MdInfo_spares_set
 __swig_getmethods__[spares] = _libstorage.MdInfo_spares_get
 if _newclass:spares = _swig_property(_libstorage.MdInfo_spares_get, 
_libstorage.MdInfo_spares_set)
+__swig_setmethods__[inactive] = _libstorage.MdInfo_inactive_set
+__swig_getmethods__[inactive] = _libstorage.MdInfo_inactive_get
+if _newclass:inactive = _swig_property(_libstorage.MdInfo_inactive_get, 
_libstorage.MdInfo_inactive_set)
 __swig_destroy__ = _libstorage.delete_MdInfo
 __del__ = lambda self : None;
 MdInfo_swigregister = _libstorage.MdInfo_swigregister
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/storage/Md.cc 
new/libstorage-2.23.8/storage/Md.cc
--- old/libstorage-2.23.7/storage/Md.cc 2013-01-22 11:28:07.0 +0100
+++ new/libstorage-2.23.8/storage/Md.cc 2013-02-27 18:26:33.0 +0100
@@ -43,7 +43,7 @@
 Md::Md(const MdCo c, const string name, const string device, MdType 
Type,
   const liststring devices, const liststring spares)
: Volume(c, name, device), md_type(Type), md_parity(PAR_DEFAULT), 
chunk_k(0),
- sb_ver(01.00.00), destrSb(false), devs(devices), spare(spares), 
has_container(false)
+ sb_ver(01.00.00), destrSb(false), devs(devices), spare(spares), 
has_container(false), inactive(false)
 {
y2deb(constructed Md   dev   on   cont-device());
 
@@ -61,7 +61,7 @@
 
 Md::Md(const MdCo c, const string name, const string device, 
SystemInfo systeminfo)
: Volume(c, name, device, systeminfo), md_type(RAID_UNK), 
md_parity(PAR_DEFAULT),
- chunk_k(0), sb_ver(01.00.00), destrSb(false), has_container(false)
+ chunk_k(0), sb_ver(01.00.00), destrSb(false), has_container(false), 
inactive(false)
 {
y2deb(constructed Md   device   on   cont-device());
 
@@ -86,6 +86,8 @@
devs = entry.devices;
spare = entry.spares;
 
+   inactive = entry.inactive;
+
if (entry.readonly)
setReadonly();
 
@@ -130,7 +132,8 @@
  chunk_k(v.chunk_k), md_uuid(v.md_uuid), md_name(v.md_name),
  sb_ver(v.sb_ver), destrSb(v.destrSb), devs(v.devs), spare(v.spare),
  udev_id(udev_id),
- has_container(v.has_container), parent_container(v.parent_container),
+ has_container(v.has_container), inactive(v.inactive),
+ parent_container(v.parent_container),
  parent_uuid(v.parent_uuid), parent_md_name(v.parent_md_name),
  parent_metadata(v.parent_metadata), parent_member(v.parent_member)
 {
@@ -543,6 +546,7 @@
 info.sb_ver = 

commit libstorage for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:12.3 checked 
in at 2013-03-01 07:25:45

Comparing /work/SRC/openSUSE:12.3/libstorage (Old)
 and  /work/SRC/openSUSE:12.3/.libstorage.new (New)


Package is libstorage, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/libstorage/libstorage.changes   2013-02-22 
16:53:56.0 +0100
+++ /work/SRC/openSUSE:12.3/.libstorage.new/libstorage.changes  2013-03-01 
07:25:46.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 18:19:47 CET 2013 - f...@suse.de
+
+- version 2.23.8
+- fix handling of inactive raid devices (bnc#798275)
+
+---
@@ -13 +19 @@
-  /dev/mapper/dm
+  /dev/mapper/dm (bnc#805169)

Old:

  libstorage-2.23.7.tar.bz2

New:

  libstorage-2.23.8.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.XV5svc/_old  2013-03-01 07:25:46.0 +0100
+++ /var/tmp/diff_new_pack.XV5svc/_new  2013-03-01 07:25:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.23.7
+Version:2.23.8
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2

++ libstorage-2.23.7.tar.bz2 - libstorage-2.23.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/VERSION 
new/libstorage-2.23.8/VERSION
--- old/libstorage-2.23.7/VERSION   2013-02-21 16:25:43.0 +0100
+++ new/libstorage-2.23.8/VERSION   2013-02-28 15:36:33.0 +0100
@@ -1 +1 @@
-2.23.7
+2.23.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/bindings/python/libstorage.py 
new/libstorage-2.23.8/bindings/python/libstorage.py
--- old/libstorage-2.23.7/bindings/python/libstorage.py 2013-02-21 
19:20:06.0 +0100
+++ new/libstorage-2.23.8/bindings/python/libstorage.py 2013-02-28 
15:44:59.0 +0100
@@ -856,6 +856,9 @@
 __swig_setmethods__[spares] = _libstorage.MdInfo_spares_set
 __swig_getmethods__[spares] = _libstorage.MdInfo_spares_get
 if _newclass:spares = _swig_property(_libstorage.MdInfo_spares_get, 
_libstorage.MdInfo_spares_set)
+__swig_setmethods__[inactive] = _libstorage.MdInfo_inactive_set
+__swig_getmethods__[inactive] = _libstorage.MdInfo_inactive_get
+if _newclass:inactive = _swig_property(_libstorage.MdInfo_inactive_get, 
_libstorage.MdInfo_inactive_set)
 __swig_destroy__ = _libstorage.delete_MdInfo
 __del__ = lambda self : None;
 MdInfo_swigregister = _libstorage.MdInfo_swigregister
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.7/storage/Md.cc 
new/libstorage-2.23.8/storage/Md.cc
--- old/libstorage-2.23.7/storage/Md.cc 2013-01-22 11:28:07.0 +0100
+++ new/libstorage-2.23.8/storage/Md.cc 2013-02-27 18:26:33.0 +0100
@@ -43,7 +43,7 @@
 Md::Md(const MdCo c, const string name, const string device, MdType 
Type,
   const liststring devices, const liststring spares)
: Volume(c, name, device), md_type(Type), md_parity(PAR_DEFAULT), 
chunk_k(0),
- sb_ver(01.00.00), destrSb(false), devs(devices), spare(spares), 
has_container(false)
+ sb_ver(01.00.00), destrSb(false), devs(devices), spare(spares), 
has_container(false), inactive(false)
 {
y2deb(constructed Md   dev   on   cont-device());
 
@@ -61,7 +61,7 @@
 
 Md::Md(const MdCo c, const string name, const string device, 
SystemInfo systeminfo)
: Volume(c, name, device, systeminfo), md_type(RAID_UNK), 
md_parity(PAR_DEFAULT),
- chunk_k(0), sb_ver(01.00.00), destrSb(false), has_container(false)
+ chunk_k(0), sb_ver(01.00.00), destrSb(false), has_container(false), 
inactive(false)
 {
y2deb(constructed Md   device   on   cont-device());
 
@@ -86,6 +86,8 @@
devs = entry.devices;
spare = entry.spares;
 
+   inactive = entry.inactive;
+
if (entry.readonly)
setReadonly();
 
@@ -130,7 +132,8 @@
  chunk_k(v.chunk_k), md_uuid(v.md_uuid), md_name(v.md_name),
  sb_ver(v.sb_ver), destrSb(v.destrSb), devs(v.devs), spare(v.spare),
  udev_id(udev_id),
- has_container(v.has_container), parent_container(v.parent_container),
+ has_container(v.has_container), inactive(v.inactive),
+ parent_container(v.parent_container),
  parent_uuid(v.parent_uuid), parent_md_name(v.parent_md_name),
  parent_metadata(v.parent_metadata), parent_member(v.parent_member)
 {
@@ -543,6 +546,7 @@
 info.sb_ver = sb_ver;
 

commit libX11 for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libX11 for openSUSE:Factory checked 
in at 2013-03-01 07:26:13

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


Package is libX11, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libX11/libX11.changes2012-06-06 
16:08:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.libX11.new/libX11.changes   2013-03-01 
07:26:14.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 15:04:09 UTC 2013 - m...@suse.com
+
+- Fix typo in rpm metadata (%versino - %version)
+
+---



Other differences:
--
++ libX11.spec ++
--- /var/tmp/diff_new_pack.IP3scv/_old  2013-03-01 07:26:15.0 +0100
+++ /var/tmp/diff_new_pack.IP3scv/_new  2013-03-01 07:26:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libX11
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -77,7 +77,7 @@
 Requires:   %name-data = %version
 # O/P added for 12.2. Ideally remove before 12.2 release.
 Provides:   xorg-x11-libX11 = 7.6_%version-%release
-Obsoletes:  xorg-x11-libX11  7.6_%versino-%release
+Obsoletes:  xorg-x11-libX11  7.6_%version-%release
 
 %description -n libX11-6
 The X Window System is a network-transparent window system that was

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



commit libX11 for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libX11 for openSUSE:12.3 checked in 
at 2013-03-01 07:26:16

Comparing /work/SRC/openSUSE:12.3/libX11 (Old)
 and  /work/SRC/openSUSE:12.3/.libX11.new (New)


Package is libX11, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/libX11/libX11.changes   2013-01-31 
01:23:32.0 +0100
+++ /work/SRC/openSUSE:12.3/.libX11.new/libX11.changes  2013-03-01 
07:26:17.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 15:04:09 UTC 2013 - m...@suse.com
+
+- Fix typo in rpm metadata (%versino - %version)
+
+---



Other differences:
--
++ libX11.spec ++
--- /var/tmp/diff_new_pack.DR6PUK/_old  2013-03-01 07:26:18.0 +0100
+++ /var/tmp/diff_new_pack.DR6PUK/_new  2013-03-01 07:26:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libX11
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -77,7 +77,7 @@
 Requires:   %name-data = %version
 # O/P added for 12.2. Ideally remove before 12.2 release.
 Provides:   xorg-x11-libX11 = 7.6_%version-%release
-Obsoletes:  xorg-x11-libX11  7.6_%versino-%release
+Obsoletes:  xorg-x11-libX11  7.6_%version-%release
 
 %description -n libX11-6
 The X Window System is a network-transparent window system that was

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



commit libzio for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libzio for openSUSE:Factory checked 
in at 2013-03-01 07:26:39

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


Package is libzio, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libzio/libzio.changes2012-10-26 
07:58:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzio.new/libzio.changes   2013-03-01 
07:26:41.0 +0100
@@ -1,0 +2,11 @@
+Tue Feb 26 16:41:39 UTC 2013 - wer...@suse.de
+
+- Add patch libzio-1.00.dif: fix seeking cookie functions (related
+  to bnc#805149) that is handle fseek() correct for bzip2 and lzma/xz
+
+---
+Mon Jan  7 21:32:08 UTC 2013 - jeng...@inai.de
+
+- Specify a BuildRoot, which is mandatory for old RPM (like SLE)
+
+---

New:

  libzio-1.00.dif



Other differences:
--
++ libzio.spec ++
--- /var/tmp/diff_new_pack.phXXNt/_old  2013-03-01 07:26:41.0 +0100
+++ /var/tmp/diff_new_pack.phXXNt/_new  2013-03-01 07:26:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libzio
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -26,6 +26,8 @@
 Url:http://libzio.sourceforge.net/
 Source: libzio-%{version}.tar.bz2
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM: handle fseek() correct for bzip2 and lzma/xz
+Patch0: libzio-1.00.dif
 BuildRequires:  libbz2-devel
 BuildRequires:  zlib-devel
 %if %suse_version = 1110
@@ -39,7 +41,7 @@
 %ifarch ppc64
 Obsoletes:  libzio-64bit
 %endif
-#
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Libzio provides a wrapper function for reading or writing gzip or bzip2
@@ -85,6 +87,7 @@
 
 %prep
 %setup -q
+%patch0
 
 %build
 make %{?_smp_mflags} noweak

++ libzio-1.00.dif ++
--- zio.c
+++ zio.c   2013-02-26 16:40:47.165444637 +
@@ -42,6 +42,7 @@ static zio_int_t zseek(void *cookie, zio
errno = EINVAL;
return -1;
 }
+off_t offset = (off_t)*poffset;
 return (zio_int_t)gzseek((gzFile)cookie, (z_off_t)(*poffset), whence);
 }
 
@@ -74,8 +75,9 @@ static cookie_io_functions_t ioz = {
 # endif
 
 typedef struct bzfile_s {
-size_t total_out;
+size_t position;
 BZFILE *file;
+FILE *stdio;
 char *mode;
 char *path;
 int fd;
@@ -90,7 +92,7 @@ static ssize_t   bzread(void *cookie, ch
 if (bzf-file)
len = (ssize_t)BZ2_bzread(bzf-file, (void*)buf, count);
 if (len  0)
-   bzf-total_out += len;
+   bzf-position += len;
 out:
 if (len  0)
errno = EINVAL;
@@ -104,9 +106,9 @@ static ssize_t   bzwrite(void *cookie, c
 if (!bzf)
goto out;
 if (bzf-file)
-   len = (ssize_t)BZ2_bzread(bzf-file, (void*)buf, count);
+   len = (ssize_t)BZ2_bzwrite(bzf-file, (void*)buf, count);
 if (len  0)
-   bzf-total_out += len;
+   bzf-position += len;
 out:
 if (len  0)
errno = EINVAL;
@@ -116,24 +118,29 @@ out:
 static zio_int_t bzseek(void *cookie, zio_off_t *poffset, int whence)
 {
 bzfile_t *bzf = (bzfile_t*)cookie;
-off_t offset = (off_t)*poffset;
-off_t oldpos, newpos;
+off_t offset, curpos, newpos;
 if (!bzf) {
errno = EINVAL;
return -1;
 }
 
-oldpos = (off_t)bzf-total_out;
+offset = (off_t)*poffset;
+curpos = (off_t)bzf-position;
+
 switch (whence) {
 case SEEK_SET:
-   if (offset  0)
+   if (offset  0) {
+   errno = EINVAL;
return -1;
+   }
newpos = offset;
break;
 case SEEK_CUR:
-   if ((offset  0  (off_t)(-1 * offset)  oldpos) || (offset  0  
(offset+oldpos)  oldpos))
+   if ((offset  0  (off_t)(-1 * offset)  curpos) || (offset  0  
(offset+curpos)  curpos)) {
+   errno = EINVAL;
return -1;
-   newpos = (off_t)bzf-total_out + offset;
+   }
+   newpos = curpos + offset;
break;
 case SEEK_END:
newpos = -1;
@@ -143,7 +150,7 @@ static zio_int_t bzseek(void *cookie, zi
return -1;
 }
 
-if (whence != SEEK_END  newpos  oldpos) {
+if (whence != SEEK_END  newpos  curpos) {
int status = BZ2_bzflush(bzf-file);
BZ2_bzclose(bzf-file);
if (status  0) {
@@ -163,27 +170,36 @@ static zio_int_t bzseek(void *cookie, zi
errno = EINVAL;
return -1;
}
-   

commit libzypp for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2013-03-01 07:27:04

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


Package is libzypp, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2013-02-15 
18:45:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2013-03-01 
07:27:06.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 08:41:18 CET 2013 - m...@suse.de
+
+- Rephrase error message if 'lsof' is not installed (bnc#694427)
+- version 12.9.0 (0)
+
+---

Old:

  libzypp-12.8.1.tar.bz2

New:

  libzypp-12.9.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.dLXN3P/_old  2013-03-01 07:27:08.0 +0100
+++ /var/tmp/diff_new_pack.dLXN3P/_new  2013-03-01 07:27:08.0 +0100
@@ -24,7 +24,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:12.8.1
+Version:12.9.0
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ libzypp-12.8.1.tar.bz2 - libzypp-12.9.0.tar.bz2 ++
 1668 lines of diff (skipped)

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



commit libzypp for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:12.3 checked in 
at 2013-03-01 07:27:08

Comparing /work/SRC/openSUSE:12.3/libzypp (Old)
 and  /work/SRC/openSUSE:12.3/.libzypp.new (New)


Package is libzypp, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/libzypp/libzypp.changes 2013-02-15 
18:45:57.0 +0100
+++ /work/SRC/openSUSE:12.3/.libzypp.new/libzypp.changes2013-03-01 
07:27:10.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 08:41:18 CET 2013 - m...@suse.de
+
+- Rephrase error message if 'lsof' is not installed (bnc#694427)
+- version 12.9.0 (0)
+
+---

Old:

  libzypp-12.8.1.tar.bz2

New:

  libzypp-12.9.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.nmyQzK/_old  2013-03-01 07:27:10.0 +0100
+++ /var/tmp/diff_new_pack.nmyQzK/_new  2013-03-01 07:27:10.0 +0100
@@ -24,7 +24,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:12.8.1
+Version:12.9.0
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ libzypp-12.8.1.tar.bz2 - libzypp-12.9.0.tar.bz2 ++
 1668 lines of diff (skipped)

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



commit lxc for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package lxc for openSUSE:Factory checked in 
at 2013-03-01 07:27:20

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


Package is lxc, Maintainer is jsl...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lxc/lxc.changes  2013-02-26 15:18:15.0 
+0100
+++ /work/SRC/openSUSE:Factory/.lxc.new/lxc.changes 2013-03-01 
07:27:21.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 26 14:33:41 UTC 2013 - mvysko...@suse.com
+
+- clean cache if a distro version in template does not match
+  with files in a cache (bnc#804435#c19)
+
+---



Other differences:
--
++ lxc-opensuse-12.3.patch ++
--- /var/tmp/diff_new_pack.m0HFFS/_old  2013-03-01 07:27:22.0 +0100
+++ /var/tmp/diff_new_pack.m0HFFS/_new  2013-03-01 07:27:22.0 +0100
@@ -72,3 +72,19 @@
  
  Ignore: rpm:suse-build-key,build-key
  Ignore: systemd:systemd-presets-branding
+@@ -208,6 +218,15 @@ install_opensuse()
+ 
+   arch=$(arch)
+ 
++if [[ -f $cache/rootfs-$arch/etc/os-release ]]; then
++source $cache/rootfs-$arch/etc/os-release
++if [[ ${DISTRO} != ${VERSION_ID} ]]; then
++echo openSUSE version in template don't match with cached 
system
++echo Cleaning cache ...
++rm -rf $cache/rootfs-$arch
++fi
++fi
++
+   echo Checking cache download in $cache/rootfs-$arch ... 
+   if [ ! -e $cache/rootfs-$arch ]; then
+   download_opensuse $cache $arch

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



commit lxc for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package lxc for openSUSE:12.3 checked in at 
2013-03-01 07:27:23

Comparing /work/SRC/openSUSE:12.3/lxc (Old)
 and  /work/SRC/openSUSE:12.3/.lxc.new (New)


Package is lxc, Maintainer is jsl...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/lxc/lxc.changes 2013-02-26 15:18:20.0 
+0100
+++ /work/SRC/openSUSE:12.3/.lxc.new/lxc.changes2013-03-01 
07:27:29.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 26 14:33:41 UTC 2013 - mvysko...@suse.com
+
+- clean cache if a distro version in template does not match
+  with files in a cache (bnc#804435#c19)
+
+---



Other differences:
--
++ lxc-opensuse-12.3.patch ++
--- /var/tmp/diff_new_pack.ugpTO3/_old  2013-03-01 07:27:29.0 +0100
+++ /var/tmp/diff_new_pack.ugpTO3/_new  2013-03-01 07:27:29.0 +0100
@@ -72,3 +72,19 @@
  
  Ignore: rpm:suse-build-key,build-key
  Ignore: systemd:systemd-presets-branding
+@@ -208,6 +218,15 @@ install_opensuse()
+ 
+   arch=$(arch)
+ 
++if [[ -f $cache/rootfs-$arch/etc/os-release ]]; then
++source $cache/rootfs-$arch/etc/os-release
++if [[ ${DISTRO} != ${VERSION_ID} ]]; then
++echo openSUSE version in template don't match with cached 
system
++echo Cleaning cache ...
++rm -rf $cache/rootfs-$arch
++fi
++fi
++
+   echo Checking cache download in $cache/rootfs-$arch ... 
+   if [ ! -e $cache/rootfs-$arch ]; then
+   download_opensuse $cache $arch

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



commit mdadm for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package mdadm for openSUSE:Factory checked 
in at 2013-03-01 07:27:36

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


Package is mdadm, Maintainer is nfbr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mdadm/mdadm.changes  2012-11-06 
16:12:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.mdadm.new/mdadm.changes 2013-03-01 
07:27:37.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 27 08:14:49 UTC 2013 - cfarr...@suse.com
+
+- license update: GPL-2.0
+  mdadm/Software-RAID.HOWTO.tar.bz2
+
+---



Other differences:
--
++ mdadm.spec ++
--- /var/tmp/diff_new_pack.Wj617w/_old  2013-03-01 07:27:38.0 +0100
+++ /var/tmp/diff_new_pack.Wj617w/_new  2013-03-01 07:27:38.0 +0100
@@ -30,7 +30,7 @@
 Obsoletes:  raidtools
 Url:http://www.kernel.org/pub/linux/utils/raid/mdadm/
 Summary:Utility for Configuring MD Setup
-License:GPL-2.0+
+License:GPL-2.0
 Group:  System/Base
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: %{name}-%{version}.tar.bz2

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



commit Mesa for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2013-03-01 07:35:03

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


Package is Mesa, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2013-02-22 
16:55:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2013-03-01 
07:35:04.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 26 23:23:46 UTC 2013 - stefan.bru...@rwth-aachen.de
+
+- fix_glx_indirect_reply_bfo#59876.diff
+  * GLX replies are parsed incorrectly when using libxcb and AIGLX,
+happens for most replies where data is embedded in the header.
+(bfo#59876, bnc#802718) 
+
+---

New:

  U_glx-fix-glGetTexLevelParameteriv-for-indirect-render.patch



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.AAiP8U/_old  2013-03-01 07:35:05.0 +0100
+++ /var/tmp/diff_new_pack.AAiP8U/_new  2013-03-01 07:35:05.0 +0100
@@ -98,6 +98,8 @@
 Patch14:u_remove-os-abi-tag.patch
 # Patch from Fedora, use shmget when available, under llvmpipe
 Patch16:u_mesa-8.0-llvmpipe-shmget.patch
+# bnc#802718, bfo#59876: GLX replies are parsed incorrectly when using libxcb 
and AIGLX
+Patch18:U_glx-fix-glGetTexLevelParameteriv-for-indirect-render.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -509,6 +511,7 @@
 %patch16 -p1
 %patch13 -p1
 %patch14 -p1
+%patch18 -p1
 
 %build
 

++ U_glx-fix-glGetTexLevelParameteriv-for-indirect-render.patch ++
From c41ba5bda9bf7b9c818b5a5ca503afedabad57bd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= stefan.bru...@rwth-aachen.de
Date: Tue, 5 Feb 2013 17:29:20 +0100
Subject: [PATCH] glx: fix glGetTexLevelParameteriv for indirect rendering
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

A single element in a GLX reply is contained in the header itself.
The number of elements is denoted in the n field of the reply.
If n is 1, the length of additional data is 0.
The XXX_data_length() function of xcb does not return the length of
the (optional, n1) data but the number of elements.

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=59876

Note: This is a candidate for the stable branches.

Signed-off-by: Stefan Brüns stefan.bru...@rwth-aachen.de
Signed-off-by: Brian Paul bri...@vmware.com
Reviewed-by: Ian Romanick ian.d.roman...@intel.com
(cherry picked from commit 5876a5dbc0a6ec9ae7f44b5e483d38ae0d24a259)
---
 src/mapi/glapi/gen/glX_proto_send.py |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/mapi/glapi/gen/glX_proto_send.py 
b/src/mapi/glapi/gen/glX_proto_send.py
index fbc0dd3..f4d519f 100644
--- a/src/mapi/glapi/gen/glX_proto_send.py
+++ b/src/mapi/glapi/gen/glX_proto_send.py
@@ -700,7 +700,9 @@ generic_%u_byte( GLint rop, const void * ptr )
if f.reply_always_array:
print '
(void)memcpy(%s, %s_data(reply), %s_data_length(reply) * sizeof(%s));' % 
(output.name, xcb_name, xcb_name, output.get_base_type_string())
else:
-   print 'if 
(%s_data_length(reply) == 0)' % (xcb_name)
+   print '/* the 
XXX_data_length() xcb function name is misleading, it returns the number */'
+   print '/* of 
elements, not the length of the data part. A single element is embedded. */'
+   print 'if 
(%s_data_length(reply) == 1)' % (xcb_name)
print '
(void)memcpy(%s, reply-datum, sizeof(reply-datum));' % (output.name)
print 'else'
print '
(void)memcpy(%s, %s_data(reply), %s_data_length(reply) * sizeof(%s));' % 
(output.name, xcb_name, xcb_name, output.get_base_type_string())
-- 
1.7.10.4

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



commit Mesa for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:12.3 checked in at 
2013-03-01 07:35:07

Comparing /work/SRC/openSUSE:12.3/Mesa (Old)
 and  /work/SRC/openSUSE:12.3/.Mesa.new (New)


Package is Mesa, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/Mesa/Mesa.changes   2013-01-31 01:11:27.0 
+0100
+++ /work/SRC/openSUSE:12.3/.Mesa.new/Mesa.changes  2013-03-01 
07:35:08.0 +0100
@@ -1,0 +2,47 @@
+Tue Feb 26 23:23:46 UTC 2013 - stefan.bru...@rwth-aachen.de
+
+- fix_glx_indirect_reply_bfo#59876.diff
+  * GLX replies are parsed incorrectly when using libxcb and AIGLX,
+happens for most replies where data is embedded in the header.
+(bfo#59876, bnc#802718) 
+
+---
+Thu Feb 21 23:23:22 UTC 2013 - hrvoje.sen...@gmail.com
+
+- update to Mesa 9.0.3: a bugfix release
+ * Pink artifacts on objects in the distance in ETQW/Quake 4 
+   (fdo#25201)
+ * configure: Doesn't check for python libxml2 (fdo#31598)
+ * [softpipe] piglit glsl-max-varyings regression (fdo#40404)
+ * [bisected] Oglc pxconv-gettex(basic.allCases) regressed (fdo#47220)
+ * [bisected i965]Oglc shad-compiler(advanced.TestLessThani) 
+   regressed(fdo#48629)
+ * [swrast] piglit fbo-generatemipmap-filtering regression 
+   (fdo#54240)
+ * [sandybridge][uxa] graphics very glitchy and always flickering 
+   (fdo#56920)
+ * [GM45] Chrome experiment Stars crash: brw_fs_emit.cpp:708:
+   brw_reg brw_reg_from_fs_reg(fs_reg*): Assertion „!not reached“ 
+   failed. (fdo#57166)
+ * build test failure: nouveau_fbo.c:198:3: error: too few arguments to 
+   function 'nouveau_renderbuffer_del' (fdo#57746)
+ * [swrast] Mesa 9.1-devel implementation error: Unable to 
+   delete renderbuffer, no context (fdo#57754)
+ * [IVB] Graphical glitches in 0 A.D (fdo#58680)
+ * [softpipe] util/u_tile.c:795:pipe_put_tile_z: Assertion `0' failed. 
+   (fdo#58972)
+ * [bisected] Mesa build fails: clientattrib.c:33:22: fatal error: indirect.h: 
+   No such file or directory (fdo#59364)
+ * [ILK/SNB/IVB Bisected]Oglc vertexshader(advanced.TestLightsTwoSided) 
+   causes GPU hung (fdo#59700)
+ * [swrast] piglit ext_framebuffer_multisample-interpolation 0 
+   centroid-edges regression (fdo#59873)
+ * [Bisected]Piglit glx_extension_string_sanity fail (fdo#60052)
+ * Planeshift: triangles where grass would be (fdo#60172)
+
+---
+Mon Feb  4 13:37:01 UTC 2013 - d...@suse.com
+
+- enable build of subpackage libwayland-egl1
+
+---

Old:

  MesaLib-9.0.2.tar.bz2

New:

  MesaLib-9.0.3.tar.bz2
  U_glx-fix-glGetTexLevelParameteriv-for-indirect-render.patch



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.Y2yB82/_old  2013-03-01 07:35:09.0 +0100
+++ /var/tmp/diff_new_pack.Y2yB82/_new  2013-03-01 07:35:09.0 +0100
@@ -17,11 +17,11 @@
 
 
 %define glamor 1
-%define _version 9.0.2
+%define _version 9.0.3
 %define _name_archive MesaLib
 
 Name:   Mesa
-Version:9.0.2
+Version:9.0.3
 Release:0
 BuildRequires:  autoconf = 2.60
 BuildRequires:  automake
@@ -36,16 +36,20 @@
 BuildRequires:  pkgconfig
 BuildRequires:  python-base
 BuildRequires:  xorg-x11-util-devel
-BuildRequires:  pkgconfig(dri2proto) = 2.1
-BuildRequires:  pkgconfig(glproto) = 1.4.11
+BuildRequires:  pkgconfig(dri2proto) = 2.6
+BuildRequires:  pkgconfig(glproto) = 1.4.14
 BuildRequires:  pkgconfig(libdrm) = 2.4.24
 %ifarch x86_64 %ix86
-BuildRequires:  pkgconfig(libdrm_intel) = 2.4.24
+BuildRequires:  pkgconfig(libdrm_intel) = 2.4.34
 %endif
-BuildRequires:  pkgconfig(libdrm_nouveau) = 0.6
-BuildRequires:  pkgconfig(libdrm_radeon) = 2.4.24
-BuildRequires:  pkgconfig(libkms)
+BuildRequires:  pkgconfig(libdrm_nouveau) = 2.4.3
+BuildRequires:  pkgconfig(libdrm_radeon) = 2.4.31
+BuildRequires:  pkgconfig(libkms) = 1.0.0
 BuildRequires:  pkgconfig(libudev)  150
+%if 0%{?suse_version} = 1230
+BuildRequires:  pkgconfig(wayland-client)
+BuildRequires:  pkgconfig(wayland-server)
+%endif
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(x11-xcb)
 BuildRequires:  pkgconfig(xcb-dri2)
@@ -94,6 +98,8 @@
 Patch14:u_remove-os-abi-tag.patch
 # Patch from Fedora, use shmget when available, under llvmpipe
 Patch16:u_mesa-8.0-llvmpipe-shmget.patch
+# bnc#802718, bfo#59876: GLX replies are parsed incorrectly when using libxcb 
and AIGLX
+Patch18:U_glx-fix-glGetTexLevelParameteriv-for-indirect-render.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -362,6 +368,31 @@
 This package provides the development 

commit NetworkManager for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2013-03-01 07:36:12

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


Package is NetworkManager, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes
2013-01-30 09:34:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new/NetworkManager.changes   
2013-03-01 07:36:13.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 18:58:07 UTC 2013 - m...@suse.com
+
+- Added migration hook enabling NetworkManager.service on update
+  from openSUSE  12.3 and NETWORKMANAGER=yes setting (bnc#803058).
+
+---



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.oLg9i8/_old  2013-03-01 07:36:15.0 +0100
+++ /var/tmp/diff_new_pack.oLg9i8/_new  2013-03-01 07:36:15.0 +0100
@@ -82,7 +82,7 @@
 Requires:   iputils
 Requires:   mozilla-nss
 Requires:   ppp
-Requires:   sysconfig = 0.80.0
+Requires:   sysconfig = 0.80.5
 Requires:   wpa_supplicant = 0.6.4
 %{?systemd_requires}
 Provides:   dhcdbd = 1.14
@@ -249,6 +249,31 @@
 
 %post
 %service_add_post NetworkManager.service
+# bnc#803058:
+# sysconfig creates this file while update from openSUSE  12.3,
+# which were using the NETWORKMANAGER=yes/no sysconfig variable.
+# When it exists and NETWORKMANAGER were enabled, force enable to
+# ensure, the network.service alias link exists points to us.
+if [ -f /dev/.sysconfig/network/migrate_nm_variable ] ; then
+   . /dev/.sysconfig/network/migrate_nm_variable
+   if [ X$NETWORKMANAGER = Xyes ] ; then
+   # In running system --force enable is sufficient to
+   # create the network.service alias link regardless if
+   # the network.service is masked or not.
+   # While 12.2 - 12.3 dist update, enable seems to be
+   # unable to create the alias... no idea why. Kick it
+   rm -f /etc/systemd/system/network.service
+   /usr/bin/systemctl --system daemon-reload || :
+   /usr/bin/systemctl --force enable NetworkManager.service || :
+   # and create the alias when enable failed to make it.
+   if [ ! -e /etc/systemd/system/network.service ] ; then
+   ln -sf  %{_unitdir}/NetworkManager.service \
+   /etc/systemd/system/network.service
+   fi
+   /usr/bin/systemctl --system daemon-reload || :
+   fi
+   rm -f /dev/.sysconfig/network/migrate_nm_variable
+fi
 
 %preun
 %service_del_preun NetworkManager.service


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



commit NetworkManager for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:12.3 
checked in at 2013-03-01 07:36:16

Comparing /work/SRC/openSUSE:12.3/NetworkManager (Old)
 and  /work/SRC/openSUSE:12.3/.NetworkManager.new (New)


Package is NetworkManager, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.3/NetworkManager/NetworkManager.changes   
2013-01-31 01:11:39.0 +0100
+++ /work/SRC/openSUSE:12.3/.NetworkManager.new/NetworkManager.changes  
2013-03-01 07:36:18.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 18:58:07 UTC 2013 - m...@suse.com
+
+- Added migration hook enabling NetworkManager.service on update
+  from openSUSE  12.3 and NETWORKMANAGER=yes setting (bnc#803058).
+
+---



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.oxsTK9/_old  2013-03-01 07:36:18.0 +0100
+++ /var/tmp/diff_new_pack.oxsTK9/_new  2013-03-01 07:36:18.0 +0100
@@ -82,7 +82,7 @@
 Requires:   iputils
 Requires:   mozilla-nss
 Requires:   ppp
-Requires:   sysconfig = 0.80.0
+Requires:   sysconfig = 0.80.5
 Requires:   wpa_supplicant = 0.6.4
 %{?systemd_requires}
 Provides:   dhcdbd = 1.14
@@ -249,6 +249,31 @@
 
 %post
 %service_add_post NetworkManager.service
+# bnc#803058:
+# sysconfig creates this file while update from openSUSE  12.3,
+# which were using the NETWORKMANAGER=yes/no sysconfig variable.
+# When it exists and NETWORKMANAGER were enabled, force enable to
+# ensure, the network.service alias link exists points to us.
+if [ -f /dev/.sysconfig/network/migrate_nm_variable ] ; then
+   . /dev/.sysconfig/network/migrate_nm_variable
+   if [ X$NETWORKMANAGER = Xyes ] ; then
+   # In running system --force enable is sufficient to
+   # create the network.service alias link regardless if
+   # the network.service is masked or not.
+   # While 12.2 - 12.3 dist update, enable seems to be
+   # unable to create the alias... no idea why. Kick it
+   rm -f /etc/systemd/system/network.service
+   /usr/bin/systemctl --system daemon-reload || :
+   /usr/bin/systemctl --force enable NetworkManager.service || :
+   # and create the alias when enable failed to make it.
+   if [ ! -e /etc/systemd/system/network.service ] ; then
+   ln -sf  %{_unitdir}/NetworkManager.service \
+   /etc/systemd/system/network.service
+   fi
+   /usr/bin/systemctl --system daemon-reload || :
+   fi
+   rm -f /dev/.sysconfig/network/migrate_nm_variable
+fi
 
 %preun
 %service_del_preun NetworkManager.service


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



commit obs-service-source_validator for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package obs-service-source_validator for 
openSUSE:Factory checked in at 2013-03-01 07:37:24

Comparing /work/SRC/openSUSE:Factory/obs-service-source_validator (Old)
 and  /work/SRC/openSUSE:Factory/.obs-service-source_validator.new (New)


Package is obs-service-source_validator, Maintainer is adr...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/obs-service-source_validator/obs-service-source_validator.changes
2013-02-04 20:55:32.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.obs-service-source_validator.new/obs-service-source_validator.changes
   2013-03-01 07:37:25.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 26 17:55:43 CET 2013 - r...@suse.de
+
+- allow PKGBUILD build description file for archlinux 
+
+---



Other differences:
--
++ obs-service-source_validator-0.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/obs-service-source_validator-0.2/20-files-present-and-referenced 
new/obs-service-source_validator-0.2/20-files-present-and-referenced
--- old/obs-service-source_validator-0.2/20-files-present-and-referenced
2013-02-04 01:48:39.0 +0100
+++ new/obs-service-source_validator-0.2/20-files-present-and-referenced
2013-02-26 17:54:04.0 +0100
@@ -295,6 +295,7 @@
.git | \
.gitignore | \
.emacs.backup | \
+   PKGBUILD | \
debian.changelog | \
debian.compat | \
debian.control | \

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



commit osc for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package osc for openSUSE:Factory checked in 
at 2013-03-01 07:38:53

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


Package is osc, Maintainer is adr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/osc/osc.changes  2013-02-25 20:39:43.0 
+0100
+++ /work/SRC/openSUSE:Factory/.osc.new/osc.changes 2013-03-01 
07:38:55.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 26 16:23:26 UTC 2013 - adr...@suse.de
+
+- 0.139.1:
+  - do not crash on invalid authentification setup
+
+---

Old:

  osc-0.139.0.tar.gz

New:

  PKGBUILD
  osc-0.139.1.tar.gz



Other differences:
--
++ osc.spec ++
--- /var/tmp/diff_new_pack.STePUB/_old  2013-03-01 07:38:56.0 +0100
+++ /var/tmp/diff_new_pack.STePUB/_new  2013-03-01 07:38:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   osc
-Version:0.139.0
+Version:0.139.1
 Release:0
 Summary:openSUSE Build Service Commander
 License:GPL-2.0+

++ PKGBUILD ++
pkgname=osc
pkgver=0.139.1
pkgrel=1
pkgdesc=Open Build Service client
arch=('i686' 'x86_64')
url=https://www.github.com/openSUSE/osc;
license=('GPL-2.0+' 'GPL-2.0')
groups=('base-devel')
depends=('python2')
source=(osc-${pkgver}.tar.gz)
md5sums=('c2f5ef8b09f31cf917265201c599e1e9')

package() {
  msg Installing osc ...
  cd ${srcdir}/osc-${pkgver}
  python setup.py build
  python setup.py install --prefix=/usr --root=${pkgdir}
  ln -s osc-wrapper.py ${pkgdir}/usr/bin/osc
}
++ _service ++
--- /var/tmp/diff_new_pack.STePUB/_old  2013-03-01 07:38:56.0 +0100
+++ /var/tmp/diff_new_pack.STePUB/_new  2013-03-01 07:38:56.0 +0100
@@ -1,6 +1,7 @@
 services
   service name=tar_scm mode=disabled
-param name=version0.139.0/param
+param name=version0.139.1/param
+param name=revision0.139/param
 param name=urlgit://github.com/openSUSE/osc.git/param
 param name=scmgit/param
   /service

++ osc-0.139.0.tar.gz - osc-0.139.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.139.0/osc/conf.py new/osc-0.139.1/osc/conf.py
--- old/osc-0.139.0/osc/conf.py 2013-02-25 15:41:16.0 +0100
+++ new/osc-0.139.1/osc/conf.py 2013-02-26 14:09:48.0 +0100
@@ -798,6 +798,7 @@
 scheme, host = parse_apisrv_url(config.get('scheme', 'https'), url)
 apiurl = urljoin(scheme, host)
 user = None
+password = None
 if config['use_keyring'] and GENERIC_KEYRING:
 try:
 # Read from keyring lib if available
@@ -827,6 +828,13 @@
 print sys.stderr, 'Warning: blank user in the keyring for the ' \
 'apiurl %s.\nPlease fix your keyring entry.'
 
+if user is not None and password is None:
+err = ('no password defined for %s.\nPlease fix your keyring '
+   'entry or gnome-keyring setup.\nAssuming an empty password.'
+   % url)
+print sys.stderr, err
+password = ''
+
 # Read credentials from config
 if user is None:
 #FIXME: this could actually be the ideal spot to take defaults
@@ -858,9 +866,6 @@
 if not config['plaintext_passwd']:
 password = passwordx
 
-if password is None or len(password) == 0:
-print sys.stderr, 'no password defined for ', url, 
'.\nPlease fix your keyring entry or python-keyring setup.'
-
 if cp.has_option(url, 'http_headers'):
 http_headers = cp.get(url, 'http_headers')
 http_headers = http_header_regexp.findall(http_headers)

++ osc.dsc ++
--- /var/tmp/diff_new_pack.STePUB/_old  2013-03-01 07:38:57.0 +0100
+++ /var/tmp/diff_new_pack.STePUB/_new  2013-03-01 07:38:57.0 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: osc
-Version: 0.139.0
+Version: 0.139.1
 Binary: osc
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: any

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



commit osc for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package osc for openSUSE:12.3 checked in at 
2013-03-01 07:38:57

Comparing /work/SRC/openSUSE:12.3/osc (Old)
 and  /work/SRC/openSUSE:12.3/.osc.new (New)


Package is osc, Maintainer is adr...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/osc/osc.changes 2013-02-25 20:39:54.0 
+0100
+++ /work/SRC/openSUSE:12.3/.osc.new/osc.changes2013-03-01 
07:39:04.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 26 16:23:26 UTC 2013 - adr...@suse.de
+
+- 0.139.1:
+  - do not crash on invalid authentification setup
+
+---

Old:

  osc-0.139.0.tar.gz

New:

  PKGBUILD
  osc-0.139.1.tar.gz



Other differences:
--
++ osc.spec ++
--- /var/tmp/diff_new_pack.UBpds7/_old  2013-03-01 07:39:04.0 +0100
+++ /var/tmp/diff_new_pack.UBpds7/_new  2013-03-01 07:39:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   osc
-Version:0.139.0
+Version:0.139.1
 Release:0
 Summary:openSUSE Build Service Commander
 License:GPL-2.0+

++ PKGBUILD ++
pkgname=osc
pkgver=0.139.1
pkgrel=1
pkgdesc=Open Build Service client
arch=('i686' 'x86_64')
url=https://www.github.com/openSUSE/osc;
license=('GPL-2.0+' 'GPL-2.0')
groups=('base-devel')
depends=('python2')
source=(osc-${pkgver}.tar.gz)
md5sums=('c2f5ef8b09f31cf917265201c599e1e9')

package() {
  msg Installing osc ...
  cd ${srcdir}/osc-${pkgver}
  python setup.py build
  python setup.py install --prefix=/usr --root=${pkgdir}
  ln -s osc-wrapper.py ${pkgdir}/usr/bin/osc
}
++ _service ++
--- /var/tmp/diff_new_pack.UBpds7/_old  2013-03-01 07:39:04.0 +0100
+++ /var/tmp/diff_new_pack.UBpds7/_new  2013-03-01 07:39:04.0 +0100
@@ -1,6 +1,7 @@
 services
   service name=tar_scm mode=disabled
-param name=version0.139.0/param
+param name=version0.139.1/param
+param name=revision0.139/param
 param name=urlgit://github.com/openSUSE/osc.git/param
 param name=scmgit/param
   /service

++ osc-0.139.0.tar.gz - osc-0.139.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.139.0/osc/conf.py new/osc-0.139.1/osc/conf.py
--- old/osc-0.139.0/osc/conf.py 2013-02-25 15:41:16.0 +0100
+++ new/osc-0.139.1/osc/conf.py 2013-02-26 14:09:48.0 +0100
@@ -798,6 +798,7 @@
 scheme, host = parse_apisrv_url(config.get('scheme', 'https'), url)
 apiurl = urljoin(scheme, host)
 user = None
+password = None
 if config['use_keyring'] and GENERIC_KEYRING:
 try:
 # Read from keyring lib if available
@@ -827,6 +828,13 @@
 print sys.stderr, 'Warning: blank user in the keyring for the ' \
 'apiurl %s.\nPlease fix your keyring entry.'
 
+if user is not None and password is None:
+err = ('no password defined for %s.\nPlease fix your keyring '
+   'entry or gnome-keyring setup.\nAssuming an empty password.'
+   % url)
+print sys.stderr, err
+password = ''
+
 # Read credentials from config
 if user is None:
 #FIXME: this could actually be the ideal spot to take defaults
@@ -858,9 +866,6 @@
 if not config['plaintext_passwd']:
 password = passwordx
 
-if password is None or len(password) == 0:
-print sys.stderr, 'no password defined for ', url, 
'.\nPlease fix your keyring entry or python-keyring setup.'
-
 if cp.has_option(url, 'http_headers'):
 http_headers = cp.get(url, 'http_headers')
 http_headers = http_header_regexp.findall(http_headers)

++ osc.dsc ++
--- /var/tmp/diff_new_pack.UBpds7/_old  2013-03-01 07:39:04.0 +0100
+++ /var/tmp/diff_new_pack.UBpds7/_new  2013-03-01 07:39:04.0 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: osc
-Version: 0.139.0
+Version: 0.139.1
 Binary: osc
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: any

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



commit PackageKit for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package PackageKit for openSUSE:Factory 
checked in at 2013-03-01 07:39:29

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


Package is PackageKit, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/PackageKit/PackageKit.changes2013-02-20 
09:33:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.PackageKit.new/PackageKit.changes   
2013-03-01 07:39:30.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 16:00:49 CET 2013 - m...@suse.de
+
+- Add 0014-Instantiate-PoolStatusSaver-after-pool-is-built-bnc-.patch
+  (bnc#804054)
+
+---

New:

  0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch



Other differences:
--
++ PackageKit.spec ++
--- /var/tmp/diff_new_pack.E95l6C/_old  2013-03-01 07:39:31.0 +0100
+++ /var/tmp/diff_new_pack.E95l6C/_new  2013-03-01 07:39:31.0 +0100
@@ -59,6 +59,8 @@
 Patch14:0013-zypp-remap-PK-provides-into-rpm-provides-as-the-zif-.patch
 # PATCH-FIX-UPSTREAM PackageKit-allow-to-disable-systemd-updates.patch 
fdo#61103 dims...@opensuse.org -- Fix build with --disable-systemd-updates
 Patch15:PackageKit-allow-to-disable-systemd-updates.patch
+# PATCH-FIX-UPSTREAM 
0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch bnc#804054 
co...@suse.de 
+Patch16:0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch
 # To update this package, please git-format-patch the tag of the
 # tarball version (eg: PACKAGEKIT_0_6_19) vs the distro tag (eg: 
openSUSE_Factory)
 # in https://github.com/openSUSE/PackageKit and keep the patches
@@ -292,6 +294,7 @@
 %patch13 -p1
 %patch14 -p1
 %patch15 -p1
+%patch16 -p1
 translation-update-upstream
 
 %build

++ 0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch ++
From e81a7af4d48348f00c40532c23a097533795c1b6 Mon Sep 17 00:00:00 2001
From: Michael Andres m...@suse.de
Date: Thu, 28 Feb 2013 15:01:20 +0100
Subject: [PATCH] zypp: Instantiate PoolStatusSaver after pool is built
 (bnc#804054)

---
 backends/zypp/pk-backend-zypp.cpp | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

Index: PackageKit-0.8.7/backends/zypp/pk-backend-zypp.cpp
===
--- PackageKit-0.8.7.orig/backends/zypp/pk-backend-zypp.cpp
+++ PackageKit-0.8.7/backends/zypp/pk-backend-zypp.cpp
@@ -120,8 +120,12 @@ enum PkgSearchType {
SEARCH_TYPE_RESOLVE = 3
 };
 
-// helper function to restore the pool status
-// after doing operations on it
+/// \class PoolStatusSaver
+/// \brief Helper to restore the pool status after doing operations on it.
+///
+/// \note It's important that a PoolStatusSaver is instantiated \b after
+/// the pool is built/refreshed. Otherwise you lose all the locks applied
+/// during refresh. (bnc#804054)
 class PoolStatusSaver : private base::NonCopyable
 {
 public:
@@ -1732,8 +1736,8 @@ backend_get_requires_thread (PkBackendJo
 
pk_backend_job_set_percentage (job, 10);
 
-   PoolStatusSaver saver;
ResPool pool = zypp_build_pool (zypp, true);
+   PoolStatusSaver saver;
for (uint i = 0; package_ids[i]; i++) {
sat::Solvable solvable = zypp_get_package_by_id 
(package_ids[i]);
 
@@ -2463,7 +2467,6 @@ static void
 backend_install_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver saver;
 
PkBitfield transaction_flags = 0;
gchar **package_ids;
@@ -2491,6 +2494,7 @@ backend_install_packages_thread (PkBacke
try
{
ResPool pool = zypp_build_pool (zypp, TRUE);
+   PoolStatusSaver saver;
pk_backend_job_set_percentage (job, 10);
vectorPoolItem *items = new vectorPoolItem ();
 
@@ -2581,7 +2585,6 @@ static void
 backend_remove_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver saver;
PkBitfield transaction_flags = 0;
gboolean autoremove = false;
gboolean allow_deps = false;
@@ -2613,6 +2616,7 @@ backend_remove_packages_thread (PkBacken
target-load ();
pk_backend_job_set_percentage (job, 10);
 
+   PoolStatusSaver saver;
for (guint i = 0; package_ids[i]; i++) {
sat::Solvable solvable = zypp_get_package_by_id 
(package_ids[i]);

@@ -3137,8 +3141,6 @@ static void
 backend_update_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver 

commit PackageKit for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package PackageKit for openSUSE:12.3 checked 
in at 2013-03-01 07:39:32

Comparing /work/SRC/openSUSE:12.3/PackageKit (Old)
 and  /work/SRC/openSUSE:12.3/.PackageKit.new (New)


Package is PackageKit, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:12.3/PackageKit/PackageKit.changes   2013-02-20 
09:33:53.0 +0100
+++ /work/SRC/openSUSE:12.3/.PackageKit.new/PackageKit.changes  2013-03-01 
07:39:34.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 16:00:49 CET 2013 - m...@suse.de
+
+- Add 0014-Instantiate-PoolStatusSaver-after-pool-is-built-bnc-.patch
+  (bnc#804054)
+
+---

New:

  0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch



Other differences:
--
++ PackageKit.spec ++
--- /var/tmp/diff_new_pack.pt3Wyt/_old  2013-03-01 07:39:35.0 +0100
+++ /var/tmp/diff_new_pack.pt3Wyt/_new  2013-03-01 07:39:35.0 +0100
@@ -59,6 +59,8 @@
 Patch14:0013-zypp-remap-PK-provides-into-rpm-provides-as-the-zif-.patch
 # PATCH-FIX-UPSTREAM PackageKit-allow-to-disable-systemd-updates.patch 
fdo#61103 dims...@opensuse.org -- Fix build with --disable-systemd-updates
 Patch15:PackageKit-allow-to-disable-systemd-updates.patch
+# PATCH-FIX-UPSTREAM 
0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch bnc#804054 
co...@suse.de 
+Patch16:0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch
 # To update this package, please git-format-patch the tag of the
 # tarball version (eg: PACKAGEKIT_0_6_19) vs the distro tag (eg: 
openSUSE_Factory)
 # in https://github.com/openSUSE/PackageKit and keep the patches
@@ -292,6 +294,7 @@
 %patch13 -p1
 %patch14 -p1
 %patch15 -p1
+%patch16 -p1
 translation-update-upstream
 
 %build

++ 0014-zypp-Instantiate-PoolStatusSaver-after-pool-is-built.patch ++
From e81a7af4d48348f00c40532c23a097533795c1b6 Mon Sep 17 00:00:00 2001
From: Michael Andres m...@suse.de
Date: Thu, 28 Feb 2013 15:01:20 +0100
Subject: [PATCH] zypp: Instantiate PoolStatusSaver after pool is built
 (bnc#804054)

---
 backends/zypp/pk-backend-zypp.cpp | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

Index: PackageKit-0.8.7/backends/zypp/pk-backend-zypp.cpp
===
--- PackageKit-0.8.7.orig/backends/zypp/pk-backend-zypp.cpp
+++ PackageKit-0.8.7/backends/zypp/pk-backend-zypp.cpp
@@ -120,8 +120,12 @@ enum PkgSearchType {
SEARCH_TYPE_RESOLVE = 3
 };
 
-// helper function to restore the pool status
-// after doing operations on it
+/// \class PoolStatusSaver
+/// \brief Helper to restore the pool status after doing operations on it.
+///
+/// \note It's important that a PoolStatusSaver is instantiated \b after
+/// the pool is built/refreshed. Otherwise you lose all the locks applied
+/// during refresh. (bnc#804054)
 class PoolStatusSaver : private base::NonCopyable
 {
 public:
@@ -1732,8 +1736,8 @@ backend_get_requires_thread (PkBackendJo
 
pk_backend_job_set_percentage (job, 10);
 
-   PoolStatusSaver saver;
ResPool pool = zypp_build_pool (zypp, true);
+   PoolStatusSaver saver;
for (uint i = 0; package_ids[i]; i++) {
sat::Solvable solvable = zypp_get_package_by_id 
(package_ids[i]);
 
@@ -2463,7 +2467,6 @@ static void
 backend_install_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver saver;
 
PkBitfield transaction_flags = 0;
gchar **package_ids;
@@ -2491,6 +2494,7 @@ backend_install_packages_thread (PkBacke
try
{
ResPool pool = zypp_build_pool (zypp, TRUE);
+   PoolStatusSaver saver;
pk_backend_job_set_percentage (job, 10);
vectorPoolItem *items = new vectorPoolItem ();
 
@@ -2581,7 +2585,6 @@ static void
 backend_remove_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver saver;
PkBitfield transaction_flags = 0;
gboolean autoremove = false;
gboolean allow_deps = false;
@@ -2613,6 +2616,7 @@ backend_remove_packages_thread (PkBacken
target-load ();
pk_backend_job_set_percentage (job, 10);
 
+   PoolStatusSaver saver;
for (guint i = 0; package_ids[i]; i++) {
sat::Solvable solvable = zypp_get_package_by_id 
(package_ids[i]);

@@ -3137,8 +3141,6 @@ static void
 backend_update_packages_thread (PkBackendJob *job, GVariant *params, gpointer 
user_data)
 {
MIL  endl;
-   PoolStatusSaver saver;
-

commit perl-Authen-SASL-Cyrus for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Authen-SASL-Cyrus for 
openSUSE:Factory checked in at 2013-03-01 07:39:47

Comparing /work/SRC/openSUSE:Factory/perl-Authen-SASL-Cyrus (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Authen-SASL-Cyrus.new (New)


Package is perl-Authen-SASL-Cyrus, Maintainer is m...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Authen-SASL-Cyrus/perl-Authen-SASL-Cyrus.changes
2011-11-21 12:36:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Authen-SASL-Cyrus.new/perl-Authen-SASL-Cyrus.changes
   2013-03-01 07:39:49.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:21:28 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Authen-SASL-Cyrus.spec ++
--- /var/tmp/diff_new_pack.F6bXnv/_old  2013-03-01 07:39:50.0 +0100
+++ /var/tmp/diff_new_pack.F6bXnv/_new  2013-03-01 07:39:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Authen-SASL-Cyrus
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,18 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Authen-SASL-Cyrus
-BuildRequires:  cyrus-sasl-devel perl-Authen-SASL perl-macros
+BuildRequires:  cyrus-sasl-devel
+BuildRequires:  perl-Authen-SASL
+BuildRequires:  perl-macros
 Version:0.13
 Release:0
 Requires:   perl-Authen-SASL
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Url:http://www.cpan.org/modules/by-module/Authen/
 Summary:SASL Authentication Framework - Cyrus Plugin
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source0:
http://www.cpan.org/modules/by-module/Authen/Authen-SASL-Cyrus-%{version}.tar.gz
 Patch0: Authen-SASL-Cyrus-0.12.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit perl-Class-Autouse for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-Autouse for 
openSUSE:Factory checked in at 2013-03-01 07:39:57

Comparing /work/SRC/openSUSE:Factory/perl-Class-Autouse (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Class-Autouse.new (New)


Package is perl-Class-Autouse, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-Autouse/perl-Class-Autouse.changes
2012-02-16 12:25:27.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Class-Autouse.new/perl-Class-Autouse.changes   
2013-03-01 07:39:58.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:21:54 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Class-Autouse.spec ++
--- /var/tmp/diff_new_pack.H7RoeR/_old  2013-03-01 07:39:59.0 +0100
+++ /var/tmp/diff_new_pack.H7RoeR/_new  2013-03-01 07:39:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Autouse
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   perl-Class-Autouse
 Version:2.01
-Release:1
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 Summary:Run-time class loading on first method call
-Url:http://cpan.org/modules/by-module/Class/
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Url:http://cpan.org/modules/by-module/Class/
 Source: Class-Autouse-%{version}.tar.gz
 BuildRequires:  perl-Carp-Assert
 BuildRequires:  perl-macros

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



commit perl-Class-Date for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Class-Date for openSUSE:Factory 
checked in at 2013-03-01 07:40:40

Comparing /work/SRC/openSUSE:Factory/perl-Class-Date (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Class-Date.new (New)


Package is perl-Class-Date, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-Date/perl-Class-Date.changes  
2011-11-21 12:37:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Class-Date.new/perl-Class-Date.changes 
2013-03-01 07:40:42.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:47:55 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Class-Date.spec ++
--- /var/tmp/diff_new_pack.5AsEMo/_old  2013-03-01 07:40:42.0 +0100
+++ /var/tmp/diff_new_pack.5AsEMo/_new  2013-03-01 07:40:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Date
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Class-Date
 %define cpan_name Class-Date
 Summary:Class for easy date and time manipulation
-Version:1.1.10
-Release:2
-License:Artistic-1.0 ; GPL-2.0+
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Version:1.1.10
+Release:0
 Url:http://search.cpan.org/dist/Class-Date
 Source: %{cpan_name}-%{version}.tar.gz
 Patch:  %{cpan_name}-%{version}.diff
@@ -32,8 +30,8 @@
 %{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-Requires:   perl(Time::Local)
 Requires:   perl(Date::Parse)
+Requires:   perl(Time::Local)
 ## Env::C does not compile on perl 5.10.0
 #Requires:  perl(Env::C)
 

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



commit perl-Crypt-SmbHash for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Crypt-SmbHash for 
openSUSE:Factory checked in at 2013-03-01 07:41:03

Comparing /work/SRC/openSUSE:Factory/perl-Crypt-SmbHash (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Crypt-SmbHash.new (New)


Package is perl-Crypt-SmbHash, Maintainer is rha...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Crypt-SmbHash/perl-Crypt-SmbHash.changes
2011-09-23 12:36:34.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-SmbHash.new/perl-Crypt-SmbHash.changes   
2013-03-01 07:41:04.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:47:02 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Crypt-SmbHash.spec ++
--- /var/tmp/diff_new_pack.80eP0X/_old  2013-03-01 07:41:05.0 +0100
+++ /var/tmp/diff_new_pack.80eP0X/_new  2013-03-01 07:41:05.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Crypt-SmbHash (Version 0.12)
+# spec file for package perl-Crypt-SmbHash
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Crypt-SmbHash
 BuildRequires:  perl-Digest-MD4
 BuildRequires:  perl-macros
 Version:0.12
-Release:141
+Release:0
 Requires:   perl-Digest-MD4
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Summary:perl module Crypt::SmbHash
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: Crypt-SmbHash-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-Date-Calc for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Date-Calc for openSUSE:Factory 
checked in at 2013-03-01 07:41:12

Comparing /work/SRC/openSUSE:Factory/perl-Date-Calc (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Date-Calc.new (New)


Package is perl-Date-Calc, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Date-Calc/perl-Date-Calc.changes
2011-11-21 12:38:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Date-Calc.new/perl-Date-Calc.changes   
2013-03-01 07:41:13.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:46:33 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Date-Calc.spec ++
--- /var/tmp/diff_new_pack.MEFw9A/_old  2013-03-01 07:41:14.0 +0100
+++ /var/tmp/diff_new_pack.MEFw9A/_new  2013-03-01 07:41:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Date-Calc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,22 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Date-Calc
 BuildRequires:  perl-Bit-Vector
 BuildRequires:  perl-macros
 Version:6.3
-Release:6
-Provides:   DateCalc perl_dc
+Release:0
+Provides:   DateCalc
+Provides:   perl_dc
 Obsoletes:  perl_dc
 Requires:   perl-Bit-Vector
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Url:http://cpan.org/modules/by-module/Date
 Summary:Perl Date-Calc Module
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: Date-Calc-%{version}.tar.gz
 Patch:  Date-Calc-%{version}.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit perl-DBIx-Transaction for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-DBIx-Transaction for 
openSUSE:Factory checked in at 2013-03-01 07:41:21

Comparing /work/SRC/openSUSE:Factory/perl-DBIx-Transaction (Old)
 and  /work/SRC/openSUSE:Factory/.perl-DBIx-Transaction.new (New)


Package is perl-DBIx-Transaction, Maintainer is dlova...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DBIx-Transaction/perl-DBIx-Transaction.changes  
2011-11-21 12:39:01.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DBIx-Transaction.new/perl-DBIx-Transaction.changes
 2013-03-01 07:41:22.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:45:46 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-DBIx-Transaction.spec ++
--- /var/tmp/diff_new_pack.XSTfx6/_old  2013-03-01 07:41:22.0 +0100
+++ /var/tmp/diff_new_pack.XSTfx6/_new  2013-03-01 07:41:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBIx-Transaction
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-DBIx-Transaction
-BuildRequires:  perl-DBI perl-Module-Build
+BuildRequires:  perl-DBI
+BuildRequires:  perl-Module-Build
 BuildRequires:  perl-macros
 Url:http://cpan.org/modules/by-module/DBIx/
-License:Artistic-1.0 ; GPL-2.0+
-Group:  Development/Libraries/Perl
 Requires:   perl-DBI
-AutoReqProv:on
 Summary:Allow transactions to be nested in DBI
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Version:1.100
-Release:6
+Release:0
 Source: DBIx-Transaction-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-Font-AFM for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Font-AFM for openSUSE:Factory 
checked in at 2013-03-01 07:41:30

Comparing /work/SRC/openSUSE:Factory/perl-Font-AFM (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Font-AFM.new (New)


Package is perl-Font-AFM, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Font-AFM/perl-Font-AFM.changes  
2011-11-21 12:40:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Font-AFM.new/perl-Font-AFM.changes 
2013-03-01 07:41:31.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:45:02 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Font-AFM.spec ++
--- /var/tmp/diff_new_pack.ErV4gx/_old  2013-03-01 07:41:32.0 +0100
+++ /var/tmp/diff_new_pack.ErV4gx/_new  2013-03-01 07:41:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Font-AFM
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,16 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Font-AFM
-License:Artistic-1.0 ; GPL-2.0+
-Group:  Development/Libraries/Perl
-AutoReqProv:on
 Summary:Interface to Adobe Font Metrics Files
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Version:1.20
-Release:32
+Release:0
 Source: Font-AFM-%{version}.tar.gz
 Url:http://cpan.org/authors/id/G/GA/GAAS
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit perl-GDTextUtil for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-GDTextUtil for openSUSE:Factory 
checked in at 2013-03-01 07:41:38

Comparing /work/SRC/openSUSE:Factory/perl-GDTextUtil (Old)
 and  /work/SRC/openSUSE:Factory/.perl-GDTextUtil.new (New)


Package is perl-GDTextUtil, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-GDTextUtil/perl-GDTextUtil.changes  
2011-09-23 12:37:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-GDTextUtil.new/perl-GDTextUtil.changes 
2013-03-01 07:41:40.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:34:53 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-GDTextUtil.spec ++
--- /var/tmp/diff_new_pack.RUmrVR/_old  2013-03-01 07:41:40.0 +0100
+++ /var/tmp/diff_new_pack.RUmrVR/_new  2013-03-01 07:41:40.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-GDTextUtil (Version 0.86)
+# spec file for package perl-GDTextUtil
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,19 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-GDTextUtil
-BuildRequires:  libjpeg-devel perl-GD xorg-x11-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  perl-GD
 BuildRequires:  perl-macros
+BuildRequires:  xorg-x11-devel
 Version:0.86
-Release:81
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 Url:http://cpan.org/modules/by-module/GD/
 Summary:text utilities for use with the GD drawing package
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: GDTextUtil-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-gettext for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-gettext for openSUSE:Factory 
checked in at 2013-03-01 07:42:08

Comparing /work/SRC/openSUSE:Factory/perl-gettext (Old)
 and  /work/SRC/openSUSE:Factory/.perl-gettext.new (New)


Package is perl-gettext, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-gettext/perl-gettext.changes
2011-11-18 15:47:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-gettext.new/perl-gettext.changes   
2013-03-01 07:42:09.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:18:54 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-gettext.spec ++
--- /var/tmp/diff_new_pack.zxJqXJ/_old  2013-03-01 07:42:10.0 +0100
+++ /var/tmp/diff_new_pack.zxJqXJ/_new  2013-03-01 07:42:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-gettext
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   perl-gettext
 %define cpan_name gettext
 Summary:Message handling functions
-Version:1.05
-Release:151
-License:Artistic-1.0 ; GPL-2.0+
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Version:1.05
+Release:0
 Url:http://search.cpan.org/dist/gettext/
 Source: 
http://www.cpan.org/authors/id/P/PV/PVANDRY/gettext-%{version}.tar.gz
 Patch0: %{name}-%{version}-POSIX.diff

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



commit perl-IO-Socket-Multicast for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-IO-Socket-Multicast for 
openSUSE:Factory checked in at 2013-03-01 07:42:19

Comparing /work/SRC/openSUSE:Factory/perl-IO-Socket-Multicast (Old)
 and  /work/SRC/openSUSE:Factory/.perl-IO-Socket-Multicast.new (New)


Package is perl-IO-Socket-Multicast, Maintainer is dlova...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-IO-Socket-Multicast/perl-IO-Socket-Multicast.changes
2011-11-21 12:41:37.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-IO-Socket-Multicast.new/perl-IO-Socket-Multicast.changes
   2013-03-01 07:42:21.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:34:31 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-IO-Socket-Multicast.spec ++
--- /var/tmp/diff_new_pack.5qmDDU/_old  2013-03-01 07:42:21.0 +0100
+++ /var/tmp/diff_new_pack.5qmDDU/_new  2013-03-01 07:42:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-IO-Socket-Multicast
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-IO-Socket-Multicast
 %define cpan_name IO-Socket-Multicast
 Summary:Send and receive multicast messages
-Version:1.12
-Release:2
-License:Artistic-1.0 ; GPL-2.0+
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Version:1.12
+Release:0
 Url:http://search.cpan.org/dist/IO-Socket-Multicast
 Source0:%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit perl-libxml-perl for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-libxml-perl for 
openSUSE:Factory checked in at 2013-03-01 07:43:05

Comparing /work/SRC/openSUSE:Factory/perl-libxml-perl (Old)
 and  /work/SRC/openSUSE:Factory/.perl-libxml-perl.new (New)


Package is perl-libxml-perl, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-libxml-perl/perl-libxml-perl.changes
2011-09-23 12:39:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-libxml-perl.new/perl-libxml-perl.changes   
2013-03-01 07:43:06.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:34:12 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-libxml-perl.spec ++
--- /var/tmp/diff_new_pack.fB49Xd/_old  2013-03-01 07:43:07.0 +0100
+++ /var/tmp/diff_new_pack.fB49Xd/_new  2013-03-01 07:43:07.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-libxml-perl (Version 0.08)
+# spec file for package perl-libxml-perl
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-libxml-perl
 BuildRequires:  perl-XML-Parser
 BuildRequires:  perl-macros
 Version:0.08
-Release:143
+Release:0
 Requires:   perl-XML-Parser
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Url:http://cpan.org/modules/by-module/XML/
 Summary:Collection of Perl modules for working with XML
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: libxml-perl-%{version}.tar.bz2
 Patch:  libxml-perl-%{version}-test.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit perl-Net-Telnet for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-Telnet for openSUSE:Factory 
checked in at 2013-03-01 07:43:12

Comparing /work/SRC/openSUSE:Factory/perl-Net-Telnet (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Net-Telnet.new (New)


Package is perl-Net-Telnet, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-Telnet/perl-Net-Telnet.changes  
2011-11-21 12:44:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Net-Telnet.new/perl-Net-Telnet.changes 
2013-03-01 07:43:13.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:33:38 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Net-Telnet.spec ++
--- /var/tmp/diff_new_pack.oYHGWv/_old  2013-03-01 07:43:14.0 +0100
+++ /var/tmp/diff_new_pack.oYHGWv/_new  2013-03-01 07:43:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Net-Telnet
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,17 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Net-Telnet
 Version:3.03
-Release:325
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 Url:http://cpan.org/modules/by-module/Net/
 Summary:Net::Telnet - interact with TELNET port or other TCP ports
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: Net-Telnet-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-Parse-Yapp for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Parse-Yapp for openSUSE:Factory 
checked in at 2013-03-01 07:43:19

Comparing /work/SRC/openSUSE:Factory/perl-Parse-Yapp (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Parse-Yapp.new (New)


Package is perl-Parse-Yapp, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Parse-Yapp/perl-Parse-Yapp.changes  
2011-11-21 12:44:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Parse-Yapp.new/perl-Parse-Yapp.changes 
2013-03-01 07:43:20.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:23:14 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Parse-Yapp.spec ++
--- /var/tmp/diff_new_pack.5Shv05/_old  2013-03-01 07:43:21.0 +0100
+++ /var/tmp/diff_new_pack.5Shv05/_new  2013-03-01 07:43:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Parse-Yapp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,17 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Parse-Yapp
 Version:1.05
-Release:534
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 Url:http://cpan.org/modules/by-module/Parse
 Summary:Perl extension for generating and using LALR parsers
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: Parse-Yapp-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-PlRPC for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-PlRPC for openSUSE:Factory 
checked in at 2013-03-01 07:43:25

Comparing /work/SRC/openSUSE:Factory/perl-PlRPC (Old)
 and  /work/SRC/openSUSE:Factory/.perl-PlRPC.new (New)


Package is perl-PlRPC, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-PlRPC/perl-PlRPC.changes2011-09-23 
12:38:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-PlRPC.new/perl-PlRPC.changes   
2013-03-01 07:43:26.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:32:49 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-PlRPC.spec ++
--- /var/tmp/diff_new_pack.R7rRLA/_old  2013-03-01 07:43:26.0 +0100
+++ /var/tmp/diff_new_pack.R7rRLA/_new  2013-03-01 07:43:26.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-PlRPC (Version 0.2020)
+# spec file for package perl-PlRPC
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-PlRPC
 BuildRequires:  perl-Net-Daemon
 BuildRequires:  perl-macros
 Version:0.2020
-Release:9
+Release:0
 Requires:   perl-Net-Daemon
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Url:http://cpan.org/modules/by-module/RPC/
 Summary:Perl Extension for Writing PlRPC Servers
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: PlRPC-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-Pod-Spell for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Pod-Spell for openSUSE:Factory 
checked in at 2013-03-01 07:43:37

Comparing /work/SRC/openSUSE:Factory/perl-Pod-Spell (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Pod-Spell.new (New)


Package is perl-Pod-Spell, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Pod-Spell/perl-Pod-Spell.changes
2011-09-23 12:38:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Pod-Spell.new/perl-Pod-Spell.changes   
2013-03-01 07:43:38.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:25:20 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Pod-Spell.spec ++
--- /var/tmp/diff_new_pack.IHo4YB/_old  2013-03-01 07:43:39.0 +0100
+++ /var/tmp/diff_new_pack.IHo4YB/_new  2013-03-01 07:43:39.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Pod-Spell (Version 1.01)
+# spec file for package perl-Pod-Spell
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Pod-Spell
 %define cpan_name Pod-Spell
 Summary:Formatter for spellchecking Pod
-Version:1.01
-Release:1
-License:Artistic-1.0 ; GPL-2.0
+License:Artistic-1.0 or GPL-2.0
 Group:  Development/Libraries/Perl
+Version:1.01
+Release:0
 Url:http://search.cpan.org/dist/Pod-Spell/
 Source: 
http://www.cpan.org/modules/by-module/Pod/Pod-Spell-%{version}.tar.gz
 BuildArch:  noarch

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



commit perl-Proc-ProcessTable for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Proc-ProcessTable for 
openSUSE:Factory checked in at 2013-03-01 07:44:07

Comparing /work/SRC/openSUSE:Factory/perl-Proc-ProcessTable (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Proc-ProcessTable.new (New)


Package is perl-Proc-ProcessTable, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Proc-ProcessTable/perl-Proc-ProcessTable.changes
2012-03-29 07:46:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Proc-ProcessTable.new/perl-Proc-ProcessTable.changes
   2013-03-01 07:44:08.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:24:52 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Proc-ProcessTable.spec ++
--- /var/tmp/diff_new_pack.pUP4WC/_old  2013-03-01 07:44:08.0 +0100
+++ /var/tmp/diff_new_pack.pUP4WC/_new  2013-03-01 07:44:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Proc-ProcessTable
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:   perl-Proc-ProcessTable
 Version:0.45
-Release:1
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 %define cpan_name Proc-ProcessTable
 Summary:Perl extension to access the unix process table
-Url:http://search.cpan.org/dist/Proc-ProcessTable/
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Proc-ProcessTable/
 Source: 
http://www.cpan.org/authors/id/D/DU/DURIST/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

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



commit perl-Set-Scalar for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Set-Scalar for openSUSE:Factory 
checked in at 2013-03-01 07:44:26

Comparing /work/SRC/openSUSE:Factory/perl-Set-Scalar (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Set-Scalar.new (New)


Package is perl-Set-Scalar, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Set-Scalar/perl-Set-Scalar.changes  
2011-11-21 12:45:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Set-Scalar.new/perl-Set-Scalar.changes 
2013-03-01 07:44:28.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:24:29 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Set-Scalar.spec ++
--- /var/tmp/diff_new_pack.Z6qagI/_old  2013-03-01 07:44:28.0 +0100
+++ /var/tmp/diff_new_pack.Z6qagI/_new  2013-03-01 07:44:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Set-Scalar
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,17 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Set-Scalar
 Version:1.25
-Release:7
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 Url:http://cpan.org/modules/by-module/Set/
 Summary:Set of scalars
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source0:
http://cpan.org/modules/by-module/Set/Set-Scalar-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-Sub-Name for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Sub-Name for openSUSE:Factory 
checked in at 2013-03-01 07:44:58

Comparing /work/SRC/openSUSE:Factory/perl-Sub-Name (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Sub-Name.new (New)


Package is perl-Sub-Name, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sub-Name/perl-Sub-Name.changes  
2011-09-23 12:38:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sub-Name.new/perl-Sub-Name.changes 
2013-03-01 07:44:59.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:24:03 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Sub-Name.spec ++
--- /var/tmp/diff_new_pack.2znnCF/_old  2013-03-01 07:45:00.0 +0100
+++ /var/tmp/diff_new_pack.2znnCF/_new  2013-03-01 07:45:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Sub-Name
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:   perl-Sub-Name
 Version:0.05
-Release:16
-License:Artistic-1.0 ; GPL-2.0+
+Release:0
 %define cpan_name Sub-Name
 Summary:Assigns a new name to referenced sub
-Url:http://search.cpan.org/dist/Sub-Name/
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Sub-Name/
 Source: 
http://www.cpan.org/authors/id/F/FL/FLORA/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

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



commit perl-Tie-IxHash for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-Tie-IxHash for openSUSE:Factory 
checked in at 2013-03-01 07:45:09

Comparing /work/SRC/openSUSE:Factory/perl-Tie-IxHash (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Tie-IxHash.new (New)


Package is perl-Tie-IxHash, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Tie-IxHash/perl-Tie-IxHash.changes  
2011-11-21 12:49:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Tie-IxHash.new/perl-Tie-IxHash.changes 
2013-03-01 07:45:11.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:22:50 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-Tie-IxHash.spec ++
--- /var/tmp/diff_new_pack.CtO5zB/_old  2013-03-01 07:45:12.0 +0100
+++ /var/tmp/diff_new_pack.CtO5zB/_new  2013-03-01 07:45:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Tie-IxHash
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,18 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Tie-IxHash
-License:Artistic-1.0 ; GPL-2.0+
-Group:  Development/Libraries/Perl
 Provides:   perl_tie
 Obsoletes:  perl_tie
-AutoReqProv:on
 Summary:TieIxHash Perl Module
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Version:1.22
-Release:7
+Release:0
 Source: Tie-IxHash-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-WeakRef for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-WeakRef for openSUSE:Factory 
checked in at 2013-03-01 07:45:21

Comparing /work/SRC/openSUSE:Factory/perl-WeakRef (Old)
 and  /work/SRC/openSUSE:Factory/.perl-WeakRef.new (New)


Package is perl-WeakRef, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-WeakRef/perl-WeakRef.changes
2011-11-21 12:50:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-WeakRef.new/perl-WeakRef.changes   
2013-03-01 07:45:22.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:22:33 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-WeakRef.spec ++
--- /var/tmp/diff_new_pack.1OTqAi/_old  2013-03-01 07:45:23.0 +0100
+++ /var/tmp/diff_new_pack.1OTqAi/_new  2013-03-01 07:45:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-WeakRef
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-WeakRef
 %define cpan_name WeakRef
 Version:0.01
-Release:129
+Release:0
 Provides:   perl-Weakref
 Obsoletes:  perl-Weakref
 Summary:API for weak references to be created in Perl
-License:Artistic-1.0 ; GPL-2.0+
-Url:http://search.cpan.org/dist/WeakRef/
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
-AutoReqProv:on
+Url:http://search.cpan.org/dist/WeakRef/
 Source: %{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit perl-X500-DN for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-X500-DN for openSUSE:Factory 
checked in at 2013-03-01 07:45:29

Comparing /work/SRC/openSUSE:Factory/perl-X500-DN (Old)
 and  /work/SRC/openSUSE:Factory/.perl-X500-DN.new (New)


Package is perl-X500-DN, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-X500-DN/perl-X500-DN.changes
2011-09-23 12:39:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-X500-DN.new/perl-X500-DN.changes   
2013-03-01 07:45:29.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:19:39 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-X500-DN.spec ++
--- /var/tmp/diff_new_pack.LSoUsc/_old  2013-03-01 07:45:31.0 +0100
+++ /var/tmp/diff_new_pack.LSoUsc/_new  2013-03-01 07:45:31.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-X500-DN (Version 0.29)
+# spec file for package perl-X500-DN
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-X500-DN
-License:Artistic-1.0 ; GPL-2.0+
-Group:  Development/Libraries/Perl
 BuildRequires:  perl-Parse-RecDescent
 BuildRequires:  perl-macros
 Requires:   perl-Parse-RecDescent
-AutoReqProv:on
 Summary:Provides an interface for RFC 2253 style DN strings
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Version:0.29
-Release:89
+Release:0
 Source: X500-DN-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Patch1: version-string-fix2.diff

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



commit perl-XML-Dumper for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-Dumper for openSUSE:Factory 
checked in at 2013-03-01 07:45:38

Comparing /work/SRC/openSUSE:Factory/perl-XML-Dumper (Old)
 and  /work/SRC/openSUSE:Factory/.perl-XML-Dumper.new (New)


Package is perl-XML-Dumper, Maintainer is dlova...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-Dumper/perl-XML-Dumper.changes  
2011-11-21 12:50:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-Dumper.new/perl-XML-Dumper.changes 
2013-03-01 07:45:39.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:22:15 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-XML-Dumper.spec ++
--- /var/tmp/diff_new_pack.x5UurW/_old  2013-03-01 07:45:40.0 +0100
+++ /var/tmp/diff_new_pack.x5UurW/_new  2013-03-01 07:45:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-XML-Dumper
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,23 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-XML-Dumper
 %define cpan_name XML-Dumper
 Summary:Perl module for dumping Perl objects from/to XML
-Version:0.81
-Release:52
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
+Version:0.81
+Release:0
 Url:http://search.cpan.org/dist/XML-Dumper
 Source: %{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 BuildRequires:  perl
-BuildRequires:  perl-macros
 BuildRequires:  perl-XML-Parser = 2.16
+BuildRequires:  perl-macros
 Requires:   perl-XML-Parser = 2.16
 
 %description

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



commit perl-XML-XPath for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-XPath for openSUSE:Factory 
checked in at 2013-03-01 07:45:46

Comparing /work/SRC/openSUSE:Factory/perl-XML-XPath (Old)
 and  /work/SRC/openSUSE:Factory/.perl-XML-XPath.new (New)


Package is perl-XML-XPath, Maintainer is mvid...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-XPath/perl-XML-XPath.changes
2011-09-23 12:39:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-XML-XPath.new/perl-XML-XPath.changes   
2013-03-01 07:45:47.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 27 06:19:21 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ perl-XML-XPath.spec ++
--- /var/tmp/diff_new_pack.KZJXSA/_old  2013-03-01 07:45:47.0 +0100
+++ /var/tmp/diff_new_pack.KZJXSA/_new  2013-03-01 07:45:47.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-XML-XPath (Version 1.13)
+# spec file for package perl-XML-XPath
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -15,20 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-XML-XPath
-BuildRequires:  perl perl-XML-Parser
+BuildRequires:  perl
+BuildRequires:  perl-XML-Parser
 BuildRequires:  perl-macros
 Version:1.13
-Release:84
+Release:0
 Requires:   perl-XML-Parser
-AutoReqProv:on
-Group:  Development/Libraries/Perl
-License:Artistic-1.0 ; GPL-2.0+
 Url:http://search.cpan.org/~msergeant/
 Summary:A set of modules for parsing and evaluating XPath statements
+License:Artistic-1.0 or GPL-2.0+
+Group:  Development/Libraries/Perl
 Source: 
http://cpan.org/modules/by-module/XML/XML-XPath-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

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



commit polkit-default-privs for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:Factory checked in at 2013-03-01 07:45:59

Comparing /work/SRC/openSUSE:Factory/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:Factory/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is meiss...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/polkit-default-privs/polkit-default-privs.changes
2013-02-25 20:40:02.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.polkit-default-privs.new/polkit-default-privs.changes
   2013-03-01 07:45:59.0 +0100
@@ -1,0 +2,23 @@
+Wed Feb 27 12:54:05 UTC 2013 - lnus...@suse.de
+
+- add /etc/polkit-1/rules.d/50-default-privs.rules as ghost so it
+  gets associated with the package
+
+---
+Wed Feb 27 10:34:24 UTC 2013 - lnus...@suse.de
+
+- require ibmozjs185-1_0 as polkit won't apply the policy without it
+  (bnc#804376)
+
+---
+Tue Feb 26 16:37:28 UTC 2013 - lnus...@suse.de
+
+- set logind inhibit policies to upstream defaults (bnc#804376)
+- more elaborate --check-override option
+
+---
+Mon Feb 25 15:36:41 UTC 2013 - lnus...@suse.de
+
+- add some debugging capabilities in generated code
+
+---



Other differences:
--
++ polkit-default-privs.spec ++
--- /var/tmp/diff_new_pack.ttHNle/_old  2013-03-01 07:46:00.0 +0100
+++ /var/tmp/diff_new_pack.ttHNle/_new  2013-03-01 07:46:00.0 +0100
@@ -26,6 +26,7 @@
 Source: polkit-default-privs-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  polkit
+Requires:   libmozjs185-1_0
 Requires:   polkit
 Supplements:PolicyKit
 Supplements:libpolkit0, polkit
@@ -50,6 +51,7 @@
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT/etc/polkit-1/rules.d/
+ $RPM_BUILD_ROOT/etc/polkit-1/rules.d/50-default-privs.rules
 
 %post
 %{fillup_only -ns security polkit_default_privs}
@@ -60,6 +62,7 @@
 
 %files
 %defattr(-,root,root,-)
+%ghost %attr(0644,root,root) /etc/polkit-1/rules.d/50-default-privs.rules
 %config /etc/polkit-default-privs.standard
 %config /etc/polkit-default-privs.restrictive
 %config(noreplace) /etc/polkit-default-privs.local

++ polkit-default-privs-12.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polkit-default-privs-12.3/chkstat-polkit 
new/polkit-default-privs-12.3/chkstat-polkit
--- old/polkit-default-privs-12.3/chkstat-polkit2013-02-22 
09:39:59.0 +0100
+++ new/polkit-default-privs-12.3/chkstat-polkit2013-02-26 
17:37:01.0 +0100
@@ -88,6 +88,8 @@
 * see man set_polkit_default_privs   *
 \/
 polkit.addRule(function(action, subject) {
+   // set to true for debugging
+   var debug = false;
 rules = { 
 INSERT_RULES_HERE : [ auth_admin, auth_admin, 
auth_admin ],
 };
@@ -99,7 +101,17 @@
 i = 1;
 }   
 }   
+   if (debug)
+   polkit.log(subject);
+
 if (rules[action.id]) {
+   if (debug)
+   polkit.log(action.id +  =  + rules[action.id][i]);
 return rules[action.id][i];
-}   
+} else {
+   if (debug)
+   polkit.log(action.id +  = no override found);
+   }
 });
+
+// vim: syntax=javascript
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polkit-default-privs-12.3/listpolicies.pl 
new/polkit-default-privs-12.3/listpolicies.pl
--- old/polkit-default-privs-12.3/listpolicies.pl   2013-02-22 
09:39:59.0 +0100
+++ new/polkit-default-privs-12.3/listpolicies.pl   2013-02-26 
17:37:01.0 +0100
@@ -27,11 +27,13 @@
\%options,
verbose|v,
policy=s@,
-   check-override,
+   check-override:s,
+   all,
help|h,
 ) or usage(1);
 
 usage(0) if ($options{'help'});
+die check-override must be active/local/any\n if ($options{'check-override'} 
 $options{'check-override'} !~ /active|local|any/);
 
 my %known;
 my @policies;
@@ -94,15 +96,18 @@
 if (!$options{'policy'}) {
map { print $_-{'name'}, \n } @policies;
 } elsif ($options{'check-override'}) {
+   my $what = 2;
+   $what = 1 if $options{'check-override'} eq 'local';
+   $what = 0 if $options{'check-override'} eq 'any';
for my $p (@policies) {
next unless exists 

commit polkit-default-privs for openSUSE:12.3

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:12.3 checked in at 2013-03-01 07:46:03

Comparing /work/SRC/openSUSE:12.3/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:12.3/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/polkit-default-privs/polkit-default-privs.changes   
2013-02-23 08:18:07.0 +0100
+++ 
/work/SRC/openSUSE:12.3/.polkit-default-privs.new/polkit-default-privs.changes  
2013-03-01 07:46:04.0 +0100
@@ -1,0 +2,23 @@
+Wed Feb 27 12:54:05 UTC 2013 - lnus...@suse.de
+
+- add /etc/polkit-1/rules.d/50-default-privs.rules as ghost so it
+  gets associated with the package
+
+---
+Wed Feb 27 10:34:24 UTC 2013 - lnus...@suse.de
+
+- require ibmozjs185-1_0 as polkit won't apply the policy without it
+  (bnc#804376)
+
+---
+Tue Feb 26 16:37:28 UTC 2013 - lnus...@suse.de
+
+- set logind inhibit policies to upstream defaults (bnc#804376)
+- more elaborate --check-override option
+
+---
+Mon Feb 25 15:36:41 UTC 2013 - lnus...@suse.de
+
+- add some debugging capabilities in generated code
+
+---



Other differences:
--
++ polkit-default-privs.spec ++
--- /var/tmp/diff_new_pack.DnBFEe/_old  2013-03-01 07:46:04.0 +0100
+++ /var/tmp/diff_new_pack.DnBFEe/_new  2013-03-01 07:46:04.0 +0100
@@ -26,6 +26,7 @@
 Source: polkit-default-privs-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  polkit
+Requires:   libmozjs185-1_0
 Requires:   polkit
 Supplements:PolicyKit
 Supplements:libpolkit0, polkit
@@ -50,6 +51,7 @@
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT/etc/polkit-1/rules.d/
+ $RPM_BUILD_ROOT/etc/polkit-1/rules.d/50-default-privs.rules
 
 %post
 %{fillup_only -ns security polkit_default_privs}
@@ -60,6 +62,7 @@
 
 %files
 %defattr(-,root,root,-)
+%ghost %attr(0644,root,root) /etc/polkit-1/rules.d/50-default-privs.rules
 %config /etc/polkit-default-privs.standard
 %config /etc/polkit-default-privs.restrictive
 %config(noreplace) /etc/polkit-default-privs.local

++ polkit-default-privs-12.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polkit-default-privs-12.3/chkstat-polkit 
new/polkit-default-privs-12.3/chkstat-polkit
--- old/polkit-default-privs-12.3/chkstat-polkit2013-02-22 
09:39:59.0 +0100
+++ new/polkit-default-privs-12.3/chkstat-polkit2013-02-26 
17:37:01.0 +0100
@@ -88,6 +88,8 @@
 * see man set_polkit_default_privs   *
 \/
 polkit.addRule(function(action, subject) {
+   // set to true for debugging
+   var debug = false;
 rules = { 
 INSERT_RULES_HERE : [ auth_admin, auth_admin, 
auth_admin ],
 };
@@ -99,7 +101,17 @@
 i = 1;
 }   
 }   
+   if (debug)
+   polkit.log(subject);
+
 if (rules[action.id]) {
+   if (debug)
+   polkit.log(action.id +  =  + rules[action.id][i]);
 return rules[action.id][i];
-}   
+} else {
+   if (debug)
+   polkit.log(action.id +  = no override found);
+   }
 });
+
+// vim: syntax=javascript
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polkit-default-privs-12.3/listpolicies.pl 
new/polkit-default-privs-12.3/listpolicies.pl
--- old/polkit-default-privs-12.3/listpolicies.pl   2013-02-22 
09:39:59.0 +0100
+++ new/polkit-default-privs-12.3/listpolicies.pl   2013-02-26 
17:37:01.0 +0100
@@ -27,11 +27,13 @@
\%options,
verbose|v,
policy=s@,
-   check-override,
+   check-override:s,
+   all,
help|h,
 ) or usage(1);
 
 usage(0) if ($options{'help'});
+die check-override must be active/local/any\n if ($options{'check-override'} 
 $options{'check-override'} !~ /active|local|any/);
 
 my %known;
 my @policies;
@@ -94,15 +96,18 @@
 if (!$options{'policy'}) {
map { print $_-{'name'}, \n } @policies;
 } elsif ($options{'check-override'}) {
+   my $what = 2;
+   $what = 1 if $options{'check-override'} eq 'local';
+   $what = 0 if $options{'check-override'} eq 'any';
for my $p (@policies) {
next unless exists 

  1   2   >