commit afl for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package afl for openSUSE:Factory checked in 
at 2015-05-19 00:21:20

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


Package is "afl"

Changes:

--- /work/SRC/openSUSE:Factory/afl/afl.changes  2015-05-10 10:47:22.0 
+0200
+++ /work/SRC/openSUSE:Factory/.afl.new/afl.changes 2015-05-19 
00:21:21.0 +0200
@@ -1,0 +2,7 @@
+Mon May 18 17:12:36 UTC 2015 - astie...@suse.com
+
+- afl 1.78b:
+  - Added a dictionary for PDF
+  - Added several references to afl-cov
+
+---

Old:

  afl-1.77b.tgz

New:

  afl-1.78b.tgz



Other differences:
--
++ afl.spec ++
--- /var/tmp/diff_new_pack.JVBcJc/_old  2015-05-19 00:21:22.0 +0200
+++ /var/tmp/diff_new_pack.JVBcJc/_new  2015-05-19 00:21:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   afl
-Version:1.77b
+Version:1.78b
 Release:0
 Summary:American fuzzy lop is a security-oriented fuzzer
 License:Apache-2.0

++ afl-1.77b.tgz -> afl-1.78b.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/Makefile new/afl-1.78b/Makefile
--- old/afl-1.77b/Makefile  2015-05-06 02:38:01.0 +0200
+++ new/afl-1.78b/Makefile  2015-05-17 22:42:05.0 +0200
@@ -14,7 +14,7 @@
 #
 
 PROGNAME= afl
-VERSION = 1.77b
+VERSION = 1.78b
 
 PREFIX ?= /usr/local
 BIN_PATH= $(PREFIX)/bin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/afl-fuzz.c new/afl-1.78b/afl-fuzz.c
--- old/afl-1.77b/afl-fuzz.c2015-05-06 05:44:40.0 +0200
+++ new/afl-1.78b/afl-fuzz.c2015-05-17 22:34:04.0 +0200
@@ -6782,7 +6782,7 @@
  until I get a box to test the code. So, for now, we check for crash
  reporting the awful way. */
   
-  if (system("launchctl bslist 2>/dev/null | grep -q '\\.ReportCrash$'")) 
return;
+  if (system("launchctl list 2>/dev/null | grep -q '\\.ReportCrash$'")) return;
 
   SAYF("\n" cLRD "[-] " cRST
"Whoops, your system is configured to forward crash notifications to 
an\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/docs/ChangeLog new/afl-1.78b/docs/ChangeLog
--- old/afl-1.77b/docs/ChangeLog2015-05-06 05:49:31.0 +0200
+++ new/afl-1.78b/docs/ChangeLog2015-05-17 22:44:25.0 +0200
@@ -17,6 +17,17 @@
 to get on with the times.
 
 --
+Version 1.78b:
+--
+
+  - Added a dictionary for PDF, contributed by Ben Nagy.
+
+  - Added several references to afl-cov, a new tool by Michael Rash.
+
+  - Fixed a problem with crash reporter detection on MacOS X, as reported by
+Louis Dassy.
+
+--
 Version 1.77b:
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/docs/README new/afl-1.78b/docs/README
--- old/afl-1.77b/docs/README   2015-05-06 05:57:13.0 +0200
+++ new/afl-1.78b/docs/README   2015-05-17 22:35:00.0 +0200
@@ -387,6 +387,9 @@
 need to make simple code changes to make them behave in a more traditional
 way.
 
+  - AFL doesn't output human-readable coverage data. If you want to monitor
+coverage, use afl-cov from Michael Rash: https://github.com/mrash/afl-cov
+
 Beyond this, see INSTALL for platform-specific tips.
 
 13) Special thanks
@@ -415,6 +418,7 @@
   Sam Hakim Laszlo Szekeres
   David A. Wheeler  Turo Lamminen
   Andreas Stieger   Richard Godbee
+  Louis Dassy
 
 Thank you!
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/docs/sister_projects.txt 
new/afl-1.78b/docs/sister_projects.txt
--- old/afl-1.77b/docs/sister_projects.txt  2015-05-01 08:59:42.0 
+0200
+++ new/afl-1.78b/docs/sister_projects.txt  2015-05-08 22:14:00.0 
+0200
@@ -84,6 +84,13 @@
 
   https://github.com/bnagy/crashwalk
 
+afl-cov (Michael Rash)
+--
+
+  Produces human-readable coverage data based on the output queue of afl-fuzz.
+
+  https://github.com/mrash/afl-cov
+
 Distfuzz-AFL (Martijn Bogaard)
 --
 
Files old/afl-1.77b/docs/vuln_samples/sqlite-bad-ptr3.sql and 
new/afl-1.78b/docs/vuln_samples/sqlite-bad-ptr3.sql differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.77b/testcases/README.testcases 
new/afl-1.78b/testcases/README.testcases
--- old/afl-1.77b/testcases/README.testcases  

commit php5 for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:Factory checked in 
at 2015-05-18 23:05:03

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


Package is "php5"

Changes:

--- /work/SRC/openSUSE:Factory/php5/php5.changes2015-05-07 
09:20:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes   2015-05-18 
23:05:04.0 +0200
@@ -1,0 +2,8 @@
+Mon May 18 08:11:14 UTC 2015 - pgaj...@suse.com
+
+- update to 5.6.9: Several bugs have been fixed.
+- systzdata patch updated to r12
+  - php5-systzdata-r10.patch
+  + php5-systzdata-r12.patch
+
+---

Old:

  php-5.6.8.tar.xz
  php-5.6.8.tar.xz.asc
  php5-systzdata-r10.patch

New:

  php-5.6.9.tar.xz
  php-5.6.9.tar.xz.asc
  php5-systzdata-r12.patch



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.VvdWuw/_old  2015-05-18 23:05:06.0 +0200
+++ /var/tmp/diff_new_pack.VvdWuw/_new  2015-05-18 23:05:06.0 +0200
@@ -115,7 +115,7 @@
 %define apache2_includedir %(%{apxs2} -q INCLUDEDIR)
 %define apache2_serverroot %(%{apxs2} -q PREFIX)
 %define need_libxml2_hack  %(if [ -e %{_includedir}/libxml/parser.h ]; then if 
grep -q XML_PARSE_OLDSAX %{_includedir}/libxml/parser.h;then echo 1; else echo 
0; fi; else echo 0; fi)
-Version:5.6.8
+Version:5.6.9
 Release:0
 Provides:   php
 Provides:   php-api = %{apiver}
@@ -166,7 +166,7 @@
 Patch4: php5-no-build-date.patch
 Patch5: php5-pts.patch
 Patch6: php5-openssl.patch
-Patch7: php5-systzdata-r10.patch
+Patch7: php5-systzdata-r12.patch
 Patch8: php5-systemd-unit.patch
 #bugs
 # this is from https://raw.github.com/NewEraCracker/suhosin-patches/, check 
for official

++ php-5.6.8.tar.xz -> php-5.6.9.tar.xz ++
/work/SRC/openSUSE:Factory/php5/php-5.6.8.tar.xz 
/work/SRC/openSUSE:Factory/.php5.new/php-5.6.9.tar.xz differ: char 26, line 1

++ php5-systzdata-r10.patch -> php5-systzdata-r12.patch ++
--- /work/SRC/openSUSE:Factory/php5/php5-systzdata-r10.patch2015-04-12 
00:08:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.php5.new/php5-systzdata-r12.patch   
2015-05-18 23:05:04.0 +0200
@@ -1,13 +1,16 @@
-https://raw.githubusercontent.com/steveathon/Debian-PHP5/5dab5a4aed4380767c92fc1a2abb8e9a0d47f944/debian/patches/use_embedded_timezonedb.patch
+http://pkgs.fedoraproject.org/cgit/php.git/tree/php-5.6.9-systzdata-v12.patch
 Add support for use of the system timezone database, rather
 than embedding a copy.  Discussed upstream but was not desired.
 
 History:
-r10 : make timezone case insensitive
+r12: adapt for upstream changes for new zic
+r11: use canonical names to avoid more case sensitivity issues
+ round lat/long from zone.tab towards zero per builtin db
+r10: make timezone case insensitive
 r9: fix another compile error without --with-system-tzdata configured (Michael 
Heimpold)
 r8: fix compile error without --with-system-tzdata configured
 r7: improve check for valid timezone id to exclude directories
-r6: fix fd leak in r5, fix country code/BC flag use in 
+r6: fix fd leak in r5, fix country code/BC flag use in
 timezone_identifiers_list() using system db,
 fix use of PECL timezonedb to override system db,
 r5: reverts addition of "System/Localtime" fake tzname.
@@ -18,9 +21,10 @@
 r2: add filesystem trawl to set up name alias index
 r1: initial revision
 
 php5.orig/ext/date/lib/parse_tz.c
-+++ php5/ext/date/lib/parse_tz.c
-@@ -24,6 +24,16 @@
+diff -up php-5.6.9RC1/ext/date/lib/parse_tz.c.systzdata 
php-5.6.9RC1/ext/date/lib/parse_tz.c
+--- php-5.6.9RC1/ext/date/lib/parse_tz.c.systzdata 2015-04-30 
00:00:18.0 +0200
 php-5.6.9RC1/ext/date/lib/parse_tz.c   2015-04-30 06:36:47.019617321 
+0200
+@@ -20,6 +20,16 @@
  
  #include "timelib.h"
  
@@ -37,7 +41,7 @@
  #include 
  
  #ifdef HAVE_LOCALE_H
-@@ -35,7 +45,12 @@
+@@ -31,7 +41,12 @@
  #else
  #include 
  #endif
@@ -50,25 +54,18 @@
  
  #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) 
|| defined(__LITTLE_ENDIAN__))
  # if defined(__LITTLE_ENDIAN__)
-@@ -55,9 +70,14 @@
- 
- static void read_preamble(const unsigned char **tzf, timelib_tzinfo *tz)
+@@ -53,6 +68,10 @@ static int read_preamble(const unsigned
  {
--  /* skip ID */
--  *tzf += 4;
--  
-+if (memcmp(tzf, "TZif", 4) == 0) {
-+*tzf += 20;
-+return;
-+}
-+
-+/* skip ID */
-+*tzf += 4;
-+
-   /* read BC flag */
-   tz->bc = (**tzf == '\1');
-   *tzf += 1;
-@@ -260,7 +280,405 @@ void 

commit libvpx for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package libvpx for openSUSE:Factory checked 
in at 2015-05-18 23:03:58

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


Package is "libvpx"

Changes:

--- /work/SRC/openSUSE:Factory/libvpx/libvpx.changes2015-02-27 
11:07:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvpx.new/libvpx.changes   2015-05-18 
23:03:58.0 +0200
@@ -1,0 +2,23 @@
+Tue May 12 17:40:07 UTC 2015 - joerg.loren...@ki.tng.de
+
+- Update to version 1.4.0
+  + This release includes significant improvements to the VP9 codec.
+  + Upgrading:
+This release is ABI incompatible with 1.3.0. It drops the
+compatibility layer, requiring VPX_IMG_FMT_* instead of
+IMG_FMT_*, and adds several codec controls for VP9.
+  + Enhancements:
+Faster VP9 encoding and decoding.
+Multithreaded VP9 decoding (tile and frame-based).
+Multithreaded VP9 encoding - on by default.
+YUV 4:2:2 and 4:4:4 support in VP9.
+10 and 12bit support in VP9.
+64bit ARM support by replacing ARM assembly with intrinsics.
+  + Bug Fixes:
+Fixes a VP9 bitstream issue in Profile 1. This only affected
+non-YUV 4:2:0 files.
+  + Known Issues:
+Frame Parallel decoding fails for segmented and non-420 files.
+- Fixed all patches and changed baselibs.conf to libvpx2.
+
+---

Old:

  libvpx-1.3.0.tar.xz

New:

  libvpx-1.4.0.tar.xz



Other differences:
--
++ libvpx.spec ++
--- /var/tmp/diff_new_pack.ajbZUN/_old  2015-05-18 23:04:00.0 +0200
+++ /var/tmp/diff_new_pack.ajbZUN/_new  2015-05-18 23:04:00.0 +0200
@@ -16,8 +16,10 @@
 #
 
 
+%define soname 2
+
 Name:   libvpx
-Version:1.3.0
+Version:1.4.0
 Release:0
 Summary:VP8 codec library
 License:BSD-3-Clause and GPL-2.0+
@@ -59,13 +61,13 @@
 and audio streams compressed with the Vorbis audio codec.
 The WebM file structure is based on the Matroska container.
 
-%package -n %{name}1
+%package -n %{name}%{soname}
 
 Summary:VP8 codec library
 License:BSD-3-Clause
 Group:  System/Libraries
 
-%description -n %{name}1
+%description -n %{name}%{soname}
 WebM is an open, royalty-free, media file format designed for the web.
 
 WebM defines the file container structure, video and audio formats.
@@ -77,7 +79,7 @@
 Summary:VP8 codec library - Development headers
 License:BSD-3-Clause and GPL-2.0+
 Group:  Development/Languages/C and C++
-Requires:   %{name}1 = %{version}
+Requires:   %{name}%{soname} = %{version}
 
 %description devel
 Development headers and library
@@ -91,10 +93,10 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
-%patch3
-%patch4 -p1
+%patch1 -p0
+%patch2 -p0
+%patch3 -p0
+%patch4 -p0
 
 %build
 cd build
@@ -130,15 +132,15 @@
 %clean
 rm -rf %{buildroot}
 
-%post -n %{name}1 -p /sbin/ldconfig
+%post -n %{name}%{soname} -p /sbin/ldconfig
 
-%postun -n %{name}1 -p /sbin/ldconfig
+%postun -n %{name}%{soname} -p /sbin/ldconfig
 
 %files -n vpx-tools
 %defattr(-,root,root)
 %{_bindir}/*
 
-%files -n %{name}1
+%files -n %{name}%{soname}
 %defattr(-, root, root)
 %doc LICENSE AUTHORS README CHANGELOG
 %{_libdir}/libvpx.so.*

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.ajbZUN/_old  2015-05-18 23:04:00.0 +0200
+++ /var/tmp/diff_new_pack.ajbZUN/_new  2015-05-18 23:04:00.0 +0200
@@ -1 +1 @@
-libvpx1
+libvpx2

++ libvpx-1.3.0.tar.xz -> libvpx-1.4.0.tar.xz ++
 380541 lines of diff (skipped)

++ libvpx-armv7-use-hard-float.patch ++
--- /var/tmp/diff_new_pack.ajbZUN/_old  2015-05-18 23:04:01.0 +0200
+++ /var/tmp/diff_new_pack.ajbZUN/_new  2015-05-18 23:04:01.0 +0200
@@ -1,15 +1,13 @@
-diff --git a/build/make/configure.sh b/build/make/configure.sh
-index cf78764..3213d97 100755
 a/build/make/configure.sh
-+++ b/build/make/configure.sh
-@@ -820,8 +820,8 @@ process_common_toolchain() {
+--- build/make/configure.sh.orig   2015-04-03 20:49:19.0 +0200
 build/make/configure.sh2015-05-12 10:44:10.156868400 +0200
+@@ -846,8 +852,8 @@
  #endif
  EOF
- fi
--check_add_cflags  -march=armv7-a -mfloat-abi=${float_abi}
--check_add_asflags -march=armv7-a -mfloat-abi=${float_abi}
-+check_add_cflags  -march=armv7-a -mfloat-abi=hard
-+check_add_asflags -march=armv7-a -mfloat-abi=hard
+ fi
+-check_add_cflags  -march=armv7-a -mfloat-abi=${float_abi}
+-check_add_asflags -march=armv7-a -mfloat-abi=${float_abi}
++check_add_cflags  -march=armv

commit perl-Capture-Tiny for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-Capture-Tiny for 
openSUSE:Factory checked in at 2015-05-18 23:02:50

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


Package is "perl-Capture-Tiny"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Capture-Tiny/perl-Capture-Tiny.changes  
2015-04-16 14:11:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Capture-Tiny.new/perl-Capture-Tiny.changes 
2015-05-18 23:02:52.0 +0200
@@ -1,0 +2,18 @@
+Sat May 16 08:05:33 UTC 2015 - co...@suse.com
+
+- updated to 0.30
+   see /usr/share/doc/packages/perl-Capture-Tiny/Changes
+
+  0.30  2015-05-15 20:43:54-04:00 America/New_York
+  
+No changes from 0.29
+  
+  0.29  2015-04-19 18:36:24+02:00 Europe/Berlin (TRIAL RELEASE)
+  
+Fixed:
+  
+- Fix double filehandle close error with tee on Windows
+  (which started warning during the perl 5.21.x series,
+  causing tests to fail)
+
+---

Old:

  Capture-Tiny-0.28.tar.gz

New:

  Capture-Tiny-0.30.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Capture-Tiny.spec ++
--- /var/tmp/diff_new_pack.cmCb35/_old  2015-05-18 23:02:52.0 +0200
+++ /var/tmp/diff_new_pack.cmCb35/_new  2015-05-18 23:02:52.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Capture-Tiny
-Version:0.28
+Version:0.30
 Release:0
 %define cpan_name Capture-Tiny
 Summary:Capture STDOUT and STDERR from Perl, XS or external programs
 License:Apache-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Capture-Tiny/
-Source: 
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -56,6 +57,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING.mkdn examples LICENSE perlcritic.rc README Todo
+%doc Changes CONTRIBUTING.mkdn examples LICENSE README Todo
 
 %changelog

++ Capture-Tiny-0.28.tar.gz -> Capture-Tiny-0.30.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.28/Changes 
new/Capture-Tiny-0.30/Changes
--- old/Capture-Tiny-0.28/Changes   2015-02-11 12:39:57.0 +0100
+++ new/Capture-Tiny-0.30/Changes   2015-05-16 02:44:00.0 +0200
@@ -1,5 +1,17 @@
 Revision history for Capture-Tiny
 
+0.30  2015-05-15 20:43:54-04:00 America/New_York
+
+  No changes from 0.29
+
+0.29  2015-04-19 18:36:24+02:00 Europe/Berlin (TRIAL RELEASE)
+
+  Fixed:
+
+  - Fix double filehandle close error with tee on Windows
+(which started warning during the perl 5.21.x series,
+causing tests to fail)
+
 0.28  2015-02-11 06:39:51-05:00 America/New_York
 
   Tests:
@@ -295,3 +307,5 @@
 
   Added:
 - 'capture' and 'tee' functions
+
+# vim: set ts=2 sts=2 sw=2 et tw=75:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.28/MANIFEST 
new/Capture-Tiny-0.30/MANIFEST
--- old/Capture-Tiny-0.28/MANIFEST  2015-02-11 12:39:57.0 +0100
+++ new/Capture-Tiny-0.30/MANIFEST  2015-05-16 02:44:00.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.031.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.036.
 CONTRIBUTING.mkdn
 Changes
 LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Capture-Tiny-0.28/META.json 
new/Capture-Tiny-0.30/META.json
--- old/Capture-Tiny-0.28/META.json 2015-02-11 12:39:57.0 +0100
+++ new/Capture-Tiny-0.30/META.json 2015-05-16 02:44:00.0 +0200
@@ -4,13 +4,13 @@
   "David Golden "
],
"dynamic_config" : 1,
-   "generated_by" : "Dist::Zilla version 5.031, CPAN::Meta::Converter version 
2.143240",
+   "generated_by" : "Dist::Zilla version 5.036, CPAN::Meta::Converter version 
2.150002",
"license" : [
   "apache_2_0"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-  "version" : "2"
+  "version" : 2
},
"name" : "Capture-Tiny",
"no_index" : {
@@ -79,7 +79,7 @@
"provides" : {
   "Capture::Tiny" : {
  "file" : "lib/Capture/Tiny.pm",
- "version" : "0.28"
+ "version" : "0.30"
   }
},
"release_status" : "stable",
@@ -94,7 +94,7 @@
   

commit gd for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gd for openSUSE:Factory checked in 
at 2015-05-18 23:01:46

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


Package is "gd"

Changes:

--- /work/SRC/openSUSE:Factory/gd/gd.changes2015-03-05 18:15:53.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gd.new/gd.changes   2015-05-18 
23:01:47.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 14:11:33 UTC 2015 - joerg.loren...@ki.tng.de
+
+- Added patch gd-libvpx.patch to enable build against libvpx >= 1.4,
+  new VPX_ prefixed namespaces are available since libvpx = 0.9.1.
+
+---

New:

  gd-libvpx.patch



Other differences:
--
++ gd.spec ++
--- /var/tmp/diff_new_pack.r7ysWc/_old  2015-05-18 23:01:49.0 +0200
+++ /var/tmp/diff_new_pack.r7ysWc/_new  2015-05-18 23:01:49.0 +0200
@@ -37,6 +37,8 @@
 Patch2: gd-format.patch
 # could be upstreamed
 Patch3: gd-aliasing.patch
+# could be upstreamed
+Patch4: gd-libvpx.patch
 BuildRequires:  fontconfig-devel
 BuildRequires:  freetype2-devel
 BuildRequires:  libjpeg-devel
@@ -92,6 +94,7 @@
 %patch1
 %patch2
 %patch3
+%patch4
 
 %build
 autoreconf -fiv

++ gd-libvpx.patch ++
--- src/webpimg.c.orig  2015-01-06 10:16:03.0 +0100
+++ src/webpimg.c   2015-05-12 15:02:50.784722900 +0200
@@ -711,14 +711,14 @@
 codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0);
 codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2);
 
-vpx_img_wrap(&img, IMG_FMT_I420,
+vpx_img_wrap(&img, VPX_IMG_FMT_I420,
  y_width, y_height, 16, (uint8*)(Y));
-img.planes[PLANE_Y] = (uint8*)(Y);
-img.planes[PLANE_U] = (uint8*)(U);
-img.planes[PLANE_V] = (uint8*)(V);
-img.stride[PLANE_Y] = y_stride;
-img.stride[PLANE_U] = uv_stride;
-img.stride[PLANE_V] = uv_stride;
+img.planes[VPX_PLANE_Y] = (uint8*)(Y);
+img.planes[VPX_PLANE_U] = (uint8*)(U);
+img.planes[VPX_PLANE_V] = (uint8*)(V);
+img.stride[VPX_PLANE_Y] = y_stride;
+img.stride[VPX_PLANE_U] = uv_stride;
+img.stride[VPX_PLANE_V] = uv_stride;
 
 res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);
 



commit python-zope.event for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.event for 
openSUSE:Factory checked in at 2015-05-18 23:00:41

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


Package is "python-zope.event"

Changes:

--- /work/SRC/openSUSE:Factory/python-zope.event/python-zope.event.changes  
2013-10-25 11:36:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zope.event.new/python-zope.event.changes 
2015-05-18 23:00:42.0 +0200
@@ -1,0 +2,10 @@
+Fri May 15 11:47:32 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.0.3:
+  * Added support for Python 3.4.
+  * Updated boostrap.py to version 2.2.
+- obsolete previous versions of python-zope-event, not current
+- rename CHANGES.txt to CHANGES.rst: changed upstream
+- rename README.txt to README.rst: changed upstream
+
+---

Old:

  zope.event-4.0.2.tar.gz

New:

  zope.event-4.0.3.tar.gz



Other differences:
--
++ python-zope.event.spec ++
--- /var/tmp/diff_new_pack.9slds7/_old  2015-05-18 23:00:43.0 +0200
+++ /var/tmp/diff_new_pack.9slds7/_new  2015-05-18 23:00:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.event
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-zope.event
-Version:4.0.2
+Version:4.0.3
 Release:0
 Summary:Very basic event publishing system
 License:ZPL-2.1
@@ -35,8 +35,7 @@
 BuildArch:  noarch
 %endif
 Provides:   python-zope-event = %{version}
-#TODO: Change back after next version update:
-Obsoletes:  python-zope-event <= %{version}
+Obsoletes:  python-zope-event < %{version}
 
 %description
 An event publishing system and a very simple event-dispatching system on
@@ -70,7 +69,7 @@
 
 %files
 %defattr(-,root,root)
-%doc CHANGES.txt COPYRIGHT.txt LICENSE.txt README.txt
+%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
 %{python_sitelib}/*
 
 %files doc

++ zope.event-4.0.2.tar.gz -> zope.event-4.0.3.tar.gz ++
 5224 lines of diff (skipped)




commit python-simplejson for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-simplejson for 
openSUSE:Factory checked in at 2015-05-18 22:59:35

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


Package is "python-simplejson"

Changes:

--- /work/SRC/openSUSE:Factory/python-simplejson/python-simplejson.changes  
2014-06-08 13:37:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-simplejson.new/python-simplejson.changes 
2015-05-18 22:59:36.0 +0200
@@ -1,0 +2,27 @@
+Tue May 12 18:13:06 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 3.6.5:
+  * Importing bug fix for reference leak when an error occurs
+during dict encoding
+https://github.com/simplejson/simplejson/issues/109
+- additional changes from version 3.6.4:
+  * Important bug fix for dump when only sort_keys is set
+https://github.com/simplejson/simplejson/issues/106
+- additional changes from version 3.6.3:
+  * Documentation updates
+https://github.com/simplejson/simplejson/issues/103
+- additional changes from version 3.6.2:
+  * Documentation updates
+http://bugs.python.org/issue21514
+- additional changes from version 3.6.1:
+  * Documentation updates
+https://github.com/simplejson/simplejson/issues/102
+- additional changes from version 3.6.0:
+  * Automatically strip any UTF-8 BOM from input to more closely
+follow the latest specs
+https://github.com/simplejson/simplejson/pull/101
+- additional changes from version 3.5.3:
+  * Fix lower bound checking in scan_once / raw_decode API
+https://github.com/simplejson/simplejson/issues/98
+
+---

Old:

  simplejson-3.5.2.tar.gz

New:

  simplejson-3.6.5.tar.gz



Other differences:
--
++ python-simplejson.spec ++
--- /var/tmp/diff_new_pack.ZHrmMN/_old  2015-05-18 22:59:37.0 +0200
+++ /var/tmp/diff_new_pack.ZHrmMN/_new  2015-05-18 22:59:37.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-simplejson
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-simplejson
-Version:3.5.2
+Version:3.6.5
 Release:0
 Url:http://github.com/simplejson/simplejson
 Summary:Simple, fast, extensible JSON encoder/decoder for Python

++ simplejson-3.5.2.tar.gz -> simplejson-3.6.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.5.2/CHANGES.txt 
new/simplejson-3.6.5/CHANGES.txt
--- old/simplejson-3.5.2/CHANGES.txt2014-05-23 17:21:08.0 +0200
+++ new/simplejson-3.6.5/CHANGES.txt2014-10-24 17:13:39.0 +0200
@@ -1,3 +1,40 @@
+Version 3.6.5 released 2014-10-24
+
+* Importing bug fix for reference leak when an error occurs during
+  dict encoding
+  https://github.com/simplejson/simplejson/issues/109
+
+Version 3.6.4 released 2014-09-29
+
+* Important bug fix for dump when only sort_keys is set
+  https://github.com/simplejson/simplejson/issues/106
+
+Version 3.6.3 released 2014-08-18
+
+* Documentation updates
+  https://github.com/simplejson/simplejson/issues/103
+
+Version 3.6.2 released 2014-08-09
+
+* Documentation updates
+  http://bugs.python.org/issue21514
+
+Version 3.6.1 released 2014-08-09
+
+* Documentation updates
+  https://github.com/simplejson/simplejson/issues/102
+
+Version 3.6.0 released 2014-07-21
+
+* Automatically strip any UTF-8 BOM from input to more closely
+  follow the latest specs
+  https://github.com/simplejson/simplejson/pull/101
+
+Version 3.5.3 released 2014-06-24
+
+* Fix lower bound checking in scan_once / raw_decode API
+  https://github.com/simplejson/simplejson/issues/98
+
 Version 3.5.2 released 2014-05-22
 
 * Fix Windows build with VS2008
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.5.2/PKG-INFO 
new/simplejson-3.6.5/PKG-INFO
--- old/simplejson-3.5.2/PKG-INFO   2014-05-23 17:22:17.0 +0200
+++ new/simplejson-3.6.5/PKG-INFO   2014-10-24 17:18:17.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: simplejson
-Version: 3.5.2
+Version: 3.6.5
 Summary: Simple, fast, extensible JSON encoder/decoder for Python
 Home-page: http://github.com/simplejson/simplejson
 Author: Bob Ippolito
@@ -29,6 +29,12 @@
 is particularly useful for implementing protocols such as JSON-RPC
 that have a richer type system than JSON itsel

commit python-pyparsing for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-pyparsing for 
openSUSE:Factory checked in at 2015-05-18 22:58:29

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


Package is "python-pyparsing"

Changes:

--- /work/SRC/openSUSE:Factory/python-pyparsing/python-pyparsing.changes
2015-01-15 16:01:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pyparsing.new/python-pyparsing.changes   
2015-05-18 22:58:29.0 +0200
@@ -1,0 +2,23 @@
+Mon May 11 17:40:24 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 2.0.3:
+  * Fixed escaping behavior in QuotedString. Formerly, only
+quotation marks (or characters designated as quotation marks in
+the QuotedString constructor) would be escaped. Now all escaped
+characters will be escaped, and the escaping backslashes will
+be removed.
+  * Fixed regression in ParseResults.pop() - pop() was pretty much
+broken after I added *improvements* in 2.0.2. Reported by Iain
+Shelvington, thanks Iain!
+  * Fixed bug in And class when initializing using a generator.
+  * Enhanced ParseResults.dump() method to list out nested
+ParseResults that are unnamed arrays of sub-structures.
+  * Fixed UnboundLocalError under Python 3.4 in oneOf method,
+reported on Sourceforge by aldanor, thanks!
+  * Fixed bug in ParseResults __init__ method, when returning
+non-ParseResults types from parse actions that implement
+__eq__. Raised during discussion on the pyparsing wiki with
+cyrfer.
+- fix end of line encoding of every file in examples
+
+---

Old:

  pyparsing-2.0.2.tar.gz

New:

  pyparsing-2.0.3.tar.gz



Other differences:
--
++ python-pyparsing.spec ++
--- /var/tmp/diff_new_pack.0NRM9A/_old  2015-05-18 22:58:30.0 +0200
+++ /var/tmp/diff_new_pack.0NRM9A/_new  2015-05-18 22:58:30.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyparsing
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-pyparsing
-Version:2.0.2
+Version:2.0.3
 Release:0
 Url:http://pyparsing.wikispaces.com/
 Summary:Grammar Parser Library for Python
@@ -59,7 +59,7 @@
 %build
 python setup.py build
 # Fix wrong EOL encoding:
-sed -i 's/\r$//' CHANGES LICENSE README examples/*.py
+sed -i 's/\r$//' CHANGES LICENSE README examples/*
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}

++ pyparsing-2.0.2.tar.gz -> pyparsing-2.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyparsing-2.0.2/CHANGES new/pyparsing-2.0.3/CHANGES
--- old/pyparsing-2.0.2/CHANGES 2014-04-13 19:10:42.0 +0200
+++ new/pyparsing-2.0.3/CHANGES 2014-08-16 07:18:53.0 +0200
@@ -2,6 +2,30 @@
 Change Log
 ==
 
+Version 2.0.3 - 
+---
+- Fixed escaping behavior in QuotedString. Formerly, only quotation
+  marks (or characters designated as quotation marks in the QuotedString
+  constructor) would be escaped. Now all escaped characters will be
+  escaped, and the escaping backslashes will be removed.
+
+- Fixed regression in ParseResults.pop() - pop() was pretty much
+  broken after I added *improvements* in 2.0.2. Reported by Iain
+  Shelvington, thanks Iain!
+
+- Fixed bug in And class when initializing using a generator.
+
+- Enhanced ParseResults.dump() method to list out nested ParseResults that
+  are unnamed arrays of sub-structures.
+
+- Fixed UnboundLocalError under Python 3.4 in oneOf method, reported
+  on Sourceforge by aldanor, thanks!
+
+- Fixed bug in ParseResults __init__ method, when returning non-ParseResults
+  types from parse actions that implement __eq__. Raised during discussion 
+  on the pyparsing wiki with cyrfer.
+
+
 Version 2.0.2 - April, 2014
 ---
 - Extended "expr(name)" shortcut (same as "expr.setResultsName(name)")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyparsing-2.0.2/PKG-INFO new/pyparsing-2.0.3/PKG-INFO
--- old/pyparsing-2.0.2/PKG-INFO2014-04-13 19:24:37.0 +0200
+++ new/pyparsing-2.0.3/PKG-INFO2014-10-11 07:19:23.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: pyparsing
-Version: 2.0.2
+Version: 2.0.3
 Summary: Python parsing module
 Home-page: http://pypar

commit python-pycparser for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-pycparser for 
openSUSE:Factory checked in at 2015-05-18 22:57:25

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


Package is "python-pycparser"

Changes:

--- /work/SRC/openSUSE:Factory/python-pycparser/python-pycparser.changes
2013-08-14 23:02:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pycparser.new/python-pycparser.changes   
2015-05-18 22:57:27.0 +0200
@@ -1,0 +2,23 @@
+Mon May 11 14:59:40 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 2.12:
+  * This is a fix release for 2.11; the memory optimization with
+__slots__ on Coord and AST nodes didn't take weakrefs into
+account, which broke cffi and its many dependents (issue #76).
+Fixed by adding __weakref__ to __slots__.
+- additional changes from version 2.11:
+  * Add support for C99 6.5.3.7 p7 - qualifiers within array
+dimensions in function declarations. Started with issue #21
+(reported with initial patch by Robin Martinjak).
+  * Issue #27: bug in handling of unified wstring literals.
+  * Issue #28: fix coord reporting for 'for' loops.
+  * Added ``examples/using_gcc_E_libc.py`` to demonstrate how ``gcc
+-E`` can be used instead of ``cpp`` for preprocessing.
+  * Pull request #64: support keywords like const, volatile,
+restrict and static in dimensions in array declarations.
+  * Reduce memory usage of AST nodes (issue #72).
+  * Parsing order of nested pointer declarations fixed (issue #68).
+- update project URL
+- fix end of line encoding of LICENSE
+
+---

Old:

  pycparser-2.10.tar.gz

New:

  pycparser-2.12.tar.gz



Other differences:
--
++ python-pycparser.spec ++
--- /var/tmp/diff_new_pack.WIW6Dr/_old  2015-05-18 22:57:28.0 +0200
+++ /var/tmp/diff_new_pack.WIW6Dr/_new  2015-05-18 22:57:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pycparser
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,15 +13,16 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python-pycparser
-Version:2.10
+Version:2.12
 Release:0
-License:BSD-3-Clause
 Summary:C parser in Python
-Url:https://bitbucket.org/eliben/pycparser
+License:BSD-3-Clause
 Group:  Development/Languages/Python
+Url:https://github.com/eliben/pycparser
 Source: 
http://pypi.python.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,6 +39,8 @@
 
 %prep
 %setup -q -n pycparser-%{version}
+# fix end of line
+sed -i 's/\r//' LICENSE
 
 %build
 python setup.py build

++ pycparser-2.10.tar.gz -> pycparser-2.12.tar.gz ++
 3701 lines of diff (skipped)




commit rubygem-facter for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-facter for openSUSE:Factory 
checked in at 2015-05-18 22:36:44

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


Package is "rubygem-facter"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-facter/rubygem-facter.changes
2015-01-24 22:21:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-facter.new/rubygem-facter.changes   
2015-05-18 22:36:45.0 +0200
@@ -1,0 +2,7 @@
+Mon May 11 14:26:29 UTC 2015 - tampak...@opensuse.org
+
+- Version bump 2.4.3, see
+  http://docs.puppetlabs.com/facter/2.4/release_notes.html
+- Minor update to the IP patch to make it apply with the current codebase
+
+---

Old:

  facter-2.3.0.gem

New:

  facter-2.4.3.gem



Other differences:
--
++ rubygem-facter.spec ++
--- /var/tmp/diff_new_pack.lkXK51/_old  2015-05-18 22:36:46.0 +0200
+++ /var/tmp/diff_new_pack.lkXK51/_new  2015-05-18 22:36:46.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-facter
-Version:2.3.0
+Version:2.4.3
 Release:0
 %define mod_name facter
 %define mod_full_name %{mod_name}-%{version}

++ facter-2.3.0.gem -> facter-2.4.3.gem ++
 3352 lines of diff (skipped)

++ facter-ip-interface.patch ++
--- /var/tmp/diff_new_pack.lkXK51/_old  2015-05-18 22:36:46.0 +0200
+++ /var/tmp/diff_new_pack.lkXK51/_new  2015-05-18 22:36:46.0 +0200
@@ -6,11 +6,11 @@
  
def self.get_all_interface_output
  case Facter.value(:kernel)
--when 'Linux', 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 
'DragonFly'
+-when 'Linux', 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 
'DragonFly', 'AIX'
 +when 'Linux'
 +  output = Facter::Util::IP.exec_ip(["link"])
 +  output.gsub!(/^\d+:\s*/, "")# delete 
leading number
-+when 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 'DragonFly'
++when 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 
'DragonFly', 'AIX'
output = Facter::Util::IP.exec_ifconfig(["-a","2>/dev/null"])
  when 'SunOS'
output = Facter::Util::IP.exec_ifconfig(["-a"])




commit poedit for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package poedit for openSUSE:Factory checked 
in at 2015-05-18 22:36:27

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


Package is "poedit"

Changes:

--- /work/SRC/openSUSE:Factory/poedit/poedit.changes2015-04-23 
08:03:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.poedit.new/poedit.changes   2015-05-18 
22:36:28.0 +0200
@@ -1,0 +2,7 @@
+Mon May 18 15:05:10 UTC 2015 - astie...@suse.com
+
+- poedit 1.7.7:
+  + strip whitespace in extractor definitions resulting from copy
+and paste
+
+---

Old:

  poedit-1.7.6.tar.gz

New:

  poedit-1.7.7.tar.gz



Other differences:
--
++ poedit.spec ++
--- /var/tmp/diff_new_pack.FAovBg/_old  2015-05-18 22:36:29.0 +0200
+++ /var/tmp/diff_new_pack.FAovBg/_new  2015-05-18 22:36:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   poedit
-Version:1.7.6
+Version:1.7.7
 Release:0
 Summary:Cross-platform Gettext Catalogs Editing Tool
 License:MIT

++ poedit-1.7.6.tar.gz -> poedit-1.7.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poedit-1.7.6/NEWS new/poedit-1.7.7/NEWS
--- old/poedit-1.7.6/NEWS   2015-04-18 20:01:37.0 +0200
+++ new/poedit-1.7.7/NEWS   2015-05-18 16:23:54.0 +0200
@@ -1,4 +1,10 @@
 
+Version 1.7.7
+-
+
+- strip whitespace in extractor definitions resulting from copy & paste
+
+
 Version 1.7.6
 -
 
@@ -6,6 +12,7 @@
 - [Windows] fix "file couldn't be formatted nicely" problems with files in
   directories with (some) Unicode names
 
+
 Version 1.7.5
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poedit-1.7.6/configure new/poedit-1.7.7/configure
--- old/poedit-1.7.6/configure  2015-04-18 20:02:30.0 +0200
+++ new/poedit-1.7.7/configure  2015-05-18 16:25:31.0 +0200
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for poedit 1.7.6.
+# Generated by GNU Autoconf 2.68 for poedit 1.7.7.
 #
-# Report bugs to .
+# Report bugs to .
 #
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -238,11 +238,11 @@
 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
   else
-$as_echo "$0: Please tell bug-autoc...@gnu.org and
-$0: poe...@googlegroups.com about your system, including
-$0: any error possibly output before this message. Then
-$0: install a modern shell, or manually run the script
-$0: under such a shell if you do have one."
+$as_echo "$0: Please tell bug-autoc...@gnu.org and h...@poedit.net
+$0: about your system, including any error possibly output
+$0: before this message. Then install a modern shell, or
+$0: manually run the script under such a shell if you do
+$0: have one."
   fi
   exit 1
 fi
@@ -560,9 +560,9 @@
 # Identity of this package.
 PACKAGE_NAME='poedit'
 PACKAGE_TARNAME='poedit'
-PACKAGE_VERSION='1.7.6'
-PACKAGE_STRING='poedit 1.7.6'
-PACKAGE_BUGREPORT='poe...@googlegroups.com'
+PACKAGE_VERSION='1.7.7'
+PACKAGE_STRING='poedit 1.7.7'
+PACKAGE_BUGREPORT='h...@poedit.net'
 PACKAGE_URL=''
 
 ac_unique_file="README"
@@ -1281,7 +1281,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures poedit 1.7.6 to adapt to many kinds of systems.
+\`configure' configures poedit 1.7.7 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1351,7 +1351,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of poedit 1.7.6:";;
+ short | recursive ) echo "Configuration of poedit 1.7.7:";;
esac
   cat <<\_ACEOF
 
@@ -1409,7 +1409,7 @@
 Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
-Report bugs to .
+Report bugs to .
 _ACEOF
 ac_status=$?
 fi
@@ -1472,7 +1472,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-poedit configure 1.7.6
+poedit configure 1.7.7
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1715,7 +1715,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by poedit $as_me 1.7.6, which was
+It was 

commit phalanx for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package phalanx for openSUSE:Factory checked 
in at 2015-05-18 22:36:10

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


Package is "phalanx"

Changes:

--- /work/SRC/openSUSE:Factory/phalanx/phalanx.changes  2014-11-20 
18:43:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.phalanx.new/phalanx.changes 2015-05-18 
22:36:11.0 +0200
@@ -1,0 +2,18 @@
+Mon May 11 14:09:34 UTC 2015 - pgaj...@suse.com
+
+- updated to XXIV
+  * Xboard protocol - 'memory' command support.
+  * New file phalanx.eng to support the new Xboard automatic engine 
+load.
+  * More log messages.
+  * Late move reductions with move count based pruning.
+  * Small but important changes in the static evaluation that improve 
+endgame play: Passed pawn, rook mobility, knight mobility.
+  * Default contempt factor changed from -20 to -10.
+  * Fixed tournament timecontrols.
+  * Positional  learning is now off by default.
+  * Tweaked polling input timeslice to better handle rapid changes 
+in analyze mode.
+  * Fixed GCC warnings.
+
+---

Old:

  phalanx-XXIII-source.tgz

New:

  phalanx-XXIV-source.tgz



Other differences:
--
++ phalanx.spec ++
--- /var/tmp/diff_new_pack.qMWWxu/_old  2015-05-18 22:36:12.0 +0200
+++ /var/tmp/diff_new_pack.qMWWxu/_new  2015-05-18 22:36:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package phalanx
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,12 +17,12 @@
 
 
 %define srcname Phalanx
-%define srcver  XXIII
+%define srcver  XXIV
 
 Name:   phalanx
 Url:http://sourceforge.net/projects/phalanx
 Provides:   chess_backend
-Version:23
+Version:24
 Release:0
 Source: 
http://downloads.sourceforge.net/project/phalanx/Version%20%{srcver}/%{name}-%{srcver}-source.tgz
 Patch0: Phalanx-XXII.diff

++ Phalanx-XXII.diff ++
--- /var/tmp/diff_new_pack.qMWWxu/_old  2015-05-18 22:36:12.0 +0200
+++ /var/tmp/diff_new_pack.qMWWxu/_new  2015-05-18 22:36:12.0 +0200
@@ -1,18 +1,3 @@
-Index: phalanx-XXIII/makefile
-===
 phalanx-XXIII.orig/makefile
-+++ phalanx-XXIII/makefile
-@@ -15,10 +15,8 @@ CFLAGS = -O0 -Wall -fomit-frame-pointer
- ### -DSHOW_FORCED_MOVES
- ### -DPBOOK_FILE=\"pbook.phalanx\"
- ### -DSBOOK_FILE=\"sbook.phalanx\"
--### -DLEARN_FILE=\"learn.phalanx\"
- ### -DPBOOK_DIR=\"/usr/local/lib\"
- ### -DSBOOK_DIR=\"/usr/local/lib\"
--### -DLEARN_DIR=\"/var/local/lib\"
- ### -DQCAPSONLY
- 
- DEFINES = -DGNUFUN 
 Index: phalanx-XXIII/phalanx.c
 ===
 --- phalanx-XXIII.orig/phalanx.c




commit python-WSGIProxy2 for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-WSGIProxy2 for 
openSUSE:Factory checked in at 2015-05-18 22:35:54

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


Package is "python-WSGIProxy2"

Changes:

--- /work/SRC/openSUSE:Factory/python-WSGIProxy2/python-WSGIProxy2.changes  
2014-01-14 20:00:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-WSGIProxy2.new/python-WSGIProxy2.changes 
2015-05-18 22:35:55.0 +0200
@@ -1,0 +2,7 @@
+Thu May 14 14:57:58 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.4.2:
+  * Undo webob's unquoting to handle paths with percent quoted utf8
+characters [Laurence Rowe]
+
+---

Old:

  WSGIProxy2-0.4.1.zip

New:

  WSGIProxy2-0.4.2.zip



Other differences:
--
++ python-WSGIProxy2.spec ++
--- /var/tmp/diff_new_pack.adxDzJ/_old  2015-05-18 22:35:55.0 +0200
+++ /var/tmp/diff_new_pack.adxDzJ/_new  2015-05-18 22:35:55.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-WSGIProxy2
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-WSGIProxy2
-Version:0.4.1
+Version:0.4.2
 Release:0
 Summary:WSGI Proxy Implementation
 License:MIT




commit python-WebTest for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-WebTest for openSUSE:Factory 
checked in at 2015-05-18 22:35:38

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


Package is "python-WebTest"

Changes:

--- /work/SRC/openSUSE:Factory/python-WebTest/python-WebTest.changes
2014-01-14 19:53:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-WebTest.new/python-WebTest.changes   
2015-05-18 22:35:39.0 +0200
@@ -1,0 +2,45 @@
+Thu May 14 13:59:46 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 2.0.18:
+  * Avoid deprecation warning with py3.4
+- additional changes from version 2.0.17:
+  * Properly check for default cookiejar arguments [Julian Berman]
+  * Avoid raising encoding errors from debugapp (needed to use with
+WSGIProxy2) [Laurence Rowe]
+- additional changes from version 2.0.16:
+  * Fixed #110. Forced values for Radio inputs are no longer
+ignored by value property on get. [bayprogrammer]
+  * Added method TestApp.set_parser_features to change the
+parser_features used by BeautifulSoup. [tomasmoreyra]
+  * Added app.set_cookie [luhn]
+- additional changes from version 2.0.15:
+  * Fixed #73. Python < 2.6.5 does not support unicode as keyword
+arguments names. [Stepan Kolesnik]
+  * Fixed #84 Application cookies for localhost are no longer
+ignored [gawel]
+  * Fixed #89 remove WSGIWarning: You are not supposed to send a
+body in a DELETE request because we now have a good reason for
+that. See http://bit.ly/1tb3yxW [gawel]
+  * Fixed #92 You can now override TestApp.JSONEncoder to use a
+custom encoder [gawel]
+  * Fixed #93 Support basic authentication [gawel]
+  * Fixed #103 Broken "Edit me on GitHub" links in documentation
+[gawel]
+  * Fixed #106 Make wrapping the app in the lint middleware
+optional [dmlayton]
+  * Fixed #107 Explicit error message when WSGIProxy2 is not
+installer [gawel]
+  * Fixed #108 cgi.parse_qsl is pending deprecation [gawel]
+- additional changes from version 2.0.14:
+  * Allow .select() on s and s. [Markus
+Bertheau]
+- additional changes from version 2.0.13:
+  * Allow selecting  options by text [Markus Bertheau]
+- additional changes from version 2.0.12:
+  * Ignore the value attribute of file inputs [Markus Bertheau]
+  * Allow selecting the form submit button by its value [Markus
+Bertheau]
+- remove version limitation for nose
+- pass -q to test to avoid spamming the build log
+
+---

Old:

  WebTest-2.0.11.zip

New:

  WebTest-2.0.18.zip



Other differences:
--
++ python-WebTest.spec ++
--- /var/tmp/diff_new_pack.4Qxq89/_old  2015-05-18 22:35:40.0 +0200
+++ /var/tmp/diff_new_pack.4Qxq89/_new  2015-05-18 22:35:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-WebTest
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-WebTest
-Version:2.0.11
+Version:2.0.18
 Release:0
 Url:http://webtest.pythonpaste.org/
 Summary:Helper to test WSGI applications
@@ -74,6 +74,8 @@
 
 %prep
 %setup -q -n WebTest-%{version}
+# remove version limitation for nose
+sed -i 's/nose<1\.3\.0/nose/' setup.py
 
 %build
 python setup.py build
@@ -84,7 +86,7 @@
 
 %if 0%{?suse_version} > 1110
 %check
-python setup.py test
+python setup.py -q test
 %endif
 
 %files




commit python-transaction for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-transaction for 
openSUSE:Factory checked in at 2015-05-18 22:35:04

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


Package is "python-transaction"

Changes:

--- /work/SRC/openSUSE:Factory/python-transaction/python-transaction.changes
2013-09-03 22:06:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-transaction.new/python-transaction.changes   
2015-05-18 22:35:05.0 +0200
@@ -1,0 +2,9 @@
+Thu May 14 09:56:45 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 1.4.3:
+  * Added support for Python 3.4.
+  * release 1.4.2 (skipped)
+- switch the source archive to tar.gz
+- pass -q to the test to avoid spamming the build log
+
+---

Old:

  transaction-1.4.1.zip

New:

  transaction-1.4.3.tar.gz



Other differences:
--
++ python-transaction.spec ++
--- /var/tmp/diff_new_pack.EYLMVn/_old  2015-05-18 22:35:06.0 +0200
+++ /var/tmp/diff_new_pack.EYLMVn/_new  2015-05-18 22:35:06.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-transaction
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,13 +17,13 @@
 
 
 Name:   python-transaction
-Version:1.4.1
+Version:1.4.3
 Release:0
 Summary:Transaction management for Python
 License:ZPL-2.1
 Group:  Development/Libraries/Python
 Url:http://www.zope.org/Products/ZODB
-Source: 
https://pypi.python.org/packages/source/t/transaction/transaction-%{version}.zip
+Source: 
https://pypi.python.org/packages/source/t/transaction/transaction-%{version}.tar.gz
 BuildRequires:  python-setuptools
 BuildRequires:  python-zope.interface
 BuildRequires:  unzip
@@ -67,7 +67,7 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
-python setup.py test
+python setup.py -q test
 
 %files
 %defattr(-,root,root)




commit python-thrift for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-thrift for openSUSE:Factory 
checked in at 2015-05-18 22:34:47

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


Package is "python-thrift"

Changes:

--- /work/SRC/openSUSE:Factory/python-thrift/python-thrift.changes  
2013-10-30 15:51:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-thrift.new/python-thrift.changes 
2015-05-18 22:34:49.0 +0200
@@ -1,0 +2,7 @@
+Thu May 14 09:49:48 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.9.2:
+  * no changelog available
+- remove README from package: not provided anymore
+
+---

Old:

  thrift-0.9.1.tar.gz

New:

  thrift-0.9.2.tar.gz



Other differences:
--
++ python-thrift.spec ++
--- /var/tmp/diff_new_pack.M2cCJH/_old  2015-05-18 22:34:51.0 +0200
+++ /var/tmp/diff_new_pack.M2cCJH/_new  2015-05-18 22:34:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-thrift
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-thrift
-Version:0.9.1
+Version:0.9.2
 Release:0
 Summary:Python bindings for the Apache Thrift RPC system
 License:Apache-2.0
@@ -53,7 +53,6 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README
 %{python_sitearch}/thrift-%{version}-py%{py_ver}.egg-info
 %{python_sitearch}/thrift
 

++ thrift-0.9.1.tar.gz -> thrift-0.9.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thrift-0.9.1/PKG-INFO new/thrift-0.9.2/PKG-INFO
--- old/thrift-0.9.1/PKG-INFO   2013-08-18 22:52:09.0 +0200
+++ new/thrift-0.9.2/PKG-INFO   2014-11-18 04:29:47.0 +0100
@@ -1,10 +1,10 @@
 Metadata-Version: 1.1
 Name: thrift
-Version: 0.9.1
+Version: 0.9.2
 Summary: Python bindings for the Apache Thrift RPC system
 Home-page: http://thrift.apache.org
-Author: ['Thrift Developers']
-Author-email: ['d...@thrift.apache.org']
+Author: Thrift Developers
+Author-email: d...@thrift.apache.org
 License: Apache License 2.0
 Description: UNKNOWN
 Platform: UNKNOWN
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thrift-0.9.1/README new/thrift-0.9.2/README
--- old/thrift-0.9.1/README 2013-08-15 16:04:29.0 +0200
+++ new/thrift-0.9.2/README 1970-01-01 01:00:00.0 +0100
@@ -1,35 +0,0 @@
-Thrift Python Software Library
-
-License
-===
-
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
-
-Using Thrift with Python
-
-
-Thrift is provided as a set of Python packages. The top level package is
-thrift, and there are subpackages for the protocol, transport, and server
-code. Each package contains modules using standard Thrift naming conventions
-(i.e. TProtocol, TTransport) and implementations in corresponding modules
-(i.e. TSocket).  There is also a subpackage reflection, which contains
-the generated code for the reflection structures.
-
-The Python libraries can be installed manually using the provided setup.py
-file, or automatically using the install hook provided via autoconf/automake.
-To use the latter, become superuser and do make install.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/thrift-0.9.1/setup.cfg new/thrift-0.9.2/setup.cfg
--- old/thrift-0.9.1/setup.cfg  2013-08-18 22:52:09.0 +0200
+++ new/thrift-0.9.2/setup.cfg  2014-11-18 04:29:47.0 +0100
@@ -1,6 +1,9 @@
 [install]
 optimize = 1
 
+[metadata]
+description-file = README.md
+
 [egg_info]
 tag_build = 
 tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclud

commit python-Trolly for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-Trolly for openSUSE:Factory 
checked in at 2015-05-18 22:35:21

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


Package is "python-Trolly"

Changes:

--- /work/SRC/openSUSE:Factory/python-Trolly/python-Trolly.changes  
2013-07-02 14:30:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Trolly.new/python-Trolly.changes 
2015-05-18 22:35:22.0 +0200
@@ -1,0 +2,14 @@
+Thu May 14 11:24:57 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.2.1:
+  * Trolly has recently been updated to start the deprecation of
+non-pythonic conventions and improve PEP8 compliance. All the
+old pascal cased methods are now deprecated, they have been
+left in and point to the new method names. There are no
+breaking changes in this release but it is recommended you
+change your code to use the pythonic naming conventions.
+- get the zip archive from pypi (tar.gz not available)
+- add unzip as BuildRequires
+- remove LICENCE.txt README.md: not provided anymore
+
+---

Old:

  Trolly-0.1.1.tar.gz

New:

  Trolly-0.2.1.zip



Other differences:
--
++ python-Trolly.spec ++
--- /var/tmp/diff_new_pack.pKUeo7/_old  2015-05-18 22:35:22.0 +0200
+++ /var/tmp/diff_new_pack.pKUeo7/_new  2015-05-18 22:35:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Trolly
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,14 +17,15 @@
 
 
 Name:   python-Trolly
-Version:0.1.1
+Version:0.2.1
 Release:0
 Summary:Trello api
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/plish/Trolly
-Source: 
http://pypi.python.org/packages/source/T/Trolly/Trolly-%{version}.tar.gz
+Source: 
http://pypi.python.org/packages/source/T/Trolly/Trolly-%{version}.zip
 BuildRequires:  python-devel
+BuildRequires:  unzip
 ## Test requirements:
 #BuildRequires:  python-nose
 #BuildRequires:  python-httplib2
@@ -57,7 +58,6 @@
 
 %files
 %defattr(-,root,root,-)
-%doc LICENCE.txt README.md
 %{python_sitelib}/*
 
 %changelog




commit python-tables for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-tables for openSUSE:Factory 
checked in at 2015-05-18 22:34:31

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


Package is "python-tables"

Changes:

--- /work/SRC/openSUSE:Factory/python-tables/python-tables.changes  
2014-07-29 16:48:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-tables.new/python-tables.changes 
2015-05-18 22:34:32.0 +0200
@@ -1,0 +2,106 @@
+Thu May 14 09:07:43 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 3.2.0:
+  Improvements
+  * The nrowsinbuf is better computed now for EArray/CArray having
+a small chunkshape in the main dimension. Fixes #285.
+  * PyTables should be installable very friendly via pip, including
+NumPy being installed automatically in the unlikely case it is
+not yet installed in the system. Thanks to Andrea Bedini.
+  * setup.py has been largely simplified and now it requires
+setuptools. Although we think this is a good step, please keep
+us informed this is breaking some installation in a very bad
+manner.
+  * setup.py now is able to used pkg-config, if available, to
+locate required libraries (hdf5, bzip2, etc.). The use of
+pkg-config can be controlled via setup.py command line flags or
+via environment variables. Please refer to the installation
+guide (in the User Manual) for details. Closes gh-442.
+  * It is now possible to create a new node whose parent is a
+softlink to another group (see gh-422). Thanks to Alistair
+Muldal.
+  * link.SoftLink objects no longer need to be explicitly
+dereferenced. Methods and attributes of the linked object are
+now automatically accessed when the user acts on a soft-link
+(see gh-399). Thanks to Alistair Muldal.
+  * Now ptrepack recognizes hardlinks and replicates them in the
+output (repacked) file. This saves disk space and makes
+repacked files more conformal to the original one. Closes
+gh-380.
+  * New pttree script for printing HDF5 file contents as a pretty
+ASCII tree (closes gh-400). Thanks to Alistair Muldal.
+  * The internal Blosc library has been downgraded to version
+1.4.4. This is in order to still allow using multiple threads
+inside Blosc, even on multithreaded applications (see gh-411,
+gh-412, gh-437 and gh-448).
+  * The print_versions() function now also reports the version of
+compression libraries used by Blosc.
+  * Now the setup.py tries to use the ‘-march=native’ C flag by
+default. In falls back on ‘-msse2’ if ‘-march=native’ is not
+supported by the compiler. Closes gh-379.
+  * Fixed a spurious unicode comparison warning (closes gh-372 and
+gh-373).
+  * Improved handling of empty string attributes. In previous
+versions of PyTables empty string were stored as scalar HDF5
+attributes having size 1 and value ‘0’ (an empty null
+terminated string). Now empty string are stored as HDF5
+attributes having zero size
+  * Added a new cookbook recipe and a couple of examples for simple
+threading with PyTables.
+  * The redundant utilsextension.get_indices() function has been
+eliminated (replaced by slice.indices()). Closes gh-195.
+  * Allow negative indices in point selection (closes gh-360)
+  * Index wasn’t being used if it claimed there were no results.
+Closes gh-351 (see also gh-353)
+  * Atoms and Col types are no longer generated dynamically so now
+it is easier for IDEs and static analysis tool to handle them
+(closes gh-345)
+  * The keysort functions in idx-opt.c have been cythonised using
+fused types. The perfomance is mostly unchanged, but the code
+is much more simpler now. Thanks to Andrea Bedini.
+  * Small unit tests re-factoring
+  Bugs fixed
+  * Fixed compatibility problems with numpy 1.9 and 1.10-dev
+(closes gh-362 and gh-366)
+  * Fixed compatibility with Cython >= 0.20 (closes gh-386 and
+gh-387)
+  * Fixed support for unicode node names in LRU cache (only Python
+2 was affected). Closes gh-367 and gh-369.
+  * Fixed support for unicode node titles (only Python 2 was
+affected). Closes gh-370 and gh-374.
+  * Fixed a bug that caused the silent truncation of unicode
+attributes containing the ‘0’ character. Closes gh-371.
+  * Fixed descr_from_dtype() to work as expected with complex
+types. Closes gh-381.
+  * Fixed the tests.test_basics.ThreadingTestCase test case. Closes
+gh-359.
+  * Fix incomplete results when performing the same query twice and
+exhausting the second iterator before the first. The first one
+writes incomplete results to seqcache (gh-353)
+  * Fix false results potentially going to seqcache if
+tableextension.Row.update() is used during iteration 

commit man-pages-ja for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package man-pages-ja for openSUSE:Factory 
checked in at 2015-05-18 22:34:13

Comparing /work/SRC/openSUSE:Factory/man-pages-ja (Old)
 and  /work/SRC/openSUSE:Factory/.man-pages-ja.new (New)


Package is "man-pages-ja"

Changes:

--- /work/SRC/openSUSE:Factory/man-pages-ja/man-pages-ja.changes
2014-11-26 10:34:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.man-pages-ja.new/man-pages-ja.changes   
2015-05-18 22:34:15.0 +0200
@@ -1,0 +2,6 @@
+Mon May 11 12:04:32 UTC 2015 - pgaj...@suse.com
+
+- update to 20150415
+  * added and improved manual pages
+
+---

Old:

  man-pages-ja-20141115.tar.gz

New:

  man-pages-ja-20150415.tar.gz



Other differences:
--
++ man-pages-ja.spec ++
--- /var/tmp/diff_new_pack.Y4bGpP/_old  2015-05-18 22:34:15.0 +0200
+++ /var/tmp/diff_new_pack.Y4bGpP/_new  2015-05-18 22:34:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package man-pages-ja
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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:   man-pages-ja
-Version:20141115
+Version:20150415
 Release:0
 Summary:LDP Manual Pages (Japanese)
 License:GPL-2.0 and BSD-3-Clause and GFDL-1.1 and GFDL-1.2 and GFDL-1.3

++ man-pages-ja-20141115.tar.gz -> man-pages-ja-20150415.tar.gz ++
 68798 lines of diff (skipped)




commit apache2-mod_nss for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package apache2-mod_nss for openSUSE:Factory 
checked in at 2015-05-18 22:33:43

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


Package is "apache2-mod_nss"

Changes:

--- /work/SRC/openSUSE:Factory/apache2-mod_nss/apache2-mod_nss.changes  
2015-05-10 10:46:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.apache2-mod_nss.new/apache2-mod_nss.changes 
2015-05-18 22:33:44.0 +0200
@@ -1,0 +2,6 @@
+Mon May 18 10:32:12 UTC 2015 - h...@suse.com
+
+- The package does not carry any .conf files underneath /etc/apache2/mod_nss.d,
+  therefore use 'IncludeOptional' instead of 'Include' directory in 
mod_nss.conf.
+
+---



Other differences:
--
++ mod_nss.conf.in ++
--- /var/tmp/diff_new_pack.xd7xdE/_old  2015-05-18 22:33:45.0 +0200
+++ /var/tmp/diff_new_pack.xd7xdE/_new  2015-05-18 22:33:45.0 +0200
@@ -106,7 +106,7 @@
 
 
 Include /etc/apache2/listen_nss.conf
-Include /etc/apache2/mod_nss.d/*.conf
+IncludeOptional /etc/apache2/mod_nss.d/*.conf
 
 
 




commit easytag for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package easytag for openSUSE:Factory checked 
in at 2015-05-18 22:33:26

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


Package is "easytag"

Changes:

--- /work/SRC/openSUSE:Factory/easytag/easytag.changes  2015-04-25 
11:25:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.easytag.new/easytag.changes 2015-05-18 
22:33:27.0 +0200
@@ -1,0 +2,10 @@
+Sun May 17 10:55:56 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.3.7:
+  + Add preliminary support for HiDPI displays.
+  + Fix missing libepoxy DLL in the Windows installer.
+  + Convert several widgets to use templates.
+  + Use new G_DEFINE_TYPE_WITH_PRIVATE support in GObject.
+  + Updated translations.
+
+---

Old:

  easytag-2.3.6.tar.xz

New:

  easytag-2.3.7.tar.xz



Other differences:
--
++ easytag.spec ++
--- /var/tmp/diff_new_pack.xHZTKi/_old  2015-05-18 22:33:28.0 +0200
+++ /var/tmp/diff_new_pack.xHZTKi/_new  2015-05-18 22:33:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   easytag
-Version:2.3.6
+Version:2.3.7
 Release:0
 Summary:GTK+ tag editor for audio files
 License:GPL-2.0+
@@ -35,8 +35,8 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(flac) >= 1.1.4
-BuildRequires:  pkgconfig(gio-2.0) >= 2.32.0
-BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gio-2.0) >= 2.38.0
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(id3tag)
 BuildRequires:  pkgconfig(libnautilus-extension)
 BuildRequires:  pkgconfig(ogg) >= 1.0

++ easytag-2.3.6.tar.xz -> easytag-2.3.7.tar.xz ++
 19737 lines of diff (skipped)




commit gkrellm-cpufreq for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gkrellm-cpufreq for openSUSE:Factory 
checked in at 2015-05-18 22:33:10

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


Package is "gkrellm-cpufreq"

Changes:

--- /work/SRC/openSUSE:Factory/gkrellm-cpufreq/gkrellm-cpufreq.changes  
2014-01-23 15:43:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.gkrellm-cpufreq.new/gkrellm-cpufreq.changes 
2015-05-18 22:33:11.0 +0200
@@ -1,0 +2,5 @@
+Sun May 17 07:51:33 UTC 2015 - zai...@opensuse.org
+
+- Own some dirs to fix build on older openSUSE releases.
+
+---



Other differences:
--
++ gkrellm-cpufreq.spec ++
--- /var/tmp/diff_new_pack.6WUClO/_old  2015-05-18 22:33:11.0 +0200
+++ /var/tmp/diff_new_pack.6WUClO/_new  2015-05-18 22:33:11.0 +0200
@@ -58,6 +58,8 @@
 %defattr(-,root,root)
 # INSTALL is packaged on purpose. There are post-install instructions
 %doc ChangeLog LICENSE README
+%dir %{_libdir}/gkrellm2/
+%dir %{_libdir}/gkrellm2/plugins
 %{_libdir}/gkrellm2/plugins/cpufreq.so
 %{_sbindir}/cpufreqnextgovernor
 




commit pidgin-indicator for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package pidgin-indicator for 
openSUSE:Factory checked in at 2015-05-18 22:32:53

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


Package is "pidgin-indicator"

Changes:

New Changes file:

--- /dev/null   2015-05-15 19:41:08.266053825 +0200
+++ /work/SRC/openSUSE:Factory/.pidgin-indicator.new/pidgin-indicator.changes   
2015-05-18 22:32:54.0 +0200
@@ -0,0 +1,11 @@
+---
+Fri Mar 13 22:45:09 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.9 (changes since 0.7):
+  * Implement proper blinking notification for status icon.
+  * Add Hungarian and Simplied Chinese translations.
+
+---
+Sun Aug  3 15:54:24 UTC 2014 - sor.ale...@meowr.ru
+
+- Initial package (boo#902984).

New:

  pidgin-indicator-0.9.tar.gz
  pidgin-indicator.changes
  pidgin-indicator.spec



Other differences:
--
++ pidgin-indicator.spec ++
#
# spec file for package pidgin-indicator
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:   pidgin-indicator
Version:0.9
Release:0
Summary:StatusNotifierItem tray icon plugin for Pidgin
License:GPL-2.0+
Group:  Productivity/Networking/Instant Messenger
Url:https://github.com/philipl/pidgin-indicator
Source: 
https://github.com/philipl/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  hicolor-icon-theme
BuildRequires:  intltool
BuildRequires:  libtool
BuildRequires:  pkgconfig(appindicator-0.1)
BuildRequires:  pkgconfig(pidgin)
Recommends: %{name}-lang = %{version}

%description
This plugin provides a StatusNotifierItem tray icon, for use in
KDE Plasma 5, Unity, Elementary and other environments.

It provides all the same functionality as the original tray icon
but not in exactly the same way:
 * The 'smart' click behaviour that either shows the buddy list or
   unread messages is now activated by a middle-click – because
   left click on an libappindicator always opens the menu.
 * As the SNI-icon is a separate process from pidgin itself, there
   are sometimes conflicts with Focus Stealing Prevention when you
   use the indicator to go to unread messages. You may need to
   disable FSP for Pidgin to get around this.
 * Due to how libappindicator work, the middle-click action must
   also be a menu item, so it's the new Show/Hide item at the top
   of the menu.
 * Due to libappindicator limitations, some of the special icons
   can't be shown next to menu items any more.

%lang_package

%prep
%setup -q

%build
autoreconf -fi
%configure
make %{?_smp_mflags}

%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%find_lang %{name}

%files
%defattr(-,root,root)
%doc COPYING AUTHORS
%{_libdir}/pidgin/
%{_datadir}/icons/hicolor/*/status/%{name}-nothing.png

%files lang -f %{name}.lang
%defattr(-,root,root)

%changelog



commit vdr-plugin-satip for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package vdr-plugin-satip for 
openSUSE:Factory checked in at 2015-05-18 22:32:36

Comparing /work/SRC/openSUSE:Factory/vdr-plugin-satip (Old)
 and  /work/SRC/openSUSE:Factory/.vdr-plugin-satip.new (New)


Package is "vdr-plugin-satip"

Changes:

--- /work/SRC/openSUSE:Factory/vdr-plugin-satip/vdr-plugin-satip.changes
2015-03-11 09:57:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.vdr-plugin-satip.new/vdr-plugin-satip.changes   
2015-05-18 22:32:38.0 +0200
@@ -1,0 +2,18 @@
+Fri May 15 17:46:55 UTC 2015 - seife+...@b1-systems.com
+
+- update to version 2.2.2 (2015-04-26)
+  * Added a more flexible OPER command in the SVDRP interface
+  * Added new ATTA and DETA SVDRP commands
+  * Set the default device count to two
+
+---
+Tue Apr  7 14:23:17 UTC 2015 - seife+...@b1-systems.com
+
+- update to version 2.2.1 (2015-04-04)
+  * Improved RTSP error checking
+  * Got rid of SATIP_DEBUG
+  * Robustify the server discovery
+  * Fixed a memory leak in TinyXML implementation
+  * Updated against SAT>IP protocol specification version 1.2.2
+
+---

Old:

  vdr-satip-2.2.0.tgz

New:

  vdr-satip-2.2.2.tgz



Other differences:
--
++ vdr-plugin-satip.spec ++
--- /var/tmp/diff_new_pack.qMa2nQ/_old  2015-05-18 22:32:38.0 +0200
+++ /var/tmp/diff_new_pack.qMa2nQ/_new  2015-05-18 22:32:38.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   vdr-plugin-satip
-Version:2.2.0
+Version:2.2.2
 Release:0
 Summary:SAT>IP Input Plugin for the Video Disc Recorder VDR
 License:GPL-2.0
@@ -29,7 +29,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  tinyxml-devel
 BuildRequires:  vdr-devel >= 2.0.0
-BuildRequires:  pkgconfig(libcurl)
+BuildRequires:  pkgconfig(libcurl) >= 7.36.0
 Requires(pre):  %{vdr_prereq}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -48,7 +48,7 @@
 %build
 # use msgmerge wrapper
 export PATH=%{_datadir}/vdr:$PATH
-make %{?_smp_mflags} SATIP_USE_TINYXML=1 SATIP_DEBUG=1
+make %{?_smp_mflags} SATIP_USE_TINYXML=1
 
 %install
 make install DESTDIR=%{buildroot}

++ vdr-satip-2.2.0.tgz -> vdr-satip-2.2.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/satip-2.2.0/HISTORY new/satip-2.2.2/HISTORY
--- old/satip-2.2.0/HISTORY 2015-02-19 03:20:00.0 +0100
+++ new/satip-2.2.2/HISTORY 2015-04-26 03:20:00.0 +0200
@@ -120,3 +120,20 @@
 - Fixed memory deallocation errors.
 - Cleaned up all scan-build warnings.
 - Refactored the frontend handling.
+
+2015-04-04: Version 2.2.1
+
+- Improved RTSP error checking.
+- Got rid of SATIP_DEBUG.
+- Robustify the server discovery.
+- Fixed a memory leak in TinyXML implementation
+  (Thanks to Oliver Endriss).
+- Updated against SAT>IP protocol specification
+  version 1.2.2.
+
+2015-04-26: Version 2.2.2
+
+- Added a more flexible OPER command in the SVDRP
+  interface.
+- Added new ATTA and DETA SVDRP commands.
+- Set the default device count to two.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/satip-2.2.0/Makefile new/satip-2.2.2/Makefile
--- old/satip-2.2.0/Makefile2015-02-19 03:20:00.0 +0100
+++ new/satip-2.2.2/Makefile2015-04-26 03:20:00.0 +0200
@@ -2,18 +2,10 @@
 # Makefile for SAT>IP plugin
 #
 
-# Debugging on/off
-
-#SATIP_DEBUG = 1
-
 # Use TinyXML instead of PugiXML
 
 #SATIP_USE_TINYXML = 1
 
-# Strip debug symbols?  Set eg. to /bin/true if not
-
-STRIP = strip
-
 # The official name of this plugin.
 # This name will be used in the '-P...' option of VDR to load the plugin.
 # By default the main source file also carries this name.
@@ -40,6 +32,7 @@
 
 export CFLAGS   = $(call PKGCFG,cflags)
 export CXXFLAGS = $(call PKGCFG,cxxflags)
+STRIP   ?= /bin/true
 
 ### The version number of VDR's plugin API:
 
@@ -75,12 +68,6 @@
 LIBS += -lpugixml
 endif
 
-ifdef SATIP_DEBUG
-ifeq ($(SATIP_DEBUG),1)
-DEFINES += -DDEBUG
-endif
-endif
-
 ifneq ($(strip $(GITTAG)),)
 DEFINES += -DGITVERSION='"-GIT-$(GITTAG)"'
 endif
@@ -142,9 +129,7 @@
 
 $(SOFILE): $(OBJS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@
-ifndef SATIP_DEBUG
@$(STRIP) $@
-endif
 
 install-lib: $(SOFILE)
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/satip-2.2.0/README new/satip-2.2.2/README
--- old/satip-2.2.0/README  2015-02-19 03:20:00.0 +0100
+++ new/satip-2.2.2/README  2015-04-26 03:20:00.0 +020

commit rubygem-bundler for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bundler for openSUSE:Factory 
checked in at 2015-05-18 22:32:19

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


Package is "rubygem-bundler"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bundler/rubygem-bundler.changes  
2015-04-27 13:04:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bundler.new/rubygem-bundler.changes 
2015-05-18 22:32:20.0 +0200
@@ -1,0 +2,19 @@
+Mon May 18 09:44:50 UTC 2015 - mrueck...@suse.de
+
+- update to 1.9.9
+  - read mirror and credential settings from older versions (#3557,
+@Strech)
+  - fix regression in sudo mode introduced by 1.9.7 (#3642,
+@segiddins)
+  - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
+  - use RubyGems spec stubs if available (@segiddins)
+  - allow creating gems with names containing two dashes (#3483,
+@janlelis)
+  - allow creating gems with names extending constants (#3603,
+@amatsuda)
+  - respect Gemfile sources when installing a gem present in two
+sources (#3585, @tmoore)
+- refresh gemspec_remove_pem.patch to apply cleanly again and
+  package the series file
+
+---

Old:

  bundler-1.9.4.gem

New:

  bundler-1.9.9.gem
  series



Other differences:
--
++ rubygem-bundler.spec ++
--- /var/tmp/diff_new_pack.CxWu1J/_old  2015-05-18 22:32:21.0 +0200
+++ /var/tmp/diff_new_pack.CxWu1J/_new  2015-05-18 22:32:21.0 +0200
@@ -24,18 +24,19 @@
 #
 
 Name:   rubygem-bundler
-Version:1.9.4
+Version:1.9.9
 Release:0
 %define mod_name bundler
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{ruby >= 1.8.7}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:http://bundler.io
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Source1:gem2rpm.yml
+Source1:series
+Source2:gem2rpm.yml
 # MANUAL
 Patch0: gemspec_remove_pem.patch
 # /MANUAL

++ bundler-1.9.4.gem -> bundler-1.9.9.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2015-04-14 06:10:50.0 +0200
+++ new/CHANGELOG.md2015-05-17 07:43:23.0 +0200
@@ -1,3 +1,35 @@
+## 1.9.9 (2015-05-16)
+
+Bugfixes:
+
+  - read mirror and credential settings from older versions (#3557, @Strech)
+
+## 1.9.8 (2015-05-12)
+
+Bugfixes:
+
+  - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
+
+## 1.9.7 (2015-05-11)
+
+Bugfixes:
+
+  - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
+
+## 1.9.6 (2015-05-02)
+
+Bugfixes:
+
+  - use RubyGems spec stubs if available (@segiddins)
+  - allow creating gems with names containing two dashes (#3483, @janlelis)
+  - allow creating gems with names extending constants (#3603, @amatsuda)
+
+## 1.9.5 (2015-04-29)
+
+Bugfixes:
+
+  - respect Gemfile sources when installing a gem present in two sources 
(#3585, @tmoore)
+
 ## 1.9.4 (2015-04-13)
 
 Bugfixes:
@@ -57,6 +89,24 @@
   - Molinillo resolver, shared with CocoaPods (@segiddins)
   - updated Thor to v0.19.1 (@segiddins)
 
+## 1.8.9 (2015-05-02)
+
+Bugfixes:
+
+  - Use RubyGems spec stubs if available (@segiddins)
+
+## 1.8.8 (2015-04-29)
+
+Bugfixes:
+
+  - Respect Gemfile sources when installing a gem present in two sources 
(#3585, @tmoore)
+
+## 1.8.7 (2015-04-07)
+
+Bugfixes:
+
+  - stop suppressing errors inside gems that get required (#3549, @indirect)
+
 ## 1.8.6 (2015-03-30)
 
 Bugfixes:
@@ -163,6 +213,19 @@
 
   - add missing Gemfile global `path` explanation (@agenteo)
 
+## 1.7.15 (2015-04-29)
+
+Bugfixes:
+
+  - Respect Gemfile sources when installing a gem present in two sources 
(#3585, @tmoore)
+
+## 1.7.14 (2015-03-30)
+
+Bugfixes:
+
+  - Keep gems locked when updating another gem from the same source (#3250, 
@indirect)
+  - Don't add extra quotes around long, quoted config values (@aroben, #3338)
+
 ## 1.7.13 (2015-02-07)
 
 Bugfixes:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2015-04-14 06:10:50.0 +0200
+++ new/Rakefile2015-05-17 07:43:23.0 +0200
@@ -291,12 +291,15 @@
 task :clean do
   rm_rf "lib/bundler/man"
 end
+
+task(:require) { }
   end
 
 rescue LoadError
   namespace :man do
-task(:build) { warn "Install the ronn gem to be able to r

commit sysstat for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package sysstat for openSUSE:Factory checked 
in at 2015-05-18 22:32:03

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


Package is "sysstat"

Changes:

--- /work/SRC/openSUSE:Factory/sysstat/sysstat.changes  2015-02-22 
17:27:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.sysstat.new/sysstat.changes 2015-05-18 
22:32:04.0 +0200
@@ -1,0 +2,24 @@
+Sun May 17 11:09:27 UTC 2015 - mplus...@suse.com
+
+- Update to 11.0.4 
+  * Makefile: sysstat init script may sometimes be called rc.sysstat.
+So use that name when needed.
+  * pidstat: Don't stop if gtime and cgtime fields are unavailable.
+  * Typos fixed in XSD document.
+  * [Peter Schiffer]: Replace spaces with tabs in Makefile.in.
+  * [Peter Schiffer]: Create appropriate directories in DESTDIR if
+missing.
+  * [Peter Schiffer]: Fixed installation of systemd/cron files on
+systems w/o systemd.
+  * [Peter Schiffer]: Don't look in weird places for programs during
+configuration.
+  * [Peter Schiffer]: Portable way to detect 64 bit OS in configure
+script.
+  * [Steve Kay]: Fix mpstat SCPU alignment output.
+  * Makefile: Call chkconfig only if $(COPY_ONLY) is set to no.
+  * sysstat(5) manual page updated.
+  * NLS updated.
+- Use scriplets for updating desktop files
+- Update patches
+
+---

Old:

  sysstat-11.0.3.tar.xz

New:

  sysstat-11.0.4.tar.xz



Other differences:
--
++ sysstat.spec ++
--- /var/tmp/diff_new_pack.tLHaFy/_old  2015-05-18 22:32:05.0 +0200
+++ /var/tmp/diff_new_pack.tLHaFy/_new  2015-05-18 22:32:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sysstat
-Version:11.0.3
+Version:11.0.4
 Release:0
 Summary:Sar and Iostat Commands for Linux
 License:GPL-2.0+
@@ -65,6 +65,8 @@
 Requires:   gnuplot
 Requires:   sysstat = %{version}
 Requires:   tk
+Requires(post): update-desktop-files
+Requires(postun): update-desktop-files
 
 %description isag
 This package includes the isag command, which graphically displays the
@@ -125,12 +127,18 @@
 %postun
 %service_del_postun sysstat.service
 
+%post isag
+%desktop_database_post
+
+%postun isag
+%desktop_database_postun
+
 %files -f "%{name}.lang"
 %defattr(-,root,root)
 %doc CHANGES COPYING CREDITS FAQ README
-%doc %{_mandir}/man1/*
-%doc %{_mandir}/man5/*
-%doc %{_mandir}/man8/*
+%{_mandir}/man1/*
+%{_mandir}/man5/*
+%{_mandir}/man8/*
 %exclude %{_mandir}/man1/isag*
 %dir %{_sysconfdir}/sysstat
 %config(noreplace) %{_sysconfdir}/sysstat/sysstat
@@ -146,7 +154,7 @@
 %files isag
 %defattr(-,root,root)
 %doc contrib/isag/README-isag
-%doc %{_mandir}/man1/isag*
+%{_mandir}/man1/isag*
 %{_bindir}/isag
 %{_datadir}/applications/isag.desktop
 

++ sysstat-11.0.3.tar.xz -> sysstat-11.0.4.tar.xz ++
 7141 lines of diff (skipped)

++ sysstat-8.0.4-pagesize.diff ++
--- /var/tmp/diff_new_pack.tLHaFy/_old  2015-05-18 22:32:05.0 +0200
+++ /var/tmp/diff_new_pack.tLHaFy/_new  2015-05-18 22:32:05.0 +0200
@@ -1,6 +1,8 @@
 sysstat-11.0.0/common.h2014-06-12 15:31:57.0 -0400
-+++ common.h   2014-07-17 22:07:52.571757781 -0400
-@@ -140,8 +140,8 @@
+Index: common.h
+===
+--- common.h.orig
 common.h
+@@ -140,8 +140,8 @@ extern unsigned int kb_shift;
   * kB <-> number of pages.
   * Page size depends on machine architecture (4 kB, 8 kB, 16 kB, 64 kB...)
   */

++ sysstat-8.0.4-sysconfdir.diff ++
--- /var/tmp/diff_new_pack.tLHaFy/_old  2015-05-18 22:32:05.0 +0200
+++ /var/tmp/diff_new_pack.tLHaFy/_new  2015-05-18 22:32:05.0 +0200
@@ -1,6 +1,8 @@
 sysstat-11.0.0/FAQ 2014-06-08 10:28:50.0 -0400
-+++ FAQ2014-07-17 22:13:10.841736018 -0400
-@@ -430,9 +430,9 @@
+Index: FAQ
+===
+--- FAQ.orig
 FAQ
+@@ -430,9 +430,9 @@ to verify that for yourself.
  Nor do you have to be concerned about using up all your disk space.
  sar will use a few hundred kilobytes for a whole day's worth of data, and it
  normally only stores one week worth (this can be configured via the HISTORY
@@ -12,7 +14,7 @@
  configuration file.
  
  ~~~
-@@ -472,7 +472,7 @@
+@@ -472,7 +472,7 @@ another file or create a new one. See al
  By default sar saves its data in the standard system activity data file,
  the /var/log/sa/saDD file, where DD is the current day in the month.
  To prevent sar from overwriting any existing files, just set the variable
@@ -21,9 +23,11 @@
  must be kept. When this variable has 

commit gtg for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gtg for openSUSE:Factory checked in 
at 2015-05-18 22:31:42

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


Package is "gtg"

Changes:

--- /work/SRC/openSUSE:Factory/gtg/gtg.changes  2014-10-22 16:23:35.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gtg.new/gtg.changes 2015-05-18 
22:31:44.0 +0200
@@ -1,0 +2,5 @@
+Mon May 18 08:56:58 UTC 2015 - fcro...@suse.com
+
+- Update url field in specfile.
+
+---



Other differences:
--
++ gtg.spec ++
--- /var/tmp/diff_new_pack.BBEGGU/_old  2015-05-18 22:31:45.0 +0200
+++ /var/tmp/diff_new_pack.BBEGGU/_new  2015-05-18 22:31:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gtg
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 Summary:Personal Organizer for GNOME
 License:GPL-3.0+
 Group:  Productivity/Office/Organizers
-Url:https://gtg.fritalk.com
+Url:http://gtgnome.net/
 Source0:
http://launchpad.net/gtg/trunk/%{version}/+download/%{name}-%{version}.tar.gz
 Source1:gtg.appdata.xml
 BuildRequires:  dbus-1





commit mksusecd for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2015-05-18 22:31:26

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


Package is "mksusecd"

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2015-05-10 
10:47:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2015-05-18 
22:31:27.0 +0200
@@ -1,0 +2,6 @@
+Mon May 18 10:35:54 CEST 2015 - snw...@suse.com
+
+- get isohybrid binary location right
+- 1.21
+
+---

Old:

  mksusecd-1.20.tar.xz

New:

  mksusecd-1.21.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.f9BCoz/_old  2015-05-18 22:31:28.0 +0200
+++ /var/tmp/diff_new_pack.f9BCoz/_new  2015-05-18 22:31:28.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.20
+Version:1.21
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+

++ mksusecd-1.20.tar.xz -> mksusecd-1.21.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.20/Makefile new/mksusecd-1.21/Makefile
--- old/mksusecd-1.20/Makefile  2015-05-08 11:04:34.0 +0200
+++ new/mksusecd-1.21/Makefile  2015-05-18 10:34:33.0 +0200
@@ -34,6 +34,7 @@
 install: isohybrid
@cp mksusecd mksusecd.tmp
@perl -pi -e 's/0\.0/$(VERSION)/ if /VERSION = /' mksusecd.tmp
+   @perl -pi -e 's#"(.*)"#"$(LIBDIR)"# if /LIBEXECDIR = /' mksusecd.tmp
install -m 755 -D mksusecd.tmp $(DESTDIR)$(BINDIR)/mksusecd
install -m 755 -D isohybrid $(DESTDIR)$(LIBDIR)/mksusecd/isohybrid
@rm -f mksusecd.tmp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.20/VERSION new/mksusecd-1.21/VERSION
--- old/mksusecd-1.20/VERSION   2015-05-08 11:04:34.0 +0200
+++ new/mksusecd-1.21/VERSION   2015-05-18 10:34:33.0 +0200
@@ -1 +1 @@
-1.20
+1.21
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.20/changelog new/mksusecd-1.21/changelog
--- old/mksusecd-1.20/changelog 2015-05-08 11:04:34.0 +0200
+++ new/mksusecd-1.21/changelog 2015-05-18 10:34:33.0 +0200
@@ -1,3 +1,6 @@
+2015-05-18:1.21
+   - get isohybrid binary location right
+
 2015-05-08:1.20
- fix key generation issues with different gpg2 versions
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.20/mksusecd new/mksusecd-1.21/mksusecd
--- old/mksusecd-1.20/mksusecd  2015-05-08 11:04:34.0 +0200
+++ new/mksusecd-1.21/mksusecd  2015-05-18 10:34:33.0 +0200
@@ -132,6 +132,7 @@
 $Data::Dumper::Indent = 1;
 
 our $VERSION = "0.0";
+our $LIBEXECDIR = "/usr/lib";
 
 my @boot_archs = qw ( x86_64 i386 s390x s390 ia64 aarch64 ppc ppc64 ppc64le );
 my $magic_id = "7984fc91-a43f-4e45-bf27-6d3aa08b24cf";
@@ -1093,7 +1094,7 @@
   $opt .= " --offset $mkisofs->{partition_start}" if 
$mkisofs->{partition_start};
 
   # prefer our own isohybrid variant
-  my $cmd = "/usr/lib/mksusecd/isohybrid";
+  my $cmd = "$LIBEXECDIR/mksusecd/isohybrid";
   $cmd = "isohybrid" unless -x $cmd;
 
   $cmd .= "$opt $iso_file";




commit python-kde4 for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-kde4 for openSUSE:Factory 
checked in at 2015-05-18 22:30:59

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


Package is "python-kde4"

Changes:

--- /work/SRC/openSUSE:Factory/python-kde4/python-kde4.changes  2015-04-07 
09:27:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-kde4.new/python-kde4.changes 
2015-05-18 22:31:01.0 +0200
@@ -1,0 +2,5 @@
+Sun May 17 13:52:25 UTC 2015 - opens...@cboltz.de
+
+- split off -doc package with 26 MB of HTML documentation
+
+---
python3-kde4.changes: same change



Other differences:
--
++ python-kde4.spec ++
--- /var/tmp/diff_new_pack.1Y2Mem/_old  2015-05-18 22:31:02.0 +0200
+++ /var/tmp/diff_new_pack.1Y2Mem/_new  2015-05-18 22:31:02.0 +0200
@@ -36,6 +36,7 @@
 Requires:   python-qt4
 Requires:   update-alternatives
 Recommends: %{name}-akonadi
+Recommends: %{name}-doc
 Recommends: %{name}-khtml
 Recommends: %{name}-knewstuff
 Recommends: %{name}-plasma
@@ -65,6 +66,14 @@
 This package contains bindings for the Akonadi PIM libraries, allowing the 
creation of
 Python applications using Akonadi. 
 
+%package doc
+Summary:Documentation for Python bindings for KDE 4
+Group:  Development/Libraries/KDE
+Requires:   %{name} = %{version}
+
+%description doc
+This package contains documentation for the KDE 4 python bindings.
+
 %package khtml
 Summary:Python bindings for KDE 4 - KHTML
 Group:  Development/Libraries/KDE
@@ -152,7 +161,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING COPYING.LESSER docs/html
+%doc COPYING COPYING.LESSER
 %{_kde4_appsdir}/pykde4
 %{_bindir}/pykdeuic4-%{py_ver}
 %{_kde4_modulesdir}/kpythonpluginfactory.so
@@ -175,6 +184,9 @@
 %defattr(-,root,root)
 %{python_sitearch}/PyKDE4/akonadi.so
 
+%files doc
+%doc docs/html
+
 %files khtml
 %defattr(-,root,root)
 %{python_sitearch}/PyKDE4/khtml.so

++ python3-kde4.spec ++
--- /var/tmp/diff_new_pack.1Y2Mem/_old  2015-05-18 22:31:02.0 +0200
+++ /var/tmp/diff_new_pack.1Y2Mem/_new  2015-05-18 22:31:02.0 +0200
@@ -36,6 +36,7 @@
 Requires:   python3-qt4
 Requires:   update-alternatives
 Recommends: %{name}-akonadi
+Recommends: %{name}-doc
 Recommends: %{name}-khtml
 Recommends: %{name}-knewstuff
 Recommends: %{name}-plasma
@@ -62,6 +63,14 @@
 This package contains bindings for the Akonadi PIM libraries, allowing the 
creation of
 Python applications using Akonadi. 
 
+%package doc
+Summary:Documentation for Python bindings for KDE 4
+Group:  Development/Libraries/KDE
+Requires:   %{name} = %{version}
+
+%description doc
+This package contains documentation for the KDE 4 python bindings.
+
 %package khtml
 Summary:Python bindings for KDE 4 - KHTML
 Group:  Development/Libraries/KDE
@@ -156,7 +165,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING COPYING.LESSER docs/html
+%doc COPYING COPYING.LESSER
 %{_kde4_appsdir}/pykde4
 %{_bindir}/pykdeuic4-%{py3_ver}
 %dir %{python3_sitearch}/PyKDE4
@@ -180,6 +189,9 @@
 %defattr(-,root,root)
 %{python3_sitearch}/PyKDE4/akonadi.so
 
+%files doc
+%doc docs/html
+
 %files khtml
 %defattr(-,root,root)
 %{python3_sitearch}/PyKDE4/khtml.so




commit cmpi-bindings for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package cmpi-bindings for openSUSE:Factory 
checked in at 2015-05-18 22:30:06

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


Package is "cmpi-bindings"

Changes:

--- /work/SRC/openSUSE:Factory/cmpi-bindings/cmpi-bindings.changes  
2015-01-29 13:18:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.cmpi-bindings.new/cmpi-bindings.changes 
2015-05-18 22:30:07.0 +0200
@@ -1,0 +2,8 @@
+Thu Jan 29 07:15:49 UTC 2015 - kkae...@suse.com
+
+- Update to 1.0.1
+  - fix comment characters in .i files for swig 3.0.4
+(dims...@opensuse.org)
+  - improve documentation coverage
+
+---

Old:

  cmpi-bindings-1.0.0.tar.bz2
  cmpi-bindings-swig-3.0.patch

New:

  cmpi-bindings-1.0.1.tar.bz2



Other differences:
--
++ cmpi-bindings.spec ++
--- /var/tmp/diff_new_pack.jxm3WI/_old  2015-05-18 22:30:08.0 +0200
+++ /var/tmp/diff_new_pack.jxm3WI/_new  2015-05-18 22:30:08.0 +0200
@@ -20,7 +20,7 @@
 Url:http://github.com/kkaempf/cmpi-bindings
 
 Name:   cmpi-bindings
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Adapter to write and run CMPI-type CIM providers
 License:BSD-3-Clause and CPL-1.0
@@ -94,14 +94,12 @@
 %endif
 
 Source: %{name}-%{version}.tar.bz2
-Patch0: cmpi-bindings-swig-3.0.patch
 
 %description
 -
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 

++ cmpi-bindings-1.0.0.tar.bz2 -> cmpi-bindings-1.0.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmpi-bindings-1.0.0/VERSION.cmake 
new/cmpi-bindings-1.0.1/VERSION.cmake
--- old/cmpi-bindings-1.0.0/VERSION.cmake   2014-06-25 12:37:58.0 
+0200
+++ new/cmpi-bindings-1.0.1/VERSION.cmake   2015-01-29 13:57:05.0 
+0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "1")
 SET(VERSION_MINOR "0")
-SET(VERSION_PATCH "0")
+SET(VERSION_PATCH "1")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmpi-bindings-1.0.0/package/cmpi-bindings.changes 
new/cmpi-bindings-1.0.1/package/cmpi-bindings.changes
--- old/cmpi-bindings-1.0.0/package/cmpi-bindings.changes   2014-06-25 
12:38:45.0 +0200
+++ new/cmpi-bindings-1.0.1/package/cmpi-bindings.changes   2015-01-29 
13:55:14.0 +0100
@@ -1,4 +1,12 @@
 ---
+Thu Jan 29 07:15:49 UTC 2015 - kkae...@suse.com
+
+- Update to 1.0.1
+  - fix comment characters in .i files for swig 3.0.4
+(dims...@opensuse.org)
+  - improve documentation coverage
+
+---
 Wed Jun 25 10:35:41 UTC 2014 - kkae...@suse.com
 
 - Update to 1.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmpi-bindings-1.0.0/package/cmpi-bindings.spec.in 
new/cmpi-bindings-1.0.1/package/cmpi-bindings.spec.in
--- old/cmpi-bindings-1.0.0/package/cmpi-bindings.spec.in   2014-03-11 
09:34:51.0 +0100
+++ new/cmpi-bindings-1.0.1/package/cmpi-bindings.spec.in   2015-01-29 
13:53:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cmpi-bindings
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -151,7 +151,6 @@
 %dir %{ruby_sitelib}/cmpi/providers
 %{ruby_sitelib}/cmpi/provider.rb
 
-
 %package -n cmpi-bindings-ruby-doc
 Summary:RDoc-style documentation for cmpi-bindings-ruby
 Group:  Documentation/HTML
@@ -164,7 +163,6 @@
 %dir %{_docdir}/cmpi-bindings-ruby-docs
 %{_docdir}/cmpi-bindings-ruby-docs
 
-
 %package -n cmpi-bindings-pywbem
 Summary:Adapter to write and run CMPI-type CIM providers in Python
 Group:  Development/Languages/Python
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmpi-bindings-1.0.0/src/target_python.c 
new/cmpi-bindings-1.0.1/src/target_python.c
--- old/cmpi-bindings-1.0.0/src/target_python.c 2013-04-11 16:06:06.0 
+0200
+++ new/cmpi-bindings-1.0.1/src/target_python.c 2015-01-29 13:53:35.0 
+0100
@@ -265,7 +265,7 @@
 prstr = PyTuple_GetItem(prv, 1); 
 }
 
-if (! PyInt_Check(prc) || (! PyString_Check(prstr) && prstr != Py_None))
+if (! PyInt_Check(prc) || (prstr != Py_None && ! PyString_Check(prstr) && 
! PyUnicode_Check(prstr)))
 {
  

commit barcode for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package barcode for openSUSE:Factory checked 
in at 2015-05-18 22:30:40

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


Package is "barcode"

Changes:

--- /work/SRC/openSUSE:Factory/barcode/barcode.changes  2014-11-26 
10:33:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.barcode.new/barcode.changes 2015-05-18 
22:30:41.0 +0200
@@ -1,0 +2,5 @@
+Sun May 17 20:09:11 UTC 2015 - meiss...@suse.com
+
+- info deletion must be in %preun
+
+---



Other differences:
--
++ barcode.spec ++
--- /var/tmp/diff_new_pack.FZhM9W/_old  2015-05-18 22:30:42.0 +0200
+++ /var/tmp/diff_new_pack.FZhM9W/_new  2015-05-18 22:30:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package barcode
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -79,7 +79,7 @@
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
-%postun
+%preun
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %files




commit acct for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package acct for openSUSE:Factory checked in 
at 2015-05-18 22:30:23

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


Package is "acct"

Changes:

--- /work/SRC/openSUSE:Factory/acct/acct.changes2015-03-03 
11:15:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.acct.new/acct.changes   2015-05-18 
22:30:25.0 +0200
@@ -1,0 +2,5 @@
+Sun May 17 09:09:27 UTC 2015 - meiss...@suse.com
+
+- install deinstall needs to be in preun
+
+---



Other differences:
--
++ acct.spec ++
--- /var/tmp/diff_new_pack.2qcgT9/_old  2015-05-18 22:30:26.0 +0200
+++ /var/tmp/diff_new_pack.2qcgT9/_new  2015-05-18 22:30:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package acct
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -98,10 +98,10 @@
 %service_add_post acct.service
 
 %preun
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/accounting.info.gz
 %service_del_preun acct.service
 
 %postun
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/accounting.info.gz
 %service_del_postun acct.service
 
 %files





commit nml for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package nml for openSUSE:Factory checked in 
at 2015-05-18 22:29:50

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


Package is "nml"

Changes:

--- /work/SRC/openSUSE:Factory/nml/nml.changes  2014-06-16 21:29:09.0 
+0200
+++ /work/SRC/openSUSE:Factory/.nml.new/nml.changes 2015-05-18 
22:29:51.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 26 13:22:43 UTC 2015 - mailaen...@opensuse.org
+
+- update to 0.4.1 (drops support for Python 2)
+  - improved performance and NewGRF support
+
+---

Old:

  nml-0.3.1.r5242-f6a3ae1163ab.tar.gz

New:

  nml-0.4.1.tar.gz



Other differences:
--
++ nml.spec ++
--- /var/tmp/diff_new_pack.rtFPVl/_old  2015-05-18 22:29:52.0 +0200
+++ /var/tmp/diff_new_pack.rtFPVl/_new  2015-05-18 22:29:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nml
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,52 +17,46 @@
 
 
 Name:   nml
-Version:0.3.1
+Version:0.4.1
 Release:0
 Summary:NewGRF Meta Language
 License:GPL-2.0+
 Group:  Development/Tools/Building
 Url:http://dev.openttdcoop.org/projects/nml
-Source: 
http://bundles.openttdcoop.org/nml/releases/%{version}/%{name}-%{version}.r5242-f6a3ae1163ab.tar.gz
-BuildRequires:  python-devel >= 2.7
-BuildRequires:  python-setuptools
+Source: 
http://bundles.openttdcoop.org/nml/releases/%{version}/%{name}-%{version}.tar.gz
+Source99:   nml-rpmlintrc
+BuildRequires:  gcc
+# https://dev.openttdcoop.org/issues/7637
+BuildRequires:  python3-devel > 3.4.1
 # We need the required packages also on building for regression tests:
-BuildRequires:  python-imaging
-BuildRequires:  python-ply
-Requires:   python-imaging
-Requires:   python-ply
+BuildRequires:  python3-Pillow
+BuildRequires:  python3-ply
+BuildRequires:  python3-setuptools
+Requires:   python3-Pillow
+Requires:   python3-ply
 Provides:   nmlc = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
-%endif
 
 %description
 A tool to compile nml files to grf or nfo files, making newgrf coding easier.
 
 %prep
-%setup -q -n %{name}-%{version}.r5242-f6a3ae1163ab
+%setup -q -n %{name}-%{version}
 
 %build
-python setup.py build
+make
 
 %install
-python setup.py install --skip-build --root=%{buildroot} --prefix=%{_prefix}
-install -D -m0644 docs/nmlc.1 %{buildroot}%{_mandir}/man1/nmlc.1
-#setuptools should not be a requirement on running, so we install the nmlc 
wrapper from source
-install -m0755 nmlc %{buildroot}%{_bindir}/nmlc
+python3 setup.py install --skip-build --root=%{buildroot} --prefix=%{_prefix}
 
 %check
-cd regression
-PYTHONPATH=%{buildroot}%{python_sitelib} make _V= 
NMLC=%{buildroot}%{_bindir}/nmlc
+make test
 
 %files
 %defattr(-,root,root,-)
 %doc docs/*.txt
 %{_bindir}/nmlc
-%{_mandir}/man1/nmlc.1*
-%{python_sitelib}/*
+%{python3_sitearch}/*
+%{python3_sitearch}/%{name}-%{version}-py%{py3_ver}.egg-info
 
 %changelog

++ nml-0.3.1.r5242-f6a3ae1163ab.tar.gz -> nml-0.4.1.tar.gz ++
 7340 lines of diff (skipped)




commit rubygem-jbuilder for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-jbuilder for 
openSUSE:Factory checked in at 2015-05-18 22:29:33

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


Package is "rubygem-jbuilder"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-jbuilder/rubygem-jbuilder.changes
2015-04-12 00:10:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-jbuilder.new/rubygem-jbuilder.changes   
2015-05-18 22:29:34.0 +0200
@@ -1,0 +2,16 @@
+Mon May 18 04:29:26 UTC 2015 - co...@suse.com
+
+- updated to version 2.2.15
+ see installed CHANGELOG.md
+
+  2.2.15
+  --
+  
+  * [Fix NoMethodError around `api_only` in 
railtie](https://github.com/rails/jbuilder/commit/705d1d6af3671d0bf0f78e9bb3136e727be1fb63)
+  
+  2.2.14
+  --
+  
+  * [Make Jbuilder compatible with Rails 
API](https://github.com/rails/jbuilder/commit/29c0014a9c954c990075d42c45c66075260e924b)
+
+---

Old:

  jbuilder-2.2.13.gem

New:

  jbuilder-2.2.15.gem



Other differences:
--
++ rubygem-jbuilder.spec ++
--- /var/tmp/diff_new_pack.k3qBwX/_old  2015-05-18 22:29:35.0 +0200
+++ /var/tmp/diff_new_pack.k3qBwX/_new  2015-05-18 22:29:35.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-jbuilder
-Version:2.2.13
+Version:2.2.15
 Release:0
 %define mod_name jbuilder
 %define mod_full_name %{mod_name}-%{version}

++ jbuilder-2.2.13.gem -> jbuilder-2.2.15.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2015-04-10 20:33:37.0 +0200
+++ new/CHANGELOG.md2015-05-18 05:26:37.0 +0200
@@ -1,5 +1,15 @@
 # Changelog
 
+2.2.15
+--
+
+* [Fix NoMethodError around `api_only` in 
railtie](https://github.com/rails/jbuilder/commit/705d1d6af3671d0bf0f78e9bb3136e727be1fb63)
+
+2.2.14
+--
+
+* [Make Jbuilder compatible with Rails 
API](https://github.com/rails/jbuilder/commit/29c0014a9c954c990075d42c45c66075260e924b)
+
 2.2.13
 --
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jbuilder.gemspec new/jbuilder.gemspec
--- old/jbuilder.gemspec2015-04-10 20:33:37.0 +0200
+++ new/jbuilder.gemspec2015-05-18 05:26:37.0 +0200
@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = 'jbuilder'
-  s.version  = '2.2.13'
+  s.version  = '2.2.15'
   s.authors  = ['David Heinemeier Hansson', 'Pavel Pravosud']
   s.email= ['da...@37signals.com', 'pa...@pravosud.com']
   s.summary  = 'Create JSON structures via a Builder-style DSL'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/generators/rails/scaffold_controller_generator.rb 
new/lib/generators/rails/scaffold_controller_generator.rb
--- old/lib/generators/rails/scaffold_controller_generator.rb   2015-04-10 
20:33:37.0 +0200
+++ new/lib/generators/rails/scaffold_controller_generator.rb   2015-05-18 
05:26:37.0 +0200
@@ -4,9 +4,9 @@
 module Rails
   module Generators
 class ScaffoldControllerGenerator
-  source_root File.expand_path('../templates', __FILE__)
+  source_paths.unshift File.expand_path('../templates', __FILE__)
 
   hook_for :jbuilder, default: true
 end
   end
-end
\ No newline at end of file
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/jbuilder/railtie.rb new/lib/jbuilder/railtie.rb
--- old/lib/jbuilder/railtie.rb 2015-04-10 20:33:37.0 +0200
+++ new/lib/jbuilder/railtie.rb 2015-05-18 05:26:37.0 +0200
@@ -8,6 +8,12 @@
 ActionView::Template.register_template_handler :jbuilder, 
JbuilderHandler
 require 'jbuilder/dependency_tracker'
   end
+
+  if app.config.respond_to?(:api_config) && app.config.api_only
+ActiveSupport.on_load :action_controller do
+  include ActionView::Rendering
+end
+  end
 end
 
 if Rails::VERSION::MAJOR >= 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/jbuilder.rb new/lib/jbuilder.rb
--- old/lib/jbuilder.rb 2015-04-10 20:33:37.0 +0200
+++ new/lib/jbuilder.rb 2015-05-18 05:26:37.0 +0200
@@ -18,8 +18,8 @@
   end
 
   # Yields a builder and automatically turns the result into a JSON string
-  def self.encode(*args)
-new(*args, &::Proc.new).target!
+  def self.encode(*args, &block)
+new(*args, &block).target!
   end
 
   BLANK = Blank.new
diff -urN 

commit perl-DBIx-Class-Schema-Loader for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-DBIx-Class-Schema-Loader for 
openSUSE:Factory checked in at 2015-05-18 22:29:17

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


Package is "perl-DBIx-Class-Schema-Loader"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DBIx-Class-Schema-Loader/perl-DBIx-Class-Schema-Loader.changes
  2015-02-16 21:14:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DBIx-Class-Schema-Loader.new/perl-DBIx-Class-Schema-Loader.changes
 2015-05-18 22:29:18.0 +0200
@@ -1,0 +2,18 @@
+Sun May 17 08:09:02 UTC 2015 - co...@suse.com
+
+- updated to 0.07043
+   see /usr/share/doc/packages/perl-DBIx-Class-Schema-Loader/Changes
+
+  0.07043  2015-05-13
+  - Fix many_to_many bridges with overlapping foreign keys
+  - Add option to allow extra columns in many_to_many link tables
+  - Document how to add perltidy markers via filter_generated_code
+  - Fix DB2 foreign-key introspection
+  - Remove dependency on List::MoreUtils and Sub::Name
+  - Ensure schema files are generated as binary files on Windows
+  - Fix overwrite_modifications not overwriting if the table hasn't 
changed
+  - Filter out disabled constraints and triggers for Oracle (GH#5)
+  
+  0.07042  2014-08-20
+
+---

Old:

  DBIx-Class-Schema-Loader-0.07042.tar.gz

New:

  DBIx-Class-Schema-Loader-0.07043.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-DBIx-Class-Schema-Loader.spec ++
--- /var/tmp/diff_new_pack.In70SY/_old  2015-05-18 22:29:18.0 +0200
+++ /var/tmp/diff_new_pack.In70SY/_new  2015-05-18 22:29:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBIx-Class-Schema-Loader
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,14 +17,15 @@
 
 
 Name:   perl-DBIx-Class-Schema-Loader
-Version:0.07042
+Version:0.07043
 Release:0
 %define cpan_name DBIx-Class-Schema-Loader
 Summary:Create a DBIx::Class::Schema based on a database
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/DBIx-Class-Schema-Loader/
-Source: 
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -46,7 +47,7 @@
 BuildRequires:  perl(Lingua::EN::Inflect::Number) >= 1.1
 BuildRequires:  perl(Lingua::EN::Inflect::Phrase) >= 0.15
 BuildRequires:  perl(Lingua::EN::Tagger) >= 0.23
-BuildRequires:  perl(List::MoreUtils) >= 0.32
+BuildRequires:  perl(List::Util) >= 1.33
 BuildRequires:  perl(MRO::Compat) >= 0.09
 BuildRequires:  perl(Moose) >= 1.12
 BuildRequires:  perl(MooseX::MarkAsMethods) >= 0.13
@@ -55,10 +56,10 @@
 BuildRequires:  perl(Scope::Guard) >= 0.20
 BuildRequires:  perl(String::CamelCase) >= 0.02
 BuildRequires:  perl(String::ToIdentifier::EN) >= 0.05
-BuildRequires:  perl(Sub::Name)
+BuildRequires:  perl(Sub::Util) >= 1.40
 BuildRequires:  perl(Test::Deep) >= 0.107
 BuildRequires:  perl(Test::Differences) >= 0.60
-BuildRequires:  perl(Test::Exception) >= 0.31
+BuildRequires:  perl(Test::Exception) >= 0.31
 BuildRequires:  perl(Test::More) >= 0.94
 BuildRequires:  perl(Test::Pod) >= 1.14
 BuildRequires:  perl(Test::Warn) >= 0.21
@@ -77,12 +78,12 @@
 Requires:   perl(Lingua::EN::Inflect::Number) >= 1.1
 Requires:   perl(Lingua::EN::Inflect::Phrase) >= 0.15
 Requires:   perl(Lingua::EN::Tagger) >= 0.23
-Requires:   perl(List::MoreUtils) >= 0.32
+Requires:   perl(List::Util) >= 1.33
 Requires:   perl(MRO::Compat) >= 0.09
 Requires:   perl(Scope::Guard) >= 0.20
 Requires:   perl(String::CamelCase) >= 0.02
 Requires:   perl(String::ToIdentifier::EN) >= 0.05
-Requires:   perl(Sub::Name)
+Requires:   perl(Sub::Util) >= 1.40
 Requires:   perl(Try::Tiny)
 Requires:   perl(namespace::clean) >= 0.23
 %{perl_requires}

++ DBIx-Class-Schema-Loader-0.07042.tar.gz -> 
DBIx-Class-Schema-Loader-0.07043.tar.gz ++
 1934 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source

commit ulogd for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package ulogd for openSUSE:Factory checked 
in at 2015-05-18 22:28:42

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


Package is "ulogd"

Changes:

--- /work/SRC/openSUSE:Factory/ulogd/ulogd.changes  2014-12-05 
21:03:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.ulogd.new/ulogd.changes 2015-05-18 
22:28:46.0 +0200
@@ -1,0 +2,8 @@
+Sun May 10 21:19:03 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 2.0.5
+* JSON output on bigendian arches was fixed
+* Support absence of ipt_ULOG.h
+- Remove 0001-include-keep-a-copy-of-linux-netfilter_ipv4-ipt_ULOG.patch
+
+---

Old:

  0001-include-keep-a-copy-of-linux-netfilter_ipv4-ipt_ULOG.patch
  ulogd-2.0.4.tar.bz2
  ulogd-2.0.4.tar.bz2.sig

New:

  ulogd-2.0.5.tar.bz2
  ulogd-2.0.5.tar.bz2.sig



Other differences:
--
++ ulogd.spec ++
--- /var/tmp/diff_new_pack.H2h6PH/_old  2015-05-18 22:28:46.0 +0200
+++ /var/tmp/diff_new_pack.H2h6PH/_new  2015-05-18 22:28:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ulogd
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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:   ulogd
-Version:2.0.4
+Version:2.0.5
 Release:0
 Summary:Userspace logging for Netfilter
 License:GPL-2.0
@@ -30,7 +30,6 @@
 Source2:
http://netfilter.org/projects/ulogd/files/%name-%version.tar.bz2.sig
 Source3:etc-init.d-ulogd
 Source4:ulogd.service
-Patch1: 0001-include-keep-a-copy-of-linux-netfilter_ipv4-ipt_ULOG.patch
 Patch4: ulogd-conf.diff
 
 BuildRequires:  autoconf >= 2.50
@@ -91,7 +90,7 @@
 
 %prep
 %setup -q
-%patch -P 1 -P 4 -p1
+%patch -P 4 -p1
 
 %build
 autoreconf -fi

++ ulogd-2.0.4.tar.bz2 -> ulogd-2.0.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ulogd-2.0.4/aclocal.m4 new/ulogd-2.0.5/aclocal.m4
--- old/ulogd-2.0.4/aclocal.m4  2014-03-23 16:39:30.0 +0100
+++ new/ulogd-2.0.5/aclocal.m4  2015-05-01 20:07:25.0 +0200
@@ -180,6 +180,61 @@
 fi[]dnl
 ])# PKG_CHECK_MODULES
 
+
+# PKG_INSTALLDIR(DIRECTORY)
+# -
+# Substitutes the variable pkgconfigdir as the location where a module
+# should install pkg-config .pc files. By default the directory is
+# $libdir/pkgconfig, but the default can be changed by passing
+# DIRECTORY. The user can override through the --with-pkgconfigdir
+# parameter.
+AC_DEFUN([PKG_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+[pkg-config installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([pkgconfigdir],
+[AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
+[with_pkgconfigdir=]pkg_default)
+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+]) dnl PKG_INSTALLDIR
+
+
+# PKG_NOARCH_INSTALLDIR(DIRECTORY)
+# -
+# Substitutes the variable noarch_pkgconfigdir as the location where a
+# module should install arch-independent pkg-config .pc files. By
+# default the directory is $datadir/pkgconfig, but the default can be
+# changed by passing DIRECTORY. The user can override through the
+# --with-noarch-pkgconfigdir parameter.
+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+[pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([noarch-pkgconfigdir],
+[AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
+[with_noarch_pkgconfigdir=]pkg_default)
+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+]) dnl PKG_NOARCH_INSTALLDIR
+
+
+# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
+# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+# ---
+# Retrieves the value of the pkg-config variable for the given module.
+AC_DEFUN([PKG_CHECK_VAR],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
+
+_PKG_CONFIG([$1], [variable="][$3]["], [$2])
+AS_VAR_COPY([$1], [pkg_cv_][$1])
+
+AS_VAR_IF([$1], [""], [$5], [$4])dnl
+])# PKG_CHECK_VAR
+
 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
 #
 #

commit dice for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package dice for openSUSE:Factory checked in 
at 2015-05-18 22:28:24

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


Package is "dice"

Changes:

--- /work/SRC/openSUSE:Factory/dice/dice.changes2015-04-12 
00:10:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.dice.new/dice.changes   2015-05-18 
22:28:26.0 +0200
@@ -1,0 +2,5 @@
+Sun May 17 21:10:22 CEST 2015 - m...@suse.de
+
+- Switched to gem2rpm way of creating the package
+  
+---

New:

  gem2rpm.yml



Other differences:
--
++ dice.spec ++
--- /var/tmp/diff_new_pack.IKJo8s/_old  2015-05-18 22:28:29.0 +0200
+++ /var/tmp/diff_new_pack.IKJo8s/_new  2015-05-18 22:28:29.0 +0200
@@ -21,45 +21,32 @@
 Release:0
 %define mod_name dice
 %define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 1
-
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  fdupes
-BuildRequires:  gcc-c++
-BuildRequires:  ruby-devel
-BuildRequires:  ruby-macros >= 1
-%if %suse_version == 1315
 %define rb_build_versions %{rb_default_ruby}
-BuildRequires:  %{rubydevel}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{rubygem abstract_method >= 1.2.1}
 BuildRequires:  %{rubygem bundler}
 BuildRequires:  %{rubygem cheetah >= 0.4.0}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  %{rubygem gli <= 2.12}
 BuildRequires:  %{rubygem gli >= 2.11.0}
 BuildRequires:  %{rubygem inifile >= 2.0.2}
 BuildRequires:  %{rubygem json >= 1.8.0}
 BuildRequires:  %{rubygem rice}
-%else
-BuildRequires:  rubygem(abstract_method) >= 1.2.1
-BuildRequires:  rubygem(bundler)
-BuildRequires:  rubygem(cheetah) >= 0.4.0
-BuildRequires:  rubygem(gem2rpm)
-BuildRequires:  rubygem(gli) <= 2.12
-BuildRequires:  rubygem(gli) >= 2.11.0
-BuildRequires:  rubygem(inifile) >= 2.0.2
-BuildRequires:  rubygem(json) >= 1.8.0
-BuildRequires:  rubygem(rice)
-%endif
+BuildRequires:  %{ruby}
+BuildRequires:  fdupes
+BuildRequires:  gcc-c++
+BuildRequires:  ruby-devel
+BuildRequires:  ruby-macros >= 5
+BuildRequires:  update-alternatives
+
 # Disable autogenerating "Requires:" headers for bundled gems.
 %define __requires_exclude ^rubygem
 Requires:   ruby >= 2.0
 Requires:   ruby-solv
-Url:http://suse.com
+Url:http://www.suse.com
 Source0:%{mod_full_name}.gem
 Source1:%{mod_name}-rpmlintrc
-Summary:light weight image build system
+Source2:gem2rpm.yml
+Summary:Light Weight Image Build System
 License:GPL-3.0
 Group:  Development/Languages/Ruby
 
@@ -72,35 +59,27 @@
 the software packages has changed. With Dice there is a tool which
 automatically builds all appliances stored in a directory
 
-%package doc
-Summary:RDoc and RI documentation for Machinery
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-RDoc and RI documentation for dice is a light weight image build system for 
kiwi
-
 %prep
 
 %build
 
 %install
+# Install the Ruby source
+%gem_install \
+  --symlink-binaries \
+  --doc-files="COPYING recipes key" \
+  -f
 
-# Install the gem itself
-
-%gem_install -f
-
+# Change to ruby gem dir
 pushd %{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}
 
 # Build CPP extensions
-
 ( cd lib/semaphore && ruby ./extconf.rb && make && rm -f semaphore.o )
 
 # Bundle dependencies
-
 cat > Gemfile <= 0.4.0"
-gem "gli", "~> 2.11.0"
+gem "gli", ">= 2.11.0"
 gem "abstract_method", ">= 1.2.1"
 %if %suse_version <= 1310
 gem "json", ">= 1.8.0"
@@ -115,8 +94,6 @@
 
 rm -rf vendor .bundle Gemfile Gemfile.lock
 
-popd
-
 # Adapt the binary
 
 # Here we do a surgery on the binary to actually load the bundled gems. This is
@@ -125,34 +102,21 @@
 sed -i '/gem/i \
 
Gem.path.unshift("%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/bundle/ruby/%{rb_ver}")
 
-' %{buildroot}%{_bindir}/%{mod_name}
+' bin/%{mod_name}
 
-# Additional files
+# Delete devel source
+( cd lib/semaphore && rm -f semaphore.cpp Makefile extconf.rb )
 
+# Move bash completion
 mkdir -p %{buildroot}/etc/bash_completion.d
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/COPYING
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/recipes
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/key
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/completion/dice.sh \
-   %{buildroot}/etc/bash_completion.d/dice.sh
+mv completion/dice.sh %{buildroot}/etc/bash_completion.d
 
-# Convert duplicate files to symlinks
+popd
 
+# Convert duplicate files to

commit rubygem-gli for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-gli for openSUSE:Factory 
checked in at 2015-05-18 22:28:08

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


Package is "rubygem-gli"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-gli/rubygem-gli.changes  2015-01-22 
01:06:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-gli.new/rubygem-gli.changes 
2015-05-18 22:28:09.0 +0200
@@ -1,0 +2,26 @@
+Wed May 13 04:29:16 UTC 2015 - co...@suse.com
+
+- updated to version 2.13.1
+  no changelog found
+
+---
+Wed Mar  4 05:30:52 UTC 2015 - co...@suse.com
+
+- updated to version 2.13.0
+
+---
+Mon Feb 23 05:29:04 UTC 2015 - co...@suse.com
+
+- updated to version 2.12.3
+
+---
+Tue Feb 10 17:49:03 UTC 2015 - co...@suse.com
+
+- updated to version 2.12.2
+
+---
+Mon Oct 13 12:11:58 UTC 2014 - co...@suse.com
+
+- adapt to new rubygem packaging
+
+---

Old:

  gli-2.11.0.gem

New:

  gem2rpm.yml
  gli-2.13.1.gem



Other differences:
--
++ rubygem-gli.spec ++
--- /var/tmp/diff_new_pack.rsHqVv/_old  2015-05-18 22:28:10.0 +0200
+++ /var/tmp/diff_new_pack.rsHqVv/_new  2015-05-18 22:28:10.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-gli
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,24 +16,27 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-gli
-Version:2.11.0
+Version:2.13.1
 Release:0
 %define mod_name gli
 %define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 21100
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} <= 1310
-BuildRequires:  ruby-macros >= 1
-%else
-BuildRequires:  ruby-macros >= 3
-%endif
-BuildRequires:  rubygem(rdoc) > 3.10
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc > 3.10}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:http://davetron5000.github.com/gli
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Build command-suite CLI apps that are awesome
 License:Apache-2.0
 Group:  Development/Languages/Ruby
@@ -42,89 +45,18 @@
 %description
 Build command-suite CLI apps that are awesome.  Bootstrap your app, add
 commands, options and documentation while maintaining a well-tested idiomatic
-command-line app
-
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
+command-line app.
 
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%gem_install -f
-mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-mv %{buildroot}%{_bindir}/gli{,%{mod_branch}}
-touch %{buildroot}%{_sysconfdir}/alternatives/gli
-ln -s %{_sysconfdir}/alternatives/gli %{buildroot}%{_bindir}/gli
-
-mkdir -p %{buildroot}%{_docdir}/%{name}
-%if 0%{?suse_version} <= 1310
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
-%else
-ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
-ln -s %{gem_base}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
-%endif
-
-%post
-/usr/sbin/update-alternatives --install \
-%{_bindir}/gli gli %{_bindir}/gli%{mod_b

commit xfdesktop for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package xfdesktop for openSUSE:Factory 
checked in at 2015-05-18 22:27:19

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


Package is "xfdesktop"

Changes:

--- /work/SRC/openSUSE:Factory/xfdesktop/xfdesktop.changes  2015-03-23 
12:19:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.xfdesktop.new/xfdesktop.changes 2015-05-18 
22:27:20.0 +0200
@@ -1,0 +2,20 @@
+Sun May 17 12:11:11 UTC 2015 - g...@opensuse.org
+
+- update to version 4.12.2
+  - optimized sorting wallpapers (bxo#11817)
+  - don't sort the image list when randomly cycling (bxo#11817)
+  - don't load an image list unless we're cycling (bxo#11817)
+  - allow dragging desktop launchers to the panel (bxo#2794)
+  - load emblem-unreadable if necessary
+  - bail out when a negative value was calculated for row/col.
+(bxo#11782)
+  - hide empty comment line in icon tooltip
+  - fix build error (bxo#11778)
+  - ignore shadow blur radius when calculating icon text box
+  - prefer "_NETSCAPE_URL" over "text/uri-list" (bxo#9632)
+  - drop explicit LibSM check (bxo#11744)
+  - preserve order when moving multiple icons (bxo#11195)
+  - drop warning when D-Bus timeout error occurs (bxo#11283)
+  - add default wallpaper folder to file chooser (bxo#11715)
+
+---

Old:

  xfdesktop-4.12.1.tar.bz2

New:

  xfdesktop-4.12.2.tar.bz2



Other differences:
--
++ xfdesktop.spec ++
--- /var/tmp/diff_new_pack.ACNaz1/_old  2015-05-18 22:27:21.0 +0200
+++ /var/tmp/diff_new_pack.ACNaz1/_new  2015-05-18 22:27:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xfdesktop
-Version:4.12.1
+Version:4.12.2
 Release:0
 Summary:Desktop Manager for the Xfce Desktop Environment
 License:GPL-2.0+

++ xfdesktop-4.12.1.tar.bz2 -> xfdesktop-4.12.2.tar.bz2 ++
 3625 lines of diff (skipped)




commit rubygem-rice for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rice for openSUSE:Factory 
checked in at 2015-05-18 22:27:52

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


Package is "rubygem-rice"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rice/rubygem-rice.changes
2015-03-18 13:03:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-rice.new/rubygem-rice.changes   
2015-05-18 22:27:53.0 +0200
@@ -1,0 +2,7 @@
+Sun May 17 17:56:13 UTC 2015 - m...@suse.com
+
+- Update to version 1.7.0 
+- Fixed gcc type cast bugs
+- Fixed gem bundle for ruby 2.2
+
+---

Old:

  rice-1.6.3.gem

New:

  rice-1.7.0.gem



Other differences:
--
++ rubygem-rice.spec ++
--- /var/tmp/diff_new_pack.SLRU1w/_old  2015-05-18 22:27:53.0 +0200
+++ /var/tmp/diff_new_pack.SLRU1w/_new  2015-05-18 22:27:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-rice
-Version:1.6.3
+Version:1.7.0
 Release:0
 %define mod_name rice
 %define mod_full_name %{mod_name}-%{version}
@@ -98,7 +98,7 @@
 if test -e %{buildroot}/meta.files;then
   mv %{buildroot}/meta.files meta.files
   cat %{buildroot}/meta.dirs | sort | uniq >> meta.files
-  echo "%dir 
%{_libdir}/ruby/gems/%{rb_ver}/doc/extensions/%{myarch}-linux/%{rb_ver}" >> 
meta.files
+  test -d 
"%{buildroot}/%{_libdir}/ruby/gems/%{rb_ver}/doc/extensions/%{myarch}-linux/%{rb_ver}"
 && echo "%dir 
%{_libdir}/ruby/gems/%{rb_ver}/doc/extensions/%{myarch}-linux/%{rb_ver}" >> 
meta.files
   rm -f %{buildroot}/meta.dirs
 fi
 

++ rice-1.6.3.gem -> rice-1.7.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2014-12-18 16:00:26.0 +0100
+++ new/Rakefile2015-01-06 15:47:35.0 +0100
@@ -1,33 +1,23 @@
 $: << File.expand_path(File.dirname(__FILE__))
 require 'rubygems'
 require 'rubygems/package_task'
-require 'rake/contrib/sshpublisher'
 require 'yaml'
 require 'ruby/lib/version'
 
-PROJECT_NAME = "rice"
-PROJECT_WEB_PATH = "/var/www/gforge-projects/rice"
-
 task :default => :test
 
-desc "Run unit tests" 
+desc "Run unit tests"
 task :test do
   cd "test" do
 ruby "test_rice.rb"
   end
 end
 
-desc "Build the documentation" 
+desc "Build the documentation"
 task :doc do
   sh "make doc"
 end
 
-desc "Upload documentation to the website. Requires rubyforge gem" 
-task :upload_web => [:doc] do
-  host = "jameskil...@rubyforge.org"
-  Rake::SshDirPublisher.new(host, PROJECT_WEB_PATH, "doc/html").upload
-end
-
 # Gemspec kept externally
 eval(File.read("rice.gemspec"))
 Gem::PackageTask.new($spec) do |pkg|
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2014-12-18 16:00:26.0 +0100
+++ new/metadata2015-01-06 15:47:35.0 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: rice
 version: !ruby/object:Gem::Version
-  version: 1.6.3
+  version: 1.7.0
 platform: ruby
 authors:
 - Paul Brannan
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2014-12-18 00:00:00.0 Z
+date: 2015-01-06 00:00:00.0 Z
 dependencies: []
 description: |
   Rice is a C++ interface to Ruby's C API.  It provides a type-safe and
@@ -227,7 +227,7 @@
 - test/test_rice.rb
 - test/unittest.cpp
 - test/unittest.hpp
-homepage: http://rice.rubyforge.org/
+homepage: https://github.com/jasonroelofs/rice
 licenses:
 - MIT
 metadata: {}
@@ -246,7 +246,7 @@
 - !ruby/object:Gem::Version
   version: '0'
 requirements: []
-rubyforge_project: rice
+rubyforge_project: 
 rubygems_version: 2.4.5
 signing_key: 
 specification_version: 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rice/Array.hpp new/rice/Array.hpp
--- old/rice/Array.hpp  2014-12-18 16:00:26.0 +0100
+++ new/rice/Array.hpp  2015-01-06 15:47:35.0 +0100
@@ -20,7 +20,7 @@
  *  \endcode
  */
 class Array
-  : public Builtin_Object
+  : public Builtin_Object
 {
 public:
   //! Construct a new array
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rice/Array.ipp new/rice/Array.ipp
--- old/rice/Array.ipp  2014-12-18 16:00:26.0 +0100
+++ new/rice/Array.ipp  2015-01-06 15:47:35.0 +0100
@@ -5,26 +5,26 @@
 
 inline Rice::Array::
 Array()
-  : Builtin_Object(protect(rb_ary_new))
+  : Builtin_Object(protect(rb_ary_new))
 {
 }
 
 inline Rice::Array::
 Array(Object v)
-  : Bu

commit bmake for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package bmake for openSUSE:Factory checked 
in at 2015-05-18 22:27:36

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


Package is "bmake"

Changes:

--- /work/SRC/openSUSE:Factory/bmake/bmake.changes  2015-03-09 
10:10:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.bmake.new/bmake.changes 2015-05-18 
22:27:38.0 +0200
@@ -1,0 +2,22 @@
+Sun May 17 08:18:52 UTC 2015 - dap.darkn...@gmail.com
+
+- Update to 20150505:
+  * Merge with NetBSD make, pick up
++ cond.c: be strict about lhs of comparison when evaluating .if
+  but less so when called from variable expansion.
++ unit-tests/cond2.mk: test various error conditions
++ job.c: use memmove() rather than memcpy()
++ document different handling of '-' in jobs mode vs compat
++ fix jobs mode so that '-' only applies to whole job
+  when shell lacks hasErrCtl
++ meta.c: use separate vars to track lcwd and latestdir (read)
+  per process
++ meta.c: close meta file in child
+  * Add Bitrig patch from jo...@netbsd.org
+  * Makefile: use BINDIR.bmake if set. Same for MANDIR and
+SHAREDIR. Handy for testing release candidates in various
+environments.
+  * move initialization of savederr to block where it is used
+to avoid spurious warning from gcc5
+
+---

Old:

  bmake-2014.tar.gz

New:

  bmake-20150505.tar.gz



Other differences:
--
++ bmake.spec ++
--- /var/tmp/diff_new_pack.Z3dUK5/_old  2015-05-18 22:27:38.0 +0200
+++ /var/tmp/diff_new_pack.Z3dUK5/_new  2015-05-18 22:27:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   bmake
-Version:2014
+Version:20150505
 Release:0
 Summary:The NetBSD make(1) tool
 License:BSD-2-Clause and BSD-3-Clause and BSD-4-Clause

++ bmake-2014.tar.gz -> bmake-20150505.tar.gz ++
 2124 lines of diff (skipped)




commit thunar for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package thunar for openSUSE:Factory checked 
in at 2015-05-18 22:27:03

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


Package is "thunar"

Changes:

--- /work/SRC/openSUSE:Factory/thunar/thunar.changes2015-05-06 
07:49:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.thunar.new/thunar.changes   2015-05-18 
22:27:04.0 +0200
@@ -1,0 +2,41 @@
+Sun May 17 12:06:21 UTC 2015 - g...@opensuse.org
+
+- update to version 1.6.9
+  - fix ThunarBulkRename script not supporting spaces (bxo#9713)
+  - use "Name" column for drag & drop instead of first column
+(bxo#11905)
+  - update the path entry icon when current file changes
+  - revert changes for restoring the trash in the session client
+(bxo#9513)
+  - fix loading the trash bin status at startup (bxo#9513)
+  - turn off building gtk-docs API reference
+  - fix cppcheck warning about uninitialized variable
+  - disable "Set as default application" by default in the chooser
+dialog
+  - remember chosen application in the chooser dialog as last used
+  - remember the last used application when opening files
+  - fix reload when file is replaced with directory of the same
+name
+  - do listen for G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED
+(bxo#11896)
+  - fix comments for toggle-menubar
+  - allow opening by middle-click in tree view only for mounted
+devices and resources
+  - keep selection in original tree view when middle-clicking for
+new tab/window
+  - keep path selected after unmounting a device via KEY_Left
+  - unmount device if collapsing a collapsed device tree with
+KEY_Left in the tree view
+  - fix wrong network icon shown in tree view
+  - fix tree view opening mounted devices in new tab
+  - use only open selection instead of open action with KEY_Up and
+KEY_Down
+  - fix assertion when hitting KEY_Left on a top-level item in the
+tree view
+  - revert workaround for desktop toplevel item in the tree view
+  - always select the proper toplevel item in the thunar tree view
+  - unescape URI in history error message
+  - remove unmounted files from history when going back or forward
+  - translation updates
+
+---

Old:

  Thunar-1.6.8.tar.bz2

New:

  Thunar-1.6.9.tar.bz2



Other differences:
--
++ thunar.spec ++
--- /var/tmp/diff_new_pack.5A6Slb/_old  2015-05-18 22:27:05.0 +0200
+++ /var/tmp/diff_new_pack.5A6Slb/_new  2015-05-18 22:27:05.0 +0200
@@ -18,7 +18,7 @@
 
 %define libname libthunarx-2-0
 Name:   thunar
-Version:1.6.8
+Version:1.6.9
 Release:0
 Summary:Fast and Easy to Use File Manager for the Xfce Desktop 
Environment
 License:GPL-2.0+
@@ -180,7 +180,8 @@
 
 %files devel
 %defattr(-,root,root)
-%doc %{_datadir}/gtk-doc/html/thunarx
+# temporarily disabled
+#%doc %{_datadir}/gtk-doc/html/thunarx
 %dir %{_includedir}/thunarx-2
 %dir %{_includedir}/thunarx-2/thunarx
 %{_includedir}/thunarx-2/thunarx/*.h

++ Thunar-1.6.8.tar.bz2 -> Thunar-1.6.9.tar.bz2 ++
 16028 lines of diff (skipped)




commit python-stomper for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-stomper for openSUSE:Factory 
checked in at 2015-05-18 22:26:44

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


Package is "python-stomper"

Changes:

--- /work/SRC/openSUSE:Factory/python-stomper/python-stomper.changes
2013-11-18 10:53:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-stomper.new/python-stomper.changes   
2015-05-18 22:26:45.0 +0200
@@ -1,0 +2,24 @@
+Wed May 13 16:50:23 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.3.0:
+  * This release makes STOMP v1.1 the default protocol. To stick
+with STOMP v1.0 you can continue to use stomper v0.2.9 or
+change the import in your code to:
+import stomper.stomp_10 as stomper
+  * Note: Any fixes to STOMP v1.0 will only be applied to
+version >= 0.3.
+- additional changes from version 0.2.9:
+  * Thanks to Ralph Bean for contributing the new protocol 1.1
+support:
+https://github.com/oisinmulvihill/stomper/issues/6
+https://github.com/oisinmulvihill/stomper/pull/7
+- additional changes from version 0.2.8:
+  * Thanks to Daniele Varrazzo for contributing the fixes:
++ https://github.com/oisinmulvihill/stomper/pull/4
+  Fixed newline prepended to messages without transaction id
++ https://github.com/oisinmulvihill/stomper/pull/5
+  Fixed reST syntax. Extension changed to allow github to
+  render it properly. Also changed the source url in the readme
+- rename README.md to README.rst: changed upstream
+
+---

Old:

  stomper-0.2.7.tar.gz

New:

  stomper-0.3.0.tar.gz



Other differences:
--
++ python-stomper.spec ++
--- /var/tmp/diff_new_pack.AyYpTF/_old  2015-05-18 22:26:46.0 +0200
+++ /var/tmp/diff_new_pack.AyYpTF/_new  2015-05-18 22:26:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-stomper
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-stomper
-Version:0.2.7
+Version:0.3.0
 Release:0
 Summary:This is a transport neutral client implementation of the STOMP 
protocol
 License:Apache-2.0
@@ -56,7 +56,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README.md lib/stomper/examples
+%doc README.rst lib/stomper/examples
 %{python_sitelib}/*
 
 %changelog

++ stomper-0.2.7.tar.gz -> stomper-0.3.0.tar.gz ++
 3520 lines of diff (skipped)




commit xfburn for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package xfburn for openSUSE:Factory checked 
in at 2015-05-18 22:26:11

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


Package is "xfburn"

Changes:

--- /work/SRC/openSUSE:Factory/xfburn/xfburn.changes2014-04-11 
13:42:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.xfburn.new/xfburn.changes   2015-05-18 
22:26:12.0 +0200
@@ -1,0 +2,8 @@
+Sun May 17 12:04:30 UTC 2015 - g...@opensuse.org
+
+- update to version 0.5.4
+  - some autoconf modernization
+  - use gstreamer 1.0 api
+  - restore broken icons
+
+---

Old:

  xfburn-0.5.2.tar.bz2

New:

  xfburn-0.5.4.tar.bz2



Other differences:
--
++ xfburn.spec ++
--- /var/tmp/diff_new_pack.mUrScN/_old  2015-05-18 22:26:12.0 +0200
+++ /var/tmp/diff_new_pack.mUrScN/_new  2015-05-18 22:26:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xfburn
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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:   xfburn
-Version:0.5.2
+Version:0.5.4
 Release:0
 Summary:Simple CD/DVD Burning Application
 License:GPL-2.0+
@@ -29,8 +29,8 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(exo-1)
 BuildRequires:  pkgconfig(gio-2.0)
-BuildRequires:  pkgconfig(gstreamer-0.10)
-BuildRequires:  pkgconfig(gstreamer-pbutils-0.10)
+BuildRequires:  pkgconfig(gstreamer-1.0)
+BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
 BuildRequires:  pkgconfig(gthread-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(gudev-1.0)

++ xfburn-0.5.2.tar.bz2 -> xfburn-0.5.4.tar.bz2 ++
 33236 lines of diff (skipped)




commit python-slumber for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-slumber for openSUSE:Factory 
checked in at 2015-05-18 22:25:38

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


Package is "python-slumber"

Changes:

--- /work/SRC/openSUSE:Factory/python-slumber/python-slumber.changes
2013-09-16 16:35:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-slumber.new/python-slumber.changes   
2015-05-18 22:25:39.0 +0200
@@ -1,0 +2,14 @@
+Wed May 13 10:51:10 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.7.0:
+  * no changelog available
+- additional changes from version 0.6.2:
+  * Further Python 3 compatibility fixes, many thanks to
+Alexander Shchepetilnikov (irqed)
+- additional changes from version 0.6.1:
+  * Remove simplejson dependency.
+  * Support range now Python 2.6 - Python 3.4
+- suggests python-PyYAML and python-simplejson
+  instead of requiring them
+
+---

Old:

  slumber-0.6.0.tar.gz

New:

  slumber-0.7.0.tar.gz



Other differences:
--
++ python-slumber.spec ++
--- /var/tmp/diff_new_pack.a6cyGr/_old  2015-05-18 22:25:40.0 +0200
+++ /var/tmp/diff_new_pack.a6cyGr/_new  2015-05-18 22:25:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-slumber
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-slumber
-Version:0.6.0
+Version:0.7.0
 Release:0
 Url:http://slumber.in/
 Summary:A library that makes consuming a REST API easier and more 
convenient
@@ -29,9 +29,9 @@
 BuildRequires:  python-setuptools
 #BuildRequires:  python-mock
 #BuildRequires:  python-requests
-Requires:   python-PyYAML
 Requires:   python-requests
-Requires:   python-simplejson
+Suggests:   python-PyYAML
+Suggests:   python-simplejson
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %else

++ slumber-0.6.0.tar.gz -> slumber-0.7.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/slumber-0.6.0/CHANGELOG.rst 
new/slumber-0.7.0/CHANGELOG.rst
--- old/slumber-0.6.0/CHANGELOG.rst 2013-04-01 19:27:51.0 +0200
+++ new/slumber-0.7.0/CHANGELOG.rst 2015-02-27 10:53:09.0 +0100
@@ -3,6 +3,23 @@
 Changelog
 =
 
+
+development version
+---
+
+0.6.2
+-
+
+* Further Python 3 compatibility fixes, many thanks to Alexander 
Shchepetilnikov (irqed)
+
+0.6.1
+-
+
+* Remove ``simplejson`` dependency.
+
+* Support range now Python 2.6 - Python 3.4
+
+
 0.6.0
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/slumber-0.6.0/PKG-INFO new/slumber-0.7.0/PKG-INFO
--- old/slumber-0.6.0/PKG-INFO  2013-04-01 20:25:05.0 +0200
+++ new/slumber-0.7.0/PKG-INFO  2015-04-17 11:29:45.0 +0200
@@ -1,25 +1,25 @@
 Metadata-Version: 1.0
 Name: slumber
-Version: 0.6.0
+Version: 0.7.0
 Summary: A library that makes consuming a REST API easier and more convenient
-Home-page: http://slumber.in/
-Author: Donald Stufft
-Author-email: donald.stu...@gmail.com
+Home-page: http://github.com/samgiles/slumber
+Author: Samuel Giles
+Author-email: sam.e.gi...@gmail.com
 License: UNKNOWN
-Description: Slumber
-===
+Description: Slumber |build-status| |coverage-status| |docs|
+===
 
-Slumber is a python library that provides a convenient yet powerful 
object
-orientated interface to ReSTful APIs. It acts as a wrapper around the
-excellent requests_ library and abstracts away the handling of urls, 
serialization,
-and processing requests.
+Slumber is a Python library that provides a convenient yet powerful
+object-oriented interface to ReSTful APIs. It acts as a wrapper around 
the
+excellent requests_ library and abstracts away the handling of URLs, 
serialization,
+and request processing.
 
 .. _requests: http://python-requests.org/
 
 Getting Help
 
 
-I have an IRC channel (`#slumber on irc.freenode.net`_) to get help, 
bounce idea
+Visit IRC channel (`#slumber on irc.freenod

commit python-singledispatch for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-singledispatch for 
openSUSE:Factory checked in at 2015-05-18 22:25:22

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


Package is "python-singledispatch"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-singledispatch/python-singledispatch.changes  
2013-12-16 18:08:05.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-singledispatch.new/python-singledispatch.changes
 2015-05-18 22:25:23.0 +0200
@@ -1,0 +2,8 @@
+Wed May 13 09:56:19 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 3.4.0.3:
+  * Should now install flawlessly on PyPy as well. Thanks to Ryan
+Petrello for finding and fixing the setup.py issue.
+- remove unwanted shebang in python files
+
+---

Old:

  singledispatch-3.4.0.2.tar.gz

New:

  singledispatch-3.4.0.3.tar.gz



Other differences:
--
++ python-singledispatch.spec ++
--- /var/tmp/diff_new_pack.EQKsgV/_old  2015-05-18 22:25:23.0 +0200
+++ /var/tmp/diff_new_pack.EQKsgV/_new  2015-05-18 22:25:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-singledispatch
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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-singledispatch
-Version:3.4.0.2
+Version:3.4.0.3
 Release:0
 Summary:Provides functools.singledispatch for Python 2.x
 License:MIT
@@ -46,6 +46,8 @@
 
 %prep
 %setup -q -n singledispatch-%{version}
+# remove unwanted shebang
+sed -i '1 { /^#!/ d }' singledispatch_helpers.py singledispatch.py
 
 %build
 python setup.py build

++ singledispatch-3.4.0.2.tar.gz -> singledispatch-3.4.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/PKG-INFO 
new/singledispatch-3.4.0.3/PKG-INFO
--- old/singledispatch-3.4.0.2/PKG-INFO 2013-07-02 11:04:44.0 +0200
+++ new/singledispatch-3.4.0.3/PKG-INFO 2014-03-18 21:42:06.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: singledispatch
-Version: 3.4.0.2
+Version: 3.4.0.3
 Summary: This library brings functools.singledispatch from Python 3.4 to 
Python 2.6-3.3.
 Home-page: 
http://docs.python.org/3/library/functools.html#functools.singledispatch
 Author: Łukasz Langa
@@ -153,6 +153,12 @@
 Change Log
 --
 
+3.4.0.3
+~~~
+
+Should now install flawlessly on PyPy as well. Thanks to Ryan Petrello
+for finding and fixing the ``setup.py`` issue.
+
 3.4.0.2
 ~~~
 
@@ -231,5 +237,6 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/README.rst 
new/singledispatch-3.4.0.3/README.rst
--- old/singledispatch-3.4.0.2/README.rst   2013-07-02 10:48:47.0 
+0200
+++ new/singledispatch-3.4.0.3/README.rst   2014-03-18 21:23:56.0 
+0100
@@ -145,6 +145,12 @@
 Change Log
 --
 
+3.4.0.3
+~~~
+
+Should now install flawlessly on PyPy as well. Thanks to Ryan Petrello
+for finding and fixing the ``setup.py`` issue.
+
 3.4.0.2
 ~~~
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/setup.py 
new/singledispatch-3.4.0.3/setup.py
--- old/singledispatch-3.4.0.2/setup.py 2013-07-02 10:31:10.0 +0200
+++ new/singledispatch-3.4.0.3/setup.py 2014-03-18 21:21:53.0 +0100
@@ -4,7 +4,7 @@
 """This library brings functools.singledispatch from Python 3.4 to Python 
2.6-3.3."""
 
 # Copyright (C) 2013 by Łukasz Langa
-# 
+#
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the "Software"), to deal
 # in the Software without restriction, including without limitation the rights
@@ -26,13 +26,7 @@
 import os
 import sys
 import codecs
-from setuptools import setup, find_packages
-
-PY3 = sys.version_info[0] == 3
-
-if not PY3:
-reload(sys)
-sys.setde

commit semantik for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package semantik for openSUSE:Factory 
checked in at 2015-05-18 22:25:05

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


Package is "semantik"

Changes:

--- /work/SRC/openSUSE:Factory/semantik/semantik.changes2014-11-20 
18:43:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.semantik.new/semantik.changes   2015-05-18 
22:25:06.0 +0200
@@ -1,0 +2,8 @@
+Sun May 10 10:31:16 UTC 2015 - l...@linux-schulserver.de
+
+- update to 0.9.4
+  * Resize class elements
+  * Remember window settings in semantik-d
+  * Minor linear view bug fixes
+
+---

Old:

  semantik-0.9.3.tar.bz2

New:

  semantik-0.9.4.tar.bz2



Other differences:
--
++ semantik.spec ++
--- /var/tmp/diff_new_pack.vfuRMU/_old  2015-05-18 22:25:07.0 +0200
+++ /var/tmp/diff_new_pack.vfuRMU/_new  2015-05-18 22:25:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package semantik
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,12 +17,12 @@
 
 
 Name:   semantik
-Version:0.9.3
+Version:0.9.4
 Release:0
 Summary:A mindmapping-like tool
 License:GPL-3.0 and GPL-2.0
 Group:  Productivity/Office/Other
-Url:http://code.google.com/p/semantik
+Url:http://ita1024.github.io/semantik/
 Source0:http://ftp.waf.io/pub/release/%{name}-%{version}.tar.bz2
 Source1:%{name}.1
 BuildRequires:  fdupes

++ semantik-0.9.3.tar.bz2 -> semantik-0.9.4.tar.bz2 ++
 12689 lines of diff (skipped)




commit maxima for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package maxima for openSUSE:Factory checked 
in at 2015-05-18 22:24:48

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


Package is "maxima"

Changes:

--- /work/SRC/openSUSE:Factory/maxima/maxima.changes2015-04-27 
12:59:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.maxima.new/maxima.changes   2015-05-18 
22:24:50.0 +0200
@@ -1,0 +2,8 @@
+Sun May 10 10:34:06 UTC 2015 - l...@linux-schulserver.de
+
+- update to 5.36.1
+  + Bug 2936: Stack overflow in integrate
+  + fixed Bugs in the draw package
+  + Problem in loading wxm files from the Explorer in Wxmaxima
+
+---

Old:

  maxima-5.36.0.tar.gz

New:

  maxima-5.36.1.tar.gz



Other differences:
--
++ maxima.spec ++
--- /var/tmp/diff_new_pack.l34xWC/_old  2015-05-18 22:24:52.0 +0200
+++ /var/tmp/diff_new_pack.l34xWC/_new  2015-05-18 22:24:52.0 +0200
@@ -28,7 +28,7 @@
 %define gcl_flags --disable-gcl
 
 Name:   maxima
-Version:5.36.0
+Version:5.36.1
 Release:0
 #%%major_version is used only to package the latest changelog file, however 
upstream doesn't package the 5.36 changelog yet, so don't change this for now
 %define major_version 5.34

++ maxima-5.36.0.tar.gz -> maxima-5.36.1.tar.gz ++
/work/SRC/openSUSE:Factory/maxima/maxima-5.36.0.tar.gz 
/work/SRC/openSUSE:Factory/.maxima.new/maxima-5.36.1.tar.gz differ: char 5, 
line 1




commit asl for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package asl for openSUSE:Factory checked in 
at 2015-05-18 22:24:31

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


Package is "asl"

Changes:

--- /work/SRC/openSUSE:Factory/asl/asl.changes  2013-06-13 16:12:31.0 
+0200
+++ /work/SRC/openSUSE:Factory/.asl.new/asl.changes 2015-05-18 
22:24:32.0 +0200
@@ -1,0 +2,5 @@
+Fri May 15 22:17:09 UTC 2015 - mplus...@suse.com
+
+- Clenaup spec file with spec-cleaner
+
+---



Other differences:
--
++ asl.spec ++
--- /var/tmp/diff_new_pack.SrMeVM/_old  2015-05-18 22:24:33.0 +0200
+++ /var/tmp/diff_new_pack.SrMeVM/_new  2015-05-18 22:24:33.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package asl
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,10 +17,24 @@
 
 
 Name:   asl
+Version:1.42_1.22
+Release:0
+Summary:Macro Assembler AS
+License:GPL-2.0+
+Group:  Development/Languages/Other
+Url:http://john.ccac.rwth-aachen.de:8000/as/
+Source: asl-current-142-1.22.tar.bz2
+Patch0: asl-buildfixes.patch
+Patch1: asl-sle10-compilefix.patch
+Patch2: asl-ppc64.patch
+Patch3: asl-aarch64.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libpng
 BuildRequires:  texlive-latex
-%if %suse_version > 1220
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1220
 BuildRequires:  texlive-amsfonts
 BuildRequires:  texlive-cm
 BuildRequires:  texlive-cm-super
@@ -29,20 +43,6 @@
 BuildRequires:  texlive-pdftex
 BuildRequires:  tex(german.sty)
 %endif
-BuildRequires:  xorg-x11
-BuildRequires:  xorg-x11-devel
-Url:http://john.ccac.rwth-aachen.de:8000/as/
-Version:1.42_1.22
-Release:0
-Summary:Macro Assembler AS
-License:GPL-2.0+
-Group:  Development/Languages/Other
-Source: asl-current-142-1.22.tar.bz2
-Patch:  asl-buildfixes.patch
-Patch1: asl-sle10-compilefix.patch
-Patch2: asl-ppc64.patch
-Patch3: asl-aarch64.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 AS is a portable macro cross-assembler for a variety of microprocessors
@@ -50,10 +50,6 @@
 and single-board computers, you also find CPU families that are used in
 workstations and PCs in the target list.
 
-Authors:
-
-Alfred Arnold 
-
 %package doc
 Summary:Documentation for the AS macro assembler
 Group:  Documentation/Other
@@ -62,26 +58,22 @@
 AS is a portable macro cross-assembler for a variety of microprocessors
 and controllers. This package contains the documentation for it.
 
-Authors:
-
-Alfred Arnold 
-
 %prep
 %setup -q -n asl-current
-%patch -p1
+%patch0 -p1
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
 
 %build
-make CC="%__cc" LD="%__cc" CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
-make CC="%__cc" LD="%__cc" CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" docs
+make CC="gcc" LD="gcc" CFLAGS="%{optflags} -fno-strict-aliasing"
+make CC="gcc" LD="gcc" CFLAGS="%{optflags} -fno-strict-aliasing" docs
 
 %check
 make test
 
 %install
-make install PREFIX=$RPM_BUILD_ROOT
+make install PREFIX=%{buildroot}
 
 %files doc
 %defattr(-,root,root)
@@ -92,71 +84,71 @@
 %files
 %defattr(-,root,root)
 %doc COPYING README TODO
-/usr/bin/asl
-/usr/bin/alink
-/usr/bin/p2bin
-/usr/bin/p2hex
-/usr/bin/pbind
-/usr/bin/plist
-%dir /usr/include/asl
-/usr/include/asl/80c50x.inc
-/usr/include/asl/80c552.inc
-/usr/include/asl/bitfuncs.inc
-/usr/include/asl/ctype.inc
-/usr/include/asl/h8_3048.inc
-/usr/include/asl/reg166.inc
-/usr/include/asl/reg251.inc
-/usr/include/asl/reg29k.inc
-/usr/include/asl/reg53x.inc
-/usr/include/asl/reg683xx.inc
-/usr/include/asl/reg7000.inc
-/usr/include/asl/reg78k0.inc
-/usr/include/asl/reg96.inc
-/usr/include/asl/regace.inc
-/usr/include/asl/regavr.inc
-/usr/include/asl/regcop8.inc
-/usr/include/asl/reggp32.inc
-/usr/include/asl/reghc08jb.inc
-/usr/include/asl/reghc08q.inc
-/usr/include/asl/reghc12.inc
-/usr/include/asl/regm16c.inc
-/usr/include/asl/regmsp.inc
-/usr/include/asl/regst9.inc
-/usr/include/asl/regz380.inc
-/usr/include/asl/stddef04.inc
-/usr/include/asl/stddef16.inc
-/usr/include/asl/stddef17.inc
-/usr/include/asl/stddef18.inc
-/usr/include/asl/stddef2x.inc
-/usr/include/asl/stddef37.inc
-/usr/in

commit perl-Carton for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-Carton for openSUSE:Factory 
checked in at 2015-05-18 22:23:37

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


Package is "perl-Carton"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Carton/perl-Carton.changes  2015-05-10 
10:47:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Carton.new/perl-Carton.changes 
2015-05-18 22:23:38.0 +0200
@@ -1,0 +2,10 @@
+Sat May 16 08:05:49 UTC 2015 - co...@suse.com
+
+- updated to 1.0.21
+   see /usr/share/doc/packages/perl-Carton/Changes
+
+  v1.0.21  2015-05-15 12:21:47 PDT
+  - Changed Module::Reader dependency to requires for now, since it 
will be required
+on the runtime by the fatpacked carton.
+
+---

Old:

  Carton-v1.0.20.tar.gz

New:

  Carton-v1.0.21.tar.gz



Other differences:
--
++ perl-Carton.spec ++
--- /var/tmp/diff_new_pack.5kfmN9/_old  2015-05-18 22:23:39.0 +0200
+++ /var/tmp/diff_new_pack.5kfmN9/_new  2015-05-18 22:23:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Carton
-Version:1.0.20
+Version:1.0.21
 Release:0
 %define cpan_name Carton
 Summary:Perl module dependency manager (aka Bundler for Perl)
@@ -39,6 +39,7 @@
 BuildRequires:  perl(Module::CPANfile) >= 0.9031
 BuildRequires:  perl(Module::CoreList)
 BuildRequires:  perl(Module::Metadata) >= 1.03
+BuildRequires:  perl(Module::Reader) >= 0.002
 BuildRequires:  perl(Path::Tiny) >= 0.033
 BuildRequires:  perl(Try::Tiny) >= 0.09
 BuildRequires:  perl(parent) >= 0.223
@@ -52,12 +53,12 @@
 Requires:   perl(Module::CPANfile) >= 0.9031
 Requires:   perl(Module::CoreList)
 Requires:   perl(Module::Metadata) >= 1.03
+Requires:   perl(Module::Reader) >= 0.002
 Requires:   perl(Path::Tiny) >= 0.033
 Requires:   perl(Try::Tiny) >= 0.09
 Requires:   perl(parent) >= 0.223
 Recommends: perl(App::FatPacker) >= 0.009018
 Recommends: perl(File::pushd)
-Recommends: perl(Module::Reader) >= 0.002
 %{perl_requires}
 
 %description

++ Carton-v1.0.20.tar.gz -> Carton-v1.0.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Carton-v1.0.20/Changes new/Carton-v1.0.21/Changes
--- old/Carton-v1.0.20/Changes  2015-05-09 01:21:33.0 +0200
+++ new/Carton-v1.0.21/Changes  2015-05-15 21:21:51.0 +0200
@@ -1,5 +1,9 @@
 Revision history for carton
 
+v1.0.21  2015-05-15 12:21:47 PDT
+- Changed Module::Reader dependency to requires for now, since it will 
be required
+  on the runtime by the fatpacked carton.
+
 v1.0.20  2015-05-08 16:20:37 PDT
 - INCOMPATIBLE: Disable fatpack generation in carton bundle by default.
   Use the new standalone command carton fatpack, to generate 
vendor/bin/carton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Carton-v1.0.20/META.json new/Carton-v1.0.21/META.json
--- old/Carton-v1.0.20/META.json2015-05-09 01:21:33.0 +0200
+++ new/Carton-v1.0.21/META.json2015-05-15 21:21:51.0 +0200
@@ -42,8 +42,7 @@
   "runtime" : {
  "recommends" : {
 "App::FatPacker" : "0.009018",
-"File::pushd" : "0",
-"Module::Reader" : "0.002"
+"File::pushd" : "0"
  },
  "requires" : {
 "App::cpanminus" : "1.703",
@@ -55,6 +54,7 @@
 "Module::CPANfile" : "0.9031",
 "Module::CoreList" : "0",
 "Module::Metadata" : "1.03",
+"Module::Reader" : "0.002",
 "Path::Tiny" : "0.033",
 "Try::Tiny" : "0.09",
 "parent" : "0.223",
@@ -74,7 +74,7 @@
  "web" : "https://github.com/perl-carton/carton";
   }
},
-   "version" : "v1.0.20",
+   "version" : "v1.0.21",
"x_contributors" : [
   "Christian Walde ",
   "David Golden ",
@@ -86,6 +86,7 @@
   "NAKAGAWA Masaki ",
   "Olaf Alders ",
   "Pedro Figueiredo ",
+  "Peter Oliver ",
   "shiba_yu36 ",
   "Tatsuhiko Miyagawa ",
   "Tatsuhiko Miyagawa ",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Carton-v1.0.20/META.yml new/Carton-v1.0.21/META.yml
--- old/Carton-v1.0.20/META.yml 2015-05-09 01:21:33.0 +0200
+++ new/Carton-v1.0.21/META.yml 2015-05-15 21:21:51.0 +0200
@@ -24,7 +24,6 @@
 recommends:
   App::FatPacker: '0.009018'
   File::pushd: '0'
-  Module::Reader: '0.002'
 requires:
   App::cpanminus: '1.703'
   CPAN::Meta: '2.120921'
@@ -35,6

commit subversion for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package subversion for openSUSE:Factory 
checked in at 2015-05-18 22:23:54

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


Package is "subversion"

Changes:

--- /work/SRC/openSUSE:Factory/subversion/subversion.changes2015-04-10 
10:20:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.subversion.new/subversion.changes   
2015-05-18 22:23:55.0 +0200
@@ -1,0 +2,5 @@
+Sat May 16 18:08:29 UTC 2015 - astie...@suse.com
+
+- disable failing check-swig-rb
+
+---



Other differences:
--
++ subversion.spec ++
--- /var/tmp/diff_new_pack.iwVqc5/_old  2015-05-18 22:23:56.0 +0200
+++ /var/tmp/diff_new_pack.iwVqc5/_new  2015-05-18 22:23:56.0 +0200
@@ -433,8 +433,9 @@
 %if 0%{?suse_version} <= 1320
 # swig bindings check failing from swig 3.0.3 and later
 make %{?_smp_mflags} check-swig-py || (cat fails.log; exit 1)
-%endif
+# same for ruby bindings
 make %{?_smp_mflags} check-swig-rb || (cat fails.log; exit 1)
+%endif
 %if %{with all_regression_tests}
 make %{?_smp_mflags} svnserveautocheck CLEANUP=true FS_TYPE=fsfs || (cat 
fails.log; exit 1)
 make %{?_smp_mflags} svnserveautocheck CLEANUP=true FS_TYPE=bdb || (cat 
fails.log; exit 1)






commit redis for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package redis for openSUSE:Factory checked 
in at 2015-05-18 22:24:11

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


Package is "redis"

Changes:

--- /work/SRC/openSUSE:Factory/redis/redis.changes  2015-04-03 
14:34:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.redis.new/redis.changes 2015-05-18 
22:24:11.0 +0200
@@ -1,0 +2,9 @@
+Sat May 16 22:03:00 UTC 2015 - Led 
+
+- update to 3.0.1
+  * Sentinel memory leak due to hiredis fixed.
+  * Sentinel memory leak on duplicated instance.
+  * Redis crash on Lua reaching output buffer limits.
+  * Sentinel flushes config on +slave events.
+
+---

Old:

  redis-3.0.0.tar.gz

New:

  redis-3.0.1.tar.gz



Other differences:
--
++ redis.spec ++
--- /var/tmp/diff_new_pack.5SRu6N/_old  2015-05-18 22:24:12.0 +0200
+++ /var/tmp/diff_new_pack.5SRu6N/_new  2015-05-18 22:24:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package redis
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?suse_version} > 1230
 %bcond_without systemd
 %else
@@ -26,7 +27,7 @@
 %define _conf_dir   %{_sysconfdir}/%{name}
 
 Name:   redis
-Version:3.0.0
+Version:3.0.1
 Release:0
 Summary:Persistent key-value database
 License:BSD-3-Clause

++ redis-3.0.0.tar.gz -> redis-3.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.0.0/00-RELEASENOTES 
new/redis-3.0.1/00-RELEASENOTES
--- old/redis-3.0.0/00-RELEASENOTES 2015-04-01 16:01:44.0 +0200
+++ new/redis-3.0.1/00-RELEASENOTES 2015-05-05 11:01:19.0 +0200
@@ -1,8 +1,6 @@
 Redis 3.0 release notes
 ===
 
-WARNING: Redis 3.0 is currently a BETA not suitable for production 
environments.
-
 

 Upgrade urgency levels:
 
@@ -12,6 +10,15 @@
 CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
 

 
+--[ Redis 3.0.1 ] Release date: 5 May 2015
+
+Upgrade urgency: LOW for Redis, Sentinel, Cluster.
+
+* [FIX] Sentinel memory leak due to hiredis fixed. (Salvatore Sanfilippo)
+* [FIX] Sentinel memory leak on duplicated instance. (Charsyam)
+* [FIX] Redis crash on Lua reaching output buffer limits. (Yossi Gottlieb)
+* [FIX] Sentinel flushes config on +slave events. (Bill Anderson)
+
 --[ Redis 3.0.0 ] Release date: 1 Apr 2015
 
 >> What's new in Redis 3.0 compared to Redis 2.8?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.0.0/COPYING new/redis-3.0.1/COPYING
--- old/redis-3.0.0/COPYING 2015-04-01 16:01:44.0 +0200
+++ new/redis-3.0.1/COPYING 2015-05-05 11:01:19.0 +0200
@@ -1,4 +1,4 @@
-Copyright (c) 2006-2014, Salvatore Sanfilippo
+Copyright (c) 2006-2015, Salvatore Sanfilippo
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.0.0/deps/hiredis/async.c 
new/redis-3.0.1/deps/hiredis/async.c
--- old/redis-3.0.0/deps/hiredis/async.c2015-04-01 16:01:44.0 
+0200
+++ new/redis-3.0.1/deps/hiredis/async.c2015-05-05 11:01:19.0 
+0200
@@ -443,6 +443,7 @@
 if (((redisReply*)reply)->type == REDIS_REPLY_ERROR) {
 c->err = REDIS_ERR_OTHER;
 
snprintf(c->errstr,sizeof(c->errstr),"%s",((redisReply*)reply)->str);
+c->reader->fn->freeObject(reply);
 __redisAsyncDisconnect(ac);
 return;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.0.0/src/networking.c 
new/redis-3.0.1/src/networking.c
--- old/redis-3.0.0/src/networking.c2015-04-01 16:01:44.0 +0200
+++ new/redis-3.0.1/src/networking.c2015-05-05 11:01:19.0 +0200
@@ -797,7 +797,7 @@
  * a context where calling freeClient() is not possible, because the client
  * should be valid for the continuation of the flo

commit perl-Minion for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-Minion for openSUSE:Factory 
checked in at 2015-05-18 22:23:20

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


Package is "perl-Minion"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Minion/perl-Minion.changes  2015-04-23 
08:05:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Minion.new/perl-Minion.changes 
2015-05-18 22:23:21.0 +0200
@@ -1,0 +2,12 @@
+Sat May 16 08:20:13 UTC 2015 - co...@suse.com
+
+- updated to 1.15
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  1.15  2015-05-15
+- Added support for retrying jobs with a delay. (kwa)
+- Added delay option to retry method in Minion::Job. (kwa)
+- Added delay option to retry_job method in Minion::Backend::File. (kwa)
+- Added delay option to retry_job method in Minion::Backend::Pg. (kwa)
+
+---

Old:

  Minion-1.14.tar.gz

New:

  Minion-1.15.tar.gz



Other differences:
--
++ perl-Minion.spec ++
--- /var/tmp/diff_new_pack.kZ9wUV/_old  2015-05-18 22:23:22.0 +0200
+++ /var/tmp/diff_new_pack.kZ9wUV/_new  2015-05-18 22:23:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Minion
-Version:1.14
+Version:1.15
 Release:0
 %define cpan_name Minion
 Summary:Job queue

++ Minion-1.14.tar.gz -> Minion-1.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.14/Changes new/Minion-1.15/Changes
--- old/Minion-1.14/Changes 2015-04-21 20:02:37.0 +0200
+++ new/Minion-1.15/Changes 2015-05-15 23:42:01.0 +0200
@@ -1,4 +1,10 @@
 
+1.15  2015-05-15
+  - Added support for retrying jobs with a delay. (kwa)
+  - Added delay option to retry method in Minion::Job. (kwa)
+  - Added delay option to retry_job method in Minion::Backend::File. (kwa)
+  - Added delay option to retry_job method in Minion::Backend::Pg. (kwa)
+
 1.14  2015-04-21
   - Improved performance of Minion::Backend::Pg with a new index. (avkhozov)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.14/META.json new/Minion-1.15/META.json
--- old/Minion-1.14/META.json   2015-04-22 00:37:46.0 +0200
+++ new/Minion-1.15/META.json   2015-05-15 23:43:54.0 +0200
@@ -53,5 +53,5 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "1.14"
+   "version" : "1.15"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.14/META.yml new/Minion-1.15/META.yml
--- old/Minion-1.14/META.yml2015-04-22 00:37:46.0 +0200
+++ new/Minion-1.15/META.yml2015-05-15 23:43:53.0 +0200
@@ -28,4 +28,4 @@
   homepage: http://mojolicio.us
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/minion.git
-version: '1.14'
+version: '1.15'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.14/lib/Minion/Backend/File.pm 
new/Minion-1.15/lib/Minion/Backend/File.pm
--- old/Minion-1.14/lib/Minion/Backend/File.pm  2015-03-17 04:19:45.0 
+0100
+++ new/Minion-1.15/lib/Minion/Backend/File.pm  2015-05-15 19:41:01.0 
+0200
@@ -120,13 +120,16 @@
 sub reset { $_[0]->db and delete($_[0]->{db})->clear }
 
 sub retry_job {
-  my ($self, $id) = @_;
+  my ($self, $id) = (shift, shift);
+  my $options = shift // {};
 
   my $guard = $self->_exclusive;
   return undef unless my $job = $self->_job($id, 'failed', 'finished');
   $job->{retries} += 1;
+  $job->{delayed} = time + $options->{delay} if $options->{delay};
   @$job{qw(retried state)} = (time, 'inactive');
   delete @$job{qw(finished result started worker)};
+
   return 1;
 }
 
@@ -275,7 +278,7 @@
 
   delay => 10
 
-Delay job for this many seconds from now.
+Delay job for this many seconds (from now).
 
 =item priority
 
@@ -372,9 +375,22 @@
 =head2 retry_job
 
   my $bool = $backend->retry_job($job_id);
+  my $bool = $backend->retry_job($job_id, {delay => 10});
 
 Transition from C or C state back to C.
 
+These options are currently available:
+
+=over 2
+
+=item delay
+
+  delay => 10
+
+Delay job for this many seconds (from now).
+
+=back
+
 =head2 stats
 
   my $stats = $backend->stats;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.14/lib/Minion/Backend/Pg.pm 
new/Minion-1.15/lib/Minion/Backend/Pg.pm
--- old/Minion-1.14/lib/Minion/Backend/Pg.pm2015-04-21 20:01:39.0 
+0200
+++ new/Minion-1.15/lib/Minion/Backend/Pg.pm2015-0

commit python-zope.proxy for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.proxy for 
openSUSE:Factory checked in at 2015-05-18 22:22:46

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


Package is "python-zope.proxy"

Changes:

--- /work/SRC/openSUSE:Factory/python-zope.proxy/python-zope.proxy.changes  
2013-08-20 11:45:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zope.proxy.new/python-zope.proxy.changes 
2015-05-18 22:22:47.0 +0200
@@ -1,0 +2,9 @@
+Fri May 15 12:25:59 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.1.4:
+  * Added support for Python 3.4.
+  * Updated bootstrap.py to version 2.2.
+- point the source URL to pypi
+- pass -q to test to avoid spamming the build log
+
+---

Old:

  zope.proxy-4.1.3.tar.bz2

New:

  zope.proxy-4.1.4.tar.gz



Other differences:
--
++ python-zope.proxy.spec ++
--- /var/tmp/diff_new_pack.21qWax/_old  2015-05-18 22:22:48.0 +0200
+++ /var/tmp/diff_new_pack.21qWax/_new  2015-05-18 22:22:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.proxy
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,18 +12,19 @@
 # case the license is the MIT License). An "Open Source License" is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-zope.proxy
-Version:4.1.3
+Version:4.1.4
 Release:0
 Url:http://www.python.org/pypi/zope.proxy
 Summary:Generic Transparent Proxies
 License:ZPL-2.1
 Group:  Development/Languages/Python
-Source: zope.proxy-%{version}.tar.bz2
+Source: 
https://pypi.python.org/packages/source/z/zope.proxy/zope.proxy-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -32,8 +33,8 @@
 BuildRequires:  python-Sphinx
 BuildRequires:  python-repoze.sphinx.autointerface
 # Testing requirements:
-BuildRequires: python-nose
 BuildRequires: python-coverage
+BuildRequires:  python-nose
 
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
@@ -73,7 +74,7 @@
 rm %{buildroot}%python_sitearch/zope/proxy/_zope_proxy_proxy.c
 
 %check
-python setup.py test
+python setup.py -q test
 
 %files
 %defattr(-,root,root,-)




commit python-zope.hookable for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.hookable for 
openSUSE:Factory checked in at 2015-05-18 22:23:03

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


Package is "python-zope.hookable"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.hookable/python-zope.hookable.changes
2013-12-30 10:35:00.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope.hookable.new/python-zope.hookable.changes
   2015-05-18 22:23:04.0 +0200
@@ -1,0 +2,14 @@
+Fri May 15 12:00:44 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.0.4:
+  * Added support for Python 3.4.
+- additional changes from version 4.0.3:
+  * Updated boostrap.py to version 2.2.
+  * Fixed extension compilation on Py3k.
+- additional changes from version 4.0.2:
+  * Fleshed out PyPI Trove classifiers.
+- point the source URL to pypi
+- rename CHANGES.txt to CHANGES.rst: changed upstream
+- rename README.txt to README.rst: changed upstream
+
+---

Old:

  zope.hookable-4.0.1.tar.gz

New:

  zope.hookable-4.0.4.tar.gz



Other differences:
--
++ python-zope.hookable.spec ++
--- /var/tmp/diff_new_pack.Rk1je9/_old  2015-05-18 22:23:04.0 +0200
+++ /var/tmp/diff_new_pack.Rk1je9/_new  2015-05-18 22:23:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.hookable
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,18 +12,19 @@
 # case the license is the MIT License). An "Open Source License" is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-zope.hookable
-Version:4.0.1
+Version:4.0.4
 Release:0
 Url:http://www.python.org/pypi/zope.hookable
 Summary:Zope hookable
 License:ZPL-2.1
 Group:  Development/Languages/Python
-Source: zope.hookable-%{version}.tar.gz
+Source: 
https://pypi.python.org/packages/source/z/zope.hookable/zope.hookable-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -70,7 +71,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGES.txt COPYRIGHT.txt LICENSE.txt README.txt
+%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
 %python_sitearch/*
 
 %files doc

++ zope.hookable-4.0.1.tar.gz -> zope.hookable-4.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.hookable-4.0.1/.bzrignore 
new/zope.hookable-4.0.4/.bzrignore
--- old/zope.hookable-4.0.1/.bzrignore  2012-11-21 19:35:10.0 +0100
+++ new/zope.hookable-4.0.4/.bzrignore  1970-01-01 01:00:00.0 +0100
@@ -1,8 +0,0 @@
-build
-*.egg-info
-_build
-.coverage
-coverage.xml
-nosetests.xml
-.tox
-__pycache__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.hookable-4.0.1/.gitignore 
new/zope.hookable-4.0.4/.gitignore
--- old/zope.hookable-4.0.1/.gitignore  1970-01-01 01:00:00.0 +0100
+++ new/zope.hookable-4.0.4/.gitignore  2013-01-08 17:29:26.0 +0100
@@ -0,0 +1,15 @@
+*.pyc
+*.so
+__pycache__
+build
+*.egg-info
+docs/_build
+.installed.cfg
+bin
+develop-eggs
+eggs
+parts
+.tox
+.coverage
+coverage.xml
+nosetests.xml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.hookable-4.0.1/.travis.yml 
new/zope.hookable-4.0.4/.travis.yml
--- old/zope.hookable-4.0.1/.travis.yml 1970-01-01 01:00:00.0 +0100
+++ new/zope.hookable-4.0.4/.travis.yml 2013-07-10 02:45:04.0 +0200
@@ -0,0 +1,13 @@
+language: python
+python:
+- 2.6
+- 2.7
+- 3.2
+- 3.3
+- pypy
+install:
+- pip install . --use-mirrors
+script:
+- python setup.py test -q
+notifications:
+email: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.hookable-4.0.1/CHANGES.rst 
new/zope.hookable-4.0.4/CHANGES.rst
--- old/zope.hookable-4.0.1/CHANGES.rst 1970-01-01 01:00:00.0 +0100
+++ new/zope.hookable-4.0.4/CHANGES.rst 2014-03-19 19:42:47.0 +0100
@@ -0,0 +1,63 @@
+Changes
+---
+
+4.0.4 (2014-03-19)
+##
+
+- Added support for Python 3.4.
+
+4.0.3 (2014-03-17)
+##
+
+- Updated ``boostrap.

commit python-zope.deprecation for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.deprecation for 
openSUSE:Factory checked in at 2015-05-18 22:22:12

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


Package is "python-zope.deprecation"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.deprecation/python-zope.deprecation.changes
  2014-03-01 19:43:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope.deprecation.new/python-zope.deprecation.changes
 2015-05-18 22:22:13.0 +0200
@@ -1,0 +2,10 @@
+Fri May 15 11:39:49 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.1.2:
+  * Do not require a self parameter for deprecated functions.
+See: https://github.com/zopefoundation/zope.deprecation/pull/1
+- additional changes from version 4.1.1:
+  * Added explicit support for Python 3.4.
+- pass -q to test to avoid spamming the build log
+
+---

Old:

  zope.deprecation-4.1.0.tar.gz

New:

  zope.deprecation-4.1.2.tar.gz



Other differences:
--
++ python-zope.deprecation.spec ++
--- /var/tmp/diff_new_pack.mvBc8m/_old  2015-05-18 22:22:14.0 +0200
+++ /var/tmp/diff_new_pack.mvBc8m/_new  2015-05-18 22:22:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.deprecation
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   python-zope.deprecation
-Version:4.1.0
+Version:4.1.2
 Release:0
 Url:http://pypi.python.org/pypi/zope.deprecation
 Summary:Zope Deprecation Infrastructure
@@ -61,7 +61,7 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
-python setup.py test
+python setup.py -q test
 
 %files
 %defattr(-,root,root,-)

++ zope.deprecation-4.1.0.tar.gz -> zope.deprecation-4.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.deprecation-4.1.0/.travis.yml 
new/zope.deprecation-4.1.2/.travis.yml
--- old/zope.deprecation-4.1.0/.travis.yml  2013-07-10 02:49:59.0 
+0200
+++ new/zope.deprecation-4.1.2/.travis.yml  2015-01-13 16:26:58.0 
+0100
@@ -1,12 +1,15 @@
 language: python
+sudo: false
 python:
 - 2.6
 - 2.7
 - 3.2
 - 3.3
+- 3.4
 - pypy
+- pypy3
 install:
-- pip install . --use-mirrors
+- pip install .
 script:
 - python setup.py test -q
 notifications:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.deprecation-4.1.0/CHANGES.rst 
new/zope.deprecation-4.1.2/CHANGES.rst
--- old/zope.deprecation-4.1.0/CHANGES.rst  2013-12-20 20:37:40.0 
+0100
+++ new/zope.deprecation-4.1.2/CHANGES.rst  2015-01-13 16:28:42.0 
+0100
@@ -1,6 +1,17 @@
 ``zope.deprecation`` Changelog
 ==
 
+4.1.2 (2015-01-13)
+--
+
+- Do not require a ``self`` parameter for deprecated functions.  See:
+  https://github.com/zopefoundation/zope.deprecation/pull/1
+
+4.1.1 (2014-03-19)
+--
+
+- Added explicit support for Python 3.4.
+
 4.1.0 (2013-12-20)
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.deprecation-4.1.0/PKG-INFO 
new/zope.deprecation-4.1.2/PKG-INFO
--- old/zope.deprecation-4.1.0/PKG-INFO 2013-12-20 20:41:06.0 +0100
+++ new/zope.deprecation-4.1.2/PKG-INFO 2015-01-13 16:28:50.0 +0100
@@ -1,13 +1,16 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: zope.deprecation
-Version: 4.1.0
+Version: 4.1.2
 Summary: Zope Deprecation Infrastructure
 Home-page: http://pypi.python.org/pypi/zope.deprecation
 Author: Zope Corporation and Contributors
 Author-email: zope-...@zope.org
 License: ZPL 2.1
-Description: ``zope.deprecation`` README
-===
+Description: ``zope.deprecation``
+
+
+.. image:: 
https://travis-ci.org/zopefoundation/zope.deprecation.png?branch=master
+:target: https://travis-ci.org/zopefoundation/zope.deprecation
 
 This package provides a simple function called ``deprecated(names, 
reason)``
 to mark deprecated modules, classes, functions, methods and properties.
@@ -19,6 +22,17 @@
 ``zope.deprecation`` Changelog
 ==
 
+4.1.2 (2015-01-13)
+-

commit python-zope.component for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.component for 
openSUSE:Factory checked in at 2015-05-18 22:21:56

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


Package is "python-zope.component"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.component/python-zope.component.changes  
2014-02-26 12:06:50.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope.component.new/python-zope.component.changes
 2015-05-18 22:21:57.0 +0200
@@ -1,0 +2,8 @@
+Fri May 15 11:13:54 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.2.1:
+  * Added support for Python 3.4.
+- switch source archive to tar.gz (zip not available)
+- remove unzip from BuildRequires
+
+---

Old:

  zope.component-4.2.0.zip

New:

  zope.component-4.2.1.tar.gz



Other differences:
--
++ python-zope.component.spec ++
--- /var/tmp/diff_new_pack.7QuWM0/_old  2015-05-18 22:21:58.0 +0200
+++ /var/tmp/diff_new_pack.7QuWM0/_new  2015-05-18 22:21:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.component
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +18,13 @@
 
 
 Name:   python-zope.component
-Version:4.2.0
+Version:4.2.1
 Release:0
 Url:http://www.python.org/pypi/zope.component
 Summary:Zope Component Architecture
 License:ZPL-2.1
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/z/zope.component/zope.component-%{version}.zip
+Source: 
https://pypi.python.org/packages/source/z/zope.component/zope.component-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-Sphinx
 # Documentation requirements:
@@ -40,7 +40,6 @@
 #TODO: fix circular dependency with python-zope.security
 #BuildRequires:  python-zope.security
 BuildRequires:  python-zope.testing
-BuildRequires:  unzip
 Requires:   python-zope.event
 Requires:   python-zope.interface >= 4.1.0
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110




commit python-zope.i18nmessageid for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package python-zope.i18nmessageid for 
openSUSE:Factory checked in at 2015-05-18 22:22:30

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


Package is "python-zope.i18nmessageid"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.i18nmessageid/python-zope.i18nmessageid.changes
  2014-02-02 22:23:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-zope.i18nmessageid.new/python-zope.i18nmessageid.changes
 2015-05-18 22:22:31.0 +0200
@@ -1,0 +2,9 @@
+Fri May 15 12:07:37 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 4.0.3:
+  * Added support for Python 3.4.
+  * Updated boostrap.py to version 2.2.
+- rename CHANGES.txt to CHANGES.rst: changed upstream
+- rename README.txt to README.rst: changed upstream
+
+---

Old:

  zope.i18nmessageid-4.0.2.tar.gz

New:

  zope.i18nmessageid-4.0.3.tar.gz



Other differences:
--
++ python-zope.i18nmessageid.spec ++
--- /var/tmp/diff_new_pack.znsm6w/_old  2015-05-18 22:22:32.0 +0200
+++ /var/tmp/diff_new_pack.znsm6w/_new  2015-05-18 22:22:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.i18nmessageid
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,12 +12,13 @@
 # case the license is the MIT License). An "Open Source License" is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-zope.i18nmessageid
-Version:4.0.2
+Version:4.0.3
 Release:0
 Url:http://www.python.org/pypi/zope.i18nmessageid
 Summary:Zope Location
@@ -62,7 +63,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGES.txt COPYRIGHT.txt LICENSE.txt README.txt
+%doc CHANGES.rst COPYRIGHT.txt LICENSE.txt README.rst
 %python_sitearch/*
 
 %files doc

++ zope.i18nmessageid-4.0.2.tar.gz -> zope.i18nmessageid-4.0.3.tar.gz ++
 5924 lines of diff (skipped)




commit the_silver_searcher for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2015-05-18 22:21:38

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2015-01-20 12:38:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2015-05-18 22:21:40.0 +0200
@@ -1,0 +2,12 @@
+Fri May 15 23:29:41 UTC 2015 - astie...@suse.com
+
+- update to version 0.30.0:
+  * --one-device option
+  * language types and filter updates
+  * performance improvements
+  * bug fixes
+- use bootstrapped upstream release tarballs, do not re-bootstrap
+- add source signature and signing key
+- update bash completion location
+
+---

Old:

  the_silver_searcher-0.28.0.tar.gz

New:

  the_silver_searcher-0.30.0.tar.gz
  the_silver_searcher-0.30.0.tar.gz.asc
  the_silver_searcher.keyring



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.I78Flc/_old  2015-05-18 22:21:41.0 +0200
+++ /var/tmp/diff_new_pack.I78Flc/_new  2015-05-18 22:21:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,20 +17,28 @@
 
 
 Name:   the_silver_searcher
-Version:0.28.0
+Version:0.30.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
 Group:  Productivity/File utilities
 Url:https://github.com/ggreer/the_silver_searcher
-# url is 
https://github.com/ggreer/the_silver_searcher/archive/%{version}.tar.gz
-Source: %{name}-%{version}.tar.gz
-BuildRequires:  automake
+Source: http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz
+Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
+Source3:%{name}.keyring
+Source4:%{name}.changes
+BuildRequires:  pkg-config >= 0.9.0
+Requires:   bash-completion
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1110
+BuildRequires:  pkgconfig(liblzma)
+BuildRequires:  pkgconfig(libpcre)
+BuildRequires:  pkgconfig(zlib)
+%else
 BuildRequires:  pcre-devel
-BuildRequires:  pkg-config
 BuildRequires:  xz-devel
 BuildRequires:  zlib-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%endif
 
 %description
 A code searching tool similar to ack, with a focus on speed.
@@ -39,21 +47,19 @@
 %setup -q
 
 %build
-aclocal
-autoconf
-autoheader
-automake --add-missing
 %configure
 make %{?_smp_mflags}
 
 %install
-make install DESTDIR=%{buildroot}
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
+mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 
 %files
 %defattr(-,root,root)
+%doc LICENSE NOTICE README.md
 %{_bindir}/ag
 %{_mandir}/man1/ag.1.gz
-%{_datadir}/the_silver_searcher
-%doc LICENSE NOTICE README.md
+%config %{_sysconfdir}/bash_completion.d/%{name}
 
 %changelog

++ the_silver_searcher-0.28.0.tar.gz -> the_silver_searcher-0.30.0.tar.gz 
++
 17553 lines of diff (skipped)




commit ha-cluster-bootstrap for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package ha-cluster-bootstrap for 
openSUSE:Factory checked in at 2015-05-18 22:21:20

Comparing /work/SRC/openSUSE:Factory/ha-cluster-bootstrap (Old)
 and  /work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new (New)


Package is "ha-cluster-bootstrap"

Changes:

--- 
/work/SRC/openSUSE:Factory/ha-cluster-bootstrap/ha-cluster-bootstrap.changes
2015-05-06 07:48:39.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new/ha-cluster-bootstrap.changes
   2015-05-18 22:21:21.0 +0200
@@ -1,0 +2,9 @@
+Fri May 08 16:29:54 UTC 2015 - kgronl...@suse.com
+
+- Update to version 0.4+git.1430918556.6f42311:
+  + Patches merged upstream
+  + Exit with error if ha-cluster-join is called over ssh without -t 
(bnc#892702)
+- Remove 0001-Improved-IP-address-detection-algorithm-boo-920226.patch
+- Remove 0002-Use-crm_node-to-count-nodes-in-cluster-when-deciding.patch
+
+---

Old:

  0001-Improved-IP-address-detection-algorithm-boo-920226.patch
  0002-Use-crm_node-to-count-nodes-in-cluster-when-deciding.patch
  sleha-bootstrap-0.4+git.1410854324.8459115.tar.bz2

New:

  _servicedata
  sleha-bootstrap-0.4+git.1430918556.6f42311.tar.bz2



Other differences:
--
++ ha-cluster-bootstrap.spec ++
--- /var/tmp/diff_new_pack.uzfh50/_old  2015-05-18 22:21:22.0 +0200
+++ /var/tmp/diff_new_pack.uzfh50/_new  2015-05-18 22:21:22.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   ha-cluster-bootstrap
-Version:0.4+git.1410854324.8459115
+Version:0.4+git.1430918556.6f42311
 Release:0
 Summary:Pacemaker HA Cluster Bootstrap Tool
 License:GPL-2.0
@@ -26,12 +26,6 @@
 Url:https://github.com/tserong/sleha-bootstrap
 Source: sleha-bootstrap-%{version}.tar.bz2
 
-# PATCH-FIX-UPSTREAM: Improved IP address detection algorithm (boo#920226)
-Patch1: 0001-Improved-IP-address-detection-algorithm-boo-920226.patch
-# PATCH-FIX-UPSTREAM: Use crm_node to count nodes in cluster when deciding
-# to reset no-quorum-policy=ignore (boo#923372)
-Patch2: 0002-Use-crm_node-to-count-nodes-in-cluster-when-deciding.patch
-
 Requires:   csync2
 Requires:   hawk
 Requires:   iproute2
@@ -49,8 +43,6 @@
 
 %prep
 %setup -n sleha-bootstrap-%{version}
-%patch1 -p1
-%patch2 -p1
 %build
 
 %install

++ _service ++
--- /var/tmp/diff_new_pack.uzfh50/_old  2015-05-18 22:21:22.0 +0200
+++ /var/tmp/diff_new_pack.uzfh50/_new  2015-05-18 22:21:22.0 +0200
@@ -4,7 +4,8 @@
 git
 .git
 0.4+git.%ct.%h
-8459115
+master
+enable
   
 
   

++ _servicedata ++


git://github.com/tserong/sleha-bootstrap.git
  6f423117528b0c730b17cbeec909caa7ed719f4a++
 sleha-bootstrap-0.4+git.1410854324.8459115.tar.bz2 -> 
sleha-bootstrap-0.4+git.1430918556.6f42311.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-functions 
new/sleha-bootstrap-0.4+git.1430918556.6f42311/scripts/ha-cluster-functions
--- old/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-functions 
2014-09-16 10:16:03.0 +0200
+++ new/sleha-bootstrap-0.4+git.1430918556.6f42311/scripts/ha-cluster-functions 
2015-05-08 18:29:54.0 +0200
@@ -470,6 +470,14 @@
init_firewall
 }
 
+check_tty()
+{
+   # Check for pseudo-tty: Cannot display read prompts without a TTY 
(bnc#892702)
+   if ! tty -s; then
+   error "No pseudo-tty detected! Use -t option to ssh if calling 
remotely."
+   fi
+}
+
 init()
 {
log_start
@@ -495,9 +503,7 @@
# up. If $IP_ADDRESS is overridden, network detect shouldn't work,
# because "ip route" won't be able to help us.
if [ -z "$IP_ADDRESS" ]; then
-   IP_ADDRESS=$(ip -o -f inet addr show primary | \
-   awk "/[[:space:]]${NET_IF}[[:space:]]/ {print \$4} " |
-   sed 's/\/[0-9]\+//')
+   IP_ADDRESS=$(ip route get 1 oif $NET_IF | head -1 | awk '{print 
$NF}')
fi
if [ -z "$IP_NETWORK" -a -n "$IP_ADDRESS" ]; then
IP_NETWORK=$(ip route list | \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-init 
new/sleha-bootstrap-0.4+git.1430918556.6f42311/scripts/ha-cluster-init
--- old/sleha-bootstrap-0.4+git.1410854324.8459115/scripts/ha-cluster-init  
2014-09-16 10:16:03.0 +0200
+++ new/sleha-bootstrap-0.4+git.1430918556.6f4

commit perl-AnyEvent-HTTP for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-AnyEvent-HTTP for 
openSUSE:Factory checked in at 2015-05-18 22:20:45

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


Package is "perl-AnyEvent-HTTP"

Changes:

--- /work/SRC/openSUSE:Factory/perl-AnyEvent-HTTP/perl-AnyEvent-HTTP.changes
2014-07-26 09:42:13.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-AnyEvent-HTTP.new/perl-AnyEvent-HTTP.changes   
2015-05-18 22:20:46.0 +0200
@@ -1,0 +2,6 @@
+Thu May 14 08:02:22 UTC 2015 - co...@suse.com
+
+- updated to 2.22
+   see /usr/share/doc/packages/perl-AnyEvent-HTTP/Changes
+
+---

Old:

  AnyEvent-HTTP-2.21.tar.gz

New:

  AnyEvent-HTTP-2.22.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-AnyEvent-HTTP.spec ++
--- /var/tmp/diff_new_pack.vhZ2mM/_old  2015-05-18 22:20:47.0 +0200
+++ /var/tmp/diff_new_pack.vhZ2mM/_new  2015-05-18 22:20:47.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-AnyEvent-HTTP
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,14 +17,16 @@
 
 
 Name:   perl-AnyEvent-HTTP
-Version:2.21
+Version:2.22
 Release:0
+#Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
 %define cpan_name AnyEvent-HTTP
-Summary:Simple but non-blocking HTTP/HTTPS client
-License:GPL-1.0+ or Artistic-1.0
+Summary:Simple but Non-Blocking Http/Https Client
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/AnyEvent-HTTP/
-Source: 
http://www.cpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++ AnyEvent-HTTP-2.21.tar.gz -> AnyEvent-HTTP-2.22.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.21/Changes 
new/AnyEvent-HTTP-2.22/Changes
--- old/AnyEvent-HTTP-2.21/Changes  2014-06-09 01:36:23.0 +0200
+++ new/AnyEvent-HTTP-2.22/Changes  2015-05-14 04:04:06.0 +0200
@@ -3,10 +3,24 @@
 TODO: provide lwp_request function that takes an lwp http requets and returns 
a http response.
 TODO: set_proxy hook
 TODO: use proxy hook
-TODO: ip6 literals in url
 TODO: maybe read big chunks in smaller portions for chunked-encoding + on_body.
-TODL: on_upgrade, for 101 responses?
+TODO: on_upgrade, for 101 responses?
 TODO: document session vs. sessionid correctly.
+TODO: support proxy username:password in both proxy switch and set_proxy 
string (dzagas...@gmail.com)
+TODO: remove "unexpectedly got a destructed handle"
+
+TODO: callback as body (Kostirya)
+TODO: infinite recursion(?) (Kostirya)
+
+2.22 Thu May 14 04:04:03 CEST 2015
+   - ipv6 literals were not correctly parsed (analyzed by Raphael 
Geissert).
+   - delete the body when mutating request to GET request when
+  redirecting (reported by joe trader).
+- send proxy-authorization header to proxy when using CONNECT
+  (reported by dzagas...@gmail.com).
+   - do not send Proxy-Authroization header when not using a proxy.
+   - when retrying a persistent request, switch persistency off.
+- added t/02_ip_literals.t.
 
 2.21 Mon Jun  9 01:35:54 CEST 2014
- correctly keep body when redirecting POSTs, instead of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.21/HTTP.pm 
new/AnyEvent-HTTP-2.22/HTTP.pm
--- old/AnyEvent-HTTP-2.21/HTTP.pm  2014-06-09 01:35:52.0 +0200
+++ new/AnyEvent-HTTP-2.22/HTTP.pm  2015-05-14 04:04:22.0 +0200
@@ -48,7 +48,7 @@
 
 use base Exporter::;
 
-our $VERSION = 2.21;
+our $VERSION = 2.22;
 
 our @EXPORT = qw(http_get http_post http_head http_request);
 
@@ -197,6 +197,9 @@
 If not specified, then the default proxy is used (see
 C).
 
+Currently, if your proxy requires authorization, you have to specify an
+appropriate "Proxy-Authorization" header in every request.
+
 =item body => $string
 
 The request body, usually empty. Will be sent as-is (future versions of
@@ -772,7 +775,7 @@
  : $uscheme eq "https" ? 443
  : return $cb->(undef, { 

commit perl-YAML-Tiny for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package perl-YAML-Tiny for openSUSE:Factory 
checked in at 2015-05-18 22:20:29

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


Package is "perl-YAML-Tiny"

Changes:

--- /work/SRC/openSUSE:Factory/perl-YAML-Tiny/perl-YAML-Tiny.changes
2015-04-23 08:03:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-YAML-Tiny.new/perl-YAML-Tiny.changes   
2015-05-18 22:20:30.0 +0200
@@ -1,0 +2,18 @@
+Wed May 13 13:07:52 UTC 2015 - co...@suse.com
+
+- updated to 1.67
+   see /usr/share/doc/packages/perl-YAML-Tiny/Changes
+
+  1.67  2015-05-12 00:10:24Z
+  
+  [FIXED]
+  
+  - instead of erroring on duplicate keys found in a hash (introduced 
in
+version 1.63), now we only warn. This fixes an issue in Strawberry 
Perl
+(via CPAN::Meta::YAML) when parsing a configuration file.
+  
+  [CHANGED]
+  
+  - Updated File::Temp test prereq to 0.19 for 'newdir'
+
+---

Old:

  YAML-Tiny-1.66.tar.gz

New:

  YAML-Tiny-1.67.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-YAML-Tiny.spec ++
--- /var/tmp/diff_new_pack.OQF0kf/_old  2015-05-18 22:20:31.0 +0200
+++ /var/tmp/diff_new_pack.OQF0kf/_new  2015-05-18 22:20:31.0 +0200
@@ -17,18 +17,22 @@
 
 
 Name:   perl-YAML-Tiny
-Version:1.66
+Version:1.67
 Release:0
 %define cpan_name YAML-Tiny
 Summary:Read/Write YAML files with as little code as possible
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/YAML-Tiny/
-Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(File::Temp) >= 0.19
+BuildRequires:  perl(JSON::PP)
+BuildRequires:  perl(Test::More) >= 0.99
 %{perl_requires}
 
 %description

++ YAML-Tiny-1.66.tar.gz -> YAML-Tiny-1.67.tar.gz ++
 1615 lines of diff (skipped)

++ cpanspec.yml ++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module



commit kconfig for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package kconfig for openSUSE:Factory checked 
in at 2015-05-18 22:19:09

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


Package is "kconfig"

Changes:

--- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes  2015-05-11 
19:47:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kconfig.new/kconfig.changes 2015-05-18 
22:19:10.0 +0200
@@ -1,0 +2,11 @@
+Sun May 17 18:54:53 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Comment out 0001-ensure-platform-window-resize-processing.patch,
+  causes bad side-effects (kde#344183,boo#931167)
+
+---
+Tue May 12 13:17:01 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Added 0001-Add-KConfigGui-setSessionConfig.patch (kde#346768)
+
+---

New:

  0001-Add-KConfigGui-setSessionConfig.patch



Other differences:
--
++ kconfig.spec ++
--- /var/tmp/diff_new_pack.QlBQpG/_old  2015-05-18 22:19:11.0 +0200
+++ /var/tmp/diff_new_pack.QlBQpG/_new  2015-05-18 22:19:11.0 +0200
@@ -40,6 +40,8 @@
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM 0001-ensure-platform-window-resize-processing.patch -- 
https://git.reviewboard.kde.org/r/119593/
 Patch0: 0001-ensure-platform-window-resize-processing.patch
+# PATCH-FIX-UPSTREAM 0001-Add-KConfigGui-setSessionConfig.patch
+Patch1: 0001-Add-KConfigGui-setSessionConfig.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -123,7 +125,8 @@
 %lang_package -n libKF5ConfigCore%sonum
 %prep
 %setup -q
-%patch0 -p1
+#patch0 -p1
+%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert

++ 0001-Add-KConfigGui-setSessionConfig.patch ++
>From 9978cfd5ccd18509dd514b3a7ada8c158c209de1 Mon Sep 17 00:00:00 2001
From: Stefan Becker 
Date: Sat, 9 May 2015 17:16:27 +0300
Subject: [PATCH 1/1] Add KConfigGui::setSessionConfig()

When the application receives a saveState signal it needs to replace the
current KConfig object with a new one based on the QSessionManager
information. Add a new interface that accepts the new session id and key.

BUG: 346768
REVIEW: 123705
---
 src/gui/kconfiggui.cpp | 41 -
 src/gui/kconfiggui.h   | 17 +++--
 2 files changed, 47 insertions(+), 11 deletions(-)

diff --git a/src/gui/kconfiggui.cpp b/src/gui/kconfiggui.cpp
index 
0048c60aacbc2fa484491889abb6450777a222d3..67b6009a68cf3264f116231e3e9933cc31b9deca
 100644
--- a/src/gui/kconfiggui.cpp
+++ b/src/gui/kconfiggui.cpp
@@ -25,28 +25,51 @@
 
 #include 
 
+static QString configName(const QString &id, const QString &key)
+{
+return(QLatin1String("session/") + QGuiApplication::applicationName() +
+   QLatin1Char('_')  + id +
+   QLatin1Char('_')  + key);
+}
+
 static KConfig *s_sessionConfig = Q_NULLPTR;
 
 KConfig *KConfigGui::sessionConfig()
 {
-if (!s_sessionConfig) { // create an instance specific config object
-s_sessionConfig = new KConfig(sessionConfigName(), 
KConfig::SimpleConfig);
+#ifdef QT_NO_SESSIONMANAGER
+#error QT_NO_SESSIONMANAGER was set, this will not compile. Reconfigure Qt 
with Session management support.
+#endif
+if (!hasSessionConfig()) {
+// create the default instance specific config object
+// from applications' -session command line parameter
+s_sessionConfig = new KConfig(configName(qApp->sessionId(),
+ qApp->sessionKey()),
+  KConfig::SimpleConfig);
 }
+
 return s_sessionConfig;
 }
 
+void KConfigGui::setSessionConfig(const QString &id, const QString &key)
+{
+if (hasSessionConfig()) {
+delete s_sessionConfig;
+s_sessionConfig = Q_NULLPTR;
+}
+
+// create a new instance specific config object from supplied id & key
+s_sessionConfig = new KConfig(configName(id, key),
+  KConfig::SimpleConfig);
+}
+
 bool KConfigGui::hasSessionConfig()
 {
 return s_sessionConfig != Q_NULLPTR;
 }
 
+#ifndef KDE_NO_DEPRECATED
 QString KConfigGui::sessionConfigName()
 {
-#ifdef QT_NO_SESSIONMANAGER
-#error QT_NO_SESSIONMANAGER was set, this will not compile. Reconfigure Qt 
with Session management support.
-#endif
-const QString sessionKey = qApp->sessionKey();
-const QString sessionId = qApp->sessionId();
-return 
QString(QLatin1String("session/%1_%2_%3")).arg(QGuiApplication::applicationName()).arg(sessionId).arg(sessionKey);
+return sessionConfig()->nam

commit gnome-control-center for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2015-05-18 22:18:03

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


Package is "gnome-control-center"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2015-04-23 07:56:20.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2015-05-18 22:18:04.0 +0200
@@ -1,0 +2,22 @@
+Fri May 15 09:36:13 UTC 2015 - antoine.belv...@laposte.net
+
+- Keep translations in the desktop files for GNOME Shell search
+  results (boo#913870):
+  + Add -n (--no-i18n) to %suse_update_desktop_file.
+  + Add some missing desktop files.
+
+---
+Wed May 13 09:36:20 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix a couple of minor memory leaks.
+  + Network: Prevent some dialogs from becoming too wide.
+  + Notifications:
+- Make section headings accessible.
+- Do not show nameless apps.
+- Align icons.
+  + Printers: Update printer options correctly.
+  + Wacom: Stop using removed last-calibration-resolution gsetting.
+  + Updated translations.
+
+---

Old:

  gnome-control-center-3.16.1.tar.xz

New:

  gnome-control-center-3.16.2.tar.xz



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.uXkNdO/_old  2015-05-18 22:18:06.0 +0200
+++ /var/tmp/diff_new_pack.uXkNdO/_new  2015-05-18 22:18:06.0 +0200
@@ -29,7 +29,7 @@
 %define with_cacert_patch 1
 
 Name:   gnome-control-center
-Version:3.16.1
+Version:3.16.2
 Release:0
 # 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
@@ -216,22 +216,28 @@
 %find_lang %{name}-2.0-timezones %{name}-2.0.lang
 %suse_update_desktop_file gnome-control-center
 # capplets
-%suse_update_desktop_file gnome-background-panel 
X-SuSE-ControlCenter-LookAndFeel
-%suse_update_desktop_file gnome-color-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-datetime-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-display-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-info-panel X-SuSE-ControlCenter-Personal
-%suse_update_desktop_file gnome-keyboard-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-mouse-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-online-accounts-panel 
X-SuSE-ControlCenter-Personal
-%suse_update_desktop_file gnome-power-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-printers-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-region-panel X-SuSE-ControlCenter-Personal
-%suse_update_desktop_file gnome-sound-panel X-SuSE-ControlCenter-Hardware
-%suse_update_desktop_file gnome-universal-access-panel 
X-SuSE-ControlCenter-Personal
-%suse_update_desktop_file gnome-user-accounts-panel 
X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-background-panel 
X-SuSE-ControlCenter-LookAndFeel
+%suse_update_desktop_file -n gnome-bluetooth-panel 
X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-color-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-datetime-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-display-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-info-panel X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-keyboard-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-mouse-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-network-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-notifications-panel 
X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-online-accounts-panel 
X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-power-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-printers-panel X-SuSE-ControlCenter-Hardware
+%suse_update_desktop_file -n gnome-privacy-panel X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-region-panel X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-search-panel X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-sharing-panel X-SuSE-ControlCenter-Personal
+%suse_update_desktop_file -n gnome-sound-panel X-SuSE-ControlCenter-Hardware
+%suse_update_

commit eog for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package eog for openSUSE:Factory checked in 
at 2015-05-18 22:16:58

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


Package is "eog"

Changes:

--- /work/SRC/openSUSE:Factory/eog/eog.changes  2015-04-23 08:03:16.0 
+0200
+++ /work/SRC/openSUSE:Factory/.eog.new/eog.changes 2015-05-18 
22:16:59.0 +0200
@@ -1,0 +2,8 @@
+Thu May 14 10:09:14 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Install symbolic app icon.
+  + Bugs fixed: bgo#746842, bgo#747806, bgo#748653.
+  + Updated translations.
+
+---

Old:

  eog-3.16.1.tar.xz

New:

  eog-3.16.2.tar.xz



Other differences:
--
++ eog.spec ++
--- /var/tmp/diff_new_pack.wNxMli/_old  2015-05-18 22:17:00.0 +0200
+++ /var/tmp/diff_new_pack.wNxMli/_new  2015-05-18 22:17:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   eog
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:Image Viewer for GNOME
 License:GPL-2.0+ and LGPL-2.1+
@@ -96,13 +96,13 @@
 %{_datadir}/applications/eog.desktop
 %dir %{_datadir}/appdata
 %{_datadir}/appdata/eog.appdata.xml
-# %{_datadir}/eog/gir-1.0/ goes to the -devel package.
-%exclude %{_datadir}/eog/gir-1.0/
+%{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_datadir}/eog/
-%{_datadir}/icons/*/*/*/*.png
 %{_datadir}/GConf/gsettings/eog.convert
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.gschema.xml
+# %%{_datadir}/eog/gir-1.0/ goes to the -devel package.
+%exclude %{_datadir}/eog/gir-1.0/
 
 %files lang -f %{name}.lang
 

++ eog-3.16.1.tar.xz -> eog-3.16.2.tar.xz ++
 10128 lines of diff (skipped)




commit zenity for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package zenity for openSUSE:Factory checked 
in at 2015-05-18 22:15:53

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


Package is "zenity"

Changes:

--- /work/SRC/openSUSE:Factory/zenity/zenity.changes2014-09-30 
19:37:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.zenity.new/zenity.changes   2015-05-18 
22:15:55.0 +0200
@@ -1,0 +2,33 @@
+Thu May 14 19:29:41 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + bgo#749359: zenity --list produces incorrect output.
+  + Do not make zenity_util_show_dialog() X11 specific.
+  + Use upstream gettext instead intltool.
+  + Improve some strings.
+  + option.c: Fixing typo in extra-button option.
+  + Merge branch 'jjardon/no_deprecated'.
+  + ADD gchar **extra_label TO struct ZenityData.
+  + Allow build if GDK_WINDOWING_X11 not set.
+  + Fix bgo#734196.
+  + Updated translations.
+
+---
+Wed May 13 13:49:04 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.0:
+  + Allow user to interact with --text-info --html WebView.
+  + bgo#700249: Progress dialog does not wrap.
+  + Better sollution for wrap text.
+  + bgo#734049: zenity --text-info chokes on some UTF-8 string.
+  + Allow --text-info to load resources also from relative file://
+URIs.
+  + bgo#685051: Adding --mid-search option to --list.
+  + Fixing g_timeout_add calls.
+  + Fixing remain g_timeout_add.
+  + Allow --text-info to load resources from absolute file:// URIs.
+  + Added time-remaining support to progress bars.
+  + Don't quit zenity when the input stream is closed.
+  + Updated translations.
+
+---

Old:

  zenity-3.14.0.tar.xz

New:

  zenity-3.16.2.tar.xz



Other differences:
--
++ zenity.spec ++
--- /var/tmp/diff_new_pack.sGW8JO/_old  2015-05-18 22:15:56.0 +0200
+++ /var/tmp/diff_new_pack.sGW8JO/_new  2015-05-18 22:15:56.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package zenity
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,13 +17,13 @@
 
 
 Name:   zenity
-Version:3.14.0
+Version:3.16.2
 Release:0
 Summary:GNOME Command Line Dialog Utility
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/zenity/3.14/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/zenity/3.16/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream

++ zenity-3.14.0.tar.xz -> zenity-3.16.2.tar.xz ++
 51334 lines of diff (skipped)




commit gnome-shell for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2015-05-18 22:14:50

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


Package is "gnome-shell"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2015-04-23 
08:00:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2015-05-18 22:14:50.0 +0200
@@ -1,0 +2,15 @@
+Thu May 14 17:59:50 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Make event highlight in calendar more prominent (bgo#747715).
+  + Fix keyboard focus when focusing a notification banner
+(bgo#747205).
+  + Move notification banners below the dateMenu (bgo#745910).
+  + Increase visibility of expanders in alt-tab popup
+(bgo#745058).
+  + Ensure suspend inhibitors are released when VT switched away
+(bgo#749228).
+  + Misc. bug fixes.
+  + Updated translations.
+
+---

Old:

  gnome-shell-3.16.1.tar.xz

New:

  gnome-shell-3.16.2.tar.xz



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.Usb0Jp/_old  2015-05-18 22:14:52.0 +0200
+++ /var/tmp/diff_new_pack.Usb0Jp/_new  2015-05-18 22:14:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-shell
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:GNOME Shell
 License:GPL-2.0+

++ gnome-shell-3.16.1.tar.xz -> gnome-shell-3.16.2.tar.xz ++
 6023 lines of diff (skipped)




commit mutter for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package mutter for openSUSE:Factory checked 
in at 2015-05-18 22:13:44

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


Package is "mutter"

Changes:

--- /work/SRC/openSUSE:Factory/mutter/mutter.changes2015-04-23 
08:02:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.mutter.new/mutter.changes   2015-05-18 
22:13:46.0 +0200
@@ -1,0 +2,9 @@
+Thu May 14 17:56:07 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix scroll button setting (bgo#747967).
+  + Don't reset idle time for non-hardware events (bgo#748541).
+  + Honor default value for click method setting (bgo#746290).
+  + Misc. bug fixes (bgo#748478).
+
+---

Old:

  mutter-3.16.1.1.tar.xz

New:

  mutter-3.16.2.tar.xz



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.klhyfd/_old  2015-05-18 22:13:47.0 +0200
+++ /var/tmp/diff_new_pack.klhyfd/_new  2015-05-18 22:13:47.0 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   mutter
-Version:3.16.1.1
+Version:3.16.2
 Release:0
 Summary:Window and compositing manager based on Clutter
 License:GPL-2.0+

++ mutter-3.16.1.1.tar.xz -> mutter-3.16.2.tar.xz ++
 10672 lines of diff (skipped)




commit gnome-photos for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-photos for openSUSE:Factory 
checked in at 2015-05-18 22:12:39

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


Package is "gnome-photos"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-photos/gnome-photos.changes
2015-03-30 19:17:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-photos.new/gnome-photos.changes   
2015-05-18 22:12:41.0 +0200
@@ -1,0 +2,7 @@
+Wed May 13 13:01:21 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Bugs fixed: bgo#746252, bgo#745972, bgo#747696.
+  + Updated translations.
+
+---

Old:

  gnome-photos-3.16.0.tar.xz

New:

  gnome-photos-3.16.2.tar.xz



Other differences:
--
++ gnome-photos.spec ++
--- /var/tmp/diff_new_pack.D2FiDj/_old  2015-05-18 22:12:42.0 +0200
+++ /var/tmp/diff_new_pack.D2FiDj/_new  2015-05-18 22:12:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-photos
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Photo viewer for GNOME
 License:GPL-3.0+

++ gnome-photos-3.16.0.tar.xz -> gnome-photos-3.16.2.tar.xz ++
 29283 lines of diff (skipped)




commit quadrapassel for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package quadrapassel for openSUSE:Factory 
checked in at 2015-05-18 22:11:38

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


Package is "quadrapassel"

Changes:

--- /work/SRC/openSUSE:Factory/quadrapassel/quadrapassel.changes
2015-03-30 19:16:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.quadrapassel.new/quadrapassel.changes   
2015-05-18 22:11:39.0 +0200
@@ -1,0 +2,9 @@
+Wed May 13 13:43:38 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Add symbolic icon.
+  + Updated translations.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  quadrapassel-3.16.0.tar.xz

New:

  quadrapassel-3.16.1.tar.xz



Other differences:
--
++ quadrapassel.spec ++
--- /var/tmp/diff_new_pack.ZK2V5l/_old  2015-05-18 22:11:40.0 +0200
+++ /var/tmp/diff_new_pack.ZK2V5l/_new  2015-05-18 22:11:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   quadrapassel
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:Tetris Game for GNOME
 License:GPL-2.0+
@@ -63,13 +63,11 @@
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 
 %files
 %defattr(-,root,root)
@@ -81,8 +79,7 @@
  %{_datadir}/appdata/quadrapassel.appdata.xml
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.%{name}.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/%{name}.*
-%{_datadir}/icons/HighContrast
+%{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_mandir}/man6/%{name}.6%{?ext_man}
 
 %files lang -f %{name}.lang

++ quadrapassel-3.16.0.tar.xz -> quadrapassel-3.16.1.tar.xz ++
 16264 lines of diff (skipped)




commit gnome-boxes for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-boxes for openSUSE:Factory 
checked in at 2015-05-18 22:10:39

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


Package is "gnome-boxes"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-boxes/gnome-boxes.changes  2015-04-23 
07:58:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-boxes.new/gnome-boxes.changes 
2015-05-18 22:10:40.0 +0200
@@ -1,0 +2,12 @@
+Wed May 13 10:21:31 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Provide symbolic icon.
+  + Case-insensitive check for file extension.
+  + Remove redundant work-around for Windows XP installer.
+  + Ensure "Saving…" status goes away on error.
+  + Only autosave running machines.
+  + Assign 2G RAM to VMs by default.
+  + Updated translations.
+
+---

Old:

  gnome-boxes-3.16.1.tar.xz

New:

  gnome-boxes-3.16.2.tar.xz



Other differences:
--
++ gnome-boxes.spec ++
--- /var/tmp/diff_new_pack.gwZyh8/_old  2015-05-18 22:10:41.0 +0200
+++ /var/tmp/diff_new_pack.gwZyh8/_new  2015-05-18 22:10:41.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-boxes
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:A simple GNOME 3 application to access remote or virtual 
systems
 License:LGPL-2.0+
@@ -117,7 +117,7 @@
 %{_datadir}/applications/org.gnome.Boxes.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.boxes.gschema.xml
 %{_datadir}/gnome-boxes/
-%{_datadir}/icons/hicolor/*/apps/gnome-boxes.*
+%{_datadir}/icons/hicolor/*/apps/gnome-boxes*
 
 %files -n gnome-shell-search-provider-boxes
 %defattr(-,root,root)

++ gnome-boxes-3.16.1.tar.xz -> gnome-boxes-3.16.2.tar.xz ++
 27010 lines of diff (skipped)




commit gnome-mahjongg for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-mahjongg for openSUSE:Factory 
checked in at 2015-05-18 22:09:39

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


Package is "gnome-mahjongg"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-mahjongg/gnome-mahjongg.changes
2015-03-30 19:27:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-mahjongg.new/gnome-mahjongg.changes   
2015-05-18 22:09:40.0 +0200
@@ -1,0 +2,8 @@
+Wed May 13 10:26:56 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Add symbolic icon.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  gnome-mahjongg-3.16.0.tar.xz

New:

  gnome-mahjongg-3.16.1.tar.xz



Other differences:
--
++ gnome-mahjongg.spec ++
--- /var/tmp/diff_new_pack.juPTz0/_old  2015-05-18 22:09:42.0 +0200
+++ /var/tmp/diff_new_pack.juPTz0/_new  2015-05-18 22:09:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-mahjongg
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:Mahjong Solitaire Game for GNOME
 License:GPL-2.0+
@@ -62,13 +62,11 @@
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 
 %files
 %defattr(-,root,root)
@@ -80,8 +78,7 @@
 %{_datadir}/appdata/gnome-mahjongg.appdata.xml
 %{_datadir}/applications/gnome-mahjongg.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.mahjongg.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/%{name}.*
-%{_datadir}/icons/HighContrast/
+%{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_mandir}/man6/%{name}.6%{?ext_man}
 
 %files lang -f %{name}.lang

++ gnome-mahjongg-3.16.0.tar.xz -> gnome-mahjongg-3.16.1.tar.xz ++
 15992 lines of diff (skipped)




commit tali for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package tali for openSUSE:Factory checked in 
at 2015-05-18 22:08:39

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


Package is "tali"

Changes:

--- /work/SRC/openSUSE:Factory/tali/tali.changes2015-03-30 
19:18:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.tali.new/tali.changes   2015-05-18 
22:08:40.0 +0200
@@ -1,0 +2,9 @@
+Wed May 13 09:55:27 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Add symbolic icon.
+  + Updated translations.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  tali-3.16.0.tar.xz

New:

  tali-3.16.1.tar.xz



Other differences:
--
++ tali.spec ++
--- /var/tmp/diff_new_pack.ruv6zG/_old  2015-05-18 22:08:41.0 +0200
+++ /var/tmp/diff_new_pack.ruv6zG/_new  2015-05-18 22:08:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tali
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:Yahtzee Game for GNOME
 License:GPL-2.0+
@@ -62,13 +62,11 @@
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 
 %files
 %defattr(-,root,root)
@@ -80,8 +78,7 @@
 %{_datadir}/appdata/tali.appdata.xml
 %{_datadir}/applications/tali.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.%{name}.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/%{name}.*
-%{_datadir}/icons/HighContrast/
+%{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_mandir}/man6/%{name}.6%{?ext_man}
 
 %files lang -f %{name}.lang

++ tali-3.16.0.tar.xz -> tali-3.16.1.tar.xz ++
 2004 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/tali-3.16.0/NEWS new/tali-3.16.1/NEWS
--- old/tali-3.16.0/NEWS2015-03-23 21:57:33.0 +0100
+++ new/tali-3.16.1/NEWS2015-05-13 05:39:24.0 +0200
@@ -1,3 +1,9 @@
+Tali 3.16.1
+===
+
+* Add symbolic icon (Jakub Steiner)
+* Latvian translation update
+
 Tali 3.16.0
 ===
 
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/tali-3.16.0/compile new/tali-3.16.1/compile
--- old/tali-3.16.0/compile 2015-03-23 21:58:15.0 +0100
+++ new/tali-3.16.1/compile 2015-05-13 05:39:50.0 +0200
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-14.11; # UTC
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999-2014 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This program is free software; you can redistribute it and/or modify
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/tali-3.16.0/configure.ac new/tali-3.16.1/configure.ac
--- old/tali-3.16.0/configure.ac2015-03-23 21:56:40.0 +0100
+++ new/tali-3.16.1/configure.ac2015-05-13 05:38:58.0 +0200
@@ -1,5 +1,5 @@
 AC_PREREQ([2.63])
-AC_INIT([Tali], [3.16.0], [https://bugzilla.gnome.org/],
+AC_INIT([Tali], [3.16.1], [https://bugzilla.gnome.org/],
 [tali], [https://wiki.gnome.org/Apps/Tali])
 AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign])
 AM_SILENT_RULES([yes])
Files old/tali-3.16.0/data/icons/HighContrast/16x16/tali.png and 
new/tali-3.16.1/data/icons/HighContrast/16x16/tali.png differ
Files old/tali-3.16.0/data/icons/HighContrast/22x22/tali.png and 
new/tali-3.16.1/data/icons/HighContrast/22x22/tali.png differ
Files old/tali-3.16.0/data/icons/HighContrast/24x24/tali.png and 
new/tali-3.16.1/data/icons/HighContrast/24x24/tali.png differ
Files old/tali-3.16.0/data/icons/HighContrast/256x256/tali.png and 
new/tali-3.16.1/data/icons/HighContrast/256x256/tali.png differ
Files old/tali-3.16.0/data/icons/HighContrast/32x32/tali.png and 
new/tali-3.16.1/data/i

commit gnome-font-viewer for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-font-viewer for 
openSUSE:Factory checked in at 2015-05-18 22:07:38

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


Package is "gnome-font-viewer"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-font-viewer/gnome-font-viewer.changes  
2015-03-30 19:19:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-font-viewer.new/gnome-font-viewer.changes 
2015-05-18 22:07:39.0 +0200
@@ -1,0 +2,6 @@
+Wed May 13 09:34:27 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Updated translations.
+
+---

Old:

  gnome-font-viewer-3.16.0.tar.xz

New:

  gnome-font-viewer-3.16.2.tar.xz



Other differences:
--
++ gnome-font-viewer.spec ++
--- /var/tmp/diff_new_pack.1tvLdR/_old  2015-05-18 22:07:40.0 +0200
+++ /var/tmp/diff_new_pack.1tvLdR/_new  2015-05-18 22:07:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-font-viewer
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:A font viewer utility for GNOME
 License:GPL-2.0+

++ gnome-font-viewer-3.16.0.tar.xz -> gnome-font-viewer-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-font-viewer-3.16.0/NEWS 
new/gnome-font-viewer-3.16.2/NEWS
--- old/gnome-font-viewer-3.16.0/NEWS   2015-03-24 01:52:37.0 +0100
+++ new/gnome-font-viewer-3.16.2/NEWS   2015-05-13 04:52:15.0 +0200
@@ -1,3 +1,8 @@
+GNOME Font Viewer - 3.16.2
+---
+
+ • Translation updates
+
 GNOME Font Viewer - 3.16.0
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-font-viewer-3.16.0/aclocal.m4 
new/gnome-font-viewer-3.16.2/aclocal.m4
--- old/gnome-font-viewer-3.16.0/aclocal.m4 2015-03-24 01:53:44.0 
+0100
+++ new/gnome-font-viewer-3.16.2/aclocal.m4 2015-05-13 04:52:54.0 
+0200
@@ -20,90 +20,6 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 
'autoreconf'.])])
 
-dnl GLIB_GSETTINGS
-dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether
-dnl the schema should be compiled
-dnl
-
-AC_DEFUN([GLIB_GSETTINGS],
-[
-  m4_pattern_allow([AM_V_GEN])
-  AC_ARG_ENABLE(schemas-compile,
-AS_HELP_STRING([--disable-schemas-compile],
-   [Disable regeneration of gschemas.compiled on 
install]),
-[case ${enableval} in
-  yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE=""  ;;
-  no)  GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;;
-  *) AC_MSG_ERROR([bad value ${enableval} for 
--enable-schemas-compile]) ;;
- esac])
-  AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE])
-  PKG_PROG_PKG_CONFIG([0.16])
-  AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas])
-  if test x$cross_compiling != xyes; then
-GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable glib_compile_schemas gio-2.0`
-  else
-AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas)
-  fi
-  AC_SUBST(GLIB_COMPILE_SCHEMAS)
-  if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then
-ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2])
-  else
-ifelse([$1],,[:],[$1])
-  fi
-
-  GSETTINGS_RULES='
-.PHONY : uninstall-gsettings-schemas install-gsettings-schemas 
clean-gsettings-schemas
-
-mostlyclean-am: clean-gsettings-schemas
-
-gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE))
-
-%.gschema.valid: %.gschema.xml $(gsettings__enum_file)
-   $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix 
--schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && 
touch [$]@
-
-all-am: $(gsettings_SCHEMAS:.xml=.valid)
-uninstall-am: uninstall-gsettings-schemas
-install-data-am: install-gsettings-schemas
-
-.SECONDARY: $(gsettings_SCHEMAS)
-
-install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file)
-   @$(NORMAL_INSTALL)
-   if test -n "$^"; then \
-   test -z "$(gsettingsschemadir)" || $(MKDIR_P) 
"$(DESTDIR)$(gsettingsschemadir)"; \
-   $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \
-   test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || 
$(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \
-   fi
-
-uninstall-gsettings-schemas:
-   @$(NORMAL_UNINSTALL)
-  

commit gnome-screenshot for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-screenshot for 
openSUSE:Factory checked in at 2015-05-18 22:06:34

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


Package is "gnome-screenshot"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-screenshot/gnome-screenshot.changes
2015-05-07 09:22:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-screenshot.new/gnome-screenshot.changes   
2015-05-18 22:06:34.0 +0200
@@ -1,0 +2,11 @@
+Wed May 13 09:45:29 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix translation not getting applied.
+  + Fix schema translations.
+  + Updated translations.
+- Drop gnome-screenshot-fix-translations.patch: Fixed upstream.
+- Due to above fix, drop libtool BuildRequires and call to
+  autoreconf.
+
+---

Old:

  gnome-screenshot-3.16.0.tar.xz
  gnome-screenshot-fix-translations.patch

New:

  gnome-screenshot-3.16.2.tar.xz



Other differences:
--
++ gnome-screenshot.spec ++
--- /var/tmp/diff_new_pack.4qaeQf/_old  2015-05-18 22:06:35.0 +0200
+++ /var/tmp/diff_new_pack.4qaeQf/_new  2015-05-18 22:06:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-screenshot
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Utility to take pictures of your screen
 License:GPL-2.0+
@@ -26,11 +26,7 @@
 Source: 
http://download.gnome.org/sources/gnome-screenshot/3.16/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE gnome-screenshot-onlyshowin.patch dims...@opensuse.org -- 
OnlyShowIn=GNOME: fix brp build check, allowing to use the icon from the gnome 
theme.
 Patch0: gnome-screenshot-onlyshowin.patch
-# PATCH-FIX-UPSTREAM gnome-screenshot-fix-translations.patch bgo#746973 
bgo#747125 zai...@opensuse.org -- Fix translations not being applied. From git 
master.
-Patch1: gnome-screenshot-fix-translations.patch
 BuildRequires:  intltool >= 0.40.0
-# Needed for patch1
-BuildRequires:  libtool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(glib-2.0) >= 2.35.1
@@ -51,12 +47,9 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 translation-update-upstream
 
 %build
-# Needed for patch1
-autoreconf -fiv
 %configure --disable-static
 make %{?_smp_mflags}
 

++ gnome-screenshot-3.16.0.tar.xz -> gnome-screenshot-3.16.2.tar.xz ++
 4849 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/gnome-screenshot-3.16.0/NEWS new/gnome-screenshot-3.16.2/NEWS
--- old/gnome-screenshot-3.16.0/NEWS2015-03-24 01:40:52.0 +0100
+++ new/gnome-screenshot-3.16.2/NEWS2015-05-13 04:54:24.0 +0200
@@ -1,3 +1,10 @@
+GNOME Screenshot 3.16.2 - 12th May 2015
+===
+
+- Fix translation not getting applied
+- Fix schema translations
+- Translation updates
+
 GNOME Screenshot 3.16.0 - 23th March 2015
 =
 
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/gnome-screenshot-3.16.0/config.h.in new/gnome-screenshot-3.16.2/config.h.in
--- old/gnome-screenshot-3.16.0/config.h.in 2015-03-24 01:41:45.0 
+0100
+++ new/gnome-screenshot-3.16.2/config.h.in 2015-05-13 04:55:02.0 
+0200
@@ -1,11 +1,29 @@
 /* config.h.in.  Generated from configure.ac by autoheader.  */
 
+/* always defined to indicate that i18n is enabled */
+#undef ENABLE_NLS
+
 /* The name of the gettext domain */
 #undef GETTEXT_PACKAGE
 
+/* Define to 1 if you have the `bind_textdomain_codeset' function. */
+#undef HAVE_BIND_TEXTDOMAIN_CODESET
+
+/* Define to 1 if you have the `dcgettext' function. */
+#undef HAVE_DCGETTEXT
+
+/* Define if the GNU gettext() function is already present or preinstalled. */
+#undef HAVE_GETTEXT
+
 /* Define to 1 if you have the  header file. */
 #undef HAVE_INTTYPES_H
 
+/* Define if your  file defines LC_MESSAGES. */
+#undef HAVE_LC_MESSAGES
+
+/* Define to 1 if you have the  header file. */
+#undef HAVE_LOCALE_H
+
 /* Define to 1 if you have the  header file. */

commit gnome-themes-standard for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-themes-standard for 
openSUSE:Factory checked in at 2015-05-18 22:05:29

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


Package is "gnome-themes-standard"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-themes-standard/gnome-themes-standard.changes  
2015-03-30 19:17:16.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-themes-standard.new/gnome-themes-standard.changes
 2015-05-18 22:05:31.0 +0200
@@ -1,0 +2,6 @@
+Wed May 13 09:51:24 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Updated translations.
+
+---

Old:

  gnome-themes-standard-3.16.0.tar.xz

New:

  gnome-themes-standard-3.16.2.tar.xz



Other differences:
--
++ gnome-themes-standard.spec ++
--- /var/tmp/diff_new_pack.A9VSuW/_old  2015-05-18 22:05:32.0 +0200
+++ /var/tmp/diff_new_pack.A9VSuW/_new  2015-05-18 22:05:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-themes-standard
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Standard GNOME Themes
 License:LGPL-2.1+

++ gnome-themes-standard-3.16.0.tar.xz -> 
gnome-themes-standard-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-themes-standard-3.16.0/ChangeLog 
new/gnome-themes-standard-3.16.2/ChangeLog
--- old/gnome-themes-standard-3.16.0/ChangeLog  2015-03-24 02:09:53.0 
+0100
+++ new/gnome-themes-standard-3.16.2/ChangeLog  2015-05-13 05:20:21.0 
+0200
@@ -1,5 +1,35 @@
 # Generated by Makefile. Do not edit.
 
+commit b3e563186add819e43cadccef900c0caf557df77
+Author: Matthias Clasen 
+Date:   Tue May 12 23:11:38 2015 -0400
+
+3.16.2
+
+ NEWS | 4 
+ configure.ac | 2 +-
+ 2 files changed, 5 insertions(+), 1 deletion(-)
+
+commit c6af12a5c4eb12c771c6759ff7f7b23a7cb62b7e
+Author: Cédric Valmary 
+Date:   Tue Apr 28 13:34:32 2015 +
+
+Added Occitan translation
+
+ po/LINGUAS |  1 +
+ po/oc.po   | 54 ++
+ 2 files changed, 55 insertions(+)
+
+commit 80c088a9c2358cfca24e3f9332ebbe79fa97d643
+Author: Sveinn í Felli 
+Date:   Tue Apr 21 14:20:47 2015 +
+
+Added Icelandic translation
+
+ po/LINGUAS |  1 +
+ po/is.po   | 36 
+ 2 files changed, 37 insertions(+)
+
 commit 5cd42f1cecf75f6608639664977600866ebdaa4c
 Author: Matthias Clasen 
 Date:   Mon Mar 23 21:03:01 2015 -0400
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-themes-standard-3.16.0/NEWS 
new/gnome-themes-standard-3.16.2/NEWS
--- old/gnome-themes-standard-3.16.0/NEWS   2015-03-24 02:02:30.0 
+0100
+++ new/gnome-themes-standard-3.16.2/NEWS   2015-05-13 05:11:26.0 
+0200
@@ -1,3 +1,7 @@
+3.16.2
+==
+ - translation updates
+
 3.16.0
 ==
  - update README
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-themes-standard-3.16.0/aclocal.m4 
new/gnome-themes-standard-3.16.2/aclocal.m4
--- old/gnome-themes-standard-3.16.0/aclocal.m4 2015-03-24 02:03:31.0 
+0100
+++ new/gnome-themes-standard-3.16.2/aclocal.m4 2015-05-13 05:15:21.0 
+0200
@@ -20,218 +20,6 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 
'autoreconf'.])])
 
-# Configure paths for GLIB
-# Owen Taylor 1997-2001
-
-dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND 
[, MODULES)
-dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
-dnl gthread, or gio is specified in MODULES, pass to pkg-config
-dnl
-AC_DEFUN([AM_PATH_GLIB_2_0],
-[dnl 
-dnl Get the cflags and libraries from pkg-config
-dnl
-AC_ARG_ENABLE(glibtest, [  --disable-glibtest  do not try to compile and 
run a test GLIB program],
-   , enable_glibtest=yes)
-
-  pkg_config_args=glib-2.0
-  for module in . $4
-  do
-  case "$module" in
- gmodule) 
- pkg_config_args="$pkg_config_args gmodule-2.0"
- ;;
- gmodule-no-export) 
- pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
- ;;
- gobject) 
- pkg_config_args="$pkg_config_args gobject-2.0"
- ;;
- gthread) 
- pkg_config_args="$pkg_config_args gthread-2.0"
- ;;
- gio*) 
- pkg_config_args="$pkg_config_args $module-2.0"
- ;;
-  esac
-  d

commit glib2 for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package glib2 for openSUSE:Factory checked 
in at 2015-05-18 22:04:25

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


Package is "glib2"

Changes:

--- /work/SRC/openSUSE:Factory/glib2/glib2.changes  2015-03-30 
19:26:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.glib2.new/glib2.changes 2015-05-18 
22:04:26.0 +0200
@@ -1,0 +2,10 @@
+Wed May 13 10:43:38 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.44.1:
+  + Don't redefine typedefs to avoid build problems on OpenBSD.
+  + Improve the default application algorithm.
+  + Bump the number of children a GType can have.
+  + Various testsuite improvements.
+  + Updated translations.
+
+---

Old:

  glib-2.44.0.tar.xz

New:

  glib-2.44.1.tar.xz



Other differences:
--
++ glib2.spec ++
--- /var/tmp/diff_new_pack.PJNEuq/_old  2015-05-18 22:04:28.0 +0200
+++ /var/tmp/diff_new_pack.PJNEuq/_new  2015-05-18 22:04:28.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   glib2
 %define _name glib
-Version:2.44.0
+Version:2.44.1
 Release:0
 # FIXME: find out if tapsets should really be in devel package or in main 
package
 Summary:General-Purpose Utility Library

++ glib-2.44.0.tar.xz -> glib-2.44.1.tar.xz ++
/work/SRC/openSUSE:Factory/glib2/glib-2.44.0.tar.xz 
/work/SRC/openSUSE:Factory/.glib2.new/glib-2.44.1.tar.xz differ: char 26, line 1




commit empathy for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package empathy for openSUSE:Factory checked 
in at 2015-05-18 22:03:20

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


Package is "empathy"

Changes:

--- /work/SRC/openSUSE:Factory/empathy/empathy.changes  2015-04-23 
08:00:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.empathy.new/empathy.changes 2015-05-18 
22:03:20.0 +0200
@@ -1,0 +2,12 @@
+Wed May 13 11:37:35 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.12.10:
+  + bgo#741771: Preferences dialog expands to absurd width.
+  + bgo#745504: Fix preferences with modern gtk+.
+  + bgo#746841: Provide a scalable -symbolic variant of the app
+icon.
+  + bgo#747460: Initial empathy accounts window is too wide.
+  + Don't crash when running in Wayland.
+  + Updated translations.
+
+---

Old:

  empathy-3.12.9.tar.xz

New:

  empathy-3.12.10.tar.xz



Other differences:
--
++ empathy.spec ++
--- /var/tmp/diff_new_pack.ip73iW/_old  2015-05-18 22:03:21.0 +0200
+++ /var/tmp/diff_new_pack.ip73iW/_new  2015-05-18 22:03:21.0 +0200
@@ -19,7 +19,7 @@
 %define with_geocode 1
 
 Name:   empathy
-Version:3.12.9
+Version:3.12.10
 Release:0
 # FIXME: re-enable parallel build
 Summary:Instant Messenger Client for GNOME, based on Telepathy
@@ -159,7 +159,7 @@
 %{_bindir}/empathy-accounts
 %{_bindir}/empathy-debugger
 %{_datadir}/adium/
-%{_datadir}/icons/hicolor/*/apps/empathy.*
+%{_datadir}/icons/hicolor/*/apps/empathy*
 %dir %{_datadir}/appdata
 %{_datadir}/appdata/empathy.appdata.xml
 %{_datadir}/applications/empathy.desktop

++ empathy-3.12.9.tar.xz -> empathy-3.12.10.tar.xz ++
 8390 lines of diff (skipped)




commit gnome-terminal for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-terminal for openSUSE:Factory 
checked in at 2015-05-18 22:02:14

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


Package is "gnome-terminal"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal.changes
2015-04-23 08:00:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-terminal.new/gnome-terminal.changes   
2015-05-18 22:02:15.0 +0200
@@ -1,0 +2,7 @@
+Mon May 11 07:10:17 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.16.2:
+  + Bump vte dependency.
+  + Updated translations.
+
+---
@@ -212 +219 @@
-- Create new subpackae gnome-shell-search-provider-gnome-terminal,
+- Create new subpackage gnome-shell-search-provider-gnome-terminal,

Old:

  gnome-terminal-3.16.1.tar.xz

New:

  gnome-terminal-3.16.2.tar.xz



Other differences:
--
++ gnome-terminal.spec ++
--- /var/tmp/diff_new_pack.fbG9xv/_old  2015-05-18 22:02:16.0 +0200
+++ /var/tmp/diff_new_pack.fbG9xv/_new  2015-05-18 22:02:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-terminal
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:GNOME Terminal
 License:GPL-3.0+ and LGPL-2.1+
@@ -30,9 +30,9 @@
 Patch100:   gnome-terminal-transparency.patch
 # PATCH-FEATURE-OPENSUSE 
gnome-terminal-transparency-fix-for-broken-themes.patch dims...@opensuse.org -- 
Ensure the window is always painted
 Patch101:   gnome-terminal-transparency-fix-for-broken-themes.patch
-# Needed for search provider. It should not be needed in my opionion, we have 
to take this up with upstream, or just provide search provider interface 
definition file as source.
 # PATCH-FEATURE-OPENSUSE gnome-terminal-dark-theme.patch zai...@opensuse.org 
-- Allow gnome-terminal to have dark theme preferance.
 Patch102:   gnome-terminal-dark-theme.patch
+# Needed for search provider. It should not be needed in my opionion, we have 
to take this up with upstream, or just provide search provider interface 
definition file as source.
 BuildRequires:  gnome-shell
 BuildRequires:  intltool >= 0.50.0
 # Needed for patch 102
@@ -51,7 +51,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(libnautilus-extension) >= 3.0.0
 BuildRequires:  pkgconfig(uuid)
-BuildRequires:  pkgconfig(vte-2.91) >= 0.40.0
+BuildRequires:  pkgconfig(vte-2.91) >= 0.40.2
 BuildRequires:  pkgconfig(x11)
 Recommends: %{name}-lang
 Obsoletes:  gnome-core

++ gnome-terminal-3.16.1.tar.xz -> gnome-terminal-3.16.2.tar.xz ++
 6482 lines of diff (skipped)




commit gnome-chess for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-chess for openSUSE:Factory 
checked in at 2015-05-18 22:01:06

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


Package is "gnome-chess"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-chess/gnome-chess.changes  2015-05-11 
19:49:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-chess.new/gnome-chess.changes 
2015-05-18 22:01:07.0 +0200
@@ -5,0 +6,2 @@
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.



Other differences:
--
++ gnome-chess.spec ++
--- /var/tmp/diff_new_pack.SGMjne/_old  2015-05-18 22:01:08.0 +0200
+++ /var/tmp/diff_new_pack.SGMjne/_new  2015-05-18 22:01:08.0 +0200
@@ -68,13 +68,11 @@
 %post
 %glib2_gsettings_schema_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 %desktop_database_post
 
 %postun
 %glib2_gsettings_schema_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 %desktop_database_postun
 
 %files




commit geocode-glib for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2015-05-18 22:00:05

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


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2015-03-30 19:23:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2015-05-18 22:00:06.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 19:36:08 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix bugs in reverse geocode.
+
+---

Old:

  geocode-glib-3.16.0.tar.xz

New:

  geocode-glib-3.16.2.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.B7wjsp/_old  2015-05-18 22:00:07.0 +0200
+++ /var/tmp/diff_new_pack.B7wjsp/_new  2015-05-18 22:00:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-3.16.0.tar.xz -> geocode-glib-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/ChangeLog 
new/geocode-glib-3.16.2/ChangeLog
--- old/geocode-glib-3.16.0/ChangeLog   2015-03-22 20:05:01.0 +0100
+++ new/geocode-glib-3.16.2/ChangeLog   2015-05-12 20:23:39.0 +0200
@@ -1,3 +1,55 @@
+commit f626de7bf9b650a387e074d33b72ae33440e6c4f
+Author: Jonas Danielsson 
+Date:   Tue May 12 20:22:56 2015 +0200
+
+Release 3.16.2
+
+ NEWS | 13 +
+ configure.ac |  2 +-
+ 2 files changed, 14 insertions(+), 1 deletion(-)
+
+commit 8877b11ad4cdb172323ca5c229a74d4284c1b7e7
+Author: Jonas Danielsson 
+Date:   Mon Apr 6 20:04:16 2015 +0200
+
+reverse: Check for NULL from json_reader_list_members()
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/geocode-reverse.c | 4 
+ 1 file changed, 4 insertions(+)
+
+commit a7d4ffc80a33efcd3262b462ce8e66cc71f1e2c9
+Author: Jonas Danielsson 
+Date:   Mon Apr 6 20:01:54 2015 +0200
+
+reverse: Check for NULL result in reverse_resolve()
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/geocode-reverse.c | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+commit 31729af20f96c834932d8b65dfcab37dd7cd1c56
+Author: Jonas Danielsson 
+Date:   Sun Apr 12 21:03:48 2015 +0200
+
+test-gcglib: Add test for unsuccessful reverse
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/test-gcglib.c | 20 
+ 1 file changed, 20 insertions(+)
+
+commit bd00b896658abd8e314a63da0414d8578053ed13
+Author: Bastien Nocera 
+Date:   Mon Mar 30 15:28:44 2015 +0200
+
+forward: Move variable init in an inner block
+
+ geocode-glib/geocode-forward.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
 commit c7e81417ab0faee26ff353a63ab76dc153321524
 Author: Jonas Danielsson 
 Date:   Sun Mar 22 19:58:42 2015 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/NEWS new/geocode-glib-3.16.2/NEWS
--- old/geocode-glib-3.16.0/NEWS2015-03-22 19:58:32.0 +0100
+++ new/geocode-glib-3.16.2/NEWS2015-05-12 20:22:43.0 +0200
@@ -1,3 +1,16 @@
+3.16.2
+--
+
+Changes since 3.16.0:
+
+- Fix bugs in reverse geocode
+
+All contributors to this release:
+Bastien Nocera 
+Jonas Danielsson 
+
+No changes
+
 3.16.0
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/configure 
new/geocode-glib-3.16.2/configure
--- old/geocode-glib-3.16.0/configure   2015-03-22 19:59:57.0 +0100
+++ new/geocode-glib-3.16.2/configure   2015-05-12 20:23:34.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for geocode-glib 3.16.0.
+# Generated by GNU Autoconf 2.69 for geocode-glib 3.16.2.
 #
 # Report bugs to 
.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='geocode-glib'
 PACKAGE_TARNAME='geocode-glib'
-PACKAGE_VERSION='3.16.0'
-PACKAGE_STRING='geocode-glib 3.16.0'
+PACKAGE_VERSION='3.16.2'
+PACKAGE_STRING='geocode-glib 3.16.2'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=geocode-glib'
 PACKAGE_URL=''
 
@@ -1396,7 +1396,7 @@
   # Omit some internal or obsolete options to make the list less

commit orca for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package orca for openSUSE:Factory checked in 
at 2015-05-18 21:58:58

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


Package is "orca"

Changes:

--- /work/SRC/openSUSE:Factory/orca/orca.changes2015-04-23 
07:59:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.orca.new/orca.changes   2015-05-18 
21:58:59.0 +0200
@@ -1,0 +2,19 @@
+Tue May 12 19:01:48 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix traceback which can occur getting children via relationset.
+  + Add explicit braille handling for ROLE_PAGE so we update the
+line in Evince.
+  + Change default value of fallbackOnUnicodeData to False.
+  + Attempt to eliminate verbal spewage for links which lack
+meaningful information.
+  + Ignore text-selection-changed events from Gecko objects with no
+text.
+  + Hack around yet another missing object:state-changed:focused
+event for Gtk+.
+  + Provide a symbolic variant of the app icon.
+  + Work around a missing object:state-changed:focused event from
+LibreOffice.
+  + Updated translations.
+
+---

Old:

  orca-3.16.1.tar.xz

New:

  orca-3.16.2.tar.xz



Other differences:
--
++ orca.spec ++
--- /var/tmp/diff_new_pack.NeTRgc/_old  2015-05-18 21:59:00.0 +0200
+++ /var/tmp/diff_new_pack.NeTRgc/_new  2015-05-18 21:59:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   orca
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:Screen reader for GNOME
 License:LGPL-2.1+
@@ -91,8 +91,7 @@
 %{_bindir}/orca
 %{_sysconfdir}/xdg/autostart/orca-autostart.desktop
 %{_datadir}/applications/orca.desktop
-%{_datadir}/icons/hicolor/*/apps/orca.png
-%{_datadir}/icons/hicolor/scalable/apps/*.svg
+%{_datadir}/icons/hicolor/*/apps/orca*
 %{_datadir}/orca/
 %{_mandir}/man1/orca.1%{?ext_man}
 %{python3_sitelib}/orca/

++ orca-3.16.1.tar.xz -> orca-3.16.2.tar.xz ++
 31491 lines of diff (skipped)




commit gnome-disk-utility for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-disk-utility for 
openSUSE:Factory checked in at 2015-05-18 21:57:54

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


Package is "gnome-disk-utility"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-disk-utility/gnome-disk-utility.changes
2015-03-30 19:16:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-disk-utility.new/gnome-disk-utility.changes   
2015-05-18 21:57:55.0 +0200
@@ -1,0 +2,10 @@
+Tue May 12 18:58:58 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Provide symbolic app icon.
+  + Don't show name example when creating logical partition.
+  + Fix overly-wide benchmark dialog.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  gnome-disk-utility-3.16.0.tar.xz

New:

  gnome-disk-utility-3.16.1.tar.xz



Other differences:
--
++ gnome-disk-utility.spec ++
--- /var/tmp/diff_new_pack.eNomG3/_old  2015-05-18 21:57:56.0 +0200
+++ /var/tmp/diff_new_pack.eNomG3/_new  2015-05-18 21:57:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-disk-utility
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:Disks application for dealing with storage devices
 License:GPL-2.0+
@@ -73,13 +73,11 @@
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 
 %files
 %defattr(-,root,root,-)
@@ -92,7 +90,6 @@
 %{_datadir}/glib-2.0/schemas/org.gnome.Disks.gschema.xml
 
%{_datadir}/glib-2.0/schemas/org.gnome.settings-daemon.plugins.gdu-sd.gschema.xml
 %{_datadir}/icons/hicolor/*/apps/gnome-disks*
-%{_datadir}/icons/HighContrast/
 %{_libdir}/gnome-settings-daemon-3.0/gdu-sd-plugin.gnome-settings-plugin
 %{_libdir}/gnome-settings-daemon-3.0/libgdu-sd.so
 %{_mandir}/man1/gnome-disk-image-mounter.1%{?ext_man}

++ gnome-disk-utility-3.16.0.tar.xz -> gnome-disk-utility-3.16.1.tar.xz 
++
 9699 lines of diff (skipped)




commit gnome-maps for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-maps for openSUSE:Factory 
checked in at 2015-05-18 21:56:50

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


Package is "gnome-maps"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-maps/gnome-maps.changes2015-04-23 
07:56:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-maps.new/gnome-maps.changes   
2015-05-18 21:56:51.0 +0200
@@ -1,0 +2,7 @@
+Tue May 12 19:15:41 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix favorite popover size.
+  + Updated translations.
+
+---

Old:

  gnome-maps-3.16.1.tar.xz

New:

  gnome-maps-3.16.2.tar.xz



Other differences:
--
++ gnome-maps.spec ++
--- /var/tmp/diff_new_pack.WRPazO/_old  2015-05-18 21:56:52.0 +0200
+++ /var/tmp/diff_new_pack.WRPazO/_new  2015-05-18 21:56:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-maps
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:MAP Application for GNOME 3 
 License:GPL-2.0+

++ gnome-maps-3.16.1.tar.xz -> gnome-maps-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-maps-3.16.1/NEWS new/gnome-maps-3.16.2/NEWS
--- old/gnome-maps-3.16.1/NEWS  2015-04-13 21:27:52.0 +0200
+++ new/gnome-maps-3.16.2/NEWS  2015-05-12 20:20:40.0 +0200
@@ -1,3 +1,17 @@
+3.16.1 - May 12, 2015
+===
+
+Changes since 3.16.1
+
+- Fix favorite popover size
+
+- Added/updated/fixed translations:
+- Simplified Chinese
+
+All contributors to this release:
+Dean Chen 
+Jonas Danielsson 
+
 3.16.1 - April 13, 2015
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-maps-3.16.1/configure 
new/gnome-maps-3.16.2/configure
--- old/gnome-maps-3.16.1/configure 2015-04-13 21:29:24.0 +0200
+++ new/gnome-maps-3.16.2/configure 2015-05-12 20:22:08.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gnome-maps 3.16.1.
+# Generated by GNU Autoconf 2.69 for gnome-maps 3.16.2.
 #
 # Report bugs to .
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='gnome-maps'
 PACKAGE_TARNAME='gnome-maps'
-PACKAGE_VERSION='3.16.1'
-PACKAGE_STRING='gnome-maps 3.16.1'
+PACKAGE_VERSION='3.16.2'
+PACKAGE_STRING='gnome-maps 3.16.2'
 PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-maps'
 PACKAGE_URL=''
 
@@ -1390,7 +1390,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gnome-maps 3.16.1 to adapt to many kinds of systems.
+\`configure' configures gnome-maps 3.16.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1461,7 +1461,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gnome-maps 3.16.1:";;
+ short | recursive ) echo "Configuration of gnome-maps 3.16.2:";;
esac
   cat <<\_ACEOF
 
@@ -1587,7 +1587,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gnome-maps configure 3.16.1
+gnome-maps configure 3.16.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1865,7 +1865,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gnome-maps $as_me 3.16.1, which was
+It was created by gnome-maps $as_me 3.16.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2857,7 +2857,7 @@
 
 # Define the identity of the package.
  PACKAGE='gnome-maps'
- VERSION='3.16.1'
+ VERSION='3.16.2'
 
 
 # Some tools Automake needs.
@@ -13436,7 +13436,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by gnome-maps $as_me 3.16.1, which was
+This file was extended by gnome-maps $as_me 3.16.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -13502,7 +13502,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-gnome-maps config.status 3.16.1
+gnome-maps config.status 3.1

commit gcr for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gcr for openSUSE:Factory checked in 
at 2015-05-18 21:55:44

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


Package is "gcr"

Changes:

--- /work/SRC/openSUSE:Factory/gcr/gcr.changes  2015-03-30 19:12:13.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gcr.new/gcr.changes 2015-05-18 
21:55:45.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 18:56:11 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.0:
+  + No changes from 3.15.92.
+
+---

Old:

  gcr-3.15.92.tar.xz

New:

  gcr-3.16.0.tar.xz



Other differences:
--
++ gcr.spec ++
--- /var/tmp/diff_new_pack.RLewbT/_old  2015-05-18 21:55:46.0 +0200
+++ /var/tmp/diff_new_pack.RLewbT/_new  2015-05-18 21:55:46.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   gcr
-Version:3.15.92
+Version:3.16.0
 Release:0
 # FIXME: Verify if the requires in typelib-1_0-Gcr-3 is still correct and 
required (see bgo#725501).
 Summary:Library for Crypto UI related task
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org
-Source0:
http://download.gnome.org/sources/gcr/3.15/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/gcr/3.16/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 # For directory ownership
 BuildRequires:  dbus-1

++ gcr-3.15.92.tar.xz -> gcr-3.16.0.tar.xz ++
 28258 lines of diff (skipped)




commit four-in-a-row for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package four-in-a-row for openSUSE:Factory 
checked in at 2015-05-18 21:54:40

Comparing /work/SRC/openSUSE:Factory/four-in-a-row (Old)
 and  /work/SRC/openSUSE:Factory/.four-in-a-row.new (New)


Package is "four-in-a-row"

Changes:

--- /work/SRC/openSUSE:Factory/four-in-a-row/four-in-a-row.changes  
2015-04-23 07:56:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.four-in-a-row.new/four-in-a-row.changes 
2015-05-18 21:54:41.0 +0200
@@ -1,0 +2,8 @@
+Tue May 12 18:38:06 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Add symbolic icon.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  four-in-a-row-3.16.1.tar.xz

New:

  four-in-a-row-3.16.2.tar.xz



Other differences:
--
++ four-in-a-row.spec ++
--- /var/tmp/diff_new_pack.ktCHPb/_old  2015-05-18 21:54:42.0 +0200
+++ /var/tmp/diff_new_pack.ktCHPb/_new  2015-05-18 21:54:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   four-in-a-row
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:Connect Four Game for GNOME
 License:GPL-2.0+ and GPL-3.0+
@@ -63,13 +63,11 @@
 %glib2_gsettings_schema_post
 %desktop_database_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 
 %postun
 %glib2_gsettings_schema_postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 
 %files
 %defattr(-,root,root)
@@ -81,8 +79,7 @@
 %{_datadir}/appdata/four-in-a-row.appdata.xml
 %{_datadir}/applications/four-in-a-row.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.%{name}.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/%{name}.*
-%{_datadir}/icons/HighContrast/
+%{_datadir}/icons/hicolor/*/apps/%{name}*
 %{_mandir}/man6/%{name}.6%{?ext_man}
 
 %files lang -f %{name}.lang

++ four-in-a-row-3.16.1.tar.xz -> four-in-a-row-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/four-in-a-row-3.16.1/Makefile.in 
new/four-in-a-row-3.16.2/Makefile.in
--- old/four-in-a-row-3.16.1/Makefile.in2015-04-13 18:57:52.0 
+0200
+++ new/four-in-a-row-3.16.2/Makefile.in2015-05-12 16:42:23.0 
+0200
@@ -156,7 +156,7 @@
 CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-   NEWS README compile depcomp install-sh missing
+   NEWS README compile install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/four-in-a-row-3.16.1/NEWS 
new/four-in-a-row-3.16.2/NEWS
--- old/four-in-a-row-3.16.1/NEWS   2015-04-13 18:57:16.0 +0200
+++ new/four-in-a-row-3.16.2/NEWS   2015-05-12 16:41:53.0 +0200
@@ -1,3 +1,8 @@
+3.16.2 - May 12, 2015
+=
+
+* Add symbolic icon (Jakub Steiner)
+
 3.16.1 - April 13, 2015
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/four-in-a-row-3.16.1/configure 
new/four-in-a-row-3.16.2/configure
--- old/four-in-a-row-3.16.1/configure  2015-04-13 18:57:52.0 +0200
+++ new/four-in-a-row-3.16.2/configure  2015-05-12 16:42:22.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for Four-in-a-Row 3.16.1.
+# Generated by GNU Autoconf 2.69 for Four-in-a-Row 3.16.2.
 #
 # Report bugs to .
 #
@@ -639,8 +639,8 @@
 # Identity of this package.
 PACKAGE_NAME='Four-in-a-Row'
 PACKAGE_TARNAME='four-in-a-row'
-PACKAGE_VERSION='3.16.1'
-PACKAGE_STRING='Four-in-a-Row 3.16.1'
+PACKAGE_VERSION='3.16.2'
+PACKAGE_STRING='Four-in-a-Row 3.16.2'
 PACKAGE_BUGREPORT='https://bugzilla.gnome.org/'
 PACKAGE_URL='https://wiki.gnome.org/Apps/Four-in-a-row'
 
@@ -1358,7 +1358,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Four-in-a-Row 3.16.1 to adapt to many kinds of systems.
+\`configure' configures Four-in-a-Row 3.16.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1424,7 +1424,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of Four-in-a-Row 3.16.1:";;
+ short | recursive ) echo "Configuration of Four-in-a-Row 3.16.2:";;
esac
   ca

commit gnome-settings-daemon for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2015-05-18 21:53:39

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


Package is "gnome-settings-daemon"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2015-04-23 08:01:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
 2015-05-18 21:53:41.0 +0200
@@ -1,0 +2,23 @@
+Tue May 12 18:34:15 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Media keys: Don't crash when toggling the touchpad enabled
+button.
+  + Mouse:
+- Fix scroll methods settings for multiple devices.
+- Enable tap to click on devices without hw buttons.
+- Don't disable soft buttons when disabling the touchpad on
+  devices without hw buttons.
+  + Power:
+- Avoid screen being left ON indefinitely after waking from
+  sleep if there's a notification when we wake up.
+- Fix backlight adjustment not working under gdm in some
+  configurations.
+  + Print Notifications: Do not block because of authentication.
+  + Wacom: Remove calibration notification.
+  + XSettings:
+- Export cursor size to X resources.
+- Update fonts immediately as they are added/removed/changed.
+  + Updated translations.
+
+---

Old:

  gnome-settings-daemon-3.16.1.tar.xz

New:

  gnome-settings-daemon-3.16.2.tar.xz



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.dqQV1j/_old  2015-05-18 21:53:42.0 +0200
+++ /var/tmp/diff_new_pack.dqQV1j/_new  2015-05-18 21:53:42.0 +0200
@@ -30,7 +30,7 @@
 %endif
 
 Name:   gnome-settings-daemon
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:Settings daemon for the GNOME desktop
 License:GPL-2.0+

++ gnome-settings-daemon-3.16.1.tar.xz -> 
gnome-settings-daemon-3.16.2.tar.xz ++
 4089 lines of diff (skipped)




commit seahorse for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package seahorse for openSUSE:Factory 
checked in at 2015-05-18 21:52:34

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


Package is "seahorse"

Changes:

--- /work/SRC/openSUSE:Factory/seahorse/seahorse.changes2015-03-30 
19:13:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.seahorse.new/seahorse.changes   2015-05-18 
21:52:36.0 +0200
@@ -1,0 +2,7 @@
+Tue May 12 18:25:44 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.0:
+  + Provide a symbolic variant of the app icon (bgo#747244).
+  + Updated translations.
+
+---

Old:

  seahorse-3.15.92.tar.xz

New:

  seahorse-3.16.0.tar.xz



Other differences:
--
++ seahorse.spec ++
--- /var/tmp/diff_new_pack.2DvQNB/_old  2015-05-18 21:52:37.0 +0200
+++ /var/tmp/diff_new_pack.2DvQNB/_new  2015-05-18 21:52:37.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   seahorse
-Version:3.15.92
+Version:3.16.0
 Release:0
 Summary:GNOME interface for gnupg
 License:GPL-2.0+
 Group:  Productivity/Security
 Url:http://projects.gnome.org/seahorse/
-Source: 
http://download.gnome.org/sources/seahorse/3.15/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/seahorse/3.16/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM seahorse-allow-deprecated.patch dims...@opensuse.org -- 
Allow the usage of deprecated GTK+ symbols
 Patch0: seahorse-allow-deprecated.patch
 BuildRequires:  fdupes
@@ -109,8 +109,7 @@
 %{_datadir}/glib-2.0/schemas/org.gnome.seahorse.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.seahorse.manager.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.seahorse.window.gschema.xml
-%{_datadir}/icons/hicolor/*/*/seahorse.png
-%{_datadir}/icons/hicolor/*/*/seahorse-preferences.png
+%{_datadir}/icons/hicolor/*/*/seahorse*
 %{_datadir}/seahorse/
 %{_mandir}/man1/seahorse.1%{?ext_man}
 

++ seahorse-3.15.92.tar.xz -> seahorse-3.16.0.tar.xz ++
 6821 lines of diff (skipped)




commit gtk3 for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2015-05-18 21:51:30

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


Package is "gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2015-04-23 
07:56:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2015-05-18 
21:51:31.0 +0200
@@ -1,0 +2,11 @@
+Tue May 12 17:46:39 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.3:
+  + Bugs fixed: bgo#737175, bgo#746916, bgo#746925, bgo#747634,
+bgo#747805, bgo#747808, bgo#748013, bgo#748014, bgo#748061,
+bgo#748341, bgo#748346, bgo#748500, bgo#748615, bgo#748640,
+bgo#748782, bgo#748783, bgo#748992, bgo#749009, bgo#749012,
+bgo#749021.
+  + Updated translations.
+
+---

Old:

  gtk+-3.16.2.tar.xz

New:

  gtk+-3.16.3.tar.xz



Other differences:
--
++ gtk3.spec ++
--- /var/tmp/diff_new_pack.mqXFmB/_old  2015-05-18 21:51:33.0 +0200
+++ /var/tmp/diff_new_pack.mqXFmB/_new  2015-05-18 21:51:33.0 +0200
@@ -29,7 +29,7 @@
 
 Name:   gtk3
 %define _name gtk+
-Version:3.16.2
+Version:3.16.3
 Release:0
 Summary:The GTK+ toolkit library (version 3)
 License:LGPL-2.1+

++ gtk+-3.16.2.tar.xz -> gtk+-3.16.3.tar.xz ++
/work/SRC/openSUSE:Factory/gtk3/gtk+-3.16.2.tar.xz 
/work/SRC/openSUSE:Factory/.gtk3.new/gtk+-3.16.3.tar.xz differ: char 26, line 1




commit epiphany for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package epiphany for openSUSE:Factory 
checked in at 2015-05-18 21:50:25

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


Package is "epiphany"

Changes:

--- /work/SRC/openSUSE:Factory/epiphany/epiphany.changes2015-03-30 
19:26:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.epiphany.new/epiphany.changes   2015-05-18 
21:50:27.0 +0200
@@ -1,0 +2,7 @@
+Tue May 12 18:22:27 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Improvements to the HiDPI support (bgo#744796).
+  + Updated translations.
+
+---

Old:

  epiphany-3.16.0.tar.xz

New:

  epiphany-3.16.1.tar.xz



Other differences:
--
++ epiphany.spec ++
--- /var/tmp/diff_new_pack.xrsJFN/_old  2015-05-18 21:50:28.0 +0200
+++ /var/tmp/diff_new_pack.xrsJFN/_new  2015-05-18 21:50:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   epiphany
-Version:3.16.0
+Version:3.16.1
 Release:0
 %define _base_version 3.16
 Summary:GNOME Web Browser

++ epiphany-3.16.0.tar.xz -> epiphany-3.16.1.tar.xz ++
 14276 lines of diff (skipped)




commit vte for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package vte for openSUSE:Factory checked in 
at 2015-05-18 21:49:26

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


Package is "vte"

Changes:

--- /work/SRC/openSUSE:Factory/vte/vte.changes  2015-03-30 19:19:24.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vte.new/vte.changes 2015-05-18 
21:49:27.0 +0200
@@ -1,0 +2,12 @@
+Tue May 12 17:55:07 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.40.2:
+  + stream: Fix a crash on truncate followed by reset (bgo#748484).
+  + pty: Reset SIGQUIT handler to its default (bgo#748520).
+  + lib: Add missing G_BEGIN/END_DECLS.
+- Changes from version 0.40.1:
+  + emulation: Fix vertical positioning after resize in some rare
+cases (bgo#747059).
+  + pty: More correct assertion (bgo#746667).
+
+---

Old:

  vte-0.40.0.tar.xz

New:

  vte-0.40.2.tar.xz



Other differences:
--
++ vte.spec ++
--- /var/tmp/diff_new_pack.tWbcIt/_old  2015-05-18 21:49:28.0 +0200
+++ /var/tmp/diff_new_pack.tWbcIt/_new  2015-05-18 21:49:28.0 +0200
@@ -24,7 +24,7 @@
 Name:   vte
 %define _name   vte
 Url:http://www.gnome.org
-Version:0.40.0
+Version:0.40.2
 Release:0
 Summary:Terminal Emulator Library
 License:LGPL-2.0 and GPL-2.0+

++ vte-0.40.0.tar.xz -> vte-0.40.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vte-0.40.0/ChangeLog new/vte-0.40.2/ChangeLog
--- old/vte-0.40.0/ChangeLog2015-03-24 13:00:14.0 +0100
+++ new/vte-0.40.2/ChangeLog2015-05-12 14:20:30.0 +0200
@@ -1,3 +1,83 @@
+commit 5e41c83e31157a7c6008e7d50d15c6e9f9e5b8f0
+Author: Egmont Koblinger 
+Date:   Tue Apr 28 23:51:21 2015 +0200
+
+stream: Fix a crash on truncate followed by reset
+
+https://bugzilla.gnome.org/show_bug.cgi?id=748484
+(cherry picked from commit a235384892c617c961cd1c9131227f8b1363fa22)
+
+ src/vtestream-file.h | 66 ++--
+ 1 file changed, 54 insertions(+), 12 deletions(-)
+
+commit 9d56f7fe2e196981dc1028798b7ebc96d1d63a58
+Author: Egmont Koblinger 
+Date:   Tue Apr 28 22:57:04 2015 +0200
+
+pty: Reset SIGQUIT handler to its default
+
+https://bugzilla.gnome.org/show_bug.cgi?id=748520
+(cherry picked from commit a8b2ae135e352497301dd5ed7d37c9af08a9e75d)
+
+ src/pty.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+commit e4c1e5b57deb9dde9ebc2d4f37546b0ee01a5cf4
+Author: Christian Persch 
+Date:   Mon Apr 13 19:04:27 2015 +0200
+
+lib: Add missing G_BEGIN/END_DECLS
+
+(cherry picked from commit 101addedd67374536e71b4ed7e5cfa29fd781670)
+
+ src/vteversion.h.in | 6 ++
+ 1 file changed, 6 insertions(+)
+
+commit 3ed154d899851690b5c89d13d7d2869a981a2aed
+Author: Christian Persch 
+Date:   Mon Apr 13 18:44:24 2015 +0200
+
+Post release version bump
+
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 0e6769ca811e7338b013a2d60d8e3b3145c6b981
+Author: Egmont Koblinger 
+Date:   Mon Mar 30 23:19:46 2015 +0200
+
+emulation: Fix vertical positioning after resize in some rare cases
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747059
+(cherry picked from commit 41d2e152878cc35d78a4dd8feb7cad52f088cdf9)
+
+ doc/rewrap.txt | 10 +-
+ src/vte.c  |  2 +-
+ 2 files changed, 6 insertions(+), 6 deletions(-)
+
+commit e332692fa0a460ff0897d54dcd20fe2945d618f9
+Author: Christian Persch 
+Date:   Tue Mar 24 14:58:29 2015 +0100
+
+pty: More correct assertion
+
+Unlikely this is a problem, but was pointed out in
+https://bugzilla.gnome.org/show_bug.cgi?id=746667
+
+(cherry picked from commit 3b1a3ce742c8dcbb58d0d434f82758d5156db9dc)
+
+ src/pty.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 91eb77d1dab735ded9c6fa43ccc6efe9e151f524
+Author: Christian Persch 
+Date:   Mon Mar 23 19:42:11 2015 +0100
+
+Post release version bump
+
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 commit e1b9b19ac1fe11006830c6fe78ed47b708832ed0
 Author: Milo Casagrande 
 Date:   Fri Mar 20 09:18:29 2015 +
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vte-0.40.0/Makefile.in new/vte-0.40.2/Makefile.in
--- old/vte-0.40.0/Makefile.in  2015-03-24 12:57:43.0 +0100
+++ new/vte-0.40.2/Makefile.in  2015-05-12 14:19:42.0 +0200
@@ -84,14 +84,14 @@
 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/configure $(am__configure_deps) \
$(srcdir

commit clutter for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package clutter for openSUSE:Factory checked 
in at 2015-05-18 21:48:21

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


Package is "clutter"

Changes:

--- /work/SRC/openSUSE:Factory/clutter/clutter.changes  2015-03-30 
19:24:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.clutter.new/clutter.changes 2015-05-18 
21:48:22.0 +0200
@@ -1,0 +2,14 @@
+Tue May 12 17:51:36 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.22.2:
+  + Improve touchpad detection in the X11 backend. The X11 backend
+now uses the same heuristics as GDK.
+  + Fix handling of SwapBuffersWithDamage on EGL. Use the correct
+arguments for the Cogl API, which is mapped on the
+corresponding EGL extension.
+  + Fix ClutterStage:use-alpha. Painting the stage with the
+use-alpha property is now working on all backends.
+  + Fix detection of an ARGB visual in the GDK backend.
+  + Bugs fixed: bgo#749256, bgo#747436.
+
+---

Old:

  clutter-1.22.0.tar.xz

New:

  clutter-1.22.2.tar.xz



Other differences:
--
++ clutter.spec ++
--- /var/tmp/diff_new_pack.3THu45/_old  2015-05-18 21:48:23.0 +0200
+++ /var/tmp/diff_new_pack.3THu45/_new  2015-05-18 21:48:23.0 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   clutter
-Version:1.22.0
+Version:1.22.2
 Release:0
 Summary:The clutter library
 License:LGPL-2.1+

++ clutter-1.22.0.tar.xz -> clutter-1.22.2.tar.xz ++
 59588 lines of diff (skipped)




commit webkitgtk for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package webkitgtk for openSUSE:Factory 
checked in at 2015-05-18 21:47:05

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


Package is "webkitgtk"

Changes:

--- /work/SRC/openSUSE:Factory/webkitgtk/webkitgtk.changes  2015-05-07 
09:22:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.webkitgtk.new/webkitgtk.changes 2015-05-18 
21:47:07.0 +0200
@@ -1,0 +2,6 @@
+Mon May 11 20:59:19 UTC 2015 - zai...@opensuse.org
+
+- Add webkitgtk-hidpi.patch: Make webkitgtk usable on HiDPI
+  screens, patch is ignored upstream as it's fixed on 2.6 branch.
+
+---
webkitgtk3.changes: same change

New:

  webkitgtk-hidpi.patch



Other differences:
--
++ webkitgtk.spec ++
--- /var/tmp/diff_new_pack.o7zZrt/_old  2015-05-18 21:47:08.0 +0200
+++ /var/tmp/diff_new_pack.o7zZrt/_new  2015-05-18 21:47:08.0 +0200
@@ -77,6 +77,8 @@
 Patch12:webkitgtk-WTF-GMutexLocker.patch
 # PATCH-FIX-OPENSUSE webkitgtk-gcc5-fixes.patch dmuel...@suse.com -- Allow gcc 
5.x
 Patch13:webkitgtk-gcc5-fixes.patch
+# PATCH-FEATURE-OPENSUSE webkitgtk-hidpi.patch webkit#131347 
zai...@opensuse.org -- Make webkitgtk usable on hidpi screens
+Patch14:webkitgtk-hidpi.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  bison
 BuildRequires:  chrpath
@@ -339,6 +341,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%patch14 -p1
 # FIXME: workaround needed in > 1.7.90 to fix build
 mkdir -p DerivedSources/webkit
 mkdir -p DerivedSources/WebCore

++ webkitgtk3.spec ++
--- /var/tmp/diff_new_pack.o7zZrt/_old  2015-05-18 21:47:08.0 +0200
+++ /var/tmp/diff_new_pack.o7zZrt/_new  2015-05-18 21:47:08.0 +0200
@@ -77,6 +77,8 @@
 Patch12:webkitgtk-WTF-GMutexLocker.patch
 # PATCH-FIX-OPENSUSE webkitgtk-gcc5-fixes.patch dmuel...@suse.com -- Allow gcc 
5.x
 Patch13:webkitgtk-gcc5-fixes.patch
+# PATCH-FEATURE-OPENSUSE webkitgtk-hidpi.patch webkit#131347 
zai...@opensuse.org -- Make webkitgtk usable on hidpi screens
+Patch14:webkitgtk-hidpi.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  bison
 BuildRequires:  chrpath
@@ -339,6 +341,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%patch14 -p1
 # FIXME: workaround needed in > 1.7.90 to fix build
 mkdir -p DerivedSources/webkit
 mkdir -p DerivedSources/WebCore

++ webkitgtk-hidpi.patch ++
>From 04a9aff031bd26021c89ec307111202cef4519fd Mon Sep 17 00:00:00 2001
From: Michael Kuhn 
Date: Fri, 19 Dec 2014 19:14:34 +0100
Subject: [PATCH] Add HighDPI support.

The code mainly consists of backports from the 2.6 branch:
- http://trac.webkit.org/changeset/167078
- http://trac.webkit.org/changeset/167080
- http://trac.webkit.org/changeset/169445

It also includes adapted changes from:
- http://fishsoup.net/misc/webkit-hidpi-patches/
---
 Source/WebCore/platform/cairo/WidgetBackingStore.h | 11 +--
 .../platform/cairo/WidgetBackingStoreCairo.cpp | 18 +-
 .../platform/cairo/WidgetBackingStoreCairo.h   |  4 +--
 .../platform/graphics/cairo/CairoUtilities.cpp | 12 +++
 .../platform/graphics/cairo/CairoUtilities.h   |  4 +++
 .../platform/gtk/WidgetBackingStoreGtkX11.cpp  | 28 ++--
 .../platform/gtk/WidgetBackingStoreGtkX11.h|  4 +--
 .../WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp  | 38 ++
 Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h |  1 +
 Source/WebKit/gtk/webkit/webkitwebview.cpp | 25 ++
 .../WebKit2/Shared/cairo/ShareableBitmapCairo.cpp  | 15 -
 .../UIProcess/API/gtk/WebKitWebViewBase.cpp| 18 ++
 Source/WebKit2/UIProcess/WebPageProxy.cpp  | 10 ++
 .../WebKit2/UIProcess/cairo/BackingStoreCairo.cpp  | 12 +++
 14 files changed, 154 insertions(+), 46 deletions(-)

diff --git a/Source/WebCore/platform/cairo/WidgetBackingStore.h 
b/Source/WebCore/platform/cairo/WidgetBackingStore.h
index f4bb255..69ded77 100644
--- a/Source/WebCore/platform/cairo/WidgetBackingStore.h
+++ b/Source/WebCore/platform/cairo/WidgetBackingStore.h
@@ -49,11 +49,18 @@ public:
 virtual cairo_surface_t* cairoSurface() = 0;
 virtual void scroll(const IntRect& scrollRect, const IntSize& 
scrollOffset) = 0;
 const IntSize& size() { return m_size; }
-WidgetBackingStore(const IntSize& size) : m_size(size) { }
+float deviceScaleFactor() { return m_deviceScaleFactor; }
+
+WidgetBackingStore(const IntSize& size, float deviceScaleFactor)
+: m_size(size)
+, m_deviceScaleFactor(deviceScaleFactor)
+{ }
+
 virtual ~WidgetBackingStore() { }
 
-private:
+protected:
 I

commit gnome-getting-started-docs for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-getting-started-docs for 
openSUSE:Factory checked in at 2015-05-18 21:45:59

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


Package is "gnome-getting-started-docs"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-getting-started-docs/gnome-getting-started-docs.changes
2015-04-23 07:59:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-getting-started-docs.new/gnome-getting-started-docs.changes
   2015-05-18 21:46:01.0 +0200
@@ -1,0 +2,7 @@
+Tue May 12 11:12:08 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Updates to gnome-responding-to-messages.
+  + Updated translations.
+
+---

Old:

  gnome-getting-started-docs-3.16.1.tar.xz

New:

  gnome-getting-started-docs-3.16.2.tar.xz



Other differences:
--
++ gnome-getting-started-docs.spec ++
--- /var/tmp/diff_new_pack.teKG4T/_old  2015-05-18 21:46:06.0 +0200
+++ /var/tmp/diff_new_pack.teKG4T/_new  2015-05-18 21:46:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-getting-started-docs
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:Getting started with GNOME - Documentation
 License:CC-BY-SA-3.0

++ gnome-getting-started-docs-3.16.1.tar.xz -> 
gnome-getting-started-docs-3.16.2.tar.xz ++
/work/SRC/openSUSE:Factory/gnome-getting-started-docs/gnome-getting-started-docs-3.16.1.tar.xz
 
/work/SRC/openSUSE:Factory/.gnome-getting-started-docs.new/gnome-getting-started-docs-3.16.2.tar.xz
 differ: char 26, line 1




commit vinagre for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package vinagre for openSUSE:Factory checked 
in at 2015-05-18 21:45:00

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


Package is "vinagre"

Changes:

--- /work/SRC/openSUSE:Factory/vinagre/vinagre.changes  2015-03-30 
19:17:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.vinagre.new/vinagre.changes 2015-05-18 
21:45:01.0 +0200
@@ -1,0 +2,8 @@
+Tue May 12 11:00:08 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + BSD: fix a couple of implicit declarations.
+  + Change SPICE passwords limited to 60 characters.
+  + Updated translations.
+
+---

Old:

  vinagre-3.16.0.tar.xz

New:

  vinagre-3.16.1.tar.xz



Other differences:
--
++ vinagre.spec ++
--- /var/tmp/diff_new_pack.L5v1tY/_old  2015-05-18 21:45:03.0 +0200
+++ /var/tmp/diff_new_pack.L5v1tY/_new  2015-05-18 21:45:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   vinagre
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:VNC client for GNOME
 License:GPL-2.0+

++ vinagre-3.16.0.tar.xz -> vinagre-3.16.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vinagre-3.16.0/ChangeLog new/vinagre-3.16.1/ChangeLog
--- old/vinagre-3.16.0/ChangeLog2015-03-23 20:35:51.0 +0100
+++ new/vinagre-3.16.1/ChangeLog2015-05-11 18:30:17.0 +0200
@@ -1,3 +1,32 @@
+2015-05-11  David King  
+
+   Update NEWS for 3.16.1 release
+
+2015-05-11  Antoine Jacoutot  
+
+   BSD: fix a couple of implicit declarations
+
+   vinagre/pty_open.c:337: warning: implicit declaration of function 
'putenv'
+   vinagre/pty_open.c:354: warning: implicit declaration of function 
'login_tty'
+
+   https://bugzilla.gnome.org/show_bug.cgi?id=748799
+
+2015-05-09  Hajime Taira  
+
+   l10n: Update Japanese translation
+
+2015-05-08  Khaled Hosny  
+
+   Update Arabic translation
+
+2015-04-18  Mike DePaulo  
+
+   Change SPICE passwords limited to 60 characters
+
+   The limit for SPICE passowrds is much more than 8 characters.
+
+   https://bugzilla.gnome.org/show_bug.cgi?id=747296
+
 2015-03-23  David King  
 
Update NEWS for 3.16.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vinagre-3.16.0/NEWS new/vinagre-3.16.1/NEWS
--- old/vinagre-3.16.0/NEWS 2015-03-23 20:33:32.0 +0100
+++ new/vinagre-3.16.1/NEWS 2015-05-11 18:29:04.0 +0200
@@ -1,3 +1,18 @@
+Vinagre 3.16.1
+==
+
+Antoine Jacoutot (1):
+  BSD: fix a couple of implicit declarations
+
+Hajime Taira (1):
+  l10n: Update Japanese translation
+
+Khaled Hosny (1):
+  Update Arabic translation
+
+Mike DePaulo (1):
+  Change SPICE passwords limited to 60 characters
+
 Vinagre 3.16.0
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vinagre-3.16.0/config.h.in 
new/vinagre-3.16.1/config.h.in
--- old/vinagre-3.16.0/config.h.in  2015-03-23 20:35:13.0 +0100
+++ new/vinagre-3.16.1/config.h.in  2015-05-11 18:29:28.0 +0200
@@ -69,6 +69,9 @@
 /* Define to 1 if you have the `unlockpt' function. */
 #undef HAVE_UNLOCKPT
 
+/* Define to 1 if you have the  header file. */
+#undef HAVE_UTIL_H
+
 /* Define to 1 if you have the  header file. */
 #undef HAVE_UTMP_H
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vinagre-3.16.0/configure new/vinagre-3.16.1/configure
--- old/vinagre-3.16.0/configure2015-03-23 20:35:13.0 +0100
+++ new/vinagre-3.16.1/configure2015-05-11 18:29:28.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for Vinagre 3.16.0.
+# Generated by GNU Autoconf 2.69 for Vinagre 3.16.1.
 #
 # Report bugs to .
 #
@@ -641,8 +641,8 @@
 # Identity of this package.
 PACKAGE_NAME='Vinagre'
 PACKAGE_TARNAME='vinagre'
-PACKAGE_VERSION='3.16.0'
-PACKAGE_STRING='Vinagre 3.16.0'
+PACKAGE_VERSION='3.16.1'
+PACKAGE_STRING='Vinagre 3.16.1'
 PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=vinagre'
 PACKAGE_URL='https://wiki.gnome.org/Apps/Vinagre'
 
@@ -1439,7 +1439,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Vinagre 3.16.0 to adapt to many kinds of syste

commit yelp for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package yelp for openSUSE:Factory checked in 
at 2015-05-18 21:43:53

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


Package is "yelp"

Changes:

--- /work/SRC/openSUSE:Factory/yelp/yelp.changes2015-03-30 
19:28:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.yelp.new/yelp.changes   2015-05-18 
21:43:54.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 10:59:12 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.1:
+  + Updated translations.
+
+---

Old:

  yelp-3.16.0.tar.xz

New:

  yelp-3.16.1.tar.xz



Other differences:
--
++ yelp.spec ++
--- /var/tmp/diff_new_pack.y3vPQk/_old  2015-05-18 21:43:55.0 +0200
+++ /var/tmp/diff_new_pack.y3vPQk/_new  2015-05-18 21:43:55.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yelp
-Version:3.16.0
+Version:3.16.1
 Release:0
 Summary:Help Browser for the GNOME Desktop
 License:GPL-2.0+ and LGPL-2.1+

++ yelp-3.16.0.tar.xz -> yelp-3.16.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yelp-3.16.0/NEWS new/yelp-3.16.1/NEWS
--- old/yelp-3.16.0/NEWS2015-03-23 20:14:43.0 +0100
+++ new/yelp-3.16.1/NEWS2015-05-11 19:33:48.0 +0200
@@ -1,3 +1,8 @@
+3.16.1
+==
+* Updated translations:
+  is(Sveinn í Felli)
+
 3.16.0
 ==
 * Avoid recursive activation, #745407 (Matthias Clasen)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yelp-3.16.0/configure new/yelp-3.16.1/configure
--- old/yelp-3.16.0/configure   2015-03-23 20:15:33.0 +0100
+++ new/yelp-3.16.1/configure   2015-05-11 19:34:32.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for Yelp 3.16.0.
+# Generated by GNU Autoconf 2.69 for Yelp 3.16.1.
 #
 # Report bugs to .
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='Yelp'
 PACKAGE_TARNAME='yelp'
-PACKAGE_VERSION='3.16.0'
-PACKAGE_STRING='Yelp 3.16.0'
+PACKAGE_VERSION='3.16.1'
+PACKAGE_STRING='Yelp 3.16.1'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=yelp'
 PACKAGE_URL=''
 
@@ -1429,7 +1429,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Yelp 3.16.0 to adapt to many kinds of systems.
+\`configure' configures Yelp 3.16.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1499,7 +1499,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of Yelp 3.16.0:";;
+ short | recursive ) echo "Configuration of Yelp 3.16.1:";;
esac
   cat <<\_ACEOF
 
@@ -1643,7 +1643,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Yelp configure 3.16.0
+Yelp configure 3.16.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1921,7 +1921,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by Yelp $as_me 3.16.0, which was
+It was created by Yelp $as_me 3.16.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2790,7 +2790,7 @@
 
 # Define the identity of the package.
  PACKAGE='yelp'
- VERSION='3.16.0'
+ VERSION='3.16.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -17058,7 +17058,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by Yelp $as_me 3.16.0, which was
+This file was extended by Yelp $as_me 3.16.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -17124,7 +17124,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-Yelp config.status 3.16.0
+Yelp config.status 3.16.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yelp-3.16.0/configure.ac new/yelp-3.16.1/configure.ac
--- old/yelp-3.16.0/configure.ac2015-03-23 20:11:23.0 +0100
+++ new/yelp-3.16.1/configure.ac2015-05-11 19:33:26.0 +0200
@@ -1,5 +1,5 @@
 AC_PRE

commit gnome-software for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-software for openSUSE:Factory 
checked in at 2015-05-18 21:42:48

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


Package is "gnome-software"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-software/gnome-software.changes
2015-04-23 08:01:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-software.new/gnome-software.changes   
2015-05-18 21:42:49.0 +0200
@@ -1,0 +2,13 @@
+Tue May 12 11:03:06 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Remove redundant OK button from the updates installed
+notification.
+  + Display a better human readable title for printer drivers.
+  + Show a better UI for offline update failure dialog.
+  + Set default actions for the update done notifications.
+  + Allow searching for packages via the API without appdata.
+- Remove HighContrast %icon_theme_cache_post(un) calls, as Symbolic
+  icons have replaced them.
+
+---

Old:

  gnome-software-3.16.1.tar.xz

New:

  gnome-software-3.16.2.tar.xz



Other differences:
--
++ gnome-software.spec ++
--- /var/tmp/diff_new_pack.XheRXx/_old  2015-05-18 21:42:50.0 +0200
+++ /var/tmp/diff_new_pack.XheRXx/_new  2015-05-18 21:42:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-software
-Version:3.16.1
+Version:3.16.2
 Release:0
 %define gs_plugin_api 7
 Summary:GNOME Software Store
@@ -73,13 +73,11 @@
 %post
 %glib2_gsettings_schema_post
 %icon_theme_cache_post
-%icon_theme_cache_post HighContrast
 %desktop_database_post
 
 %postun
 %glib2_gsettings_schema_postun
 %icon_theme_cache_postun
-%icon_theme_cache_postun HighContrast
 %desktop_database_postun
 
 %files
@@ -97,7 +95,6 @@
 %dir %{_datadir}/gnome-shell/search-providers
 %{_datadir}/gnome-shell/search-providers/gnome-software-search-provider.ini
 %{_datadir}/icons/hicolor/*/apps/%{name}*
-%{_datadir}/icons/HighContrast/
 %dir %{_libdir}/gs-plugins-%{gs_plugin_api}
 %{_libdir}/gs-plugins-%{gs_plugin_api}/*.so
 #{_libexecdir}/gnome-software-service

++ gnome-software-3.16.1.tar.xz -> gnome-software-3.16.2.tar.xz ++
 8693 lines of diff (skipped)




commit gnome-online-accounts for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-online-accounts for 
openSUSE:Factory checked in at 2015-05-18 21:41:49

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


Package is "gnome-online-accounts"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-online-accounts/gnome-online-accounts.changes  
2015-03-30 19:23:03.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-online-accounts.new/gnome-online-accounts.changes
 2015-05-18 21:41:50.0 +0200
@@ -1,0 +2,9 @@
+Tue May 12 11:06:38 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + telepathy: "use this account for external calls" checkbox is
+not working (bgo#744165).
+  + facebook: Restore a wrongly deleted string (bgo#745004).
+  + Updated translations.
+
+---

Old:

  gnome-online-accounts-3.16.0.tar.xz

New:

  gnome-online-accounts-3.16.2.tar.xz



Other differences:
--
++ gnome-online-accounts.spec ++
--- /var/tmp/diff_new_pack.1Bi4BD/_old  2015-05-18 21:41:51.0 +0200
+++ /var/tmp/diff_new_pack.1Bi4BD/_new  2015-05-18 21:41:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-online-accounts
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:GNOME service to access online accounts
 License:LGPL-2.0+

++ gnome-online-accounts-3.16.0.tar.xz -> 
gnome-online-accounts-3.16.2.tar.xz ++
 7046 lines of diff (skipped)




commit gnome-initial-setup for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-initial-setup for 
openSUSE:Factory checked in at 2015-05-18 21:40:44

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


Package is "gnome-initial-setup"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-initial-setup/gnome-initial-setup.changes  
2015-04-23 08:03:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-initial-setup.new/gnome-initial-setup.changes 
2015-05-18 21:40:45.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 11:08:30 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Updated translations.
+
+---

Old:

  gnome-initial-setup-3.16.1.tar.xz

New:

  gnome-initial-setup-3.16.2.tar.xz



Other differences:
--
++ gnome-initial-setup.spec ++
--- /var/tmp/diff_new_pack.YUEHTA/_old  2015-05-18 21:40:46.0 +0200
+++ /var/tmp/diff_new_pack.YUEHTA/_new  2015-05-18 21:40:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-initial-setup
-Version:3.16.1
+Version:3.16.2
 Release:0
 Summary:GNOME Initial Setup Assistant
 License:GPL-2.0+

++ gnome-initial-setup-3.16.1.tar.xz -> gnome-initial-setup-3.16.2.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-initial-setup-3.16.1/Makefile.in 
new/gnome-initial-setup-3.16.2/Makefile.in
--- old/gnome-initial-setup-3.16.1/Makefile.in  2015-04-15 02:02:18.0 
+0200
+++ new/gnome-initial-setup-3.16.2/Makefile.in  2015-05-11 21:54:59.0 
+0200
@@ -162,7 +162,7 @@
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
COPYING NEWS README TODO compile config.guess config.sub \
-   install-sh ltmain.sh missing
+   depcomp install-sh ltmain.sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-initial-setup-3.16.1/NEWS 
new/gnome-initial-setup-3.16.2/NEWS
--- old/gnome-initial-setup-3.16.1/NEWS 2015-04-15 02:01:30.0 +0200
+++ new/gnome-initial-setup-3.16.2/NEWS 2015-05-11 21:50:58.0 +0200
@@ -1,3 +1,11 @@
+3.16.2
+
+ * Translation updates
+  Icelandic
+  Occitan
+  Simplified Chinese
+
+
 3.16.1
 
  * Translation updates
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-initial-setup-3.16.1/configure 
new/gnome-initial-setup-3.16.2/configure
--- old/gnome-initial-setup-3.16.1/configure2015-04-15 02:02:17.0 
+0200
+++ new/gnome-initial-setup-3.16.2/configure2015-05-11 21:54:58.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gnome-initial-setup 3.16.1.
+# Generated by GNU Autoconf 2.69 for gnome-initial-setup 3.16.2.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@
 # Identity of this package.
 PACKAGE_NAME='gnome-initial-setup'
 PACKAGE_TARNAME='gnome-initial-setup'
-PACKAGE_VERSION='3.16.1'
-PACKAGE_STRING='gnome-initial-setup 3.16.1'
+PACKAGE_VERSION='3.16.2'
+PACKAGE_STRING='gnome-initial-setup 3.16.2'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1397,7 +1397,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gnome-initial-setup 3.16.1 to adapt to many kinds of 
systems.
+\`configure' configures gnome-initial-setup 3.16.2 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1468,7 +1468,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gnome-initial-setup 3.16.1:";;
+ short | recursive ) echo "Configuration of gnome-initial-setup 3.16.2:";;
esac
   cat <<\_ACEOF
 
@@ -1603,7 +1603,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gnome-initial-setup configure 3.16.1
+gnome-initial-setup configure 3.16.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1968,7 +1968,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gnome-initial-setup $as_me 3.16.1, which was
+It was created by gnome-initial-setup $as_me 3.16.2, which was
 generated by GNU Autoconf 2.69.  Invocat

commit gnome-documents for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gnome-documents for openSUSE:Factory 
checked in at 2015-05-18 21:39:44

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


Package is "gnome-documents"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-documents/gnome-documents.changes  
2015-03-30 19:16:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-documents.new/gnome-documents.changes 
2015-05-18 21:39:47.0 +0200
@@ -1,0 +2,15 @@
+Tue May 12 11:22:01 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Implement night mode in the content.
+  + Use the trash while deleting.
+  + Add placeholder text for PostScript files when the no TOC is
+available.
+  + Restore the search criteria when we move back from the preview
+or collection view to the search results.
+  + Adapt to changes in nao:identifier syntax for Google items.
+  + Unbreak loading Google and SkyDrive items from the cache.
+  + Prevent WebKit2 from blowing away our cache.
+  + Updated translations.
+
+---

Old:

  gnome-documents-3.16.0.tar.xz

New:

  gnome-documents-3.16.2.tar.xz



Other differences:
--
++ gnome-documents.spec ++
--- /var/tmp/diff_new_pack.FodeeD/_old  2015-05-18 21:39:48.0 +0200
+++ /var/tmp/diff_new_pack.FodeeD/_new  2015-05-18 21:39:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-documents
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Document Manager for GNOME
 License:GPL-2.0+

++ gnome-documents-3.16.0.tar.xz -> gnome-documents-3.16.2.tar.xz ++
 5184 lines of diff (skipped)




  1   2   >