commit obs-service-format_spec_file for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package obs-service-format_spec_file for 
openSUSE:Factory checked in at 2012-02-06 13:33:49

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


Package is obs-service-format_spec_file, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/obs-service-format_spec_file/obs-service-format_spec_file.changes
2012-02-04 11:22:30.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.obs-service-format_spec_file.new/obs-service-format_spec_file.changes
   2012-02-06 13:33:52.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  6 12:33:12 UTC 2012 - co...@suse.com
+
+- one more update for php-2.0 and osl-1.1
+
+---



Other differences:
--
++ licenses_changes.txt ++
--- /var/tmp/diff_new_pack.oQMXpp/_old  2012-02-06 13:33:53.0 +0100
+++ /var/tmp/diff_new_pack.oQMXpp/_new  2012-02-06 13:33:53.0 +0100
@@ -308,9 +308,11 @@
 OLDAP-2.8  openldap 2.8
 OpenSSLOpenSSL
 OSL-1.0OSL-1.0
+SUSE-OSL-1.1   OSL-1.1
 OSL-2.0OSL-2.0
 OSL-3.0OSL-3.0
 PDDL-1.0   PDDL-1.0
+SUSE-PHP-2.02  PHP 2.02
 PHP-3.01   PHP License
 PHP-3.01   PHP-3.0.1
 PostgreSQL PostgreSQL
@@ -371,4 +373,4 @@
 SUSE-Firmware  Firmware license, redistributable unmodified
 SUSE-PermissiveMust not be copyleft. Must not contain patent clauses 
of any nature. Most not limit ability to copy, modifiy, distribute (through 
multiple tiers of distribution) and distribute modified versions. Must not 
impose obligations such as 'advertising clauses' or anything that could be 
viewed as an 'additional restriction' under GPL-2.0+ or GPL-3.0+. Must not 
impose obligations such as modification by patch only, or reciprocal clauses.
 Artistic-1.0 or GPL-1.0+   Perl License
-SUSE-NonFree   NonFree licenses
+SUSE-NonFree   NonFree licenses
\ No newline at end of file

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



commit bridge-utils for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package bridge-utils for openSUSE:Factory 
checked in at 2012-02-06 15:54:26

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


Package is bridge-utils, Maintainer is lidongy...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/bridge-utils/bridge-utils.changes
2011-12-08 11:27:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.bridge-utils.new/bridge-utils.changes   
2012-02-06 15:54:30.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb  2 11:10:30 UTC 2012 - rschweik...@suse.com
+
+- Create -devel package to fix rpmlint errors
+- Keep the binary in /usr/sbin, create link to /sbin (UsrMerge project)
+  This does not effect resolution of #707837 as /sbin/brctl can still be
+  found. systemd properly supports separate /usr
+
+---



Other differences:
--
++ bridge-utils.spec ++
--- /var/tmp/diff_new_pack.1GwZXZ/_old  2012-02-06 15:54:31.0 +0100
+++ /var/tmp/diff_new_pack.1GwZXZ/_new  2012-02-06 15:54:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bridge-utils
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   bridge-utils
 BuildRequires:  automake
 BuildRequires:  libsysfs
 Version:1.5
 Release:0
-Group:  Productivity/Networking/Routing
-License:GPL-2.0+
 Url:http://www.linux-foundation.org/en/Net:Bridge
 Summary:Utilities for Configuring the Linux Ethernet Bridge
+License:GPL-2.0+
+Group:  Productivity/Networking/Routing
 Source: %{name}-%{version}.tar.gz
 Patch:  %{name}-%{version}-hz.diff
 Patch1: %{name}-%{version}-optflags.patch
@@ -36,6 +37,14 @@
 connected to one ethernet device see hosts connected to the other
 ethernet devices directly.
 
+%package devel
+Summary:Development files for %{name}
+Group:  Development/Libraries/Other
+Requires:   %{name} = %{version}
+
+%description devel
+The %{name} devel package contains files needed for development.
+
 %prep
 %setup -q
 %patch
@@ -49,7 +58,9 @@
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
 install -d -m 755 $RPM_BUILD_ROOT/sbin
-mv $RPM_BUILD_ROOT%{_sbindir}/brctl $RPM_BUILD_ROOT/sbin
+#UsrMerge
+ln -sf %{_sbindir}/brctl $RPM_BUILD_ROOT/sbin
+#EndUsrMerge
 install -D -m 644 libbridge/libbridge.h %{buildroot}%{_includedir}/libbridge.h
 install -D -m 644 libbridge/libbridge.a %{buildroot}%{_libdir}/libbridge.a
 
@@ -57,8 +68,14 @@
 %defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog README THANKS TODO doc/[FHPRSW]*
 %doc %{_mandir}/man?/*
+%{_sbindir}/*
+#UsrMerge
+/sbin/*
+#EndUsrMerge
+
+%files devel
+%defattr(-,root,root)
 %{_includedir}/*
 %{_libdir}/lib*
-/sbin/*
 
 %changelog

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



commit cherrytree for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package cherrytree for openSUSE:Factory 
checked in at 2012-02-06 15:54:32

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


Package is cherrytree, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/cherrytree/cherrytree.changes2012-01-25 
12:18:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.cherrytree.new/cherrytree.changes   
2012-02-06 15:54:35.0 +0100
@@ -1,0 +2,11 @@
+Sat Feb  4 13:58:27 CET 2012 - zai...@opensuse.org
+
+- Update to version 0.25.3:
+  + The limit of undoable steps per node is now configurable.
+  + Implemented a dialog to iterate graphical way the find/replace.
+  + Implemented the insertion of timestamps. Format is configurable
+through preferences dialog.
+  + Fixed some bugs/bad behaviors related to system tray, nodes 
+drag n drop, links to files dialog and others.
+
+---

Old:

  cherrytree-0.25.2.tar.gz

New:

  cherrytree-0.25.3.tar.gz



Other differences:
--
++ cherrytree.spec ++
--- /var/tmp/diff_new_pack.ZBUa02/_old  2012-02-06 15:54:37.0 +0100
+++ /var/tmp/diff_new_pack.ZBUa02/_new  2012-02-06 15:54:37.0 +0100
@@ -17,8 +17,8 @@
 
 
 Name:   cherrytree
-Version:0.25.2
-Release:0
+Version:0.25.3
+Release:1
 Summary:A hierarchical note taking application
 License:GPL-2.0+
 Group:  Productivity/Office/Other

++ cherrytree-0.25.2.tar.gz - cherrytree-0.25.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cherrytree-0.25.2/debian/changelog 
new/cherrytree-0.25.3/debian/changelog
--- old/cherrytree-0.25.2/debian/changelog  2012-01-22 21:55:42.0 
+0100
+++ new/cherrytree-0.25.3/debian/changelog  2012-02-03 13:39:01.0 
+0100
@@ -1,4 +1,4 @@
-cherrytree (0.25.2-1) stable; urgency=low
+cherrytree (0.25.3-1) stable; urgency=low
 
   * Fellow upstream.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cherrytree-0.25.2/debian/debhelper.log 
new/cherrytree-0.25.3/debian/debhelper.log
--- old/cherrytree-0.25.2/debian/debhelper.log  2012-01-24 01:12:26.0 
+0100
+++ new/cherrytree-0.25.3/debian/debhelper.log  2012-02-03 14:00:28.0 
+0100
@@ -7,53 +7,6 @@
 dh_link
 dh_compress
 dh_fixperms
-dh_pycentral
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
-dh_prep
-dh_installdirs
-dh_installchangelogs
-dh_installdocs
-dh_installexamples
-dh_installman
-dh_link
-dh_compress
-dh_fixperms
-dh_pycentral
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
-dh_prep
-dh_installdirs
-dh_installchangelogs
-dh_installdocs
-dh_installexamples
-dh_installman
-dh_link
-dh_compress
-dh_fixperms
-dh_pycentral
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
-dh_prep
-dh_installdirs
-dh_installchangelogs
-dh_installdocs
-dh_installexamples
-dh_installman
-dh_link
-dh_compress
-dh_fixperms
-dh_pycentral
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
 dh_prep
 dh_installdirs
 dh_installchangelogs
Files old/cherrytree-0.25.2/linux/cherrytree.1.gz and 
new/cherrytree-0.25.3/linux/cherrytree.1.gz differ
Files old/cherrytree-0.25.2/locale/cs/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/cs/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/de/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/de/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/es/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/es/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/fr/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/fr/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/it/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/it/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/pl/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/pl/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/ru/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/ru/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/locale/uk/LC_MESSAGES/cherrytree.mo and 
new/cherrytree-0.25.3/locale/uk/LC_MESSAGES/cherrytree.mo differ
Files old/cherrytree-0.25.2/modules/clipboard.pyc and 
new/cherrytree-0.25.3/modules/clipboard.pyc differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cherrytree-0.25.2/modules/codeboxes.py 
new/cherrytree-0.25.3/modules/codeboxes.py
--- old/cherrytree-0.25.2/modules/codeboxes.py  2012-01-13 

commit gnuchess for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package gnuchess for openSUSE:Factory 
checked in at 2012-02-06 15:54:39

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


Package is gnuchess, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gnuchess/gnuchess.changes2011-09-23 
02:01:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnuchess.new/gnuchess.changes   2012-02-06 
15:54:43.0 +0100
@@ -1,0 +2,25 @@
+Tue Nov 29 12:08:41 UTC 2011 - jreidin...@suse.com
+
+- update gnuchess to official version 6.0.1
+- clean up patches
+- change generation of recent book dat from source during build 
+
+---
+Wed Aug  4 17:37:37 UTC 2010 - pack...@links2linux.de
+
+- updated gnuchess to (unofficial) version 5.07.94.1b
+- updated to most recent book.dat
+- removed obsolete getline patch
+- added patches to fix a few rpmlint-warnings/errors
+- added gnuchess-add_new_bookpath.diff so gnuchess finds the default
+  opening book in /usr/share/gnuchess
+
+---
+Mon Jan 11 00:00:00 UTC 2010 - pack...@links2linux.de
+- updated to (unofficial) version 5.07.9b by M. Vandenbergh
+- added script xgnuchess to start xboard with gnuchess
+  as first and second chess engine
+- patches refreshed
+- description updated
+
+---

Old:

  book.dat.bz2
  book_1.01.pgn.bz2
  gnuchess-5.07-fix-missing-fclose.patch
  gnuchess-5.07.tar.bz2
  gnuchess-getline.diff
  gnuchess-nonstatic.diff

New:

  book_1.02.pgn.bz2
  gnuchess-6.0.1.tar.bz2
  gnuchess-return-nonvoid.patch
  xgnuchess



Other differences:
--
++ gnuchess.spec ++
--- /var/tmp/diff_new_pack.p25x9p/_old  2012-02-06 15:54:49.0 +0100
+++ /var/tmp/diff_new_pack.p25x9p/_new  2012-02-06 15:54:49.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package gnuchess (Version 5.07)
+# spec file for package gnuchess
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,82 +15,71 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   gnuchess
-BuildRequires:  bison flex readline-devel
-Url:http://www.gnu.org/software/chess/chess.html
-License:GPLv2+
-Group:  Amusements/Games/Board/Chess
-Provides:   chess_backend
-Provides:   gchess
-AutoReqProv:on
-Version:5.07
-Release:145
+Version:6.0.1
+Release:0
 Summary:GNU Chess Program
-Source: %{name}-%{version}.tar.bz2
+License:GPL-2.0+
+Group:  Amusements/Games/Board/Chess
+Url:
http://alpha.uhasselt.be/Research/Algebra/Toga/gnuchess-release/
+Source0:%{name}-%{version}.tar.bz2
 # WARNING: Don't forget to re-generate book.dat manually before submit!
 # Simply remove the source and build, updated book will be generated.
-Source1:book_1.01.pgn.bz2
-Source2:book.dat.bz2
+Source1:book_1.02.pgn.bz2
+#Source2:book.dat.bz2
 Source3:genbook.sh
 Source4:gnuchess.6
-Patch0: gnuchess-nonstatic.diff
-Patch1: gnuchess-getline.diff
-# PATCH-FIX-OPENSUSE gnuchess-5.07-fix-missing-fclose.patch bnc#534576
-Patch2: gnuchess-5.07-fix-missing-fclose.patch
+Source5:xgnuchess
+Patch0: gnuchess-return-nonvoid.patch
+BuildRequires:  bison
+BuildRequires:  expect
+BuildRequires:  flex
+BuildRequires:  gcc-c++
+BuildRequires:  readline-devel
+Requires(post): info
+Requires(preun):info
+Provides:   chess_backend
+Provides:   gchess
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A worthy chess opponent that runs in text mode. Find an X11 interface
 in the xboard package.
 
-
-
-Authors:
-
-Hans Eric Sandstrom h...@log-sv.se
-Stuart Cracraft cracr...@rice-chex.ai.mit.edu
-Mike McGann m...@hslrswi.hasler.ascom.ch
-Philippe Schnoebelen p...@lifia.imag.fr
-Tim Mann m...@src.dec.com
-
 %prep
-%setup
+%setup -q
 %patch0
-%patch1
 
 %build
-CFLAGS=$RPM_OPT_FLAGS
-./configure --prefix=%{_prefix} \
---mandir=%{_mandir} \
---datadir=%{_datadir}
-sed 
'/\/usr\/lib\/games\/gnuchess\/book\.dat/d;s:/usr/share/games:%{_datadir}:' 
src/book.h src/book.h~
-mv src/book.h~ src/book.h
-make
+%configure
+make %{?_smp_mflags}
+sed -i 

commit kiwi for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2012-02-06 15:54:51

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.changes2012-01-27 
14:03:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2012-02-06 
15:54:59.0 +0100
@@ -1,0 +2,87 @@
+Fri Feb  3 15:23:04 CET 2012 - m...@suse.de
+
+- v5.02.8 released
+  
+---
+Fri Feb  3 10:02:46 CET 2012 - m...@suse.de
+  
+- moved validation of delete section into setup() routine
+- dont't use basePackBootIncludes/baseUnpackBootIncludes anymore
+  this conflicts with bootincluded packages marked for deletion
+  
+---
+Thu Feb  2 10:32:00 CET 2012 - m...@suse.de
+  
+- keep only the uBoot initrd representation and remove the
+  gzip version of the initrd from the boot partition. This
+  saves some space urgently needed because on arm the boot
+  partition is fixed 64MB
+  
+---
+Thu Feb  2 10:10:44 CET 2012 - rjsch...@suse.de
+  
+- add unit test for getExecArgsFormat() method of KIWILocator
+- implement helper executables for the test in new bin directory
+- fix logic errors in getExecArgsFormat() found by unit test implementation
+  
+---
+Wed Feb  1 14:52:15 CET 2012 - m...@suse.de
+  
+- migration: fixed repo dir detection
+  
+---
+Wed Feb  1 14:47:43 CET 2012 - m...@suse.de
+  
+- migration: sort repo list information
+  
+---
+Wed Feb  1 13:52:19 CET 2012 - m...@suse.de
+  
+- migration: write cache early enough
+  
+---
+Wed Feb  1 13:37:32 CET 2012 - m...@suse.de
+  
+- migration: added support for svn detection
+  
+---
+Wed Feb  1 13:00:25 CET 2012 - m...@suse.de
+  
+- fixed use of uninitialized value in the locator
+  
+---
+Wed Feb  1 09:10:05 CET 2012 - m...@suse.de
+  
+- migration changes:
+  * added progress information while creating custom tree
+  * make custom files creation much faster
+  * make modified files creation faster
+
+---
+Mon Jan 30 15:10:09 CET 2012 - m...@suse.de
+
+- allow use of merged solvable in KIWISatSolver
+  
+---
+Mon Jan 30 11:56:21 CET 2012 - m...@suse.de
+  
+- migration: ignore weak-update links
+  
+---
+Mon Jan 30 11:36:34 CET 2012 - m...@suse.de
+  
+- migration changes:
+  * create custom tree for unpackaged files/dirs based on hardlinks
+  * don't copy entire etc/ directory, doesn't make sense to have all
+especially packages stuff in the overlay tree
+  * adapt deny list, ignore bootsplash and bootloader data for
+migration
+
+---
+Fri Jan 27 16:00:46 CET 2012 - rjsch...@suse.de
+
+- fix spec file, version of RPM on SLE does not handle %else if directives
+  thus we get a dependency to qemu-img is created, but this package does
+  not exist on SLE.
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.6oRjKq/_old  2012-02-06 15:55:00.0 +0100
+++ /var/tmp/diff_new_pack.6oRjKq/_new  2012-02-06 15:55:00.0 +0100
@@ -22,7 +22,7 @@
 Summary:OpenSuSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.02.7
+Version:5.02.8
 Release:0
 # requirements to build packages
 BuildRequires:  gcc-c++
@@ -206,7 +206,8 @@
 Requires:   kiwi = %{version}
 %if 0%{?suse_version}
 Requires:   multipath-tools parted
-%else if 0%{?rhel_version}
+%endif
+%if 0%{?rhel_version}
 Requires:   device-mapper-multipath parted
 %endif
 
@@ -218,11 +219,13 @@
 %else
 %if 0%{?suse_version} = 1130
 Requires:   virt-utils
-%else if 0%{?rhel_version}
-Requires:   qemu-img
-%else
+%endif
+%if 0%{?suse_version}  1130
 Requires:   qemu
 %endif
+%if 0%{?rhel_version}
+Requires:   qemu-img
+%endif
 %endif
 Summary:OpenSuSE - 

commit majordomo for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package majordomo for openSUSE:Factory 
checked in at 2012-02-06 15:54:57

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


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

Changes:

--- /work/SRC/openSUSE:Factory/majordomo/majordomo.changes  2011-09-23 
02:12:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.majordomo.new/majordomo.changes 2012-02-06 
15:55:05.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 14:24:58 UTC 2012 - dlova...@suse.com
+
+- Added -fpie and -pie to compiler and linker options
+
+---

New:

  majordomo-1.94.5.pie.patch



Other differences:
--
++ majordomo.spec ++
--- /var/tmp/diff_new_pack.FJSekw/_old  2012-02-06 15:55:07.0 +0100
+++ /var/tmp/diff_new_pack.FJSekw/_new  2012-02-06 15:55:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package majordomo
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -34,6 +34,7 @@
 Patch2: majordomo-%{version}.decl.patch
 Patch3: majordomo-%{version}.destdir.patch
 Patch4: 
majordomo-%{version}.fix-split-no-longer-assigning-to-_-bnc-716393.patch
+Patch5: majordomo-%{version}.pie.patch
 PreReq: /usr/sbin/useradd /usr/sbin/groupadd permissions
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -59,6 +60,7 @@
 %patch2
 %patch3
 %patch4 -p1
+%patch5 -p1
 
 %build
 make wrapper

++ majordomo-1.94.5.pie.patch ++
--- majordomo-1.94.5/Makefile
+++ majordomo-1.94.5/Makefile
@@ -216,7 +216,7 @@ install-man:
Doc/man/wrapper.8.gz $(DESTDIR)$(MAN)/man8/wrapper.8.gz
 
 wrapper: wrapper.c
-   $(CC)  $(WRAPPER_FLAGS) -o wrapper wrapper.c
+   $(CC)  $(WRAPPER_FLAGS) -fpie -pie -o wrapper wrapper.c
 
 clean:
rm -f  wrapper *~
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mc for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package mc for openSUSE:Factory checked in 
at 2012-02-06 15:55:01

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


Package is mc, Maintainer is nadvor...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mc/mc.changes2011-12-21 10:01:28.0 
+0100
+++ /work/SRC/openSUSE:Factory/.mc.new/mc.changes   2012-02-06 
15:55:07.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb  3 09:00:29 UTC 2012 - dlova...@suse.com
+
+- Fixed rpmlint warning - added -fpie and -pie to compilation and linking of 
consaver
+
+---

New:

  mc-pie.patch



Other differences:
--
++ mc.spec ++
--- /var/tmp/diff_new_pack.DC2QkV/_old  2012-02-06 15:55:11.0 +0100
+++ /var/tmp/diff_new_pack.DC2QkV/_new  2012-02-06 15:55:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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:   mc
 Summary:Midnight Commander
+License:GPL-2.0+
 Group:  Productivity/File utilities
-License:GPLv2+
 Url:http://www.midnight-commander.org/
 Version:4.7.5.3
-Release:1
+Release:0
 Source: mc-%{version}.tar.lzma
 Source1:x11_browser
 Source2:%{name}.desktop
@@ -49,6 +46,8 @@
 # Patches from Fedora
 Patch50:mc-extensions.patch
 Patch51:mc-mcviewsegfault.patch
+#Patch adding -fpie and -pie to compilation and linking of setuid binaries
+Patch52:mc-pie.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  audiofile-devel
 BuildRequires:  docbook-toys
@@ -115,6 +114,7 @@
 %patch41
 %patch50
 %patch51
+%patch52 -p1
 
 pushd doc/hints
 iconv -f iso8859-1 -t utf-8 -o mc.hint.tmp mc.hint  mv mc.hint.tmp mc.hint


++ mc-pie.patch ++
Index: mc-4.7.5.3/src/consaver/Makefile.am
===
--- mc-4.7.5.3.orig/src/consaver/Makefile.am
+++ mc-4.7.5.3/src/consaver/Makefile.am
@@ -4,4 +4,6 @@ pkglibexec_PROGRAMS = cons.saver
 
 cons_saver_SOURCES = cons.saver.c
 
-cons_saver_CFLAGS= -I$(top_srcdir)
+cons_saver_CFLAGS= -fpie -I$(top_srcdir)
+
+cons_saver_LDFLAGS= -pie

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



commit php5-pear-phpunit-DbUnit for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-phpunit-DbUnit for 
openSUSE:Factory checked in at 2012-02-06 15:55:08

Comparing /work/SRC/openSUSE:Factory/php5-pear-phpunit-DbUnit (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-phpunit-DbUnit.new (New)


Package is php5-pear-phpunit-DbUnit, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/php5-pear-phpunit-DbUnit/php5-pear-phpunit-DbUnit.changes
2011-09-23 12:40:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-phpunit-DbUnit.new/php5-pear-phpunit-DbUnit.changes
   2012-02-06 15:55:12.0 +0100
@@ -1,0 +2,11 @@
+Fri Feb  3 14:37:47 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  Look at the LICENSE file
+
+---
+Thu Dec  8 13:54:23 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---



Other differences:
--
++ php5-pear-phpunit-DbUnit.spec ++
--- /var/tmp/diff_new_pack.zvMV4j/_old  2012-02-06 15:55:15.0 +0100
+++ /var/tmp/diff_new_pack.zvMV4j/_new  2012-02-06 15:55:15.0 +0100
@@ -16,20 +16,21 @@
 #
 
 
-
 Name:   php5-pear-phpunit-DbUnit
 %define pear_name  DbUnit
 %define pear_sname dbunit
 Summary:Filters files based on a list of suffixes
-Version:1.0.2
-Release:1
-License:BSD
+License:BSD-3-Clause
 Group:  Development/Libraries/PHP
+Version:1.0.2
+Release:0
 Source0:http://pear.phpunit.de/get/DbUnit-%{version}.tgz
 Url:http://pear.phpunit.de/
 Requires:   php5-pear-channel-phpunit
 Requires:   php5-pdo php-reflection php-simplexml
-BuildRequires:  php-macros php5-pear php5-pear-channel-phpunit
+BuildRequires:  php-macros
+BuildRequires:  php5-pear
+BuildRequires:  php5-pear-channel-phpunit
 BuildArch:  noarch
 
 # Fix for renaming (package convention)

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



commit powertop for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package powertop for openSUSE:Factory 
checked in at 2012-02-06 15:55:14

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


Package is powertop, Maintainer is thoe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/powertop/powertop.changes2011-09-23 
12:41:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.powertop.new/powertop.changes   2012-02-06 
15:55:15.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb  2 09:11:29 UTC 2012 - a...@suse.de
+
+- Update to version 1.98:
+  * Major rewrite using perf interface with many new options
+  
+---

Old:

  powertop-1.13.tar.bz2
  powertop_fix_sizof_link.patch

New:

  powertop-1.98-always-create-params.patch
  powertop-1.98-compile-fix.patch
  powertop-1.98-unknown-readings-fix.patch
  powertop-1.98.tar.bz2
  powertop-no-date.patch



Other differences:
--
++ powertop.spec ++
--- /var/tmp/diff_new_pack.bDKoxD/_old  2012-02-06 15:55:17.0 +0100
+++ /var/tmp/diff_new_pack.bDKoxD/_new  2012-02-06 15:55:17.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package powertop (Version 1.13)
+# spec file for package powertop
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,16 +18,25 @@
 
 
 Name:   powertop
-Url:http://www.linuxpowertop.org
+Url:http://www.lesswatts.org
 Summary:A Linux Tool to Find out What is Using Power on a Laptop
-Version:1.13
+Version:1.98
 Release:1
 License:GPL-2.0+
 Group:  System/Monitoring
 Source0:%{name}-%{version}.tar.bz2
-Patch0: powertop_fix_sizof_link.patch
 Patch1: powertop_set_cflags_override.patch
+Patch2: powertop-1.98-always-create-params.patch
+Patch3: powertop-1.98-unknown-readings-fix.patch
+Patch4: powertop-1.98-compile-fix.patch
+Patch5: powertop-no-date.patch
+BuildRequires:  gcc-c++
 BuildRequires:  ncurses-devel
+BuildRequires:  pkg-config
+BuildRequires:  libnl-1_1-devel
+BuildRequires:  zlib-devel
+BuildRequires:  pciutils-devel
+BuildRequires:  gettext
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 AutoReqProv:on
 
@@ -36,31 +45,39 @@
 from your system and presents an overview of how well your laptop is
 doing in terms of power savings.
 
-
-Authors:
-
-Arjan van de Ven ar...@linux.intel.com
-
 %prep
-%setup
-%patch0 -p1
+%setup -q
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
-make CFLAGS=$RPM_OPT_FLAGS
+make CFLAGS=$RPM_OPT_FLAGS CXXFLAGS=$RPM_OPT_FLAGS
 
 %install
 mkdir -p %{buildroot}/%{_bindir}
 make install DESTDIR=%{buildroot}
-%find_lang %{name}
+install -Dd %{buildroot}%{_localstatedir}/cache/powertop
+touch 
%{buildroot}%{_localstatedir}/cache/powertop/{saved_parameters.powertop,saved_results.powertop}
+#%find_lang %{name}
+
+%post
+# Hack for powertop not to show warnings on first start
+touch 
%{_localstatedir}/cache/powertop/{saved_parameters.powertop,saved_results.powertop}
 
 %clean
 rm -rf %{_buildroot}
 
-%files  -f %{name}.lang
+#%files  -f %{name}.lang
+
+%files
 %defattr(-,root,root)
-%doc COPYING
+%doc COPYING README
+%dir %{_localstatedir}/cache/powertop
+%ghost %{_localstatedir}/cache/powertop/saved_parameters.powertop
+%ghost %{_localstatedir}/cache/powertop/saved_results.powertop
 %{_bindir}/%{name}
-%{_mandir}/man*/%{name}.8.gz
 
 %changelog

++ powertop-1.98-always-create-params.patch ++
diff -up powertop-1.98/parameters/persistent.cpp.orig 
powertop-1.98/parameters/persistent.cpp
--- powertop-1.98/parameters/persistent.cpp.orig2011-05-11 
06:48:37.0 +0200
+++ powertop-1.98/parameters/persistent.cpp 2011-12-02 19:48:45.056747667 
+0100
@@ -122,22 +122,23 @@ void save_parameters(const char *filenam
 
 // printf(result size is %i, #parameters is %i \n, 
(int)past_results.size(), (int)all_parameters.parameters.size());
 
-   if (!global_power_valid())
-   return;
 
file.open(filename, ios::out);
if (!file) {
cout  _(Cannot save to file )  filename  \n;
return;
}
-   
-   mapstring, int::iterator it;
 
-   for (it = param_index.begin(); it != param_index.end(); it++) {
-   int index;
-   index = it-second;
-   file  it-first  \t  setprecision(9)  
all_parameters.parameters[index]  

commit rfc for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package rfc for openSUSE:Factory checked in 
at 2012-02-06 15:55:18

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


Package is rfc, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rfc/rfc.changes  2012-01-24 12:21:37.0 
+0100
+++ /work/SRC/openSUSE:Factory/.rfc.new/rfc.changes 2012-02-06 
15:55:24.0 +0100
@@ -2 +2 @@
-Sat Jan 21 02:42:17 CET 2012 - autobu...@suse.de
+Sat Feb  4 04:42:31 CET 2012 - autobu...@suse.de
@@ -4 +4,6 @@
-- automated update on 2012-01-21
+- automated update on 2012-02-04
+
+---
+Sat Jan 28 03:42:30 CET 2012 - autobu...@suse.de
+
+- automated update on 2012-01-28



Other differences:
--
++ rfc.spec ++
--- /var/tmp/diff_new_pack.kE1Z5x/_old  2012-02-06 15:55:49.0 +0100
+++ /var/tmp/diff_new_pack.kE1Z5x/_new  2012-02-06 15:55:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rfc
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   rfc
-License:PERMISSIVE-OSI-COMPLIANT
-Group:  Documentation/Other
 AutoReqProv:off
 Summary:The RFCs (Request For Comments)
+License:SUSE-Permissive
+Group:  Documentation/Other
 Source: rfc.tgz
 BuildArch:  noarch
 Version:2011.9.9
-Release:1
+Release:0
 Url:ftp://ftp.isi.edu/in-notes
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 


++ rfc.tgz ++
/work/SRC/openSUSE:Factory/rfc/rfc.tgz 
/work/SRC/openSUSE:Factory/.rfc.new/rfc.tgz differ: char 5, line 1

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



commit vlan for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package vlan for openSUSE:Factory checked in 
at 2012-02-06 15:55:29

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


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

Changes:

--- /work/SRC/openSUSE:Factory/vlan/vlan.changes2011-09-23 
12:50:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.vlan.new/vlan.changes   2012-02-06 
15:55:49.0 +0100
@@ -1,0 +2,7 @@
+Mon Jan 30 18:42:27 UTC 2012 - rschweik...@suse.com
+
+- Changed install of vconfig to /usr/sbin as part of usr merge
+  project. With having /usr on a separate fs is supported by
+  systemd, thus this does not effect issues reported in (#285472)
+
+---



Other differences:
--
++ vlan.spec ++
--- /var/tmp/diff_new_pack.GEVyff/_old  2012-02-06 15:55:51.0 +0100
+++ /var/tmp/diff_new_pack.GEVyff/_new  2012-02-06 15:55:51.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package vlan (Version 1.9)
+# spec file for package vlan
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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:   vlan
 BuildRequires:  gcc-c++
 Url:http://www.candelatech.com/~greear/vlan.html
 Version:1.9
-Release:116
+Release:0
 Summary:802.1q VLAN Implementation for Linux
 License:GPL-2.0+
 Group:  Productivity/Networking/Other
-AutoReqProv:on
 Source: http://www.candelatech.com/~greear/vlan/vlan.%{version}.tar.bz2
 Source1:http://scry.wanfear.com/~greear/vlan/cisco_howto.html.bz2
 Source2:README.SuSE
@@ -52,15 +49,21 @@
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT/{sbin,%{_mandir}/man8/}
-install -m755 vconfig   $RPM_BUILD_ROOT/sbin
+mkdir -p $RPM_BUILD_ROOT/{sbin,%_sbindir,%{_mandir}/man8/}
+install -m755 vconfig   $RPM_BUILD_ROOT/%_sbindir
 install -m644 vconfig.8 $RPM_BUILD_ROOT%{_mandir}/man8/
+#UsrMerge
+ln -sf %_sbindir/vconfig $RPM_BUILD_ROOT/sbin
+#EndUsrMerge
 cp %SOURCE2 .
 
 %files
 %defattr(644,root,root,755)
 %doc *.html *.pl CHANGELOG README README.SuSE
 %doc %{_mandir}/man8/vconfig.8.gz
+%attr(755,root,root) %_sbindir/vconfig
+#UsrMerge
 %attr(755,root,root) /sbin/vconfig
+#EndUsrMerge
 
 %changelog


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



commit openssl for openSUSE:11.4

2012-02-06 Thread h_root

Hello community,

here is the log from the commit of package openssl for openSUSE:11.4
checked in at Mon Feb 6 16:15:58 CET 2012.




--- old-versions/11.4/UPDATES/all/openssl/openssl.changes   2012-01-11 
08:18:04.0 +0100
+++ 11.4/openssl/openssl.changes2012-02-02 08:23:19.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb  2 07:22:17 UTC 2012 - g...@suse.com
+
+- fix security bug [bnc#742821] - DTLS DoS Attack
+  CVE-2012-0050
+
+---

calling whatdependson for 11.4-i586


New:

  CVE-2012-0050.patch



Other differences:
--
++ openssl.spec ++
--- /var/tmp/diff_new_pack.VLWWs2/_old  2012-02-06 16:15:44.0 +0100
+++ /var/tmp/diff_new_pack.VLWWs2/_new  2012-02-06 16:15:44.0 +0100
@@ -31,7 +31,7 @@
 Obsoletes:  openssl-64bit
 %endif
 Version:1.0.0c
-Release:18.RELEASE23
+Release:18.RELEASE25
 Summary:Secure Sockets and Transport Layer Security
 Url:http://www.openssl.org/
 Source: http://www.%{name}.org/source/%{name}-%{version}.tar.bz2
@@ -55,6 +55,7 @@
 Patch23:CVE-2011-4577.patch
 Patch24:CVE-2011-4619.patch
 Patch25:CVE-2012-0027.patch
+Patch26:CVE-2012-0050.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -197,6 +198,7 @@
 %patch23 -p1
 %patch24 -p1
 %patch25 -p1
+%patch26 -p1
 cp -p %{S:10} .
 echo adding/overwriting some entries in the 'table' hash in Configure
 # 
$dso_scheme:$shared_target:$shared_cflag:$shared_ldflag:$shared_extension:$ranlib:$arflags

++ CVE-2012-0050.patch ++
Index: openssl-1.0.0e/ssl/d1_pkt.c
===
--- openssl-1.0.0e.orig/ssl/d1_pkt.c
+++ openssl-1.0.0e/ssl/d1_pkt.c
@@ -376,6 +376,7 @@ dtls1_process_record(SSL *s)
unsigned int mac_size;
unsigned char md[EVP_MAX_MD_SIZE];
int decryption_failed_or_bad_record_mac = 0;
+   unsigned char *mac = NULL;
 
 
rr= (s-s3-rrec);
@@ -447,19 +448,15 @@ printf(\n);
 #endif 
}
/* check the MAC for rr-input (it's in mac_size bytes at the 
tail) */
-   if (rr-length  mac_size)
+   if (rr-length = mac_size)
{
-#if 0 /* OK only for stream ciphers */
-   al=SSL_AD_DECODE_ERROR;
-   
SSLerr(SSL_F_DTLS1_PROCESS_RECORD,SSL_R_LENGTH_TOO_SHORT);
-   goto f_err;
-#else
-   decryption_failed_or_bad_record_mac = 1;
-#endif
+   rr-length -= mac_size;
+   mac = rr-data[rr-length];
}
-   rr-length-=mac_size;
+   else
+   rr-length = 0;
i=s-method-ssl3_enc-mac(s,md,0);
-   if (i  0 || memcmp(md,(rr-data[rr-length]),mac_size) != 0)
+   if (i  0 || mac == NULL || memcmp(md, mac, mac_size) != 0)
{
decryption_failed_or_bad_record_mac = 1;
}
continue with q...



Remember to have fun...

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



commit opera for openSUSE:12.1:Update:Test

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package opera for openSUSE:12.1:Update:Test 
checked in at 2012-02-06 16:23:00

Comparing /work/SRC/openSUSE:12.1:Update:Test/opera (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.opera.new (New)


Package is opera, Maintainer is prus...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/opera/opera.changes 2011-12-07 
19:17:39.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.opera.new/opera.changes
2012-02-06 16:23:02.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb  6 13:31:00 CET 2012 - meiss...@suse.de
+
+- Updated to 11.61 / bnc#743079
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1161/
+
+---

Old:

  opera-11.60-1185.i386.linux.tar.xz
  opera-11.60-1185.x86_64.linux.tar.xz

New:

  opera-11.61-1250.i386.linux.tar.xz
  opera-11.61-1250.x86_64.linux.tar.xz



Other differences:
--
++ opera.spec ++
--- /var/tmp/diff_new_pack.2gHr5G/_old  2012-02-06 16:23:04.0 +0100
+++ /var/tmp/diff_new_pack.2gHr5G/_new  2012-02-06 16:23:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package opera
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,15 +18,15 @@
 
 %define tag32b   i386.linux
 %define tag64b   x86_64.linux
-%define buildnum 1185
+%define buildnum 1250
 
 Name:   opera
-Version:11.60
+Version:11.61
 Release:0
-License:NON-OSI-COMPLIANT(royalties)
 Summary:Opera Web Browser (%{version} build %{buildnum})
-Url:http://www.opera.com/
+License:NON-OSI-COMPLIANT(royalties)
 Group:  Productivity/Networking/Web/Browsers
+Url:http://www.opera.com/
 Source0:%{name}-%{version}-%{buildnum}.%{tag32b}.tar.xz
 Source1:%{name}-%{version}-%{buildnum}.%{tag64b}.tar.xz
 NoSource:   0
@@ -46,7 +46,6 @@
 according to the official recommendations.
 
 %package gtk
-License:NON-OSI-COMPLIANT(royalties)
 Summary:Opera GTK engine
 Group:  Productivity/Networking/Web/Browsers
 Requires:   opera = %{version}
@@ -55,7 +54,6 @@
 Opera engine for GTK integration.
 
 %package kde4
-License:NON-OSI-COMPLIANT(royalties)
 Summary:Opera KDE4 engine
 Group:  Productivity/Networking/Web/Browsers
 Requires:   opera = %{version}

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



commit branding-openSUSE for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package branding-openSUSE for 
openSUSE:Factory checked in at 2012-02-06 16:40:55

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


Package is branding-openSUSE, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/branding-openSUSE/branding-openSUSE.changes  
2011-11-28 12:53:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.branding-openSUSE.new/branding-openSUSE.changes 
2012-02-06 16:40:56.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  1 17:12:59 UTC 2012 - rbrown...@opensuse.org
+
+- initial update to 12.2 design
+
+---



Other differences:
--
++ branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.2F3BJm/_old  2012-02-06 16:40:59.0 +0100
+++ /var/tmp/diff_new_pack.2F3BJm/_new  2012-02-06 16:40:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package branding-openSUSE
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,7 @@
 
 Name:   branding-openSUSE
 Version:12.2
-Release:1
-License:BSD-3-Clause
-Group:  System/Fhs
+Release:0
 Provides:   branding
 Conflicts:  otherproviders(branding)
 # git://gitorious.org/opensuse/art.git
@@ -35,8 +33,12 @@
 BuildRequires:  gfxboot-devel
 %endif
 Summary:SuSE Brand File
+License:BSD-3-Clause
+Group:  System/Fhs
 BuildRequires:  fribidi
-BuildRequires:  kde4-filesystem kdelibs4-branding-upstream 
kdm-branding-upstream
+BuildRequires:  kde4-filesystem
+BuildRequires:  kdelibs4-branding-upstream
+BuildRequires:  kdm-branding-upstream
 BuildRequires:  update-desktop-files
 
 %description
@@ -60,12 +62,11 @@
 %endif
 
 %package -n bootsplash-branding-openSUSE
-License:BSD-3-Clause
 Supplements:packageand(bootsplash:branding-openSUSE)
 Provides:   bootsplash-branding = %{version}
 Summary:openSUSE Bootsplash Theme
-PreReq: %fillup_prereq perl
 Group:  System/Boot
+PreReq: %fillup_prereq perl
 Requires:   bootsplash = 3.3-11
 Requires(post): mkinitrd
 BuildArch:  noarch
@@ -88,6 +89,7 @@
 
 %package -n wallpaper-branding-openSUSE
 Summary:openSUSE default wallpapers
+Group:  System/Fhs
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 Provides:   wallpaper-branding = %{version}
@@ -121,6 +123,7 @@
 
 %package -n yast2-qt-branding-openSUSE
 Summary:openSUSE default wallpapers
+Group:  System/Fhs
 Provides:   yast2-qt-branding = %{version}
 Conflicts:  otherproviders(yast2-qt-branding)
 Supplements:packageand(yast2-qt:branding-openSUSE)
@@ -131,6 +134,7 @@
 
 %package -n ksplashx-branding-openSUSE
 Summary:openSUSE branding for KDE splash
+Group:  System/Fhs
 Provides:   ksplashx-branding = %{version}
 Conflicts:  otherproviders(ksplashx-branding)
 Supplements:packageand(kdebase4-workspace:branding-openSUSE)
@@ -143,6 +147,7 @@
 
 %package -n susegreeter-branding-openSUSE
 Summary:openSUSE branding
+Group:  System/Fhs
 Provides:   susegreeter-branding = %{version}
 Conflicts:  otherproviders(susegreeter-branding)
 BuildArch:  noarch
@@ -167,14 +172,15 @@
 
 %package -n xfce4-splash-branding-openSUSE
 Summary:openSUSE branding for XFCE splash
+Group:  System/Fhs
 BuildArch:  noarch
 
 %description -n xfce4-splash-branding-openSUSE
 openSUSE branding for the XFCE splash 
 
 %package -n gimp-branding-openSUSE
-Group:  Productivity/Graphics/Bitmap Editors
 Summary:The GNU Image Manipulation Program -- openSUSE Splash Screen
+Group:  Productivity/Graphics/Bitmap Editors
 BuildRequires:  gimp
 %if 0
 # Disabled since we want to avoid rebuilding this package when gimp changes. If
@@ -220,7 +226,7 @@
 cp -r /usr/share/kde4/apps/kdeui/about/ about
 pushd about
 # need to have latest kdelibs4 in factory
-patch -p0  ../openSUSE/kdelibs/css.diff
+#patch -p0  ../openSUSE/kdelibs/css.diff
 popd
 
 %install

++ openSUSE.tar.gz ++
/work/SRC/openSUSE:Factory/branding-openSUSE/openSUSE.tar.gz 
/work/SRC/openSUSE:Factory/.branding-openSUSE.new/openSUSE.tar.gz differ: char 
5, line 1

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



commit geany for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package geany for openSUSE:Factory checked 
in at 2012-02-06 16:41:00

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


Package is geany, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/geany/geany.changes  2012-01-05 
19:10:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.geany.new/geany.changes 2012-02-06 
16:41:06.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb  2 23:15:02 UTC 2012 - dims...@opensuse.org
+
+- Add geany-link-gmodule.patch: Detect and link gmodule-2.0.
+- Add libtool BuildRequires and call to ./autogen.sh, as above
+  patch touches the buildsystem.
+
+---

New:

  geany-link-gmodule.patch



Other differences:
--
++ geany.spec ++
--- /var/tmp/diff_new_pack.LNFdhW/_old  2012-02-06 16:41:11.0 +0100
+++ /var/tmp/diff_new_pack.LNFdhW/_new  2012-02-06 16:41:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geany
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,21 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   geany
 Version:0.21
-Release:1
-License:GPLv2+
+Release:0
 Summary:Small and lightweight IDE
-Url:http://geany.org/
+License:GPL-2.0+
 Group:  Development/Tools/IDE
+Url:http://geany.org/
 Source: http://download.geany.org/%{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
+# PATCH-FIX-UPSTREAM geany-link-gmodule.patch sf#3483388 dims...@opensuse.org 
-- properly detect and link libgmodule.
+Patch0: geany-link-gmodule.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
 BuildRequires:  intltool
+# Needed by patch0
+BuildRequires:  libtool
 BuildRequires:  update-desktop-files
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +45,6 @@
 only the GTK2 runtime libraries to run Geany.
 
 %package devel
-License:GPLv2+
 Summary:Small and lightweight IDE -- Development Files
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -60,8 +61,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+# Needed by patch0
+NOCONFIGURE=1 ./autogen.sh
 %configure --docdir=%{_defaultdocdir}/%{name}
 make %{?jobs:-j%jobs}
 

++ geany-link-gmodule.patch ++
Index: geany-0.21/configure.ac
===
--- geany-0.21.orig/configure.ac
+++ geany-0.21/configure.ac
@@ -134,7 +134,7 @@ fi
 
 
 # GTK/GLib/GIO checks
-gtk_modules=gtk+-2.0 = 2.12 glib-2.0 = 2.16 gio-2.0 = 2.16
+gtk_modules=gtk+-2.0 = 2.12 glib-2.0 = 2.16 gio-2.0 = 2.16 gmodule-2.0
 PKG_CHECK_MODULES(GTK, [$gtk_modules])
 AC_SUBST(GTK_CFLAGS)
 AC_SUBST(GTK_LIBS)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-sharp2 for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package gnome-sharp2 for openSUSE:Factory 
checked in at 2012-02-06 16:41:04

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


Package is gnome-sharp2, Maintainer is mono-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gnome-sharp2/gnome-sharp2.changes
2011-09-23 02:01:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-sharp2.new/gnome-sharp2.changes   
2012-02-06 16:41:12.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb  4 14:44:32 UTC 2012 - dims...@opensuse.org
+
+- Change License tag to SPDX identifier: LGPL-2.1.
+
+---
+Mon Jul 25 16:14:30 UTC 2011 - andrea.turr...@gmail.com
+
+- Fixed typos in descriptions of gnome-sharp2.spec
+
+---



Other differences:
--
++ gnome-sharp2.spec ++
--- /var/tmp/diff_new_pack.D75DhB/_old  2012-02-06 16:41:13.0 +0100
+++ /var/tmp/diff_new_pack.D75DhB/_new  2012-02-06 16:41:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-sharp2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,11 +20,11 @@
 
 Name:   gnome-sharp2
 Version:2.24.2
-Release:8
-License:LGPLv2.1
-Summary:Mono bindings for Gnome
-Url:http://www.mono-project.com/GtkSharp
+Release:0
+Summary:Mono bindings for GNOME
+License:LGPL-2.1
 Group:  System/GUI/GNOME
+Url:http://www.mono-project.com/GtkSharp
 Source: 
http://ftp.gnome.org/pub/GNOME/sources/%{_name}/2.24/%{_name}-%{version}.tar.bz2
 BuildRequires:  pkgconfig(gapi-2.0)
 BuildRequires:  pkgconfig(glade-sharp-2.0)
@@ -39,10 +39,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-This package contains Mono bindings for Gnome.
+This package contains Mono bindings for GNOME.
 
 %package -n gnome-sharp2-complete
-License:LGPLv2.1
 Summary:GTK+ and GNOME bindings for Mono (virtual package)
 Group:  System/GUI/GNOME
 Requires:   art-sharp2 = %{version}
@@ -58,15 +57,13 @@
 package which depends on all gtk-sharp2 subpackages)
 
 %package -n gnome-vfs-sharp2
-License:LGPLv2.1
 Summary:Mono bindings for gnomevfs
 Group:  System/GUI/GNOME
 
 %description -n gnome-vfs-sharp2
-This package contains Mono bindings gnomevfs.
+This package contains Mono bindings for gnomevfs.
 
 %package -n art-sharp2
-License:LGPLv2.1
 Summary:Mono bindings for libart
 Group:  System/GUI/GNOME
 
@@ -74,7 +71,6 @@
 This package contains Mono bindings for libart.
 
 %package -n gconf-sharp2
-License:LGPLv2.1
 Summary:Mono bindings for gconf
 Group:  System/GUI/GNOME
 
@@ -82,7 +78,6 @@
 This package contains Mono bindings for gconf and gconf peditors.
 
 %package -n gconf-sharp-peditors2
-License:LGPLv2.1
 Summary:Mono bindings for gconf property editors
 Group:  System/GUI/GNOME
 

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



commit pan for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package pan for openSUSE:Factory checked in 
at 2012-02-06 16:41:09

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


Package is pan, Maintainer is dr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pan/pan.changes  2012-01-25 10:39:09.0 
+0100
+++ /work/SRC/openSUSE:Factory/.pan.new/pan.changes 2012-02-06 
16:41:13.0 +0100
@@ -1,0 +2,9 @@
+Thu Jan 31 08:20:25 UTC 2012 - zai...@opensuse.org
+ 
+- Rebuilt package against GTK2, instead of GTK3 (for now).
+  + No spell-check in Pan. bnc#725971
+  + Pan groups panel re-sizes itself and gets stuck in new
+position. bnc#728311
+  + Corrected erroneous sourceurl in specfile.   
+
+---



Other differences:
--
++ pan.spec ++
--- /var/tmp/diff_new_pack.C2bWqI/_old  2012-02-06 16:41:14.0 +0100
+++ /var/tmp/diff_new_pack.C2bWqI/_new  2012-02-06 16:41:14.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+## Fix for bnc#725971 and bnc#728311 - prefer building with GTK2. - Upstream: 
bgo#669402 and bgo#669403
+%define favor_gtk2 1
 
 Name:   pan
 Version:0.135
@@ -23,7 +25,7 @@
 License:GPL-2.0+
 Group:  Productivity/Networking/News/Clients
 Url:http://pan.rebelbase.com/
-Source: 
http://pan.rebelbase.com/download/releases/0.134/source/%{name}-%{version}.tar.bz2
+Source: 
http://pan.rebelbase.com/download/releases/0.135/source/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM fix-desktop-file-11.0.diff -- validate desktop file
 Patch0: fix-desktop-file-11.0.diff
 # PATCH-FIX-UPSTREAM pan-glib-2.31.patch bgo#665289 dims...@opensuse.org -- 
Fix build with glib 2.31

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



commit turpial for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package turpial for openSUSE:Factory checked 
in at 2012-02-06 16:41:16

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


Package is turpial, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/turpial/turpial.changes  2012-01-05 
19:16:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.turpial.new/turpial.changes 2012-02-06 
16:41:20.0 +0100
@@ -1,0 +2,12 @@
+Sun Feb  5 18:11:15 UTC 2012 - zai...@opensuse.org
+
+- Update to version 1.6.9:
+  + Fixed minor bugs in setup.py and languages.
+- Update to version 1.6.8:
+  + Implemented basic integration with Unity.
+  + Fixed minor bugs with languages.
+- Removed chmod on AUTHORS, ChangeLog, COPYING and README.rst. Not
+  needed anymore.
+- Removed version, since this is not needed anymore.
+ 
+---

Old:

  turpial-1.6.7-1.tar.gz

New:

  turpial-1.6.9.tar.gz



Other differences:
--
++ turpial.spec ++
--- /var/tmp/diff_new_pack.b6XMZ5/_old  2012-02-06 16:41:21.0 +0100
+++ /var/tmp/diff_new_pack.b6XMZ5/_new  2012-02-06 16:41:21.0 +0100
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   turpial
-Version:1.6.7.1
+Version:1.6.9
 Release:0
-%define _version 1.6.7-1
 Summary:Lightweight, functional and integrated Twitter client
 License:GPL-3.0+
 Group:  Productivity/Networking/Instant Messenger
 Url:http://turpial.org.ve/
-Source: 
http://turpial.org.ve/files/sources/stable/%{name}-%{_version}.tar.gz
+Source: 
http://turpial.org.ve/files/sources/stable/%{name}-%{version}.tar.gz
 BuildRequires:  python-babel
 BuildRequires:  python-imaging
 BuildRequires:  python-setuptools
@@ -70,16 +70,7 @@
 %endif
 
 %prep
-%setup -q -n %{name}-%{_version}
-# fail when we can remove chmod
-test -x AUTHORS
-chmod -x AUTHORS
-test -x ChangeLog
-chmod -x ChangeLog
-test -x COPYING
-chmod -x COPYING
-test -x README.rst
-chmod -x README.rst
+%setup -q -n %{name}-%{version}
 
 %build
 python setup.py build
@@ -121,7 +112,7 @@
 %endif
 %doc AUTHORS ChangeLog COPYING README.rst
 %{python_sitelib}/%{name}/
-%{python_sitelib}/%{name}-1.6.7_1-py%{py_ver}.egg-info
+%{python_sitelib}/%{name}-1.6.9-py%{py_ver}.egg-info
 %{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/pixmaps/%{name}.png

++ turpial-1.6.7-1.tar.gz - turpial-1.6.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/turpial-1.6.7-1/ChangeLog new/turpial-1.6.9/ChangeLog
--- old/turpial-1.6.7-1/ChangeLog   2011-12-30 01:18:34.0 +0100
+++ new/turpial-1.6.9/ChangeLog 2012-02-04 04:38:34.0 +0100
@@ -1,3 +1,10 @@
+v1.6.9 (Feb 04, 2012):
++ Corregidos errores menores con el setup.py y los idiomas
+
+v1.6.8 (Feb 02, 2012):
++ Implementada integración básica con Unity
++ Corregidos errores menores con los idiomas
+
 v1.6.7 (Dic 29, 2011):
 + Corregido bug sobre validación de certificados SSL
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/turpial-1.6.7-1/PKG-INFO new/turpial-1.6.9/PKG-INFO
--- old/turpial-1.6.7-1/PKG-INFO2012-01-04 16:24:19.0 +0100
+++ new/turpial-1.6.9/PKG-INFO  2012-02-04 05:52:56.0 +0100
@@ -1,10 +1,10 @@
 Metadata-Version: 1.0
 Name: turpial
-Version: 1.6.7-1
+Version: 1.6.9
 Summary: Cliente Twitter escrito en Python
 Home-page: http://turpial.org.ve
-Author: Milton Mazzarri
-Author-email: milm...@gmail.com
+Author: Wil Alvarez
+Author-email: wil.alejan...@gmail.com
 License: GPLv3
 Download-URL: http://turpial.org.ve/downloads
 Description: 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/turpial-1.6.7-1/setup.py new/turpial-1.6.9/setup.py
--- old/turpial-1.6.7-1/setup.py2012-01-02 04:36:52.0 +0100
+++ new/turpial-1.6.9/setup.py  2012-02-04 05:52:24.0 +0100
@@ -24,11 +24,10 @@
 
 
 class build(_build):
-sub_commands = [('compile_catalog', None), ] + _build.sub_commands
-
-def run(self):
-Run all sub-commands
-_build.run(self)
+
+def get_sub_commands(self):
+sub_commands = _build.get_sub_commands(self)
+return ['compile_catalog'] + sub_commands
 
 # TODO: Maybe find some better ways to do this
 # looking distutils's copy_tree method
@@ -46,9 +45,10 @@
 pattern = re.compile('turpial/i18n/')
 for root, dirs, files in os.walk(os.path.join('turpial', 'i18n')):
 for filename in files:
-if 

commit yast2-core for openSUSE:Factory

2012-02-06 Thread h_root
Hello community,

here is the log from the commit of package yast2-core for openSUSE:Factory 
checked in at 2012-02-06 16:41:21

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


Package is yast2-core, Maintainer is mvid...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-core/yast2-core.changes2012-01-09 
12:55:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-core.new/yast2-core.changes   
2012-02-06 16:41:22.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  3 14:36:31 CET 2012 - mvid...@suse.cz
+
+- ini-agent: only change permissions of new files (bnc#743355)
+- 2.22.3
+
+---

Old:

  yast2-core-2.22.2.tar.bz2

New:

  yast2-core-2.22.3.tar.bz2



Other differences:
--
++ yast2-core.spec ++
--- /var/tmp/diff_new_pack.ftvmZp/_old  2012-02-06 16:41:26.0 +0100
+++ /var/tmp/diff_new_pack.ftvmZp/_new  2012-02-06 16:41:26.0 +0100
@@ -16,20 +16,20 @@
 #
 
 
-
 Name:   yast2-core
-Version:2.22.2
+Version:2.22.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-core-%{version}.tar.bz2
 
-Group:  System/YaST
-License:GPL-2.0+
 # obviously
-BuildRequires:  boost-devel gcc-c++ libtool
+BuildRequires:  boost-devel
+BuildRequires:  gcc-c++
+BuildRequires:  libtool
 # we have a parser
-BuildRequires:  bison flex
+BuildRequires:  bison
+BuildRequires:  flex
 # needed for all yast packages
 BuildRequires:  yast2-devtools
 # testsuite
@@ -37,7 +37,8 @@
 # autodocs
 BuildRequires:  doxygen
 # docbook docs
-BuildRequires:  docbook-xsl-stylesheets libxslt
+BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  libxslt
 # catalog: convert URIs to local filenames
 BuildRequires:  sgml-skel
 # logging
@@ -47,6 +48,8 @@
 BuildRequires:  libxcrypt-devel
 
 Summary:YaST2 - Core Libraries
+License:GPL-2.0+
+Group:  System/YaST
 Requires:   perl = %{perl_version}
 Provides:   liby2util = 2.16.1
 Obsoletes:  liby2util  2.16.1
@@ -59,6 +62,7 @@
 Requires:   yast2-core = %version
 
 Summary:YaST2 - Core Libraries
+Group:  System/YaST
 Provides:   liby2util-devel = 2.16.1
 Obsoletes:  liby2util-devel  2.16.1
 Requires:   libxcrypt-devel hwinfo-devel
@@ -74,8 +78,8 @@
 
 %package debugger
 Requires:   yast2-core = %version
-Group:  Development/Libraries
 Summary:YaST2 - Core Libraries
+Group:  Development/Libraries
 
 %description debugger
 YCP debugger client.

++ yast2-core-2.22.2.tar.bz2 - yast2-core-2.22.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-core-2.22.2/VERSION 
new/yast2-core-2.22.3/VERSION
--- old/yast2-core-2.22.2/VERSION   2012-01-06 15:22:51.0 +0100
+++ new/yast2-core-2.22.3/VERSION   2012-02-03 17:00:53.0 +0100
@@ -1 +1 @@
-2.22.2
+2.22.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-core-2.22.2/agent-ini/src/IniParser.cc 
new/yast2-core-2.22.3/agent-ini/src/IniParser.cc
--- old/yast2-core-2.22.2/agent-ini/src/IniParser.cc2012-01-06 
15:22:50.0 +0100
+++ new/yast2-core-2.22.3/agent-ini/src/IniParser.cc2012-02-03 
17:00:53.0 +0100
@@ -8,7 +8,7 @@
  *   Petr Blahos pbla...@suse.cz
  *   Martin Vidner mvid...@suse.cz
  *
- * $Id: IniParser.cc 67117 2012-01-05 17:03:40Z mvidner $
+ * $Id: IniParser.cc 67361 2012-02-03 15:55:59Z mvidner $
  */
 
 #include config.h
@@ -1000,8 +1000,6 @@
 
 mode_t file_umask = section.isPrivate()? 0077: 0022;
 mode_t orig_umask = umask(file_umask);
-// rewriting an existing file wouldnt change its mode
-unlink(filename.c_str());
 
 ofstream of(filename.c_str());
 if (!of.good()) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-core-2.22.2/agent-ini/testsuite/multi/private.err 
new/yast2-core-2.22.3/agent-ini/testsuite/multi/private.err
--- old/yast2-core-2.22.2/agent-ini/testsuite/multi/private.err 2012-01-06 
15:22:51.0 +0100
+++ new/yast2-core-2.22.3/agent-ini/testsuite/multi/private.err 2012-02-03 
17:00:53.0 +0100
@@ -1,11 +1,45 @@
+[agent-ini] IniParser.cc(parse):XXX Rewriting multi/private.in.0.test to 0
 [agent-ini] IniParser.cc(parse):XXX Rewriting multi/private.in.1.test to 1
 [agent-ini] IniParser.cc(parse):XXX Rewriting multi/private.in.2.test to 2
-[agent-ini] IniFile.cc(setMyValue):XXX Adding value 
.v.1.Totalise.Password = Secret password
-[agent-ini] IniFile.cc(setMyValue):XXX Adding value .v.2.arcor.Password 
= Public