commit sed for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package sed for openSUSE:Factory checked in 
at 2015-09-08 17:35:12

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


Package is "sed"

Changes:

--- /work/SRC/openSUSE:Factory/sed/sed.changes  2015-01-08 23:00:53.0 
+0100
+++ /work/SRC/openSUSE:Factory/.sed.new/sed.changes 2015-09-08 
17:35:14.0 +0200
@@ -1,0 +2,16 @@
+Tue Aug 25 16:54:40 CEST 2015 - sbra...@suse.com
+
+- Cherry picking of the most important fixes from the upstream sed
+  GIT (not backporting testsuite, as it was completely refactored):
+  * Fix y command in the RHS of a y/LHS/RHS/ transliteration
+(sed-y-NUL-RHS.patch).
+  * Fix mishandling of overlapping address ranges
+(sed-fix-overlapping-address-ranges.patch).
+  * Fix fail to remove a temporary file (sed-temp-delete.patch).
+  * Fix behavior of --follow-symlinks when reading from stdin
+(bnc#933029, gnu#20795, sed-follow-symlinks-stdin.patch).
+  * Make "sed --follow-symlinks -" consistent with "sed -" again,
+and process stdin instead of ./-
+(bnc#933029#c6, gnu#20796, sed-follow-symlinks-hyphen.patch).
+
+---

New:

  sed-fix-overlapping-address-ranges.patch
  sed-follow-symlinks-hyphen.patch
  sed-follow-symlinks-stdin.patch
  sed-temp-delete.patch
  sed-y-NUL-RHS.patch



Other differences:
--
++ sed.spec ++
--- /var/tmp/diff_new_pack.gDUL0f/_old  2015-09-08 17:35:18.0 +0200
+++ /var/tmp/diff_new_pack.gDUL0f/_new  2015-09-08 17:35:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sed
 #
-# 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
@@ -28,6 +28,16 @@
 Source2:%{name}.keyring
 # PATCH-FIX-SLE sed-dont_close_twice.patch bnc@880817 tc...@suse.cz -- Fix 
double close.
 Patch:  sed-dont_close_twice.patch
+# PATCH-FIX-UPSTREAM sed-follow-symlinks-hyphen.patch bnc933029 gnu20796 
sbra...@suse.com -- Make behavior of "sed --follow-symlinks -" consistent again.
+Patch1: sed-follow-symlinks-hyphen.patch
+# PATCH-FIX-UPSTREAM sed-follow-symlinks-stdin.patch bnc933029 gnu20795 
sbra...@suse.com -- Fix --follow-symlinks on stdin.
+Patch2: sed-follow-symlinks-stdin.patch
+# PATCH-FIX-UPSTREAM sed-y-NUL-RHS.patch sbra...@suse.com -- Fix y command in 
the RHS of a y/LHS/RHS/ transliteration.
+Patch3: sed-y-NUL-RHS.patch
+# PATCH-FIX-UPSTREAM sed-fix-overlapping-address-ranges.patch sbra...@suse.com 
-- Fix mishandling of overlapping address ranges.
+Patch4: sed-fix-overlapping-address-ranges.patch
+# PATCH-FIX-UPSTREAM sed-temp-delete.patch sbra...@suse.com -- Fix fail to 
remove a temporary file.
+Patch5: sed-temp-delete.patch
 # Use rpmbuild -D 'VERIFY_SIG 1' to verify signature during build or run 
one-shot check by "gpg-offline --verify --package=sed sed-*.sig".
 %if 0%{?VERIFY_SIG}
 BuildRequires:  gpg-offline
@@ -50,6 +60,11 @@
 %endif
 %setup -q
 %patch -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
 %define warn_flags -Wall -Wstrict-prototypes -Wpointer-arith -Wformat-security


++ sed-fix-overlapping-address-ranges.patch ++
This is a backport of the fix itself.

>From 4c75f64068a7e1446c9aa6ae8f764e0ebddd67ef Mon Sep 17 00:00:00 2001
From: Norihiro Tanaka 
Date: Fri, 20 Feb 2015 01:54:35 +0900
Subject: [PATCH 81/92] sed: fix mishandling of overlapping address ranges

When the line number ranges of two or more editing commands overlap,
sed applies all commands but the first to a line that is just beyond
the union of all ranges.  E.g., with this command,
seq 9|sed '2,7d;3,6d', sed would mistakenly delete line 8.

* sed/execute.c (match_an_address_p) [ADDR_IS_NUM]: Make this
function work also in this case.
(match_address_p): Move the ADDR_IS_NUM +
...->line_number == ...->addr_number comparison "up" into
match_an_address_p, so we can hoist two similar if/return
blocks out of "if" and "else" branches.
Change so that this function returns false when the current
line number is outside the specified range.
* testsuite/range-overlap.sh: New file, to test for this.
* testsuite/Makefile.am (T): Add it to the list.
* NEWS (Bug fixes): Mention it.
Reported as http://bugs.gnu.org/19899
---
 NEWS   | 15 +++
 sed/execute.c  | 16 
 testsuite/Makefile.am  |  3 ++-
 testsuite/range-overlap.sh | 34 

commit intltool for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package intltool for openSUSE:Factory 
checked in at 2015-09-08 17:35:33

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


Package is "intltool"

Changes:

--- /work/SRC/openSUSE:Factory/intltool/intltool.changes2015-04-07 
09:26:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.intltool.new/intltool.changes   2015-09-08 
17:35:35.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep  1 09:46:20 UTC 2015 - dims...@opensuse.org
+
+- Add intltool-perl-5.22.patch: Fix execution with perl 5.22.
+
+---

New:

  intltool-perl-5.22.patch



Other differences:
--
++ intltool.spec ++
--- /var/tmp/diff_new_pack.NQPmWX/_old  2015-09-08 17:35:36.0 +0200
+++ /var/tmp/diff_new_pack.NQPmWX/_new  2015-09-08 17:35:36.0 +0200
@@ -30,6 +30,8 @@
 Obsoletes:  xml-i18n-tools
 Url:https://edge.launchpad.net/intltool/
 Source: 
https://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM intltool-perl-5.22.patch lp#1490906 dims...@opensuse.org 
-- Fix execution with perl 5.22
+Patch0: intltool-perl-5.22.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -40,6 +42,7 @@
 
 %prep
 %setup -q
+%patch0 -p0
 
 %build
 %configure

++ intltool-perl-5.22.patch ++
--- intltool-update.in  2015-03-09 02:39:54.0 +0100
+++ intltool-update.in  2015-09-01 11:43:40.595517191 +0200
@@ -1062,7 +1062,7 @@
}
 }
 
-if ($str =~ /^(.*)\${?([A-Z_]+)}?(.*)$/)
+if ($str =~ /^(.*)\$\{?([A-Z_]+)}?(.*)$/)
 {
my $rest = $3;
my $untouched = $1;
@@ -1190,10 +1190,10 @@
$name=~ s/\(+$//g;
$version =~ s/\(+$//g;
 
-   $varhash{"PACKAGE_NAME"} = $name if (not $name =~ 
/\${?AC_PACKAGE_NAME}?/);
-   $varhash{"PACKAGE"} = $name if (not $name =~ /\${?PACKAGE}?/);
-   $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ 
/\${?AC_PACKAGE_VERSION}?/);
-   $varhash{"VERSION"} = $version if (not $name =~ /\${?VERSION}?/);
+   $varhash{"PACKAGE_NAME"} = $name if (not $name =~ 
/\$\{?AC_PACKAGE_NAME}?/);
+   $varhash{"PACKAGE"} = $name if (not $name =~ /\$\{?PACKAGE}?/);
+   $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ 
/\$\{?AC_PACKAGE_VERSION}?/);
+   $varhash{"VERSION"} = $version if (not $name =~ /\$\{?VERSION}?/);
 }
 
 if ($conf_source =~ /^AC_INIT\(([^,\)]+),([^,\)]+)[,]?([^,\)]+)?/m)
@@ -1219,11 +1219,11 @@
$version =~ s/\(+$//g;
 $bugurl  =~ s/\(+$//g if (defined $bugurl);
 
-   $varhash{"PACKAGE_NAME"} = $name if (not $name =~ 
/\${?AC_PACKAGE_NAME}?/);
-   $varhash{"PACKAGE"} = $name if (not $name =~ /\${?PACKAGE}?/);
-   $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ 
/\${?AC_PACKAGE_VERSION}?/);
-   $varhash{"VERSION"} = $version if (not $name =~ /\${?VERSION}?/);
-$varhash{"PACKAGE_BUGREPORT"} = $bugurl if (defined $bugurl and not 
$bugurl =~ /\${?\w+}?/);
+   $varhash{"PACKAGE_NAME"} = $name if (not $name =~ 
/\$\{?AC_PACKAGE_NAME}?/);
+   $varhash{"PACKAGE"} = $name if (not $name =~ /\$\{?PACKAGE}?/);
+   $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ 
/\$\{?AC_PACKAGE_VERSION}?/);
+   $varhash{"VERSION"} = $version if (not $name =~ /\$\{?VERSION}?/);
+$varhash{"PACKAGE_BUGREPORT"} = $bugurl if (defined $bugurl and not 
$bugurl =~ /\$\{?\w+}?/);
 }
 
 # \s makes this not work, why?



commit autoconf for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package autoconf for openSUSE:Factory 
checked in at 2015-09-08 17:35:38

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


Package is "autoconf"

Changes:

--- /work/SRC/openSUSE:Factory/autoconf/autoconf-el.changes 2015-03-23 
12:12:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.autoconf.new/autoconf-el.changes
2015-09-08 17:35:39.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep  1 08:39:18 UTC 2015 - dims...@opensuse.org
+
+- Add autoconf-perl-5.17-fixes.patch: autoscan: port to perl 5.17.
+
+---
autoconf-testsuite.changes: same change
autoconf.changes: same change

New:

  autoconf-perl-5.17-fixes.patch



Other differences:
--
++ autoconf-testsuite.spec ++
--- /var/tmp/diff_new_pack.eoPrfi/_old  2015-09-08 17:35:43.0 +0200
+++ /var/tmp/diff_new_pack.eoPrfi/_new  2015-09-08 17:35:43.0 +0200
@@ -27,6 +27,8 @@
 Source1:http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz.sig
 Source2:%{name}.keyring
 Patch0: autoreconf-ltdl.diff
+# PATCH-FIX-UPSTREAM autoconf-perl-5.17-fixes.patch dims...@opensuse.org -- 
autoscan: port to perl 5.17 (with perl 5.22, it is now fatal).
+Patch1: autoconf-perl-5.17-fixes.patch
 BuildRequires:  help2man
 Requires:   info
 Requires:   m4 >= 1.4.6
@@ -52,6 +54,7 @@
 %prep
 %setup -q -n autoconf-%{version}
 %patch0
+%patch1 -p1
 
 %build
 %configure

++ autoconf.spec ++
--- /var/tmp/diff_new_pack.eoPrfi/_old  2015-09-08 17:35:43.0 +0200
+++ /var/tmp/diff_new_pack.eoPrfi/_new  2015-09-08 17:35:43.0 +0200
@@ -27,6 +27,8 @@
 Source1:http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz.sig
 Source2:%{name}.keyring
 Patch0: autoreconf-ltdl.diff
+# PATCH-FIX-UPSTREAM autoconf-perl-5.17-fixes.patch dims...@opensuse.org -- 
autoscan: port to perl 5.17 (with perl 5.22, it is now fatal).
+Patch1: autoconf-perl-5.17-fixes.patch
 BuildRequires:  help2man
 Requires:   info
 Requires:   m4 >= 1.4.6
@@ -52,6 +54,7 @@
 %prep
 %setup -q -n autoconf-%{version}
 %patch0
+%patch1 -p1
 
 %build
 %configure


++ autoconf-perl-5.17-fixes.patch ++
>From e5654a5591884b92633c7785f325626711e7f7aa Mon Sep 17 00:00:00 2001
From: Paul Eggert 
Date: Tue, 29 Jan 2013 13:46:48 -0800
Subject: [PATCH] autoscan: port to perl 5.17

* bin/autoscan.in (scan_sh_file): Escape '{'.  This avoids a
feature that is deprecated in Perl 5.17.  Reported by Ray Lauff in
.
---
 bin/autoscan.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bin/autoscan.in b/bin/autoscan.in
index 993a750..db1df79 100644
--- a/bin/autoscan.in
+++ b/bin/autoscan.in
@@ -358,7 +358,7 @@ sub scan_sh_file ($)
 {
   # Strip out comments and variable references.
   s/#.*//;
-  s/\${[^\}]*}//g;
+  s/\$\{[^\}]*}//g;
   s/@[^@]*@//g;
 
   # Tokens in the code.
-- 
1.7.2.5






commit libchewing for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libchewing for openSUSE:Factory 
checked in at 2015-09-08 17:38:54

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


Package is "libchewing"

Changes:

--- /work/SRC/openSUSE:Factory/libchewing/libchewing.changes2014-06-16 
21:26:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.libchewing.new/libchewing.changes   
2015-09-08 17:40:46.0 +0200
@@ -1,0 +2,31 @@
+Tue Sep  1 14:32:59 UTC 2015 - i...@marguerite.su
+
+- move %install_info_delete to %preun
+
+---
+Mon Aug 24 16:13:36 UTC 2015 - i...@marguerite.su
+
+- Update to version 0.4.0+git20150820.285b47d:
+  + fix resource leak
+  + Add notification_email
+  + Update build_command_prepend
+  + Do not write last element of phone_array
+  + Prevent fclose null file handler
+  + Check return value for ftell
+  + Check return value of UserGetPhraseFirst before use
+  + testhelper.c: clean_userphase() ignore ENOENT
+  + init_database.c: Fix strtoul error checking
+  + init_database: make integer comparison 64-bit safe
+  + Fix Coverity error "Buffer not null terminated"
+  + Fix Coverity error "Copy into fixed size buffer"
+  + Fix Coverity error "Explicit null dereferenced"
+  + init_database.c: Resolve queue-full exception
+  + gen_keystroke.c: Use static APIs
+  + genkeystroke.c: Fix buffer usage
+  + Disable selection keys out of the reasonable range
+  + dump_database: utilize plat_mmap for file operations
+  + Fix ChewingKillChar which is disabling OpenSymbolChoice
+  + Use chewing_delete to delete ChewingContext
+  + Detect attribute existence by hasattr, not __dict__
+
+---

Old:

  chewing-utils-0.4.0git20130807.tar.bz2
  libchewing-0.4.0.tar.bz2

New:

  _service
  _servicedata
  chewing-utils-0.4.0+git20150602.81299e5.tar.gz
  libchewing-0.4.0+git20150820.285b47d.tar.xz



Other differences:
--
++ libchewing.spec ++
--- /var/tmp/diff_new_pack.4B5Yww/_old  2015-09-08 17:40:53.0 +0200
+++ /var/tmp/diff_new_pack.4B5Yww/_new  2015-09-08 17:40:53.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libchewing
 #
-# 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,24 +17,30 @@
 
 
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
+%define with_utils 1
+%if %{with_utils}
+%define utilver 0.4.0+git20150602.81299e5
+%endif
 
 Name:   libchewing
-%define lname  libchewing3
-Version:0.4.0
+%define soname 3
+Version:0.4.0+git20150820.285b47d
 Release:0
-%define utilver 0.4.0git20130807
 Summary:Intelligent Phonetic Input Method Library for Traditional 
Chinese
 License:LGPL-2.1+
 Group:  System/I18n/Chinese
 Url:https://github.com/chewing
-Source: 
https://github.com/chewing/libchewing/releases/download/v%{version}/%{name}-%{version}.tar.bz2
-Source1:chewing-utils-%{utilver}.tar.bz2
+Source: %{name}-%{version}.tar.xz
+Source1:chewing-utils-%{utilver}.tar.gz
 #PATCH-FIX-UPSTREAM yuyic...@gmail.com fix a lot of errors in the code
 Source2:chewing-utils-abuild.patch
 #PATCH-FIX-UPSTREAM marguer...@opensuse.org remove rpath from simple-select
 Patch:  libchewing-0.4.0-simple-select-rpath.patch
+Source99:  baselibs.conf
 BuildRequires:  autoconf >= 2.67
+%if %{with_utils}
 BuildRequires:  gtk2-devel
+%endif
 BuildRequires:  libtool
 %if 0%{?suse_version} >= 1230
 BuildRequires:  makeinfo
@@ -55,21 +61,19 @@
 %package devel
 Summary:Development package for chewing
 Group:  Development/Libraries/C and C++
-Requires:   %{name} = %{version}
+Requires:   %{name}%{soname} = %{version}
 Requires:   python-chewing = %{version}
 
 %description devel
 Development package for chewing (An Intelligent phonetic input method library 
for traditional Chinese)
 
-%package -n %lname
+%package -n %{name}%{soname}
 Summary:Chewing libraries
 Group:  System/Libraries
-Provides:   %{name} = %{version}
-Obsoletes:  %{name} < %{version}
 Requires:   chewing-data
 Recommends: chewing-utils = %{version}
 
-%description -n %lname
+%description -n %{name}%{soname}
 This package contains libraries for Chewing, an intelligent phonetic
 input method library for 

commit libpinyin for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libpinyin for openSUSE:Factory 
checked in at 2015-09-08 17:38:47

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


Package is "libpinyin"

Changes:

--- /work/SRC/openSUSE:Factory/libpinyin/libpinyin.changes  2015-04-10 
09:52:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.libpinyin.new/libpinyin.changes 2015-09-08 
17:39:58.0 +0200
@@ -1,0 +2,11 @@
+Tue Aug 25 01:13:52 UTC 2015 - opensuse-packag...@opensuse.org
+
+- Update to version 1.2.0+git20150731.958c597:
+  + fixes Kyoto Cabinet bug
+  + Resolve NULL used in arithmetic
+  + Resolve ambiguos usage of log(3)
+  + bump version 1.2.0
+- add patch: libpinyin-1.2.0-avoid_download_at_buildtime.patch
+- remove patch: libpinyin-1.0.99.20150212-avoid_download_at_buildtime.patch
+
+---

Old:

  libpinyin-1.0.99.20150212-avoid_download_at_buildtime.patch
  libpinyin-1.1.0.tar.gz
  model8.text.tar.gz

New:

  _service
  _servicedata
  libpinyin-1.2.0+git20150731.958c597.tar.xz
  libpinyin-1.2.0-avoid_download_at_buildtime.patch
  model10.text.tar.gz



Other differences:
--
++ libpinyin.spec ++
--- /var/tmp/diff_new_pack.AWpUgS/_old  2015-09-08 17:40:44.0 +0200
+++ /var/tmp/diff_new_pack.AWpUgS/_new  2015-09-08 17:40:44.0 +0200
@@ -16,51 +16,44 @@
 #
 
 
-%define lname libpinyin5
-
+%define soname 6
 Name:   libpinyin
-Version:1.1.0
+Version:1.2.0+git20150731.958c597
 Release:0
 Summary:Intelligent Pinyin IME
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:https://github.com/libpinyin/libpinyin
-Source: %{name}-%{version}.tar.gz
-Source1:model8.text.tar.gz
+Source: %{name}-%{version}.tar.xz
+Source1:model10.text.tar.gz
 Source99:   baselibs.conf
 # PATCH-FIX-OPENSUSE marguer...@opensuse.org - avoid download at buildtime
-Patch:  libpinyin-1.0.99.20150212-avoid_download_at_buildtime.patch
+Patch0: libpinyin-1.2.0-avoid_download_at_buildtime.patch
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  glib2-devel
 BuildRequires:  gnome-common
 BuildRequires:  intltool
-%if 0%{?suse_version}
+BuildRequires:  libtool
+BuildRequires:  xz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} >= 1140
 BuildRequires:  libdb-4_8-devel
 %else
 BuildRequires:  libdb-4_5-devel
 %endif
-%else
-BuildRequires:  libdb-devel
-BuildRequires:  libtool-ltdl-devel
-%endif
-BuildRequires:  fdupes
-BuildRequires:  libtool
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Libpinyin is a staging joint effort of many Chinese Pinyin IME development 
teams.
 It aims to be an Intelligent (and Universal) Sentence-based Pinyin IME Backend
 supports many Language Models and Frontends.
 
-%package -n %{lname}
+%package -n %{name}%{soname}
 Summary:Intelligent Pinyin IME
 Group:  System/Libraries
 Requires:   %{name}-data
-Provides:   %{name} = %{version}
-Obsoletes:  %{name} < %{version}
 
-%description -n %{lname}
+%description -n %{name}%{soname}
 Libpinyin is a staging joint effort of many Chinese Pinyin IME development 
teams.
 It aims to be an Intelligent (and Universal) Sentence-based Pinyin IME Backend
 supports many Language Models and Frontends.
@@ -78,11 +71,10 @@
 
 This package provides language model table data for libpinyin.
 
-
 %package devel
 Summary:Intelligent Pinyin IME
 Group:  Development/Libraries/C and C++
-Requires:   %{name} = %{version}
+Requires:   %{name}%{soname} = %{version}
 Requires:   %{name}-tools = %{version}
 
 %description devel
@@ -104,28 +96,24 @@
 %prep
 %setup -q
 cp -r %{SOURCE1} data/
-%patch -p1
-./autogen.sh
+%patch0 -p1
+NOCONFIGURE=1 ./autogen.sh
 
 %build
 %configure --disable-static
 make %{?_smp_mflags}
 
 %install
-%makeinstall
-find %{buildroot}%{_libdir} -name "*.la" -type f -delete -print
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+find %{buildroot} -type f -name "*.la" -delete -print
 
-%if 0%{?suse_version}
 %fdupes %{buildroot}
-%else
-fdupes -nqr %{buildroot}
-%endif
 
-%post -n %{lname} -p /sbin/ldconfig
+%post -n %{name}%{soname} -p /sbin/ldconfig
 
-%postun -n %{lname} -p /sbin/ldconfig
+%postun -n %{name}%{soname} -p /sbin/ldconfig
 
-%files -n %{lname}
+%files -n %{name}%{soname}
 %defattr(-,root,root)
 %doc ChangeLog AUTHORS COPYING README
 %{_libdir}/%{name}.so.*

++ _service ++

  
https://github.com/libpinyin/libpinyin
git
.git
1.2.0+git%cd.%h
master
enable
  
  
libpinyin-*.tar

commit btrfsprogs for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package btrfsprogs for openSUSE:Factory 
checked in at 2015-09-08 17:37:21

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


Package is "btrfsprogs"

Changes:

--- /work/SRC/openSUSE:Factory/btrfsprogs/btrfsprogs.changes2015-09-03 
18:07:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.btrfsprogs.new/btrfsprogs.changes   
2015-09-08 17:38:14.0 +0200
@@ -1,0 +2,33 @@
+Thu Sep  3 00:00:00 CEST 2015 - dste...@suse.cz
+
+- version 4.2
+  * enhancements:
+* mkfs: do not create extra single chunks on multiple devices
+* resize: try to guess the minimal size, 'inspect min-dev-size'
+* qgroup assign: add option to schedule rescan
+* chunk-recover: be more verbose about the scanning process
+  * fixes:
+* check:
+  * find stripes crossing stripe boundary -- created by convert
+  * print correct range for file hole when there are no extents
+   and learn how to fix it
+* replace: more sanity checks
+* convert: concurrency fixes related to reporting progress
+* find-root: option -a will not skip the current root anymore
+* subvol list: fix occasional crash
+* do not create stripes crossing stripe boundary
+  * build:
+* fixes for musl libc
+* preliminary support for android (not working yet, more code changes 
needed)
+* new EXTRA_CFLAGS and EXTRA_LDFLAGS
+  * other:
+* lots of cleanups
+* tests: lots of updates, new tests, framework improvements
+* documentation updates
+* debugging: print-tree shows stripe length
+- Removed patches (upstreamed):
+  * 2104-get-min-size-for-resize.patch
+  * 2105-move-min-resize-implementation-to-inspec.patch
+  * 2106-inspect-add-command-min-dev-size.patch
+
+---

Old:

  2104-get-min-size-for-resize.patch
  2105-move-min-resize-implementation-to-inspec.patch
  2106-inspect-add-command-min-dev-size.patch
  btrfs-progs-v4.1.2.tar.gz

New:

  btrfs-progs-v4.2.tar.gz



Other differences:
--
++ btrfsprogs.spec ++
--- /var/tmp/diff_new_pack.8LqIYM/_old  2015-09-08 17:38:18.0 +0200
+++ /var/tmp/diff_new_pack.8LqIYM/_new  2015-09-08 17:38:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   btrfsprogs
-Version:4.1.2
+Version:4.2
 Release:0
 Summary:Utilities for the Btrfs filesystem
 License:GPL-2.0
@@ -33,9 +33,6 @@
 Patch163:   0163-btrfs-progs-fsck-fix-segfault.patch
 Patch167:   0167-Btrfs-progs-make-find_and_setup_root-return-an-error.patch
 Patch168:   0168-Btrfs-progs-don-t-bug-out-if-we-can-t-find-the-last-.patch
-Patch2104:  2104-get-min-size-for-resize.patch
-Patch2105:  2105-move-min-resize-implementation-to-inspec.patch
-Patch2106:  2106-inspect-add-command-min-dev-size.patch
 
 Patch1000:  local-version-override.patch
 Patch1001:  fix-doc-build-on-SLE11SP3.diff
@@ -85,9 +82,6 @@
 %patch163 -p1
 %patch167 -p1
 %patch168 -p1
-%patch2104 -p1
-%patch2105 -p1
-%patch2106 -p1
 %patch1000 -p1
 %patch1001 -p1
 %patch1002 -p1
@@ -212,6 +206,7 @@
 %{_mandir}/man8/btrfs-scrub.8.gz
 %{_mandir}/man8/btrfs-send.8.gz
 %{_mandir}/man8/btrfs-subvolume.8.gz
+%{_mandir}/man8/btrfs-select-super.8.gz
 %dir %{_datadir}/bash-completion
 %dir %{_datadir}/bash-completion/completions
 %{_datadir}/bash-completion/completions/btrfs

++ btrfs-progs-v4.1.2.tar.gz -> btrfs-progs-v4.2.tar.gz ++
 5032 lines of diff (skipped)

++ local-version-override.patch ++
--- /var/tmp/diff_new_pack.8LqIYM/_old  2015-09-08 17:38:19.0 +0200
+++ /var/tmp/diff_new_pack.8LqIYM/_new  2015-09-08 17:38:19.0 +0200
@@ -6,8 +6,8 @@
  # Copyright 2008, Oracle
  # Released under the GNU GPLv2
  
--v="v4.1.2"
-+v="v4.1.2+20150724"
+-v="v4.2"
++v="v4.2+20150903"
  
  opt=$1
  




commit lsvpd for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package lsvpd for openSUSE:Factory checked 
in at 2015-09-08 17:38:46

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


Package is "lsvpd"

Changes:

--- /work/SRC/openSUSE:Factory/lsvpd/lsvpd.changes  2015-04-22 
01:19:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.lsvpd.new/lsvpd.changes 2015-09-08 
17:39:57.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 28 12:33:16 UTC 2015 - jloe...@suse.com
+
+- support lsvpd on PowerKVM guest (bsc#941938)
+
+- added patches:
+  * lsvpd.bug-941938_add_powerkvm_guest_detection1.patch
+  * lsvpd.bug-941938_add_powerkvm_guest_detection2.patch
+
+---

New:

  lsvpd.bug-941938_add_powerkvm_guest_detection1.patch
  lsvpd.bug-941938_add_powerkvm_guest_detection2.patch



Other differences:
--
++ lsvpd.spec ++
--- /var/tmp/diff_new_pack.WFQHLY/_old  2015-09-08 17:39:58.0 +0200
+++ /var/tmp/diff_new_pack.WFQHLY/_new  2015-09-08 17:39:58.0 +0200
@@ -25,6 +25,8 @@
 Url:http://sourceforge.net/projects/linux-diag/
 Source0:
http://sourceforge.net/projects/linux-diag/files/lsvpd-new/%{version}/%{name}-%{version}.tar.gz
 Patch0: lsvpd.no-return-in-nonvoid-function.patch
+Patch1: lsvpd.bug-941938_add_powerkvm_guest_detection1.patch
+Patch2: lsvpd.bug-941938_add_powerkvm_guest_detection2.patch
 BuildRequires:  gcc-c++
 BuildRequires:  librtas-devel
 BuildRequires:  libvpd2-devel
@@ -49,6 +51,8 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 export CFLAGS="%{optflags} -UPCI_IDS -DPCI_IDS='\"%{_datadir}/pci.ids\"' 
-UUSB_IDS -DUSB_IDS='\"%{_datadir}/usb.ids\"'"

++ lsvpd.bug-941938_add_powerkvm_guest_detection1.patch ++
>From 4113ddd54a2ff224ff064cad99fbbd972f933ff6 Mon Sep 17 00:00:00 2001
From: Janani 
Date: Thu, 4 Dec 2014 14:00:06 +0530
Subject: [PATCH] lsmcode: Read entire /proc/cpuinfo to fetch platform

The platform field in /proc/cpuinfo for both PowerKVM Guest and
PowerVM LPAR is pSeries. In order to fetch the right platform, we need
to read the entire file. If pSeries (emulated by qemu) is present in
the file, we can be sure the platform is PowerKVM Guest.

Signed-off-by: Janani Venkataraman 
Signed-off-by: Vasant Hegde 
---
 src/internal/sys_interface/platformcollector.cpp | 38 ++--
 1 file changed, 29 insertions(+), 9 deletions(-)

diff --git a/src/internal/sys_interface/platformcollector.cpp 
b/src/internal/sys_interface/platformcollector.cpp
index 410056159359..a45e98c4ccfc 100644
--- a/src/internal/sys_interface/platformcollector.cpp
+++ b/src/internal/sys_interface/platformcollector.cpp
@@ -58,16 +58,36 @@ error:
 
void PlatformCollector::get_platform()
{
-   string platform = getCpuInfoTag("platform");
-
-   if ( platform == "PowerNV" )
-   platform_type = PF_POWERKVM_HOST;
-   else if ( platform == "pSeries (emulated by qemu)" )
-   platform_type = PF_POWERKVM_PSERIES_GUEST;
-   else if ( platform == "pSeries" )
-   platform_type = PF_POWERVM_LPAR;
-   else
+   string buf;
+   ifstream ifs(PLATFORM_FILE);
+   Logger log;
+
+   if (!ifs.is_open()) {
+   log.log("Unable to open file /proc/cpuinfo", 
LOG_WARNING);
platform_type = PF_ERROR;
+   return;
+   }
+
+   buf[0] = '\0';
+
+   while (getline(ifs, buf)) {
+   if (strstr(buf.c_str(), "PowerNV")) {
+   platform_type = PF_POWERKVM_HOST;
+   break;
+   } else if (strstr(buf.c_str(), "pSeries (emulated by 
qemu)")) {
+   platform_type = PF_POWERKVM_PSERIES_GUEST;
+   break;
+   } else if (strstr(buf.c_str(), "pSeries")) {
+   platform_type = PF_POWERVM_LPAR;
+   /* catch model for PowerNV guest */
+   continue;
+   }
+   }
+
+   if (platform_type == PF_NULL)
+   platform_type = PF_ERROR;
+
+   ifs.close();
}
 
string PlatformCollector::get_platform_name()
-- 
2.1.2

++ lsvpd.bug-941938_add_powerkvm_guest_detection2.patch ++
Index: 

commit hugin for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package hugin for openSUSE:Factory checked 
in at 2015-09-08 17:39:00

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


Package is "hugin"

Changes:

--- /work/SRC/openSUSE:Factory/hugin/hugin.changes  2015-03-05 
18:15:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.hugin.new/hugin.changes 2015-09-08 
17:41:48.0 +0200
@@ -0,0 +1,17 @@
+Sun Aug 30 09:07:36 UTC 2015 - salser...@gmail.com
+
+- Updated to version 2015.0.0
+  * The makefile based stitching engine has been replaced with direct calls to 
the underlying programs.
+  * Hugin now has it's own blender, verdandi, based on a watershed algorithm, 
which has been included in 'nona'.
+  * The lensfun library has been removed as it did not fulfill our 
expectations. It has been replaced with our own camera and lens database which 
uses a data mining approach and operates automatically without user 
intervention.
+  * The fast preview window has a new tool to add or remove control points to 
selected areas in the output projection.
+  * Automatic exposure stack detection is now applied when loading images, and 
an option has been added to unlink image position when adding stacks.
+  * The fine-tune and auto-estimate functions in the control point tab have 
been made projection aware.
+  * PTBatcherGUI has more choice for the end of the process: depending on the 
operating system the PTBatcherGUI can be closed, the computer can be shut down 
or send to the hibernate mode.
+  * PTBatcherGUI now shows the thumbnails when searching for images in 
directories.
+  * Many of the underlying tools in hugin are now able to use available cpu 
cores.
+  * New command line tools for CLI processing: verdandi, hugin_executor, 
hugin_lensdb
+  * Many more improvements and bug fixes.
+- Removed hugin-boost-1.56.0.patch (included upstream).
+- Removed hugin-lensfun-0.3.patch (support for lensfun has been dropped).
+

Old:

  hugin-2014.0.0.tar.bz2
  hugin-boost-1.56.0.patch
  hugin-lensfun-0.3.patch

New:

  hugin-2015.0.0.tar.bz2



Other differences:
--
++ hugin.spec ++
--- /var/tmp/diff_new_pack.fxzkQm/_old  2015-09-08 17:42:13.0 +0200
+++ /var/tmp/diff_new_pack.fxzkQm/_new  2015-09-08 17:42:13.0 +0200
@@ -30,7 +30,6 @@
 BuildRequires:  gcc-c++
 BuildRequires:  glew-devel
 BuildRequires:  lapack
-BuildRequires:  lensfun-devel
 BuildRequires:  libXi-devel
 BuildRequires:  libXmu-devel
 BuildRequires:  libexiv2-devel
@@ -41,13 +40,14 @@
 BuildRequires:  libxml2
 BuildRequires:  python-devel
 BuildRequires:  python-wxWidgets >= 2.7.0
+BuildRequires:  sqlite3-devel
 BuildRequires:  swig
 BuildRequires:  tclap
 BuildRequires:  update-desktop-files
-BuildRequires:  vigra
+BuildRequires:  vigra-devel
 BuildRequires:  wxWidgets-devel
 BuildRequires:  zip
-%define mversion 2014.0
+%define mversion 2015.0
 Version:%{mversion}.0
 Release:0
 Summary:Toolchain for Stitching of Images and Creating Panoramas
@@ -59,10 +59,6 @@
 # svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
 #Source: %%{name}-svn2008.tar.bz2
 Source1:%{name}-svn-dummy
-# PATCH-FIX-UPSTREAM hugin-boost-1.56.0.patch dims...@opensuse.org -- Fix 
build with Boost 1.56.0, taken from 
http://sourceforge.net/p/hugin/hugin/ci/e237d6d1d87354f974d37a95ba52dbd9666dd310/tree/src/tools/ParseExp.cpp?diff=dde84e96b755646f3390bd9114a76f7c392fd0bf
-Patch0: hugin-boost-1.56.0.patch
-# PATCH-FIX-UPSTREAM hugin-lensfun-0.3.patch dims...@opensuse.org  -- Fix 
build with hugin 0.3
-Patch1: hugin-lensfun-0.3.patch
 Requires:   enblend-enfuse >= 3.2
 # needed for photo stiching (bnc#822775)
 Requires:   make
@@ -83,8 +79,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 # For SVN snapshot:
 #setup -q -n %%{name}
@@ -130,7 +124,7 @@
 # Use better place for MIME icons.
 mv %{buildroot}%{_datadir}/icons/gnome %{buildroot}%{_datadir}/icons/hicolor
 mkdir -p %{buildroot}%{_docdir}/%{name}
-cp -a AUTHORS authors.txt COPYING ChangeLog LICENCE_VIGRA README README_JP 
TODO %{buildroot}%{_docdir}/%{name}/
+cp -a AUTHORS authors.txt COPYING ChangeLog README README_JP TODO 
%{buildroot}%{_docdir}/%{name}/
 chmod -x %{buildroot}%{_docdir}/%{name}/*
 %fdupes %{buildroot}
 

++ hugin-2014.0.0.tar.bz2 -> hugin-2015.0.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/hugin/hugin-2014.0.0.tar.bz2 
/work/SRC/openSUSE:Factory/.hugin.new/hugin-2015.0.0.tar.bz2 differ: char 11, 
line 1




commit python-cerealizer for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-cerealizer for 
openSUSE:Factory checked in at 2015-09-08 17:39:05

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


Package is "python-cerealizer"

Changes:

--- /work/SRC/openSUSE:Factory/python-cerealizer/python-cerealizer.changes  
2013-01-14 12:03:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-cerealizer.new/python-cerealizer.changes 
2015-09-08 17:42:15.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-cerealizer.spec ++
--- /var/tmp/diff_new_pack.gbxL1F/_old  2015-09-08 17:42:16.0 +0200
+++ /var/tmp/diff_new_pack.gbxL1F/_new  2015-09-08 17:42:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cerealizer
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
+%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
-%{py_requires}
+%endif
 
 %description
 A secure pickle-like module. It support basic types (int, string, unicode,




commit NetworkManager-vpnc for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-vpnc for 
openSUSE:Factory checked in at 2015-09-08 17:37:01

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


Package is "NetworkManager-vpnc"

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-vpnc/NetworkManager-vpnc.changes  
2015-07-05 17:59:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-vpnc.new/NetworkManager-vpnc.changes 
2015-09-08 17:38:11.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  1 10:39:40 UTC 2015 - si...@simotek.net
+
+- Update to version 1.0.6:
+  + Fix error checking for write() calls.
+  + Enhanced the GUI to support agent-owned and always-ask
+passwords.
+  + Updated translations.
+
+---

Old:

  NetworkManager-vpnc-1.0.2.tar.xz

New:

  NetworkManager-vpnc-1.0.6.tar.xz



Other differences:
--
++ NetworkManager-vpnc.spec ++
--- /var/tmp/diff_new_pack.yoCfBA/_old  2015-09-08 17:38:12.0 +0200
+++ /var/tmp/diff_new_pack.yoCfBA/_new  2015-09-08 17:38:12.0 +0200
@@ -20,7 +20,7 @@
 Summary:NetworkManager VPN Support for vpnc
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Version:1.0.2
+Version:1.0.6
 Release:0
 # FIXME .desktop icon is currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
@@ -36,7 +36,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libnm-glib) >= 0.9.10
 BuildRequires:  pkgconfig(libnm-glib-vpn) >= 0.9.10
-BuildRequires:  pkgconfig(libnm-gtk) >= 0.9.10
+BuildRequires:  pkgconfig(libnm-gtk) >= 1.0.5
 BuildRequires:  pkgconfig(libnm-util) >= 0.9.10
 BuildRequires:  pkgconfig(libsecret-unstable)
 Requires:   %{name}-frontend

++ NetworkManager-vpnc-1.0.2.tar.xz -> NetworkManager-vpnc-1.0.6.tar.xz 
++
 1653 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/NetworkManager-vpnc-1.0.2/NEWS new/NetworkManager-vpnc-1.0.6/NEWS
--- old/NetworkManager-vpnc-1.0.2/NEWS  2015-05-05 14:11:32.0 +0200
+++ new/NetworkManager-vpnc-1.0.6/NEWS  2015-08-27 18:27:22.0 +0200
@@ -1,4 +1,16 @@
 ===
+network-manager-vpnc-1.0.6
+Overview of changes since network-manager-vpnc-1.0.2
+===
+
+This is a new stable release of network-manager-vpnc.  Notable changes include:
+
+* Fix error checking for write() calls
+* Enhanced the GUI to support agent-owned and always-ask passwords
+* Updated Russian translation
+
+
+===
 network-manager-vpnc-1.0.2
 Overview of changes since network-manager-vpnc-1.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/NetworkManager-vpnc-1.0.2/configure.ac 
new/NetworkManager-vpnc-1.0.6/configure.ac
--- old/NetworkManager-vpnc-1.0.2/configure.ac  2015-05-05 14:11:32.0 
+0200
+++ new/NetworkManager-vpnc-1.0.6/configure.ac  2015-08-27 18:27:30.0 
+0200
@@ -1,6 +1,6 @@
 AC_PREREQ(2.52)
 
-AC_INIT(NetworkManager-vpnc, 1.0.2, d...@redhat.com, NetworkManager-vpnc)
+AC_INIT(NetworkManager-vpnc, 1.0.6, d...@redhat.com, NetworkManager-vpnc)
 AM_INIT_AUTOMAKE([subdir-objects no-dist-gzip dist-bzip2])
 AM_MAINTAINER_MODE
 
@@ -72,7 +72,7 @@
AC_SUBST(GTK_LIBS)
GTK_CFLAGS="$GTK_CFLAGS -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_4"
 
-   PKG_CHECK_MODULES(NMGTK, libnm-gtk >= 0.9.10)
+   PKG_CHECK_MODULES(NMGTK, libnm-gtk >= 1.0.5)
AC_SUBST(NMGTK_CFLAGS)
AC_SUBST(NMGTK_LIBS)
 
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 

commit xmlsec1 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package xmlsec1 for openSUSE:Factory checked 
in at 2015-09-08 17:39:16

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


Package is "xmlsec1"

Changes:

--- /work/SRC/openSUSE:Factory/xmlsec1/xmlsec1.changes  2014-02-05 
13:46:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.xmlsec1.new/xmlsec1.changes 2015-09-08 
17:42:24.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep  3 12:39:49 UTC 2015 - astie...@suse.com
+
+- update to 1.2.20:
+  * fix a number of miscellaneous bugs 
+  * update expired or soon-to-be-expired certificates in test suite
+
+---

Old:

  xmlsec1-1.2.19.tar.gz

New:

  xmlsec1-1.2.20.tar.gz



Other differences:
--
++ xmlsec1.spec ++
--- /var/tmp/diff_new_pack.EndgA5/_old  2015-09-08 17:42:28.0 +0200
+++ /var/tmp/diff_new_pack.EndgA5/_new  2015-09-08 17:42:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmlsec1
 #
-# 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
@@ -14,21 +14,21 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 %global libnamelibxmlsec1-1
 %global libopenssl libxmlsec1-openssl1
 %global libgcrypt  libxmlsec1-gcrypt1
 %global libgnutls  libxmlsec1-gnutls1
 %global libnss libxmlsec1-nss1
-
 Name:   xmlsec1
-Version:1.2.19
+Version:1.2.20
 Release:0
 Summary:Library providing support for "XML Signature" and "XML 
Encryption" standards
 License:MIT
 Group:  Productivity/Security
 Url:http://www.aleksey.com/xmlsec/
 Source0:
http://www.aleksey.com/xmlsec/download/xmlsec1-%{version}.tar.gz
-
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libtool
 BuildRequires:  pkgconfig

++ xmlsec1-1.2.19.tar.gz -> xmlsec1-1.2.20.tar.gz ++
 60487 lines of diff (skipped)




commit python-zope.exceptions for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-zope.exceptions for 
openSUSE:Factory checked in at 2015-09-08 17:39:15

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


Package is "python-zope.exceptions"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-zope.exceptions/python-zope.exceptions.changes
2015-05-19 23:47:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-zope.exceptions.new/python-zope.exceptions.changes
   2015-09-08 17:42:23.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 12:28:13 UTC 2015 - toddrme2...@gmail.com
+
+- Disable tests to avoid dependency loop
+
+---



Other differences:
--
++ python-zope.exceptions.spec ++
--- /var/tmp/diff_new_pack.N2SrqW/_old  2015-09-08 17:42:24.0 +0200
+++ /var/tmp/diff_new_pack.N2SrqW/_new  2015-09-08 17:42:24.0 +0200
@@ -29,12 +29,12 @@
 # Documentation requirements:
 BuildRequires:  python-Sphinx
 BuildRequires:  python-repoze.sphinx.autointerface
+# Test result in a dependency loop
 # Test requirements:
-BuildRequires:  python-six
-BuildRequires:  python-zope.interface
-BuildRequires:  python-zope.testrunner
+# BuildRequires:  python-six
+# BuildRequires:  python-zope.interface
+# BuildRequires:  python-zope.testrunner
 Requires:   python-zope.interface
-Requires:   python-zope.testrunner
 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()")}
@@ -64,11 +64,12 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
+# Test result in a dependency loop
 #NOTE(saschpe): Tests are self-referential, i.e. move to sperarate spec file
 #NOTE(frispete): run tests against source in order to avoid the need for an
 #external test package
-%check
-PYTHONPATH=$(pwd)/src python setup.py -q test
+# %check
+# PYTHONPATH=$(pwd)/src python setup.py -q test
 
 %files
 %defattr(-,root,root,-)




commit python-nbxmpp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-nbxmpp for openSUSE:Factory 
checked in at 2015-09-08 17:39:10

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


Package is "python-nbxmpp"

Changes:

--- /work/SRC/openSUSE:Factory/python-nbxmpp/python-nbxmpp.changes  
2015-08-01 11:35:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-nbxmpp.new/python-nbxmpp.changes 
2015-09-08 17:42:18.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-nbxmpp.spec ++
--- /var/tmp/diff_new_pack.xL8TWb/_old  2015-09-08 17:42:21.0 +0200
+++ /var/tmp/diff_new_pack.xL8TWb/_new  2015-09-08 17:42:21.0 +0200
@@ -28,8 +28,11 @@
 BuildRequires:  fdupes
 BuildRequires:  python-devel
 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
-%py_requires
+%endif
 
 %description
 Python-nbxmpp is a Python library that provides a way for Python




commit python-OleFileIO_PL for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-OleFileIO_PL for 
openSUSE:Factory checked in at 2015-09-08 17:39:03

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


Package is "python-OleFileIO_PL"

Changes:

--- /work/SRC/openSUSE:Factory/python-OleFileIO_PL/python-OleFileIO_PL.changes  
2013-09-26 19:54:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-OleFileIO_PL.new/python-OleFileIO_PL.changes 
2015-09-08 17:42:14.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:03:45 UTC 2015 - toddrme2...@gmail.com
+
+- This shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-OleFileIO_PL.spec ++
--- /var/tmp/diff_new_pack.hdVv9i/_old  2015-09-08 17:42:15.0 +0200
+++ /var/tmp/diff_new_pack.hdVv9i/_new  2015-09-08 17:42:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-OleFileIO_PL
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,7 +28,6 @@
 BuildRequires:  unzip
 Provides:   OleFileIO_PL = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
 %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





commit python-hachoir-core for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-hachoir-core for 
openSUSE:Factory checked in at 2015-09-08 17:39:06

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


Package is "python-hachoir-core"

Changes:

--- /work/SRC/openSUSE:Factory/python-hachoir-core/python-hachoir-core.changes  
2013-12-31 10:09:07.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hachoir-core.new/python-hachoir-core.changes 
2015-09-08 17:42:16.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-hachoir-core.spec ++
--- /var/tmp/diff_new_pack.Fo5rOO/_old  2015-09-08 17:42:17.0 +0200
+++ /var/tmp/diff_new_pack.Fo5rOO/_new  2015-09-08 17:42:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hachoir-core
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,10 +28,10 @@
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-
 %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)")}
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%else
+BuildArch:  noarch
 %endif
 
 %description




commit syncthing-gtk for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package syncthing-gtk for openSUSE:Factory 
checked in at 2015-09-08 17:39:02

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


Package is "syncthing-gtk"

Changes:

--- /work/SRC/openSUSE:Factory/syncthing-gtk/syncthing-gtk.changes  
2015-08-01 11:37:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing-gtk.new/syncthing-gtk.changes 
2015-09-08 17:42:13.0 +0200
@@ -1,0 +2,8 @@
+Wed Sep  2 17:21:42 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.7.5.1 (changes since 0.7.4.1):
+  * Better support for dark GTK+ themes.
+  * Fix showing stopped folders as "up-to-date".
+  * Fix notification icon missing on i3wm.
+
+---

Old:

  syncthing-gtk-0.7.4.1.tar.gz

New:

  syncthing-gtk-0.7.5.1.tar.gz



Other differences:
--
++ syncthing-gtk.spec ++
--- /var/tmp/diff_new_pack.Gtdwi7/_old  2015-09-08 17:42:14.0 +0200
+++ /var/tmp/diff_new_pack.Gtdwi7/_new  2015-09-08 17:42:14.0 +0200
@@ -19,7 +19,7 @@
 %global __requires_exclude 
typelib\\(Caja\\)|typelib\\(Nautilus\\)|typelib\\(Nemo\\)
 %define _name   syncthing_gtk
 Name:   syncthing-gtk
-Version:0.7.4.1
+Version:0.7.5.1
 Release:0
 Summary:Syncthing Gtk-based graphical interface
 License:GPL-2.0+

++ syncthing-gtk-0.7.4.1.tar.gz -> syncthing-gtk-0.7.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syncthing-gtk-0.7.4.1/about.glade 
new/syncthing-gtk-0.7.5.1/about.glade
--- old/syncthing-gtk-0.7.4.1/about.glade   2015-07-23 09:03:51.0 
+0200
+++ new/syncthing-gtk-0.7.5.1/about.glade   2015-09-02 17:54:54.0 
+0200
@@ -36,34 +36,6 @@
 0
   
 
-
-  
-True
-False
-vertical
-
-  
-True
-False
-span 
size="small"This program uses icons based on GLYPHICONS FREE package.
-Visit a href="http://glyphicons.com/"GLYPHICONS.com/a; for more 
info./span
-True
-center
-True
-  
-  
-False
-True
-0
-  
-
-  
-  
-False
-True
-2
-  
-
   
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syncthing-gtk-0.7.4.1/app.glade 
new/syncthing-gtk-0.7.5.1/app.glade
--- old/syncthing-gtk-0.7.4.1/app.glade 2015-07-23 09:03:51.0 +0200
+++ new/syncthing-gtk-0.7.5.1/app.glade 2015-09-02 17:54:54.0 +0200
@@ -857,7 +857,7 @@
True
False
1
-   icons/show_id.png
+   icons/show_id.svg

 

@@ -909,7 +909,7 @@
True
False
1
-   icons/show_id.png
+   icons/show_id.svg
 
 
 
@@ -960,14 +960,14 @@
True
False
1
-   icons/eye.png
+   icons/eye.svg
 
 
 
True
False
1
-   icons/show_id.png
+   icons/show_id.svg
 
 
 
Files old/syncthing-gtk-0.7.4.1/icons/add_node.png and 
new/syncthing-gtk-0.7.5.1/icons/add_node.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syncthing-gtk-0.7.4.1/icons/add_node.svg 
new/syncthing-gtk-0.7.5.1/icons/add_node.svg
--- old/syncthing-gtk-0.7.4.1/icons/add_node.svg1970-01-01 
01:00:00.0 +0100
+++ new/syncthing-gtk-0.7.5.1/icons/add_node.svg2015-09-02 
17:54:54.0 +0200
@@ -0,0 +1,6 @@
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="14pt" height="14pt" 
viewBox="0 0 14 14" version="1.1">
+
+
+
+
Files old/syncthing-gtk-0.7.4.1/icons/add_repo.png and 
new/syncthing-gtk-0.7.5.1/icons/add_repo.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syncthing-gtk-0.7.4.1/icons/add_repo.svg 
new/syncthing-gtk-0.7.5.1/icons/add_repo.svg
--- old/syncthing-gtk-0.7.4.1/icons/add_repo.svg1970-01-01 
01:00:00.0 +0100
+++ new/syncthing-gtk-0.7.5.1/icons/add_repo.svg2015-09-02 
17:54:54.0 +0200
@@ -0,0 +1,7 @@
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="14pt" height="14pt" 
viewBox="0 0 14 14" version="1.1">
+
+
+
+
+
Files old/syncthing-gtk-0.7.4.1/icons/address.png and 
new/syncthing-gtk-0.7.5.1/icons/address.png differ
diff -urN 

commit python-hachoir-parser for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-hachoir-parser for 
openSUSE:Factory checked in at 2015-09-08 17:39:12

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


Package is "python-hachoir-parser"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-hachoir-parser/python-hachoir-parser.changes  
2014-12-23 11:49:33.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hachoir-parser.new/python-hachoir-parser.changes
 2015-09-08 17:42:21.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-hachoir-parser.spec ++
--- /var/tmp/diff_new_pack.5DI5g8/_old  2015-09-08 17:42:22.0 +0200
+++ /var/tmp/diff_new_pack.5DI5g8/_new  2015-09-08 17:42:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hachoir-parser
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,10 +29,10 @@
 BuildRequires:  python-devel
 Requires:   python-hachoir-core
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-
 %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)")}
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%else
+BuildArch:  noarch
 %endif
 
 %description




commit perl-Minion for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Minion for openSUSE:Factory 
checked in at 2015-09-08 17:39:22

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-05-18 
22:23:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Minion.new/perl-Minion.changes 
2015-09-08 17:42:37.0 +0200
@@ -1,0 +2,23 @@
+Thu Sep  3 08:50:10 UTC 2015 - co...@suse.com
+
+- updated to 1.18
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  1.18  2015-08-30
+- Fixed Makefile.PL to be compliant with version 2 of the CPAN distribution
+  metadata specification.
+
+---
+Sat Aug 29 08:54:57 UTC 2015 - co...@suse.com
+
+- updated to 1.17
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  1.17  2015-08-29
+- Fixed bug in worker command where new jobs would still be dequeued after
+  receiving an INT/TERM signal.
+  
+  1.16  2015-08-28
+- Improved worker command to detect workers without heartbeat a little 
faster.
+
+---

Old:

  Minion-1.15.tar.gz

New:

  Minion-1.18.tar.gz



Other differences:
--
++ perl-Minion.spec ++
--- /var/tmp/diff_new_pack.VeNizX/_old  2015-09-08 17:42:38.0 +0200
+++ /var/tmp/diff_new_pack.VeNizX/_new  2015-09-08 17:42:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Minion
-Version:1.15
+Version:1.18
 Release:0
 %define cpan_name Minion
 Summary:Job queue

++ Minion-1.15.tar.gz -> Minion-1.18.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.15/Changes new/Minion-1.18/Changes
--- old/Minion-1.15/Changes 2015-05-15 23:42:01.0 +0200
+++ new/Minion-1.18/Changes 2015-08-29 13:39:17.0 +0200
@@ -1,4 +1,15 @@
 
+1.18  2015-08-30
+  - Fixed Makefile.PL to be compliant with version 2 of the CPAN distribution
+metadata specification.
+
+1.17  2015-08-29
+  - Fixed bug in worker command where new jobs would still be dequeued after
+receiving an INT/TERM signal.
+
+1.16  2015-08-28
+  - Improved worker command to detect workers without heartbeat a little 
faster.
+
 1.15  2015-05-15
   - Added support for retrying jobs with a delay. (kwa)
   - Added delay option to retry method in Minion::Job. (kwa)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.15/META.json new/Minion-1.18/META.json
--- old/Minion-1.15/META.json   2015-05-15 23:43:54.0 +0200
+++ new/Minion-1.18/META.json   2015-09-02 19:29:02.0 +0200
@@ -3,8 +3,8 @@
"author" : [
   "Sebastian Riedel "
],
-   "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.150001",
+   "dynamic_config" : 0,
+   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150005",
"license" : [
   "artistic_2"
],
@@ -49,9 +49,12 @@
  "http://www.opensource.org/licenses/artistic-license-2.0;
   ],
   "repository" : {
- "url" : "https://github.com/kraih/minion.git;
+ "type" : "git",
+ "url" : "https://github.com/kraih/minion.git;,
+ "web" : "https://github.com/kraih/minion;
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "1.15"
+   "version" : "1.18",
+   "x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Minion-1.15/META.yml new/Minion-1.18/META.yml
--- old/Minion-1.15/META.yml2015-05-15 23:43:53.0 +0200
+++ new/Minion-1.18/META.yml2015-09-02 19:29:01.0 +0200
@@ -6,8 +6,8 @@
   ExtUtils::MakeMaker: '0'
 configure_requires:
   ExtUtils::MakeMaker: '0'
-dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 
2.150001'
+dynamic_config: 0
+generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150005'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -28,4 +28,5 @@
   homepage: http://mojolicio.us
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/minion.git
-version: '1.15'
+version: '1.18'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit perl-DBD-mysql for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-DBD-mysql for openSUSE:Factory 
checked in at 2015-09-08 17:39:20

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


Package is "perl-DBD-mysql"

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBD-mysql/perl-DBD-mysql.changes
2012-05-08 06:47:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DBD-mysql.new/perl-DBD-mysql.changes   
2015-09-08 17:42:36.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep  3 13:15:15 UTC 2015 - bwiedem...@suse.com
+
+- drop upstreamed bnc658792_pod_name_install.diff
+
+---
+Thu Sep  3 08:33:43 UTC 2015 - co...@suse.com
+
+- updated to 4.032
+   see /usr/share/doc/packages/perl-DBD-mysql/ChangeLog
+
+---

Old:

  DBD-mysql-4.021.tar.gz
  bnc658792_pod_name_install.diff

New:

  DBD-mysql-4.032.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-DBD-mysql.spec ++
--- /var/tmp/diff_new_pack.N5tMWj/_old  2015-09-08 17:42:37.0 +0200
+++ /var/tmp/diff_new_pack.N5tMWj/_new  2015-09-08 17:42:37.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBD-mysql
 #
-# Copyright (c) 2012 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,45 +17,40 @@
 
 
 Name:   perl-DBD-mysql
+Version:4.032
+Release:0
 %define cpan_name DBD-mysql
 Summary:MySQL driver for the Perl5 Database Interface (DBI)
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-Version:4.021
-Release:0
 Url:http://search.cpan.org/dist/DBD-mysql/
-Source: 
http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/%{cpan_name}-%{version}.tar.gz
-Patch1: bnc658792_pod_name_install.diff
+Source0:
http://www.cpan.org/authors/id/C/CA/CAPTTOFU/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# quilt does not grock that
-%{perl_requires}
-BuildRequires:  mysql-devel
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBI) >= 1.08
-BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(Test::Deep)
+BuildRequires:  perl(Test::Simple) >= 0.90
 Requires:   perl(DBI) >= 1.08
-Requires:   perl(Data::Dumper)
+%{perl_requires}
+# MANUAL BEGIN
+BuildRequires:  libmysqlclient-devel
+# MANUAL END
 
 %description
-DBD::mysql is the Perl5 Database Interface driver for the MySQL database.
+*DBD::mysql* is the Perl5 Database Interface driver for the MySQL database.
 In other words: DBD::mysql is an interface between the Perl programming
 language and the MySQL programming API that comes with the MySQL relational
 database management system. Most functions provided by this programming API
-are supported. Some rarely used functions are missing, mainly because noone
-ever requested them. :-)
+are supported. Some rarely used functions are missing, mainly because
+no-one ever requested them. :-)
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-# rpmlint: executable-docs,
-#  spurious-executable-perm
-#  script-without-shebang
-find -type f -exec %{__chmod} 0644 {} \;
-%patch1 -p1
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor --cflags="-I%{_includedir}/mysql 
$RPM_OPT_FLAGS"
-
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
 %{__make} %{?_smp_mflags}
 
 %check
@@ -66,11 +61,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
-%doc ChangeLog eg INSTALL.html README TODO
+%defattr(-,root,root,755)
+%doc ChangeLog LICENSE Makefile.PL.embedded myld TODO
 
 %changelog

++ DBD-mysql-4.021.tar.gz -> DBD-mysql-4.032.tar.gz ++
 11019 lines of diff (skipped)

++ cpanspec.yml ++
---
description_paragraphs: 1
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
preamble: |-
 BuildRequires:  libmysqlclient-devel
#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 python-xdg for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-xdg for openSUSE:Factory 
checked in at 2015-09-08 17:39:14

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


Package is "python-xdg"

Changes:

--- /work/SRC/openSUSE:Factory/python-xdg/python-xdg.changes2013-04-14 
10:43:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-xdg.new/python-xdg.changes   
2015-09-08 17:42:22.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-xdg.spec ++
--- /var/tmp/diff_new_pack.800yf2/_old  2015-09-08 17:42:23.0 +0200
+++ /var/tmp/diff_new_pack.800yf2/_new  2015-09-08 17:42:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-xdg
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -42,7 +42,11 @@
 Obsoletes:  python-pyxdg < %{version}
 %endif
 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
 
 %if %{build_for_python3}
 %define local_py_sitelib  %{python3_sitelib}




commit subversion for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package subversion for openSUSE:Factory 
checked in at 2015-09-08 17:39:29

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-08-27 
08:57:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.subversion.new/subversion.changes   
2015-09-08 17:42:46.0 +0200
@@ -1,0 +2,17 @@
+Thu Sep  3 13:28:33 UTC 2015 - astie...@suse.com
+
+- Apache Subversion 1.9.1:
+  * Fix crash with GPG-agent with non-canonical $HOME
+  * svn: expose expat and zlib versions in svn --version --verbose
+  * svn: improve help text for 'svn info --show-item'
+  * svnserve: fixed minor typo in help text
+  * Fix an error leak in FSFS verification
+  * Fix incomplete membuffer cache initialization
+  * svnfsfs: fix some bugs and inconsistencies in load-index
+  * Fix memory corruption in copy source SWIG bindings
+- drop subversion-1.8.14-httpd-version-number-detection.patch, 
+  change is upstream
+- adjust subversion-1.9.0-allow-httpd-2.4.6.patch for upstream
+  changes
+
+---

Old:

  subversion-1.8.14-httpd-version-number-detection.patch
  subversion-1.9.0.tar.bz2
  subversion-1.9.0.tar.bz2.asc

New:

  subversion-1.9.1.tar.bz2
  subversion-1.9.1.tar.bz2.asc



Other differences:
--
++ subversion.spec ++
--- /var/tmp/diff_new_pack.yQ55cr/_old  2015-09-08 17:43:08.0 +0200
+++ /var/tmp/diff_new_pack.yQ55cr/_new  2015-09-08 17:43:08.0 +0200
@@ -23,9 +23,9 @@
 %global _tmpfilesdir %{_libexecdir}/tmpfiles.d
 %define _fwdefdir %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
 %defineapxs%{_sbindir}/apxs2
-%defineapache_libexecdir   %(%apxs -q LIBEXECDIR)
-%defineapache_sysconfdir   %(%apxs -q SYSCONFDIR)
-%define apache_mmn  %(MMN="$(%apxs -q LIBEXECDIR)_MMN"; test -x "$MMN" 
&& "$MMN")
+%defineapache_libexecdir   %(%{apxs} -q LIBEXECDIR)
+%defineapache_sysconfdir   %(%{apxs} -q SYSCONFDIR)
+%define apache_mmn  %(MMN="$(%{apxs} -q LIBEXECDIR)_MMN"; test -x 
"$MMN" && "$MMN")
 %define sqlite_minimum_version 3.7.12
 # SLE 12 does not ship KDE
 %if 0%{?suse_version} == 1315 && 0%{?is_opensuse} != 1
@@ -36,7 +36,7 @@
 %bcond_without python_ctypes
 %bcond_withall_regression_tests
 Name:   subversion
-Version:1.9.0
+Version:1.9.1
 Release:0
 Summary:Subversion version control system
 License:Apache-2.0
@@ -65,7 +65,6 @@
 Patch40:subversion-perl-underlinking.patch
 Patch44:subversion-1.8.11-swig-py-comment-3.patch
 Patch45:subversion-1.8.11-autocheck-time.patch
-Patch46:subversion-1.8.14-httpd-version-number-detection.patch
 Patch48:subversion-1.9.0-allow-httpd-2.4.6.patch
 BuildRequires:  apache2-devel >= 2.2.0
 BuildRequires:  apache2-prefork
@@ -239,7 +238,6 @@
 %patch40 -p1
 %patch44 -p1
 %patch45 -p1
-%patch46 -p1
 %patch48 -p1
 
 %build
@@ -397,6 +395,7 @@
 
 %check
 export LANG=C LC_ALL=C
+
 make %{?_smp_mflags} check CLEANUP=true || (cat fails.log; exit 1)
 make %{?_smp_mflags} check-javahl || (cat fails.log; exit 1)
 make %{?_smp_mflags} check-swig-pl || (cat fails.log; exit 1)


++ subversion-1.9.0-allow-httpd-2.4.6.patch ++
--- /var/tmp/diff_new_pack.yQ55cr/_old  2015-09-08 17:43:08.0 +0200
+++ /var/tmp/diff_new_pack.yQ55cr/_new  2015-09-08 17:43:08.0 +0200
@@ -16,16 +16,16 @@
  build/ac-macros/apache.m4 |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-Index: subversion-1.9.0-alpha2/build/ac-macros/apache.m4
+Index: subversion-1.9.1/build/ac-macros/apache.m4
 ===
 subversion-1.9.0-alpha2.orig/build/ac-macros/apache.m4 2013-11-26 
22:18:56.0 +0100
-+++ subversion-1.9.0-alpha2/build/ac-macros/apache.m4  2015-01-24 
14:55:32.0 +0100
-@@ -128,7 +128,7 @@ if test -n "$APXS" && test "$APXS" != "n
-   AC_MSG_CHECKING([mod_dav version])
-   old_CPPFLAGS="$CPPFLAGS"
-   CPPFLAGS="$CPPFLAGS $SVN_APR_INCLUDES"
--  blacklisted_versions_regex=["\"2\" \"\.\" (\"2\" \"\.\" \"25\"|\"4\" \"\.\" 
\"[56]\")"]
-+  blacklisted_versions_regex=["\"2\" \"\.\" (\"2\" \"\.\" \"25\"|\"4\" \"\.\" 
\"[5]\")"]
-   AC_EGREP_CPP([apache_version= *$blacklisted_versions_regex],
-[
- #include "$APXS_INCLUDE/ap_release.h"
+--- subversion-1.9.1.orig/build/ac-macros/apache.m42015-09-03 
15:13:26.505496972 +0200
 subversion-1.9.1/build/ac-macros/apache.m4 2015-09-03 15:14:20.843043405 
+0200
+@@ 

commit perl-Log-Dispatch for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Log-Dispatch for 
openSUSE:Factory checked in at 2015-09-08 17:39:25

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


Package is "perl-Log-Dispatch"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Log-Dispatch/perl-Log-Dispatch.changes  
2015-08-27 08:56:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Log-Dispatch.new/perl-Log-Dispatch.changes 
2015-09-08 17:42:43.0 +0200
@@ -1,0 +2,13 @@
+Thu Sep  3 08:48:01 UTC 2015 - co...@suse.com
+
+- updated to 2.50
+   see /usr/share/doc/packages/perl-Log-Dispatch/Changes
+
+  2.50 2015-09-02
+  
+  - Changed how the Screen output handles UTF-8 data once more. The Screen
+module has gone back to printing output directly to the global STDOUT and
+STDERR handles. The previous changes broke the tests for several modules,
+including Log::Dispatch::Config. This change should fix them.
+
+---

Old:

  Log-Dispatch-2.49.tar.gz

New:

  Log-Dispatch-2.50.tar.gz



Other differences:
--
++ perl-Log-Dispatch.spec ++
--- /var/tmp/diff_new_pack.hvVjQo/_old  2015-09-08 17:42:44.0 +0200
+++ /var/tmp/diff_new_pack.hvVjQo/_new  2015-09-08 17:42:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Log-Dispatch
-Version:2.49
+Version:2.50
 Release:0
 %define cpan_name Log-Dispatch
 Summary:Dispatches messages to one or more outputs

++ Log-Dispatch-2.49.tar.gz -> Log-Dispatch-2.50.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Dispatch-2.49/Changes 
new/Log-Dispatch-2.50/Changes
--- old/Log-Dispatch-2.49/Changes   2015-08-22 00:57:30.0 +0200
+++ new/Log-Dispatch-2.50/Changes   2015-09-02 17:18:23.0 +0200
@@ -1,3 +1,11 @@
+2.50 2015-09-02
+
+- Changed how the Screen output handles UTF-8 data once more. The Screen
+  module has gone back to printing output directly to the global STDOUT and
+  STDERR handles. The previous changes broke the tests for several modules,
+  including Log::Dispatch::Config. This change should fix them.
+
+
 2.49 2015-08-21
 
 - The Screen output now enables autoflush on the handle it uses to send output
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Dispatch-2.49/META.json 
new/Log-Dispatch-2.50/META.json
--- old/Log-Dispatch-2.49/META.json 2015-08-22 00:57:30.0 +0200
+++ new/Log-Dispatch-2.50/META.json 2015-09-02 17:18:23.0 +0200
@@ -48,6 +48,7 @@
 "Carp" : "0",
 "Devel::GlobalDestruction" : "0",
 "Dist::CheckConflicts" : "0.02",
+"Encode" : "0",
 "Fcntl" : "0",
 "IO::Handle" : "0",
 "Module::Runtime" : "0",
@@ -86,67 +87,67 @@
"provides" : {
   "Log::Dispatch" : {
  "file" : "lib/Log/Dispatch.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::ApacheLog" : {
  "file" : "lib/Log/Dispatch/ApacheLog.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Base" : {
  "file" : "lib/Log/Dispatch/Base.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Code" : {
  "file" : "lib/Log/Dispatch/Code.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Email" : {
  "file" : "lib/Log/Dispatch/Email.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Email::MIMELite" : {
  "file" : "lib/Log/Dispatch/Email/MIMELite.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Email::MailSend" : {
  "file" : "lib/Log/Dispatch/Email/MailSend.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Email::MailSender" : {
  "file" : "lib/Log/Dispatch/Email/MailSender.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::Email::MailSendmail" : {
  "file" : "lib/Log/Dispatch/Email/MailSendmail.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::File" : {
  "file" : "lib/Log/Dispatch/File.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   "Log::Dispatch::File::Locked" : {
  "file" : "lib/Log/Dispatch/File/Locked.pm",
- "version" : "2.49"
+ "version" : "2.50"
   },
   

commit squid for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package squid for openSUSE:Factory checked 
in at 2015-09-08 17:39:18

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


Package is "squid"

Changes:

--- /work/SRC/openSUSE:Factory/squid/squid.changes  2015-08-11 
08:27:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.squid.new/squid.changes 2015-09-08 
17:42:29.0 +0200
@@ -1,0 +2,21 @@
+Thu Sep  3 12:59:31 UTC 2015 - jk...@suse.de
+
+- Changes to squid-3.5.8 (02 Sep 2015):
+  * Regression Bug 4306: build portability fix in Kerberos helpers
+  * Bug 4302: IPFilter v5 transparent interception
+  * Bug 4301: compile errors with IPFilter interception
+  * Bug 4285 partial: %us is not supported in access.log
+  * Bug 4278: Docs: typo in the refresh_pattern freshness algorithm
+  * Bug 4242: compile errors with eCAP using clang-3.6
+  * Bug 3696: crash when client delay pools are activated
+  * Bug 3553: cache_swap_high ignored and maxCapacity used instead
+  * Regression Fix: FtpServer.cc:1024: "reply != NULL" assertion
+  * Fix ignore of impossible SSL bumping actions, as intended and documented
+  * Fix memory leak in Surrogate-Capability header detection
+  * Fix truncated body length when RESPMOD service aborts
+  * Reject non-chunked HTTP messages with conflicting Content-Length values
+  * Support splice for SSLv3 and TLSv1 sessions that start with an SSLv2 Hello
+  * ... and several portability and compile fixes
+  * ... and several documentation updates
+
+---

Old:

  squid-3.5.7.tar.xz
  squid-3.5.7.tar.xz.asc

New:

  squid-3.5.8.tar.xz
  squid-3.5.8.tar.xz.asc



Other differences:
--
++ squid.spec ++
--- /var/tmp/diff_new_pack.u8FVQh/_old  2015-09-08 17:42:34.0 +0200
+++ /var/tmp/diff_new_pack.u8FVQh/_new  2015-09-08 17:42:34.0 +0200
@@ -20,7 +20,7 @@
 %define squidconfdir %{_sysconfdir}/squid
 
 Name:   squid
-Version:3.5.7
+Version:3.5.8
 Release:0
 Summary:A fully featured HTTP/1.0 proxy
 License:GPL-2.0+

++ squid-3.5.7.tar.xz -> squid-3.5.8.tar.xz ++
 12319 lines of diff (skipped)

++ squid-3.5.7.tar.xz.asc -> squid-3.5.8.tar.xz.asc ++
--- /work/SRC/openSUSE:Factory/squid/squid-3.5.7.tar.xz.asc 2015-08-07 
00:24:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.squid.new/squid-3.5.8.tar.xz.asc
2015-09-08 17:42:29.0 +0200
@@ -1,8 +1,8 @@
-File: squid-3.5.7.tar.xz
-Date: Sat Aug  1 06:59:59 UTC 2015
-Size: 2294580
-MD5 : e24943386555ca922130a7e034badba7
-SHA1: e7dcc0cbcee6fd10a8c8bf3e9bff0dc6359ccc48
+File: squid-3.5.8.tar.xz
+Date: Tue Sep  1 20:46:18 UTC 2015
+Size: 2295644
+MD5 : 0b4eae643b009215688fcf5f1a7803a7
+SHA1: 4ba4b43cf9abaf7e5015ad4d2d9b628213e55044
 Key : 0xFF5CF463 
   fingerprint = EA31 CC5E 9488 E516 8D2D  CC5E B268 E706 FF5C F463
   keyring = http://www.squid-cache.org/pgp.asc
@@ -10,11 +10,11 @@
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1
 
-iQEcBAABAgAGBQJVvHHfAAoJELJo5wb/XPRjmUUH/3nlvdfeAHWXkbM8PnmJ+/BD
-ZYKciqbxo3MzufJQST/uZBIgtwBBrpzS1WBkPT8Lm5iHXavYZSAp3v/cGF/F9z6e
-/oMU891G/ve1Pp6QIVoGxUkeMYDqM985UilhhXptPP8ZpztRa7fEgsFy2E4rUkt9
-g5MHMY1heK3n+C8+1o1As5tc/5bYQ+Erd3g2TRlbJNJIc5Sz+K6B8AAg+VabR+d+
-dT3yNC5wP4Bmagrh+vdh0H8BXKyXv4OCTGI6k7qlBy7nY36YvLJC6Z0kZB1OMHef
-rb1oTdT7F87UE+8cqu9Zu76HnSVu3PfQYbx1ETaRWE6vjSNIM2BAU9mnpdrS1fs=
-=nB5m
+iQEcBAABAgAGBQJV5iUtAAoJELJo5wb/XPRjAGgIAIRy2AiWg/TdVtnKP0PuvmnX
+8ASl8/XIdmXYHn7GVL97Ut/1IW+ZNF2ur4n6YWuf1pHIaSx5I8/RnLfO0dtAnkgs
+24O8bBUEHQNSaaCrGjO75PA7PTJxfT6uTaBOl+169JiZVry/prI/YlcJVr73SPjM
+S0r326xydBF1McayVCkqTaPti/d88uj496qresWE1zOEWNjjZdXUoWuRSG6ZuDNo
+nrq07c+k+F6wNNvii8bBPLiUrxXtE5NRml63UWfUidDWmdx8jrv1e1T2ZK5Gn0JR
++YPeljSUTLrfIdZ1kHGugiycb4zArV3awej/hTGhb2IJ2ezZSQY3TVfLFzD4Yic=
+=CE8O
 -END PGP SIGNATURE-




commit python-python-daemon for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-python-daemon for 
openSUSE:Factory checked in at 2015-09-08 17:39:27

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


Package is "python-python-daemon"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-daemon/python-python-daemon.changes
2015-05-27 12:50:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-daemon.new/python-python-daemon.changes
   2015-09-08 17:42:44.0 +0200
@@ -1,0 +2,9 @@
+Thu Sep  3 14:17:06 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 2.0.6
+  * Lower dependency for unittest2, we can work with an earlier version.
+  * Specify development status Production/Stable in Trove classifiers.
+  * Migrate to mock version 1.3 with corresponding API changes.
+  * Use current Python concept of basestring to test for an attribute name.
+  
+---

Old:

  python-daemon-2.0.5.tar.gz

New:

  python-daemon-2.0.6.tar.gz



Other differences:
--
++ python-python-daemon.spec ++
--- /var/tmp/diff_new_pack.ez8x4B/_old  2015-09-08 17:42:45.0 +0200
+++ /var/tmp/diff_new_pack.ez8x4B/_new  2015-09-08 17:42:45.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-python-daemon
-Version:2.0.5
+Version:2.0.6
 Release:0
 Url:http://pypi.python.org/pypi/python-daemon/
 Summary:Library to implement a well-behaved Unix daemon process

++ python-daemon-2.0.5.tar.gz -> python-daemon-2.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-daemon-2.0.5/ChangeLog 
new/python-daemon-2.0.6/ChangeLog
--- old/python-daemon-2.0.5/ChangeLog   2015-02-02 05:43:28.0 +0100
+++ new/python-daemon-2.0.6/ChangeLog   2015-08-30 11:14:42.0 +0200
@@ -1,3 +1,16 @@
+Version 2.0.6
+=
+
+:Released: 2015-08-30
+:Maintainer: Ben Finney 
+
+* Lower dependency for ‘unittest2’, we can work with an earlier version.
+* Specify development status “Production/Stable” in Trove classifiers.
+* Migrate to ‘mock’ version 1.3 with corresponding API changes.
+* Use current Python concept of “basestring” to test for an attribute name.
+  Thanks to Arthur de Jong for the bug report.
+
+
 Version 2.0.5
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-daemon-2.0.5/PKG-INFO 
new/python-daemon-2.0.6/PKG-INFO
--- old/python-daemon-2.0.5/PKG-INFO2015-02-02 05:44:42.0 +0100
+++ new/python-daemon-2.0.6/PKG-INFO2015-08-30 11:16:48.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-daemon
-Version: 2.0.5
+Version: 2.0.6
 Summary: Library to implement a well-behaved Unix daemon process.
 Home-page: https://alioth.debian.org/projects/python-daemon/
 Author: Ben Finney
@@ -29,7 +29,7 @@
 documentation for that class for each option.
 Keywords: daemon,fork,unix
 Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
+Classifier: Development Status :: 5 - Production/Stable
 Classifier: License :: OSI Approved :: Apache Software License
 Classifier: Operating System :: POSIX
 Classifier: Programming Language :: Python :: 2.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-daemon-2.0.5/daemon/daemon.py 
new/python-daemon-2.0.6/daemon/daemon.py
--- old/python-daemon-2.0.5/daemon/daemon.py2015-02-02 05:43:28.0 
+0100
+++ new/python-daemon-2.0.6/daemon/daemon.py2015-08-30 11:10:43.0 
+0200
@@ -483,7 +483,7 @@
 """
 if target is None:
 result = signal.SIG_IGN
-elif isinstance(target, unicode):
+elif isinstance(target, basestring):
 name = target
 result = getattr(self, name)
 else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-daemon-2.0.5/python_daemon.egg-info/PKG-INFO 
new/python-daemon-2.0.6/python_daemon.egg-info/PKG-INFO
--- old/python-daemon-2.0.5/python_daemon.egg-info/PKG-INFO 2015-02-02 
05:44:32.0 +0100
+++ new/python-daemon-2.0.6/python_daemon.egg-info/PKG-INFO 2015-08-30 
11:16:48.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-daemon
-Version: 2.0.5
+Version: 2.0.6
 Summary: Library to implement a well-behaved Unix daemon process.
 Home-page: https://alioth.debian.org/projects/python-daemon/
 Author: Ben Finney
@@ -29,7 +29,7 @@
 documentation for that class for each option.
 Keywords: daemon,fork,unix
 

commit perl-Mojolicious for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Mojolicious for 
openSUSE:Factory checked in at 2015-09-08 17:39:23

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


Package is "perl-Mojolicious"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojolicious/perl-Mojolicious.changes
2015-08-28 08:26:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojolicious.new/perl-Mojolicious.changes   
2015-09-08 17:42:38.0 +0200
@@ -1,0 +2,13 @@
+Thu Sep  3 08:51:35 UTC 2015 - co...@suse.com
+
+- updated to 6.18
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  6.18  2015-09-02
+- Improved portability of slurp function in Mojo::Util.
+- Fixed handling of parameters with multiple values in
+  Mojolicious::Plugin::TagHelpers.
+- Fixed Makefile.PL to be compliant with version 2 of the CPAN distribution
+  metadata specification. (Grinnz)
+
+---

Old:

  Mojolicious-6.17.tar.gz

New:

  Mojolicious-6.18.tar.gz



Other differences:
--
++ perl-Mojolicious.spec ++
--- /var/tmp/diff_new_pack.90G2yA/_old  2015-09-08 17:42:43.0 +0200
+++ /var/tmp/diff_new_pack.90G2yA/_new  2015-09-08 17:42:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious
-Version:6.17
+Version:6.18
 Release:0
 %define cpan_name Mojolicious
 Summary:Real-time web framework

++ Mojolicious-6.17.tar.gz -> Mojolicious-6.18.tar.gz ++
 2563 lines of diff (skipped)




commit isapnp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package isapnp for openSUSE:Factory checked 
in at 2015-09-08 17:39:49

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


Package is "isapnp"

Changes:

--- /work/SRC/openSUSE:Factory/isapnp/isapnp.changes2015-04-13 
20:52:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.isapnp.new/isapnp.changes   2015-09-08 
17:44:38.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 21 15:49:32 UTC 2015 - qz...@suse.com
+
+- change README.SuSE to README.SUSE.
+  to full fit FATE#316521 Get rid of files using the old SUSE 
spelling.(bnc#942310)
+
+---

Old:

  README.SuSE

New:

  README.SUSE



Other differences:
--
++ isapnp.spec ++
--- /var/tmp/diff_new_pack.z3Xlts/_old  2015-09-08 17:44:39.0 +0200
+++ /var/tmp/diff_new_pack.z3Xlts/_new  2015-09-08 17:44:39.0 +0200
@@ -27,7 +27,7 @@
 Group:  Hardware/Other
 Source: isapnptools-%{version}.tar.bz2
 Source1:boot.isapnp
-Source2:README.SuSE
+Source2:README.SUSE
 Patch:  isapnp-1.26-powerpc.diff
 Patch2: isapnp-autotools.diff
 Patch3: isapnp-codecleanup.diff
@@ -41,7 +41,7 @@
 using a configuration file.
 
 For more information, refer to:
-/usr/share/doc/packages/isapnp/README.SuSE
+/usr/share/doc/packages/isapnp/README.SUSE
 
 
 
@@ -100,7 +100,7 @@
 /sbin/isapnp
 /sbin/pnpdump
 %config /etc/init.d/boot.isapnp
-%doc AUTHORS COPYING ChangeLog INSTALL NEWS README README.SuSE
+%doc AUTHORS COPYING ChangeLog INSTALL NEWS README README.SUSE
 %doc doc/isapnpfaq.txt
 %doc %{_mandir}/man5/*.5.gz
 %doc %{_mandir}/man8/*.8.gz

++ README.SUSE ++
README.SUSE for package 'isapnp'


See the documentation in /usr/doc/packages/isapnp.
Quickinstall:

1) Run pnpdump to generate an isapnp.conf file:
---
pnpdump > /etc/isapnp.conf


2) Edit the isapnp.conf file to place the device(s)
---
where your driver(s) expect. This is where step 4 would have
been useful.

a) All configuration information is commented out, so uncomment
the lines beginning with '# (' that you want to use.
b) If the resource data specified a range of values, then only
the first will be put in the config entry. This should be editted
to suit.
c) DON'T FORGET to uncomment the (ACT Y) at the end of the logical
device entry if you want the device enabled !


3) Run isapnp
-
on the isapnp.conf file to check it has no errors.

4) Try to load the modules to access the PnP-hardware.

5) Booting:
---
If the file '/etc/isapnp.conf' exists, the programm 'isapnp' will be
executed automatically by '/sbin/init.d/pnp' in runlevel 1, 2 and 3.



commit lighttpd for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package lighttpd for openSUSE:Factory 
checked in at 2015-09-08 17:42:39

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


Package is "lighttpd"

Changes:

--- /work/SRC/openSUSE:Factory/lighttpd/lighttpd.changes2015-08-11 
08:26:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.lighttpd.new/lighttpd.changes   2015-09-08 
17:44:48.0 +0200
@@ -1,0 +2,41 @@
+Tue Sep  1 16:04:41 UTC 2015 - dims...@opensuse.org
+
+- Add perl(CGI) BuildRequires in order to be able to pass the test
+  suite.
+
+---
+Sun Aug 30 12:13:22 UTC 2015 - jenk...@lighttpd.net
+
+- update to 1.4.37
+  + - next is 1.4.37
+  + [mod_proxy] remove debug log line from error log (fixes #2659)
+  + [mod_dirlisting] fix dir-listing.set-footer not showing
+  + fix out-of-filedescriptors when uploading "large" files (fixes #2660, thx 
rmilecki)
+  + increase upload temporary chunk file size from 1MB to 16MB
+  + fix undefined integer shift
+  + rewrite network (write) backends
+  + [cmake] lowercase commands, whitespace cleanup, remove clutter in 
else(...), endif(...), endforeach(...)
+  + [cmake] cleanup cache variables if features get deactivated
+  + fix some unchecked return value warnings
+  + maintain cq->bytes_in in chunk API; keep bytes_out/bytes_in synced
+  + [cmake] don't put date into config.h (not used anyway), only unset local 
vars for disabled features instead of clearing cache
+  + [cmake] fix FreeBSD linker bug
+  + [tests] search for perl in PATH instead of /usr/bin; whitespace + test 
config cleanups
+  + [kqueue] fix kevent call
+  + [tests] fix warning about newline in filename
+  + [autoconf] define HAVE_CRYPT when crypt() is present
+  + [bsd xattr] fix compile break with BSD extended attributes in stat_cache
+  + [mod_dirlisting] remove sys/syslimits.h; base.h already includes limits.h
+  + small README for FreeBSD build setup
+  + [build] put --as-needed into linker flags instead of cflags
+  + [mod_cgi] rewrite mmap and generic (post body) send error handling
+  + [mmap] fix mmap alignment
+  + [plugins] when modules are linked statically still only load the modules 
given in the config
+  + [scons] various improvements
+  + [mmap] handle SIGBUS in network; those get triggered if the file gets 
smaller during reading
+  + [scons] fix crypt() detection, other improvements
+  + [scons] fix build
+  + fix some warnings found by coverity ("leak" in setup phase, not catching 
too long unix socket paths in mod_proxy)
+  + packdist.sh: use fakeroot for make dist to have root owned files in tar
+
+---

Old:

  lighttpd_1.4.36-0.1.debian.tar.xz
  lighttpd_1.4.36-0.1.dsc
  lighttpd_1.4.36.orig.tar.xz

New:

  lighttpd_1.4.37-0.1.debian.tar.xz
  lighttpd_1.4.37-0.1.dsc
  lighttpd_1.4.37.orig.tar.xz



Other differences:
--
++ lighttpd.spec ++
--- /var/tmp/diff_new_pack.qOaNmJ/_old  2015-09-08 17:44:51.0 +0200
+++ /var/tmp/diff_new_pack.qOaNmJ/_new  2015-09-08 17:44:51.0 +0200
@@ -18,7 +18,7 @@
 
 %define pkg_home %{_localstatedir}/lib/%{name}
 Name:   lighttpd
-Version:1.4.36
+Version:1.4.37
 Release:0
 #
 %define pkg_name %{name}
@@ -56,6 +56,7 @@
 BuildRequires:  pwdutils
 BuildRequires:  sqlite-devel >= 3
 BuildRequires:  zlib-devel
+BuildRequires:  perl(CGI)
 Requires:   spawn-fcgi
 Requires(pre):  pwdutils
 Requires(post): %insserv_prereq %fillup_prereq

++ lighttpd_1.4.36-0.1.debian.tar.xz -> lighttpd_1.4.37-0.1.debian.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debian/changelog new/debian/changelog
--- old/debian/changelog2015-07-26 12:37:09.0 +0200
+++ new/debian/changelog2015-08-30 14:13:18.0 +0200
@@ -1,3 +1,40 @@
+lighttpd (1.4.37-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * new snapshot 1.4.37
++ - next is 1.4.37
++ [mod_proxy] remove debug log line from error log (fixes #2659)
++ [mod_dirlisting] fix dir-listing.set-footer not showing
++ fix out-of-filedescriptors when uploading "large" files (fixes #2660, 
thx rmilecki)
++ increase upload temporary chunk file size from 1MB to 16MB
++ fix undefined integer shift
++ rewrite network (write) backends
++ [cmake] lowercase commands, whitespace cleanup, remove clutter in 
else(...), endif(...), endforeach(...)
++ [cmake] cleanup cache variables if features get deactivated
++ fix some unchecked return value warnings
++ maintain cq->bytes_in in chunk API; keep 

commit crmsh for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2015-09-08 17:39:46

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


Package is "crmsh"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2015-08-31 
22:59:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2015-09-08 
17:44:35.0 +0200
@@ -1,0 +2,11 @@
+Fri Sep 04 08:08:48 UTC 2015 - kgronl...@suse.com
+
+- Update to version 2.2.0~rc3+git.1441319359.d823416:
+  + high: scripts: Generate actions for includes if none are defined
+  + high: script: Fix subscript agent reference bug
+  + medium: crm_pssh: Timeout is an int (bsc#943820)
+  + medium: scripts: Fix typo in lvm script
+  + low: scripts: [virtual-ip] make lvs_support an advanced parameter
+  + low: constants: Add meta attributes for remote nodes
+
+---

Old:

  crmsh-2.2.0~rc3+git.1440887645.cd6ac8a.tar.bz2

New:

  crmsh-2.2.0~rc3+git.1441319359.d823416.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.2xqdkY/_old  2015-09-08 17:44:37.0 +0200
+++ /var/tmp/diff_new_pack.2xqdkY/_new  2015-09-08 17:44:37.0 +0200
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.2.0~rc3+git.1440887645.cd6ac8a
+Version:2.2.0~rc3+git.1441319359.d823416
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.2xqdkY/_old  2015-09-08 17:44:37.0 +0200
+++ /var/tmp/diff_new_pack.2xqdkY/_new  2015-09-08 17:44:37.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/crmsh.git
-  cd6ac8af585a2f35074fcdeafba7a8e50bcd568f
\ No newline at end of file
+  d823416786d3e5c66d27d6de2fe43228df22fdac
\ No newline at end of file

++ crmsh-2.2.0~rc3+git.1440887645.cd6ac8a.tar.bz2 -> 
crmsh-2.2.0~rc3+git.1441319359.d823416.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/constants.py 
new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/constants.py
--- old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/constants.py 
2015-08-31 08:45:12.0 +0200
+++ new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/constants.py 
2015-09-04 10:08:47.0 +0200
@@ -206,7 +206,7 @@
 "migration-threshold", "priority", "multiple-active",
 "failure-timeout", "resource-stickiness", "target-role",
 "restart-type", "description", "remote-node", "requires",
-"provides"
+"provides", "remote-port", "remote-addr", "remote-connect-timeout"
 )
 group_meta_attributes = ("container", )
 clone_meta_attributes = (
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/crm_pssh.py 
new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/crm_pssh.py
--- old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/crm_pssh.py  
2015-08-31 08:45:12.0 +0200
+++ new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/crm_pssh.py  
2015-09-04 10:08:47.0 +0200
@@ -31,7 +31,7 @@
 Parse the given commandline arguments.
 '''
 opts = Options()
-opts.timeout = t
+opts.timeout = int(t)
 opts.quiet = True
 opts.inline = False
 opts.outdir = outdir
@@ -195,7 +195,7 @@
 l.append([node, cmd])
 if not l:
 return True
-opts = parse_args(outdir, errdir, t=str(int(timeout/1000)))
+opts = parse_args(outdir, errdir, t=int(timeout/1000))
 return do_pssh(l, opts)
 
 # vim:ts=4:sw=4:et:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/scripts.py 
new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/scripts.py
--- old/crmsh-2.2.0~rc3+git.1440887645.cd6ac8a/modules/scripts.py   
2015-08-31 08:45:12.0 +0200
+++ new/crmsh-2.2.0~rc3+git.1441319359.d823416/modules/scripts.py   
2015-09-04 10:08:47.0 +0200
@@ -923,6 +923,11 @@
 if 'actions' not in script:
 script['actions'] = []
 
+# if we include subscripts but have no defined actions, assume that's a
+# mistake and generate include actions for all includes
+for inc in [{"include": inc['name']} for inc in script.get('include', 
[])]:
+script['actions'].append(inc)
+
 _postprocess_script_steps(script)
 
 # Includes may 

commit hawk for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package hawk for openSUSE:Factory checked in 
at 2015-09-08 17:42:44

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


Package is "hawk"

Changes:

--- /work/SRC/openSUSE:Factory/hawk/hawk.changes2015-08-29 
20:04:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk.new/hawk.changes   2015-09-08 
17:46:31.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 04 14:39:35 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0+git.1441377522.140e7f9:
+  + Config: Require fileutils in puma.rb
+
+---

Old:

  hawk-1.0.0+git.1439303550.78e9fb8.tar.bz2

New:

  hawk-1.0.0+git.1441377522.140e7f9.tar.bz2



Other differences:
--
++ hawk.spec ++
--- /var/tmp/diff_new_pack.lOQ0D7/_old  2015-09-08 17:46:37.0 +0200
+++ /var/tmp/diff_new_pack.lOQ0D7/_new  2015-09-08 17:46:37.0 +0200
@@ -39,7 +39,7 @@
 Summary:HA Web Konsole
 License:GPL-2.0 and Apache-2.0
 Group:  %{pkg_group}
-Version:1.0.0+git.1439303550.78e9fb8
+Version:1.0.0+git.1441377522.140e7f9
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.lOQ0D7/_old  2015-09-08 17:46:37.0 +0200
+++ /var/tmp/diff_new_pack.lOQ0D7/_new  2015-09-08 17:46:37.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/hawk.git
-  78e9fb8ecbc6089f82cecff8464fd8a9454eb438
\ No newline at end of file
+  140e7f963cfcc1f69fb04448b413672132151ab8
\ No newline at end of file

++ hawk-1.0.0+git.1439303550.78e9fb8.tar.bz2 -> 
hawk-1.0.0+git.1441377522.140e7f9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/hawk-1.0.0+git.1439303550.78e9fb8/hawk/config/puma.rb 
new/hawk-1.0.0+git.1441377522.140e7f9/hawk/config/puma.rb
--- old/hawk-1.0.0+git.1439303550.78e9fb8/hawk/config/puma.rb   2015-08-12 
08:10:59.0 +0200
+++ new/hawk-1.0.0+git.1441377522.140e7f9/hawk/config/puma.rb   2015-09-04 
16:39:27.0 +0200
@@ -29,6 +29,8 @@
 #
 #==
 
+require 'fileutils'
+
 ROOT = File.expand_path("../../", __FILE__)
 ENVIRONMENT = ENV["HAWK_ENV"] || "production"
 




commit pythia for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package pythia for openSUSE:Factory checked 
in at 2015-09-08 17:42:43

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


Package is "pythia"

Changes:

--- /work/SRC/openSUSE:Factory/pythia/pythia.changes2015-09-03 
18:09:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.pythia.new/pythia.changes   2015-09-08 
17:45:53.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 09:17:48 UTC 2015 - badshah...@gmail.com
+
+- Update pythia-honour-env-cxxflags.patch to really fix the
+  issue (mentioned in previous entry) for all cases.
+
+---



Other differences:
--
++ pythia-honour-env-cxxflags.patch ++
--- /var/tmp/diff_new_pack.jrpJ08/_old  2015-09-08 17:46:30.0 +0200
+++ /var/tmp/diff_new_pack.jrpJ08/_new  2015-09-08 17:46:30.0 +0200
@@ -15,11 +15,13 @@
 ===
 --- pythia8210.orig/bin/pythia8-config
 +++ pythia8210/bin/pythia8-config
-@@ -69,7 +69,7 @@ elif [ ! -f $CFG_FILE ]; then
+@@ -68,8 +68,8 @@ elif [ ! -f $CFG_FILE ]; then
+ echo "Error: cannot find valid configuration for Pythia 8"; exit; fi
  while read LINE; do
  if [[ $LINE != *=* ]]; then continue; fi
- VAR=${LINE%=*}; VAL=${LINE#$KEY}; VAL=${VAL#*=};
+-VAR=${LINE%=*}; VAL=${LINE#$KEY}; VAL=${VAL#*=};
 -eval $VAR=\"$VAL\"; done < $CFG_FILE
++VAR=${LINE%%=*}; VAL=${LINE#$KEY}; VAL=${VAL#*=};
 +eval $VAR=\"${VAL}\"; done < $CFG_FILE
  
  # Change the prefixes if local version.




commit pugixml for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package pugixml for openSUSE:Factory checked 
in at 2015-09-08 17:42:45

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


Package is "pugixml"

Changes:

--- /work/SRC/openSUSE:Factory/pugixml/pugixml.changes  2015-03-19 
21:14:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.pugixml.new/pugixml.changes 2015-09-08 
17:46:39.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep  4 13:09:48 UTC 2015 - tchva...@suse.com
+
+- Version bump to 1.6:
+  * See manual.html for in-depth changelog
+- Use %cmake macros properly
+
+---

Old:

  pugixml-1.5.tar.gz

New:

  pugixml-1.6.tar.gz



Other differences:
--
++ pugixml.spec ++
--- /var/tmp/diff_new_pack.dzpGgV/_old  2015-09-08 17:46:42.0 +0200
+++ /var/tmp/diff_new_pack.dzpGgV/_new  2015-09-08 17:46:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pugixml
 #
-# 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
@@ -16,10 +16,9 @@
 #
 
 
-%define so_ver 1
-
+%define _libname libpugixml1
 Name:   pugixml
-Version:1.5
+Version:1.6
 Release:0
 Summary:Light-weight C++ XML Processing Library
 License:MIT
@@ -46,17 +45,17 @@
 %package devel
 Summary:Development Files for pugixml
 Group:  Development/Libraries/C and C++
-Requires:   libpugixml%{so_ver} = %{version}
+Requires:   %{_libname} = %{version}
 
 %description devel
 This package provides development libraries and headers needed to build
 software using pugixml.
 
-%package -n libpugixml%{so_ver}
+%package -n %{_libname}
 Summary:Light-weight C++ XML Processing Library
 Group:  System/Libraries
 
-%description -n libpugixml%{so_ver}
+%description -n %{_libname}
 pugixml is a light-weight C++ XML processing library. It features:
 
 - DOM-like interface with rich traversal/modification capabilities
@@ -72,32 +71,27 @@
 %setup -q
 
 %build
-export CFLAGS="%{optflags}"
-export CXXFLAGS="%{optflags}"
-mkdir build
-cd build
-cmake \
--DCMAKE_INSTALL_PREFIX=%{_prefix} \
--DCMAKE_INSTALL_LIBDIR=%{_libdir} \
--DBUILD_SHARED_LIBS=ON \
-../scripts
-make %{?_smp_mflags} VERBOSE=1
-cd ..
+cd scripts
+%cmake
+make %{?_smp_mflags}
+
 %install
-make DESTDIR=%{buildroot} install -C build
-rm -rf %{buildroot}%{_libdir}/cmake
-%post -n libpugixml%{so_ver} -p /sbin/ldconfig
+cd scripts
+%cmake_install
+
+%post -n %{_libname} -p /sbin/ldconfig
 
-%postun -n libpugixml%{so_ver} -p /sbin/ldconfig
+%postun -n %{_libname} -p /sbin/ldconfig
 
 %files devel
 %defattr(-,root,root,-)
 %doc readme.txt docs/*
 %{_includedir}/*.hpp
+%{_libdir}/cmake/*
 %{_libdir}/*.so
 
-%files -n libpugixml%{so_ver}
+%files -n %{_libname}
 %defattr(-,root,root,-)
-%{_libdir}/libpugixml.so.%{so_ver}*
+%{_libdir}/libpugixml.so.*
 
 %changelog

++ pugixml-1.5.tar.gz -> pugixml-1.6.tar.gz ++
 17771 lines of diff (skipped)




commit img2eps for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package img2eps for openSUSE:Factory checked 
in at 2015-09-08 17:42:47

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


Package is "img2eps"

Changes:

--- /work/SRC/openSUSE:Factory/img2eps/img2eps.changes  2015-01-30 
06:12:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.img2eps.new/img2eps.changes 2015-09-08 
17:46:44.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 11:43:40 UTC 2015 - mplus...@suse.com
+
+- Use url for source
+- Cleanup spec file with spec-cleaner
+
+---

Old:

  img2eps-0.2.tar.bz2

New:

  img2eps-0.2.tar.gz



Other differences:
--
++ img2eps.spec ++
--- /var/tmp/diff_new_pack.SnyqON/_old  2015-09-08 17:46:47.0 +0200
+++ /var/tmp/diff_new_pack.SnyqON/_new  2015-09-08 17:46:47.0 +0200
@@ -23,13 +23,14 @@
 License:BSD-4-Clause
 Group:  Productivity/Publishing/TeX/Utilities
 Url:http://www.nih.at/img2eps/
-Source: img2eps-%{version}.tar.bz2
+Source0:http://www.nih.at/img2eps/img2eps-%{version}.tar.gz
 Patch0: compress-params.diff
 Patch1: man.diff
 Patch2: libpng14.diff
 Patch3: img2eps-fix-linking.patch
 Patch4: img2eps-giflib.patch
 Patch5: img2eps-libpng16.patch
+BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  giflib-devel
 BuildRequires:  libexif-devel
@@ -37,6 +38,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
+BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -52,21 +54,19 @@
 %patch3
 %patch4
 %patch5 -p1
+
 %build
-autoreconf -ifv
+autoreconf -fiv
 %configure 
-%{__make} %{?_smp_flags}
+make %{?_smp_mflags}
 
 %install
 %make_install
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr (-, root, root)
 %doc AUTHORS README TODO
 %{_bindir}/img2eps
-%doc %{_mandir}/man1/*
+%{_mandir}/man1/*
 
 %changelog




commit rubygem-sass-rails for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sass-rails for 
openSUSE:Factory checked in at 2015-09-08 17:42:56

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


Package is "rubygem-sass-rails"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sass-rails/rubygem-sass-rails.changes
2015-04-10 09:53:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-sass-rails.new/rubygem-sass-rails.changes   
2015-09-08 17:47:23.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 04:33:02 UTC 2015 - co...@suse.com
+
+- updated to version 5.0.4
+  no changelog found
+
+---

Old:

  sass-rails-5.0.3.gem

New:

  sass-rails-5.0.4.gem



Other differences:
--
++ rubygem-sass-rails.spec ++
--- /var/tmp/diff_new_pack.uDPEWw/_old  2015-09-08 17:47:24.0 +0200
+++ /var/tmp/diff_new_pack.uDPEWw/_new  2015-09-08 17:47:24.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-sass-rails
-Version:5.0.3
+Version:5.0.4
 Release:0
 %define mod_name sass-rails
 %define mod_full_name %{mod_name}-%{version}

++ sass-rails-5.0.3.gem -> sass-rails-5.0.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-03-31 17:56:30.0 +0200
+++ new/README.md   2015-09-03 21:49:24.0 +0200
@@ -68,24 +68,24 @@
  `asset-path($relative-asset-path)`
 Returns a string to the asset.
 
-* `asset-path("rails.png")` becomes `"/assets/rails.png"`
+* `asset-path("rails.png")` returns `"/assets/rails.png"`
 
  `asset-url($relative-asset-path)`
 Returns a url reference to the asset.
 
-* `asset-url("rails.png")` becomes `url(/assets/rails.png)`
+* `asset-url("rails.png")` returns `url(/assets/rails.png)`
 
 As a convenience, for each of the following asset classes there are
 corresponding `-path` and `-url` helpers:
 image, font, video, audio, javascript, stylesheet.
 
-* `image-path("rails.png")` becomes `"/assets/rails.png"`
-* `image-url("rails.png")` becomes `url(/assets/rails.png)`
+* `image-path("rails.png")` returns `"/assets/rails.png"`
+* `image-url("rails.png")` returns `url(/assets/rails.png)`
 
  `asset-data-url($relative-asset-path)`
 Returns a url reference to the Base64-encoded asset at the specified path.
 
-* `asset-data-url("rails.png")` becomes 
`url(data:image/png;base64,iVBORw0K...)`
+* `asset-data-url("rails.png")` returns 
`url(data:image/png;base64,iVBORw0K...)`
 
 ## Running Tests
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sass/rails/railtie.rb 
new/lib/sass/rails/railtie.rb
--- old/lib/sass/rails/railtie.rb   2015-03-31 17:56:30.0 +0200
+++ new/lib/sass/rails/railtie.rb   2015-09-03 21:49:24.0 +0200
@@ -67,11 +67,13 @@
 end
 
 initializer :setup_compression, group: :all do |app|
-  unless Rails.env.development?
-app.config.assets.css_compressor ||= :sass
-  else
+  if Rails.env.development?
 # Use expanded output instead of the sass default of :nested unless 
specified
 app.config.sass.style ||= :expanded
+  else
+# config.assets.css_compressor may be set to nil in non-dev 
environments.
+# otherwise, the default is sass compression.
+app.config.assets.css_compressor = :sass unless 
app.config.assets.has_key?(:css_compressor)
   end
 end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sass/rails/version.rb 
new/lib/sass/rails/version.rb
--- old/lib/sass/rails/version.rb   2015-03-31 17:56:30.0 +0200
+++ new/lib/sass/rails/version.rb   2015-09-03 21:49:24.0 +0200
@@ -1,5 +1,5 @@
 module Sass
   module Rails
-VERSION = "5.0.3"
+VERSION = "5.0.4"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-03-31 17:56:30.0 +0200
+++ new/metadata2015-09-03 21:49:24.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: sass-rails
 version: !ruby/object:Gem::Version
-  version: 5.0.3
+  version: 5.0.4
 platform: ruby
 authors:
 - wycats
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-03-31 00:00:00.0 Z
+date: 2015-09-03 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: railties
@@ -89,16 +89,22 @@
   name: tilt
   requirement: 

commit ghc-uniplate for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package ghc-uniplate for openSUSE:Factory 
checked in at 2015-09-08 17:43:23

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


Package is "ghc-uniplate"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-uniplate/ghc-uniplate.changes
2015-05-27 12:47:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-uniplate.new/ghc-uniplate.changes   
2015-09-08 17:48:57.0 +0200
@@ -1,0 +2,5 @@
+Sat Sep  5 15:19:20 UTC 2015 - mimi...@gmail.com
+
+- refreshed spec 
+
+---
@@ -10 +14,0 @@
-



Other differences:
--
++ ghc-uniplate.spec ++
--- /var/tmp/diff_new_pack.GYqA55/_old  2015-09-08 17:48:57.0 +0200
+++ /var/tmp/diff_new_pack.GYqA55/_new  2015-09-08 17:48:57.0 +0200
@@ -15,25 +15,27 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 %global pkg_name uniplate
-# no useful debuginfo for Haskell packages without C sources
-%global debug_package %{nil}
-Name:   ghc-%{pkg_name}
+
+Name:   ghc-uniplate
 Version:1.6.12
 Release:0
 Summary:Help writing simple, concise and fast generic operations
+Group:  System/Libraries
+
 License:BSD-3-Clause
-Group:  Development/Libraries/Other
-Url:http://hackage.haskell.org/package/%{pkg_name}
-Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
+Url:https://hackage.haskell.org/package/%{pkg_name}
+Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+
 BuildRequires:  ghc-Cabal-devel
+BuildRequires:  ghc-rpm-macros
+# Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-hashable-devel
-BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-syb-devel
 BuildRequires:  ghc-unordered-containers-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# End cabal-rpm deps
 
 %description
 Uniplate is library for writing simple and concise generic operations.
@@ -67,34 +69,46 @@
 * "Data.Generics.Uniplate.DataOnly" - users making use of both 'Data' and
 'Direct' to avoid getting instance conflicts.
 
+
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
+Requires:   ghc-compiler = %{ghc_version}
+Requires(post): ghc-compiler = %{ghc_version}
+Requires(postun): ghc-compiler = %{ghc_version}
 Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
+
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
+
 %build
-%{ghc_lib_build}
+%ghc_lib_build
+
 
 %install
-%{ghc_lib_install}
+%ghc_lib_install
+
 
 %post devel
-%{ghc_pkg_recache}
+%ghc_pkg_recache
+
 
 %postun devel
-%{ghc_pkg_recache}
+%ghc_pkg_recache
+
 
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
 
+
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
 
+
 %changelog




commit phonon-backend-vlc for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package phonon-backend-vlc for 
openSUSE:Factory checked in at 2015-09-08 17:43:11

Comparing /work/SRC/openSUSE:Factory/phonon-backend-vlc (Old)
 and  /work/SRC/openSUSE:Factory/.phonon-backend-vlc.new (New)


Package is "phonon-backend-vlc"

Changes:

--- /work/SRC/openSUSE:Factory/phonon-backend-vlc/phonon-backend-vlc.changes
2014-10-31 20:23:48.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.phonon-backend-vlc.new/phonon-backend-vlc.changes   
2015-09-08 17:48:49.0 +0200
@@ -1,0 +2,49 @@
+Thu Aug 27 19:10:43 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.8.2:
+  * Fix compilation with Qt 5.2+.
+- Own /usr/share/kde4/services/phononbackends/ directory as no
+  phonon-backend-gstreamer requirement owns it.
+- Correct Phonon ABI version.
+
+---
+Wed Nov  5 23:02:09 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 0.8.1:
+   * Code style improvements.
+   * VLC 2.2 compatibility - VLC 2.2 changed the time when
+ PulseAudio streams are constructed, rendering the Phonon
+ PulseSupport non-functional as it injects stream-dependent
+ properties through the environment which needs to happen close
+ to stream creation to avoid timing issues. The changed stream
+ creation time makes it impossible to provide high-level
+ PulseAudio control while also allowing Phonon applications to
+ construct multiple AudioOutputs in a very short time frame.
+ To allow core functionality from working under these
+ circumstances Phonon PulseSupport integration is disabled
+ when built against VLC >= 2.2 leading to the following
+ known regressions:
+  Changing the volume through the PulseAudio stream itself
+  is not propagated to Phonon AudioOutputs, meaning the
+  application can not reflect volume changes done through
+  other applications (e.g. a volume mixer).
+  Changing the muteness through the PulseAudio stream is
+  not propagated either.
+  The PulseAudio media.role property (as well as derived
+  properties) is always set to 'video' making all Phonon
+  application use the video category for output device
+  selection (e.g. as seen in the Phonon KCM).
+   * Revised the logic used to come up with an icon name for
+ libvlc. If the application has QApplication::windowIcon
+ set with an QIcon constructed through QIcon::fromTheme(string)
+ the actual icon name will be used.
+ Otherwise the lower-case version of
+ QCoreApplication::applicationName is used.
+   * Setting the libvlc app id is now only dependent on
+ QCoreApplication::applicationName being set (previously
+ it was also dependent on QCoreApplication::applicationVersion).
+ This change was made to accomodate the fact that most
+ applications neglect to set a version.
+- Bump phonon (Build)Requires to 4.8.2
+
+---

Old:

  phonon-backend-vlc-0.8.0.tar.xz

New:

  phonon-backend-vlc-0.8.2.tar.xz



Other differences:
--
++ phonon-backend-vlc.spec ++
--- /var/tmp/diff_new_pack.jhshfm/_old  2015-09-08 17:48:50.0 +0200
+++ /var/tmp/diff_new_pack.jhshfm/_new  2015-09-08 17:48:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package phonon-backend-vlc
 #
-# 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,35 +16,34 @@
 #
 
 
+%define _phonon_version 4.6.50
 Name:   phonon-backend-vlc
-Version:0.8.0
+Version:0.8.2
 Release:0
 Summary:Phonon VLC Backend
 License:LGPL-2.1+
-Group:  Development/Libraries/KDE
+Group:  System/GUI/KDE
 Url:http://phonon.kde.org/
-%define _phonon_version 4.8.0
-Source: 
http://download.kde.org/stable/phonon/%{name}/%{version}/%{name}-%{version}.tar.xz
-BuildRequires:  alsa-devel
+Source: 
http://download.kde.org/stable/phonon/%{name}/%{version}/src/%{name}-%{version}.tar.xz
 BuildRequires:  automoc4
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  kde4-filesystem
-BuildRequires:  phonon-devel >= %{_phonon_version}
 BuildRequires:  pkgconfig
 BuildRequires:  vlc-devel >= 2.0.1
-Requires:   libphonon4 => %{_phonon_version}
-Requires:   vlc-noX >= %( echo `rpm -q --queryformat '%{VERSION}' 
vlc-devel`)
+BuildRequires:  pkgconfig(alsa)
+BuildRequires:  pkgconfig(phonon) >= %{_phonon_version}
+Requires:   libphonon4 >= 

commit opensaml for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package opensaml for openSUSE:Factory 
checked in at 2015-09-08 17:43:19

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


Package is "opensaml"

Changes:

--- /work/SRC/openSUSE:Factory/opensaml/opensaml.changes2015-08-29 
20:04:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.opensaml.new/opensaml.changes   2015-09-08 
17:48:53.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug  5 18:14:58 UTC 2015 - mplus...@suse.com
+
+- Add gpg signature
+
+---

New:

  opensaml-2.5.5.tar.bz2.asc
  opensaml.keyring



Other differences:
--
++ opensaml.spec ++
--- /var/tmp/diff_new_pack.OUEtFK/_old  2015-09-08 17:48:55.0 +0200
+++ /var/tmp/diff_new_pack.OUEtFK/_new  2015-09-08 17:48:55.0 +0200
@@ -25,6 +25,8 @@
 Group:  Development/Libraries/C and C++
 Url:http://www.opensaml.org/
 Source0:
http://shibboleth.net/downloads/c++-opensaml/%{version}/%{name}-%{version}.tar.bz2
+Source1:
http://shibboleth.net/downloads/c++-opensaml/%{version}/%{name}-%{version}.tar.bz2.asc
+Source2:%{name}.keyring
 Patch0: opensaml-2.5.5-doxygen_timestamp.patch
 BuildRequires:  boost-devel >= 1.32.0
 BuildRequires:  doxygen




commit fsharp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package fsharp for openSUSE:Factory checked 
in at 2015-09-08 17:43:07

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


Package is "fsharp"

Changes:

--- /work/SRC/openSUSE:Factory/fsharp/fsharp.changes2015-05-15 
07:43:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.fsharp.new/fsharp.changes   2015-09-08 
17:47:35.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep  5 00:00:00 UTC 2015 - fwdsbs.to.1...@xoxy.net
+
+- Build fixes:
+  * added use-internal-nunit.patch: use nunit from project repo instead of 
external nuget package
+  * fix brp-25-symlink failure by using hardlinks
+  * fix other packaging problems
+
+---
+Fri Sep  4 11:23:57 UTC 2015 - idon...@suse.com
+
+- Update to version 4.0.0.3
+
+---

Old:

  3.1.1.32.tar.gz

New:

  4.0.0.3.tar.gz
  use-internal-nunit.patch



Other differences:
--
++ fsharp.spec ++
--- /var/tmp/diff_new_pack.wM8IJq/_old  2015-09-08 17:48:45.0 +0200
+++ /var/tmp/diff_new_pack.wM8IJq/_new  2015-09-08 17:48:45.0 +0200
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   fsharp
-Version:3.1.1.32
+Version:4.0.0.3
 Release:0
 Summary:F# compiler, core library and core tools
 License:Apache-2.0
@@ -24,10 +25,13 @@
 Url:http://fsharp.github.io
 Source: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz
 Source1:fsharp.rpmlintrc
+Patch1: use-internal-nunit.patch
 BuildRequires:  automake
-BuildRequires:  mono-devel >= 3.0.0
-BuildRequires:  mono-wcf >= 3.0.0
 BuildRequires:  fdupes
+BuildRequires:  mono-devel >= 4.0.0
+BuildRequires:  mono-wcf >= 4.0.0
+BuildRequires:  mono-winfxcore >= 4.0.0
+BuildRequires:  nunit >= 2.6.4
 BuildArch:  noarch
 
 %description
@@ -39,6 +43,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 autoreconf
@@ -55,6 +60,15 @@
 find %{buildroot}%{_prefix}/lib/mono -iname "*.Fsharp.Targets" -type f -print0 
| xargs -0 chmod -v -x
 find %{buildroot}%{_prefix}/lib/mono -iname "Fsharp.*.xml" -type f -print0 | 
xargs -0 chmod -v -x
 
+#fix brp-25-symlink failure
+while read line
+do
+  src=`readlink -f "$line"`
+  echo "replacing link $line with file $src"
+  rm "$line"
+  cp "$src" "$line"
+done <<< "$(find %{buildroot}%{_prefix}/lib/mono/Reference* -type l)"
+
 #fix duplicate files
 %fdupes %{buildroot}%{_prefix}
 
@@ -63,12 +77,6 @@
 %{_bindir}/fsharpc
 %{_bindir}/fsharpi
 %{_bindir}/fsharpiAnyCpu
-%{_prefix}/lib/mono/2.0/policy.2.0.FSharp.Core.dll
-%{_prefix}/lib/mono/2.0/policy.2.3.FSharp.Core.dll
-%{_prefix}/lib/mono/4.0/FSharp.Core.dll
-%{_prefix}/lib/mono/4.0/FSharp.Core.xml
-%{_prefix}/lib/mono/4.0/FSharp.Core.optdata
-%{_prefix}/lib/mono/4.0/FSharp.Core.sigdata
 %{_prefix}/lib/mono/4.5/FSharp.Build.dll
 %{_prefix}/lib/mono/4.5/FSharp.Build.xml
 %{_prefix}/lib/mono/4.5/FSharp.Compiler.Interactive.Settings.dll
@@ -93,7 +101,12 @@
 %{_prefix}/lib/mono/4.5/policy.3.3.FSharp.Core.dll
 %{_prefix}/lib/mono/4.5/policy.4.0.FSharp.Core.dll
 %{_prefix}/lib/mono/4.5/policy.4.3.FSharp.Core.dll
+%{_prefix}/lib/mono/4.5/policy.3.259.FSharp.Core.dll
+%{_prefix}/lib/mono/4.5/policy.3.47.FSharp.Core.dll
+%{_prefix}/lib/mono/4.5/policy.3.7.FSharp.Core.dll
+%{_prefix}/lib/mono/4.5/policy.3.78.FSharp.Core.dll
 %{_prefix}/lib/mono/Microsoft*
+%{_prefix}/lib/mono/Reference*
 %{_prefix}/lib/mono/gac/FSharp.Compiler.Interactive.Settings/
 %{_prefix}/lib/mono/gac/FSharp.Compiler.Server.Shared/
 %{_prefix}/lib/mono/gac/FSharp.Compiler/
@@ -104,5 +117,9 @@
 %{_prefix}/lib/mono/gac/policy.3.3.FSharp.Core/
 %{_prefix}/lib/mono/gac/policy.4.0.FSharp.Core/
 %{_prefix}/lib/mono/gac/policy.4.3.FSharp.Core/
+%{_prefix}/lib/mono/gac/policy.3.259.FSharp.Core/
+%{_prefix}/lib/mono/gac/policy.3.47.FSharp.Core/
+%{_prefix}/lib/mono/gac/policy.3.7.FSharp.Core/
+%{_prefix}/lib/mono/gac/policy.3.78.FSharp.Core/
 
 %changelog

++ 3.1.1.32.tar.gz -> 4.0.0.3.tar.gz ++
/work/SRC/openSUSE:Factory/fsharp/3.1.1.32.tar.gz 
/work/SRC/openSUSE:Factory/.fsharp.new/4.0.0.3.tar.gz differ: char 12, line 1

++ use-internal-nunit.patch ++
diff -uprN fsharp-4.0.0.3.old/packages.config fsharp-4.0.0.3.new/packages.config
--- fsharp-4.0.0.3.old/packages.config  2015-08-06 02:42:54.0 +0300
+++ fsharp-4.0.0.3.new/packages.config  2015-09-04 22:13:31.327495936 +0300
@@ -1,5 +1,3 @@
 
 
-  
-  
-
\ No newline at end of file
+



commit python-hachoir-metadata for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-hachoir-metadata for 
openSUSE:Factory checked in at 2015-09-08 17:39:08

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


Package is "python-hachoir-metadata"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-hachoir-metadata/python-hachoir-metadata.changes
  2014-01-03 19:48:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hachoir-metadata.new/python-hachoir-metadata.changes
 2015-09-08 17:42:17.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  3 11:21:45 UTC 2015 - toddrme2...@gmail.com
+
+- Shouldn't be noarch in SLE 11
+
+---



Other differences:
--
++ python-hachoir-metadata.spec ++
--- /var/tmp/diff_new_pack.MJ3mNx/_old  2015-09-08 17:42:18.0 +0200
+++ /var/tmp/diff_new_pack.MJ3mNx/_new  2015-09-08 17:42:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hachoir-metadata
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,10 +29,10 @@
 BuildRequires:  python-devel
 Requires:  python-hachoir-core
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildArch:  noarch
-
 %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)")}
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%else
+BuildArch:  noarch
 %endif
 
 %description




commit libcpuset for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libcpuset for openSUSE:Factory 
checked in at 2015-09-08 17:43:12

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


Package is "libcpuset"

Changes:

--- /work/SRC/openSUSE:Factory/libcpuset/libcpuset.changes  2015-02-16 
21:47:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcpuset.new/libcpuset.changes 2015-09-08 
17:48:50.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep  5 09:29:40 UTC 2015 - mplus...@suse.com
+
+- Use url for source
+- Cleanup spec file with spec-cleaner
+- Explicit dependencies on autotools
+
+---



Other differences:
--
++ libcpuset.spec ++
--- /var/tmp/diff_new_pack.0IoQDt/_old  2015-09-08 17:48:51.0 +0200
+++ /var/tmp/diff_new_pack.0IoQDt/_new  2015-09-08 17:48:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libcpuset
 #
-# 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
@@ -16,24 +16,25 @@
 #
 
 
-Url:http://oss.sgi.com/projects/cpusets/
-
+%define debug_package_requires libcpuset1 = %{version}-%{release}
 Name:   libcpuset
+Version:1.0
+Release:0
 Summary:cpuset processor and memory placement library
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-Version:1.0
-Release:0
-Source: libcpuset-%{version}.tar.bz2
+Url:http://oss.sgi.com/projects/cpusets/
+Source: 
ftp://oss.sgi.com/projects/cpusets/download/libcpuset-%{version}.tar.bz2
 Patch0: libcpuset-fix-missing-syscall.diff
 Patch1: libcpuset-rm-cpuonline.diff
 Patch2: bug-514127_libcpuset-cpuset_set_iopt-adds.patch
 Patch3: libcpuset-agnostic-mountpoint.diff
 Patch4: libcpuset-handle-cgroup-mount.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  libbitmask-devel
 BuildRequires:  libtool
-%define debug_package_requires libcpuset1 = %{version}-%{release}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The Cpuset System is a processor and memory placement mechanism that
@@ -73,13 +74,15 @@
 
 %build
 sed -i -e 's@-Werror@@g' configure.in
-autoreconf -i
-%configure --disable-static --with-pic
+autoreconf -fiv
+%configure \
+  --disable-static \
+  --with-pic
 make %{?_smp_mflags}
 
 %install
-%makeinstall
-rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n libcpuset1 -p /sbin/ldconfig
 
@@ -91,8 +94,8 @@
 
 %files -n libcpuset-devel
 %defattr(-,root,root)
-%doc %{_mandir}/man3/*
-%doc %{_mandir}/man4/*
+%{_mandir}/man3/*
+%{_mandir}/man4/*
 %{_includedir}/*
 %{_libdir}/lib*so
 %{_docdir}/libcpuset/libcpuset.*




commit shibboleth-sp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package shibboleth-sp for openSUSE:Factory 
checked in at 2015-09-08 17:43:21

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


Package is "shibboleth-sp"

Changes:

--- /work/SRC/openSUSE:Factory/shibboleth-sp/shibboleth-sp.changes  
2015-08-29 20:04:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.shibboleth-sp.new/shibboleth-sp.changes 
2015-09-08 17:48:55.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug  5 18:09:37 UTC 2015 - mplus...@suse.com
+
+- Add gpg signature
+
+---

New:

  shibboleth-sp-2.5.5.tar.bz2.asc
  shibboleth-sp.keyring



Other differences:
--
++ shibboleth-sp.spec ++
--- /var/tmp/diff_new_pack.4e0DsX/_old  2015-09-08 17:48:57.0 +0200
+++ /var/tmp/diff_new_pack.4e0DsX/_new  2015-09-08 17:48:57.0 +0200
@@ -27,8 +27,10 @@
 License:Apache-2.0
 Group:  Productivity/Networking/Security
 Url:http://shibboleth.net/
-Source: 
http://shibboleth.net/downloads/service-provider/%{version}/%{name}-%{version}.tar.bz2
-Source1:shibd.service
+Source0:
http://shibboleth.net/downloads/service-provider/%{version}/%{name}-%{version}.tar.bz2
+Source1:
http://shibboleth.net/downloads/service-provider/%{version}/%{name}-%{version}.tar.bz2.asc
+Source2:%{name}.keyring
+Source3:shibd.service
 Patch0: shibboleth-sp-2.5.5-doxygen_timestamp.patch
 BuildRequires:  apache2-devel
 BuildRequires:  boost-devel >= 1.32.0
@@ -115,7 +117,7 @@
 %install
 make install NOKEYGEN=1 DESTDIR=%{buildroot} pkgdocdir=%{pkgdocdir}
 
-install -D -m 644 %{_sourcedir}/shibd.service 
%{buildroot}%{_unitdir}/shibd.service
+install -D -m 644 %{SOURCE3} %{buildroot}%{_unitdir}/shibd.service
 ln -sf %{_sbindir}/service %{buildroot}/%{_sbindir}/rcshibd
 
 sed -i "s/\/var\/log\/httpd/\/var\/log\/apache2/g" \




commit ghc-mod for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package ghc-mod for openSUSE:Factory checked 
in at 2015-09-08 17:43:17

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


Package is "ghc-mod"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-mod/ghc-mod.changes  2015-08-28 
08:27:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-mod.new/ghc-mod.changes 2015-09-08 
17:48:52.0 +0200
@@ -1,0 +2,11 @@
+Sat Sep  5 17:02:47 UTC 2015 - mimi...@gmail.com
+
+- create /etc/profile.d/ghc-mod.* files to solve
+  issues with LIBEXECDIR and cabal-helper-wrapper
+
+---
+Fri Aug 28 14:08:29 UTC 2015 - mimi...@gmail.com
+
+- add libexecdir specification to %_libexecdir 
+
+---



Other differences:
--
++ ghc-mod.spec ++
--- /var/tmp/diff_new_pack.13JaW0/_old  2015-09-08 17:48:53.0 +0200
+++ /var/tmp/diff_new_pack.13JaW0/_new  2015-09-08 17:48:53.0 +0200
@@ -103,12 +103,21 @@
 %setup -q
 
 %build
+%define cabal_configure_options --libexecdir=%{_libexecdir}
 %ghc_lib_build
 
 %install
 %ghc_lib_install
-
 %ghc_fix_dynamic_rpath %{pkg_name} ghc-modi
+mkdir -p %{buildroot}%{_sysconfdir}/profile.d
+touch %{buildroot}%{_sysconfdir}/profile.d/ghc-mod.sh
+touch %{buildroot}%{_sysconfdir}/profile.d/ghc-mod.csh
+echo 'export cabal_helper_libexecdir=%{_libexecdir}' > 
%{buildroot}%{_sysconfdir}/profile.d/ghc-mod.sh
+echo 'setenv cabal_helper_libexecdir %{_libexecdir}' > 
%{buildroot}%{_sysconfdir}/profile.d/ghc-mod.csh
+
+rm %{buildroot}%{_datadir}/%{name}-%{version}/LICENSE
+rm %{buildroot}%{_datadir}/%{name}-%{version}/COPYING.AGPL3
+rm %{buildroot}%{_datadir}/%{name}-%{version}/COPYING.BSD3
 
 %check
 %if %{with tests}
@@ -127,6 +136,8 @@
 %{_bindir}/%{name}
 %{_bindir}/ghc-modi
 %{_datadir}/%{name}-%{version}
+%{_sysconfdir}/profile.d/ghc-mod.sh
+%{_sysconfdir}/profile.d/ghc-mod.csh
 
 %files -n ghc-%{name} -f ghc-%{name}.files
 %defattr(-,root,root,-)




commit datovka for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-09-08 17:43:09

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


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-06-04 
09:04:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-09-08 
17:48:46.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep  5 07:11:33 UTC 2015 - tchva...@suse.com
+
+- Version bump 4.3.1:
+  * Few small bugfixes see ChangeLog for details
+- Refresh patch datovka-fix-pro.patch
+
+---

Old:

  datovka-4.3.0-src.tar.xz

New:

  datovka-4.3.1-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.NSF2lJ/_old  2015-09-08 17:48:48.0 +0200
+++ /var/tmp/diff_new_pack.NSF2lJ/_new  2015-09-08 17:48:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.3.0
+Version:4.3.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
@@ -72,7 +72,7 @@
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS COPYING
+%doc AUTHORS COPYING ChangeLog
 %{_bindir}/datovka
 %{_datadir}/applications/datovka.desktop
 %{_datadir}/appdata/datovka.appdata.xml

++ datovka-4.3.0-src.tar.xz -> datovka-4.3.1-src.tar.xz ++
 14699 lines of diff (skipped)

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.NSF2lJ/_old  2015-09-08 17:48:49.0 +0200
+++ /var/tmp/diff_new_pack.NSF2lJ/_new  2015-09-08 17:48:49.0 +0200
@@ -1,7 +1,7 @@
-Index: datovka-4.1.2/datovka.pro
+Index: datovka-4.3.1/datovka.pro
 ===
 datovka-4.1.2.orig/datovka.pro
-+++ datovka-4.1.2/datovka.pro
+--- datovka-4.3.1.orig/datovka.pro
 datovka-4.3.1/datovka.pro
 @@ -49,7 +49,6 @@ isEqual(QT_MAJOR_VERSION, $${REQUIRED_MA
  #LIBISDS_PREFIX = "$$HOME/third_party/built"
  
@@ -10,7 +10,7 @@
VERSION=\\\"$${VERSION}\\\"
  
  unix:!macx {
-@@ -101,12 +100,6 @@ unix:!macx {
+@@ -98,12 +97,6 @@ unix:!macx {
localisation.files += locale/datovka_cs.qm \
locale/datovka_en.qm
  
@@ -23,7 +23,7 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -129,8 +122,11 @@ unix:!macx {
+@@ -126,8 +119,11 @@ unix:!macx {
}
  }
  
@@ -37,14 +37,15 @@
-Wall -Wextra -pedantic
  
  INCLUDEPATH += \
-@@ -196,11 +192,6 @@ macx {
+@@ -198,12 +194,6 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  
 -  additional.path = "Contents/Resources"
 -  additional.files = \
 -  AUTHORS \
--  COPYING
+-  COPYING \
+-  ChangeLog
 -
QMAKE_BUNDLE_DATA +=\
localisation \




commit syncthing for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package syncthing for openSUSE:Factory 
checked in at 2015-09-08 17:44:06

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


Package is "syncthing"

Changes:

--- /work/SRC/openSUSE:Factory/syncthing/syncthing.changes  2015-08-31 
22:59:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing.new/syncthing.changes 2015-09-08 
17:58:20.0 +0200
@@ -1,0 +2,8 @@
+Sun Sep  6 10:32:23 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.11.24:
+  * Correctly handle (?i) in ignores.
+  * Adjust defaults for number of hashers based on OS.
+  * Allow fractional free space percentages.
+
+---

Old:

  syncthing-0.11.23.tar.gz

New:

  syncthing-0.11.24.tar.gz



Other differences:
--
++ syncthing.spec ++
--- /var/tmp/diff_new_pack.e7ojcY/_old  2015-09-08 17:58:28.0 +0200
+++ /var/tmp/diff_new_pack.e7ojcY/_new  2015-09-08 17:58:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syncthing
-Version:0.11.23
+Version:0.11.24
 Release:0
 Summary:FOSS Continuous File Synchronization
 License:MPL-2.0

++ syncthing-0.11.23.tar.gz -> syncthing-0.11.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/syncthing-0.11.23/gui/syncthing/folder/editFolderModalView.html 
new/syncthing-0.11.24/gui/syncthing/folder/editFolderModalView.html
--- old/syncthing-0.11.23/gui/syncthing/folder/editFolderModalView.html 
2015-08-30 13:37:18.0 +0200
+++ new/syncthing-0.11.24/gui/syncthing/folder/editFolderModalView.html 
2015-09-06 08:47:52.0 +0200
@@ -40,8 +40,8 @@
 
   
   
-Minimum Free Disk 
Space (0-100%)
-
+Minimum Free Disk 
Space (0.0 - 100.0%)
+
 
   The minimum free disk space percentage 
must be a non-negative number between 0 and 100 (inclusive).
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/syncthing-0.11.23/lib/auto/gui.files.go 
new/syncthing-0.11.24/lib/auto/gui.files.go
--- old/syncthing-0.11.23/lib/auto/gui.files.go 2015-08-30 13:37:18.0 
+0200
+++ new/syncthing-0.11.24/lib/auto/gui.files.go 2015-09-06 08:47:52.0 
+0200
@@ -5,7 +5,7 @@
 )
 
 const (
-   AssetsBuildDate = "Sun, 30 Aug 2015 11:36:51 GMT"
+   AssetsBuildDate = "Sun, 06 Sep 2015 06:47:10 GMT"
 )
 
 func Assets() map[string][]byte {
@@ -89,7 +89,7 @@
assets["syncthing/device/idqrModalView.html"], _ = 
base64.StdEncoding.DecodeString("H4sIAAAJbogA/zSQPXLCMBCFe59iZxug0PgCttPQ0OQOQlqbnegnSAsJo+jukQ00Gj3pvW/e7uCj1Q7Yjsj2mhCyaLnlpsIcEdjEMOI1mWgJQVgcjVjK7kh3NgQnS0F4ZqOFY9jBH0jSITstVCsoKMVuxk/taS8Xzs/c/nCoFcHptDTcgzKCcTG/7lMHMFi+tzedW5Mfcg7WQ2UPQr+ifAwxf+tWYJOmlaCEUyn+cTrWOvQtvVHYLxAWxfOI6xe+kc+EOrtovqCZlFxu/hw0O1z9OZl16P5jxY9vLPZTN/TbvqbuHwAA//8BAAD//2Nevvg4AQAA")
assets["syncthing/device/module.js"], _ = 
base64.StdEncoding.DecodeString("H4sIAAAJbogA/0rMSy/NSSzSy81PKc1J1VAvrsxLLsnIzEvXS0kty0xOVddRiI7VtOYC//8BAAD//23b1z0o")
assets["syncthing/folder/editFolderModalDirective.js"], _ = 
base64.StdEncoding.DecodeString("H4sIAAAJbogA/1yOMQ+CMBCFd35Ft4OElF0mFzdH3Rt6wCVHa46rxhj+uxUSor7xfe/uPReGxE7sFH1iLGF+hk5HCoPtI3sUqAqTZT0Jdkr3HEFPelrhOXrHUJs+5SOKwZSVea35jwQ1SfgyNnNWoU4PBo5Q/yDF6cZO8SKc6T6k2YY0f7VXwocddWLYnyxtsVRt8QYAAP//AQAA//+34Oi50w==")
-   assets["syncthing/folder/editFolderModalView.html"], _ = 

commit libressl for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2015-09-08 17:44:10

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


Package is "libressl"

Changes:

--- /work/SRC/openSUSE:Factory/libressl/libressl.changes2015-08-19 
09:29:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2015-09-08 
17:58:51.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug 30 22:31:01 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 2.2.3
+* LibreSSL 2.2.2 incorrectly handles ClientHello messages that do
+  not include TLS extensions, resulting in such handshakes being
+  aborted. This release corrects the handling of such messages.
+
+---

Old:

  libressl-2.2.2.tar.gz
  libressl-2.2.2.tar.gz.asc

New:

  libressl-2.2.3.tar.gz
  libressl-2.2.3.tar.gz.asc



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.0eHuSg/_old  2015-09-08 17:58:58.0 +0200
+++ /var/tmp/diff_new_pack.0eHuSg/_new  2015-09-08 17:58:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.2.2
+Version:2.2.3
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL

++ libressl-2.2.2.tar.gz -> libressl-2.2.3.tar.gz ++
 2502 lines of diff (skipped)




commit wine for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package wine for openSUSE:Factory checked in 
at 2015-09-08 17:44:28

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


Package is "wine"

Changes:

--- /work/SRC/openSUSE:Factory/wine/wine.changes2015-08-31 
22:59:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.wine.new/wine.changes   2015-09-08 
18:01:12.0 +0200
@@ -1,0 +2,11 @@
+Fri Sep  4 14:29:47 UTC 2015 - meiss...@suse.com
+
+- Updated to 1.7.51 development snapshot
+  - XAudio2 implementation using OpenAL Soft.
+  - Support for the new Universal C Runtime DLL.
+  - Dropdown menu support in the standard Open Dialog.
+  - Grayscale rendering mode in DirectWrite.
+  - Various bug fixes.
+- winetricks helper script updated
+
+---

Old:

  wine-1.7.50.tar.bz2
  wine-1.7.50.tar.bz2.sign

New:

  wine-1.7.51.tar.bz2
  wine-1.7.51.tar.bz2.sign



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.0HB6sC/_old  2015-09-08 18:02:05.0 +0200
+++ /var/tmp/diff_new_pack.0HB6sC/_new  2015-09-08 18:02:05.0 +0200
@@ -60,7 +60,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  valgrind-devel
 BuildRequires:  xorg-x11-devel
-Version:1.7.50
+Version:1.7.51
 Release:0
 Summary:An MS Windows Emulator
 License:LGPL-2.1+

++ wine-1.7.50.tar.bz2 -> wine-1.7.51.tar.bz2 ++
/work/SRC/openSUSE:Factory/wine/wine-1.7.50.tar.bz2 
/work/SRC/openSUSE:Factory/.wine.new/wine-1.7.51.tar.bz2 differ: char 11, line 1


++ winetricks ++
--- /var/tmp/diff_new_pack.0HB6sC/_old  2015-09-08 18:02:05.0 +0200
+++ /var/tmp/diff_new_pack.0HB6sC/_new  2015-09-08 18:02:05.0 +0200
@@ -2,7 +2,7 @@
 
 # Name of this version of winetricks (MMDD)
 # (This doesn't change often, use the sha1sum of the file when reporting 
problems)
-WINETRICKS_VERSION=20150706
+WINETRICKS_VERSION=20150826
 
 # This is a utf-8 file
 # You should see an o with two dots over it here [ö]
@@ -6587,6 +6587,24 @@
 }
 
 #
+
+w_metadata mf dlls \
+title="MS Media Foundation" \
+publisher="Microsoft" \
+year="2011" \
+media="download" \
+file1="../win7sp1/windows6.1-KB976932-X86.exe" \
+installed_file1="$W_SYSTEM32_DLLS_WIN/mf.dll"
+
+load_mf()
+{
+helper_win7sp1 
x86_microsoft-windows-mediafoundation_31bf3856ad364e35_6.1.7601.17514_none_9e6699276b03c38e/mf.dll
+w_try cp 
"$W_TMP/x86_microsoft-windows-mediafoundation_31bf3856ad364e35_6.1.7601.17514_none_9e6699276b03c38e/mf.dll"
 "$W_SYSTEM32_DLLS/mf.dll"
+
+w_override_dlls native,builtin mf
+}
+
+#
 
 w_metadata mfc40 dlls \
 title="MS mfc40 (Microsoft Foundation Classes from Visual C++ 4.0)" \




commit libu2f-host for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libu2f-host for openSUSE:Factory 
checked in at 2015-09-08 17:44:24

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


Package is "libu2f-host"

Changes:

--- /work/SRC/openSUSE:Factory/libu2f-host/libu2f-host.changes  2015-04-27 
22:09:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.libu2f-host.new/libu2f-host.changes 
2015-09-08 18:01:09.0 +0200
@@ -1,0 +2,15 @@
+Fri Sep  4 07:38:29 UTC 2015 - t.gru...@katodev.de
+
+- Fix path in u2f-host/u2f-host.h 
+
+---
+Tue Sep  1 11:54:44 UTC 2015 - t.gru...@katodev.de
+
+- Version 1.0.0 (released 2015-08-27)
+  - Add udev rules for older version of udev.
+  - Add pam:// as an allowed protocol.
+  - Stop using sleep(), use Sleep() on windows and usleep() on others.
+  - Fixup tool name in help and manpage.
+  - Add a timeout to the register and authenticate actions. 
+
+---

Old:

  libu2f-host-0.0.4.tar.xz

New:

  libu2f-host-1.0.0.tar.xz



Other differences:
--
++ libu2f-host.spec ++
--- /var/tmp/diff_new_pack.Exuu24/_old  2015-09-08 18:01:12.0 +0200
+++ /var/tmp/diff_new_pack.Exuu24/_new  2015-09-08 18:01:12.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file
+# spec file for libu2f-host
 #
 # Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -18,7 +18,7 @@
 %define soname  0
 
 Name:   libu2f-host
-Version:0.0.4
+Version:1.0.0
 Release:0
 Summary:Yubico Universal 2nd Factor (U2F) Host C Library
 Group:  Productivity/Networking/Security
@@ -82,13 +82,18 @@
 # --disable-rpath doesn't work for the configure script
 %{__sed} -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' 
libtool
 %{__sed} -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+# Fix path in u2f-host/u2f-host.h
+%{__sed} -i 's|^#include 

commit ocl-icd for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package ocl-icd for openSUSE:Factory checked 
in at 2015-09-08 17:44:01

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


Package is "ocl-icd"

Changes:

--- /work/SRC/openSUSE:Factory/ocl-icd/ocl-icd.changes  2015-07-03 
00:11:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.ocl-icd.new/ocl-icd.changes 2015-09-08 
17:58:17.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep  6 12:37:54 UTC 2015 - mplus...@suse.com
+
+- Update to 2.2.7
+  * See NEWS for full list of changes
+- Cleanup spec file with spec-cleaner
+
+---

Old:

  ocl-icd-2.1.3.tar.gz

New:

  ocl-icd-2.2.7.tar.gz



Other differences:
--
++ ocl-icd.spec ++
--- /var/tmp/diff_new_pack.5D4S19/_old  2015-09-08 17:58:19.0 +0200
+++ /var/tmp/diff_new_pack.5D4S19/_new  2015-09-08 17:58:19.0 +0200
@@ -17,17 +17,17 @@
 
 
 Name:   ocl-icd
-Version:2.1.3
+Version:2.2.7
 Release:0
 Summary:OpenCL ICD Bindings
 License:BSD-2-Clause
 Group:  System/Libraries
 Url:https://forge.imag.fr/projects/ocl-icd/
-Source: 
https://forge.imag.fr/frs/download.php/524/%{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Source: 
https://forge.imag.fr/frs/download.php/667/%{name}-%{version}.tar.gz
 BuildRequires:  opencl-headers >= 1.2
 BuildRequires:  pkg-config
 BuildRequires:  ruby
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 OpenCL is a royalty-free standard for cross-platform, parallel programming
@@ -65,7 +65,7 @@
 
 %build
 %configure
-make stamp-generator stamp-generator-dummy
+make %{?_smp_mflags} stamp-generator stamp-generator-dummy
 %if 0%{?sles_version} || (0%{?suse_version} && 0%{?suse_version} <= 1140)
 for i in *.h *.c; do
 sed -i -e '/#[ ]*pragma GCC diagnostic push/d
@@ -73,24 +73,18 @@
/#[ ]*pragma GCC diagnostic ignored "-Wcpp"/d' $i
 done
 %endif
-make
+make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 %make_install
-find %{buildroot} -name '*.la'
-find %{buildroot} -name '*.la' -delete
+find %{buildroot} -type f -name "*.la" -delete -print
+find %{buildroot} -type f -name "*.la" -delete -print
 rm -rf instdocs
 mv %{buildroot}%{_datadir}/doc/%{name} instdocs
 
-%clean
-rm -rf %{buildroot}
-
-%post -n libOpenCL1
-ldconfig
+%post -n libOpenCL1 -p /sbin/ldconfig
 
-%postun -n libOpenCL1
-ldconfig
+%postun -n libOpenCL1 -p /sbin/ldconfig
 
 %files -n libOpenCL1
 %defattr(-, root, root)

++ ocl-icd-2.1.3.tar.gz -> ocl-icd-2.2.7.tar.gz ++
 11502 lines of diff (skipped)




commit fail2ban for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package fail2ban for openSUSE:Factory 
checked in at 2015-09-08 17:44:47

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


Package is "fail2ban"

Changes:

--- /work/SRC/openSUSE:Factory/fail2ban/fail2ban.changes2015-07-03 
00:03:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.fail2ban.new/fail2ban.changes   2015-09-08 
18:05:10.0 +0200
@@ -1,0 +2,92 @@
+Mon Sep  7 09:45:56 UTC 2015 - jweberho...@weberhofer.at
+
+- patches are no longer included conditionally
+
+---
+Mon Sep  7 06:54:33 UTC 2015 - jweberho...@weberhofer.at
+
+- fail2ban-exclude-ExecuteTimeoutWithNastyChildren-test.patch excludes the
+  ExecuteTimeoutWithNastyChildren test, as it doesn't run correctly on
+  openSUSE.
+
+- fail2ban-disable-iptables-w-option.patch disables iptables "-w" option for
+  older releases. 
+
+- Update to version 0.9.3
+
+- IMPORTANT incompatible changes:
+   * filter.d/roundcube-auth.conf
+ - Changed logpath to 'errors' log (was 'userlogins')
+   * action.d/iptables-common.conf
+ - All calls to iptables command now use -w switch introduced in
+   iptables 1.4.20 (some distribution could have patched their
+   earlier base version as well) to provide this locking mechanism
+   useful under heavy load to avoid contesting on iptables calls.
+   If you need to disable, define 'action.d/iptables-common.local'
+   with empty value for 'lockingopt' in `[Init]` section.
+   * mail-whois-lines, sendmail-geoip-lines and sendmail-whois-lines
+ actions now include by default only the first 1000 log lines in
+ the emails.  Adjust  to augment the behavior.
+
+- Fixes:
+   * reload in interactive mode appends all the jails twice (gh-825)
+   * reload server/jail failed if database used (but was not changed) and
+ some jail active (gh-1072)
+   * filter.d/dovecot.conf - also match unknown user in passwd-file.
+ Thanks Anton Shestakov
+   * Fix fail2ban-regex not parsing journalmatch correctly from filter config
+   * filter.d/asterisk.conf - fix security log support for Asterisk 12+
+   * filter.d/roundcube-auth.conf
+ - Updated regex to work with 'errors' log (1.0.5 and 1.1.1)
+ - Added regex to work with 'userlogins' log
+   * action.d/sendmail*.conf - use LC_ALL (superseeding LC_TIME) to override
+ locale on systems with customized LC_ALL
+   * performance fix: minimizes connection overhead, close socket only at
+ communication end (gh-1099)
+   * unbanip always deletes ip from database (independent of bantime, also if
+ currently not banned or persistent)
+   * guarantee order of dbfile to be before dbpurgeage (gh-1048)
+   * always set 'dbfile' before other database options (gh-1050)
+   * kill the entire process group of the child process upon timeout (gh-1129).
+ Otherwise could lead to resource exhaustion due to hanging whois
+ processes.
+   * resolve /var/run/fail2ban path in setup.py to help installation
+ on platforms with /var/run -> /run symlink (gh-1142)
+
+- New Features:
+   * RETURN iptables target is now a variable: 
+   * New type of operation: pass2allow, use fail2ban for "knocking",
+ opening a closed port by swapping blocktype and returntype
+   * New filters:
+ - froxlor-auth - Thanks Joern Muehlencord
+ - apache-pass - filter Apache access log for successful authentication
+   * New actions:
+ - shorewall-ipset-proto6 - using proto feature of the Shorewall. Still 
requires
+  manual pre-configuration of the shorewall. See the action file for 
detail.
+   * New jails:
+ - pass2allow-ftp - allows FTP traffic after successful HTTP authentication
+
+- Enhancements:
+   * action.d/cloudflare.conf - improved documentation on how to allow
+ multiple CF accounts, and jail.conf got new compound action
+ definition action_cf_mwl to submit cloudflare report.
+   * Check access to socket for more detailed logging on error (gh-595)
+   * fail2ban-testcases man page
+   * filter.d/apache-badbots.conf, filter.d/nginx-botsearch.conf - add
+ HEAD method verb
+   * Revamp of Travis and coverage automated testing
+   * Added a space between IP address and the following colon
+ in notification emails for easier text selection
+   * Character detection heuristics for whois output via optional setting
+ in mail-whois*.conf. Thanks Thomas Mayer.
+ Not enabled by default, if _whois_command is set to be
+ %(_whois_convert_charset)s (e.g. in action.d/mail-whois-common.local),
+ it
+ - detects character set of whois output (which is undefined by
+   RFC 3912) via heuristics of the file command
+ - converts whois data to UTF-8 character set 

commit ubuntu-mate-artwork for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package ubuntu-mate-artwork for 
openSUSE:Factory checked in at 2015-09-08 17:44:14

Comparing /work/SRC/openSUSE:Factory/ubuntu-mate-artwork (Old)
 and  /work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new (New)


Package is "ubuntu-mate-artwork"

Changes:

--- /work/SRC/openSUSE:Factory/ubuntu-mate-artwork/ubuntu-mate-artwork.changes  
2015-08-23 17:53:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new/ubuntu-mate-artwork.changes 
2015-09-08 17:58:59.0 +0200
@@ -1,0 +2,8 @@
+Sun Sep  6 10:32:23 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 15.10.2:
+  * Add Wily Werewolf themed backdrops contributed by
+Ghost Sixtyseven.
+- Remove themes-scrollbar-fixes.patch.
+
+---

Old:

  themes-scrollbar-fixes.patch
  ubuntu-mate-artwork_15.10.1.tar.xz

New:

  ubuntu-mate-artwork_15.10.2.tar.xz



Other differences:
--
++ ubuntu-mate-artwork.spec ++
--- /var/tmp/diff_new_pack.B5IpUK/_old  2015-09-08 18:01:05.0 +0200
+++ /var/tmp/diff_new_pack.B5IpUK/_new  2015-09-08 18:01:05.0 +0200
@@ -18,7 +18,7 @@
 
 %define _name   ubuntu-mate
 Name:   ubuntu-mate-artwork
-Version:15.10.1
+Version:15.10.2
 Release:0
 Summary:Ubuntu MATE themes and artwork
 License:GPL-3.0+ and CC-BY-SA-4.0 and CC-BY-SA-3.0
@@ -27,10 +27,8 @@
 Source: 
http://archive.ubuntu.com/ubuntu/pool/universe/u/%{name}/%{name}_%{version}.tar.xz
 # PATCH-FIX-UPSTREAM themes-csd-titlebar-fix.patch sor.ale...@meowr.ru -- Fix 
transparent titlebars in Gtk3 CSD.
 Patch0: themes-csd-titlebar-fix.patch
-# PATCH-FEATURE-UPSTREAM themes-scrollbar-fixes.patch sor.ale...@meowr.ru -- 
Make scrollbars in Gtk2 simliar to Gtk3.
-Patch1: themes-scrollbar-fixes.patch
 # PATCH-FIX-UPSTREAM themes-light-menubars.patch sor.ale...@meowr.ru -- Make 
light menus in Ambiance (Gtk2), dark menus are buggy in Qt4 QGtkStyle.
-Patch2: themes-light-menubars.patch
+Patch1: themes-light-menubars.patch
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildArch:  noarch
@@ -126,10 +124,9 @@
 The default Ubuntu MATE wallpapers for the Ubuntu MATE releases.
 
 %prep
-%setup -q
+%setup -q -n %{name}
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 # Remove unwanted: Debian package, GRUB theme, Plymouth theme, odd script, 
LightDM defaults.
 rm -rf debian boot lib symlink.sh .%{_sysconfdir} .%{_datadir}/%{_name}
 

++ ubuntu-mate-artwork_15.10.1.tar.xz -> ubuntu-mate-artwork_15.10.2.tar.xz 
++
/work/SRC/openSUSE:Factory/ubuntu-mate-artwork/ubuntu-mate-artwork_15.10.1.tar.xz
 
/work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new/ubuntu-mate-artwork_15.10.2.tar.xz
 differ: char 25, line 1




commit perl-Pod-Coverage-Moose for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Pod-Coverage-Moose for 
openSUSE:Factory checked in at 2015-09-08 17:45:06

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


Package is "perl-Pod-Coverage-Moose"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Pod-Coverage-Moose/perl-Pod-Coverage-Moose.changes
  2014-03-18 14:16:36.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Pod-Coverage-Moose.new/perl-Pod-Coverage-Moose.changes
 2015-09-08 18:06:47.0 +0200
@@ -1,0 +2,13 @@
+Sun Sep  6 08:56:46 UTC 2015 - co...@suse.com
+
+- updated to 0.07
+   see /usr/share/doc/packages/perl-Pod-Coverage-Moose/Changes
+
+  0.07  2015-09-05 04:03:44Z
+  - fix test failures on Moose >= 2.1300 when
+MooseX::Role::WithOverloading is not installed (RT#106898)
+  
+  0.06  2015-08-16 06:51:50Z
+  - update some distribution tooling
+
+---

Old:

  Pod-Coverage-Moose-0.05.tar.gz

New:

  Pod-Coverage-Moose-0.07.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Pod-Coverage-Moose.spec ++
--- /var/tmp/diff_new_pack.lF1LWd/_old  2015-09-08 18:06:49.0 +0200
+++ /var/tmp/diff_new_pack.lF1LWd/_new  2015-09-08 18:06:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Pod-Coverage-Moose
 #
-# 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,27 +17,29 @@
 
 
 Name:   perl-Pod-Coverage-Moose
-Version:0.05
+Version:0.07
 Release:0
 %define cpan_name Pod-Coverage-Moose
 Summary:Pod::Coverage extension for Moose
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Pod-Coverage-Moose/
-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(Class::Load)
-BuildRequires:  perl(Module::Build::Tiny) >= 0.030
-BuildRequires:  perl(Moose) >= 0.24
+BuildRequires:  perl(Module::Build::Tiny) >= 0.034
+BuildRequires:  perl(Moose) >= 2.1300
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(Pod::Coverage)
+BuildRequires:  perl(Test::More) >= 0.88
 BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(namespace::autoclean) >= 0.08
 Requires:   perl(Class::Load)
-Requires:   perl(Moose) >= 0.24
+Requires:   perl(Moose) >= 2.1300
 Requires:   perl(Pod::Coverage)
 Requires:   perl(namespace::autoclean) >= 0.08
 %{perl_requires}
@@ -70,6 +72,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README README.md weaver.ini
+%doc Changes CONTRIBUTING LICENSE README
 
 %changelog

++ Pod-Coverage-Moose-0.05.tar.gz -> Pod-Coverage-Moose-0.07.tar.gz ++
 4284 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 yast2-vpn for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-vpn for openSUSE:Factory 
checked in at 2015-09-08 17:45:02

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


Package is "yast2-vpn"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-vpn/yast2-vpn.changes  2015-08-01 
11:38:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-vpn.new/yast2-vpn.changes 2015-09-08 
18:06:41.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 12:45:26 UTC 2015 - h...@suse.com
+
+- Display a warning if ipsec.conf or ipsec.secrets appear to have
+  been manually manipulated.
+
+---

Old:

  yast2-vpn-3.1.0.tar.bz2

New:

  yast2-vpn-3.1.1.tar.bz2



Other differences:
--
++ yast2-vpn.spec ++
--- /var/tmp/diff_new_pack.9I1TRi/_old  2015-09-08 18:06:42.0 +0200
+++ /var/tmp/diff_new_pack.9I1TRi/_new  2015-09-08 18:06:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-vpn
-Version:3.1.0
+Version:3.1.1
 Release:0
 Url:https://github.com/yast/yast-vpn
 Source0:%{name}-%{version}.tar.bz2

++ yast2-vpn-3.1.0.tar.bz2 -> yast2-vpn-3.1.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vpn-3.1.0/package/yast2-vpn.changes 
new/yast2-vpn-3.1.1/package/yast2-vpn.changes
--- old/yast2-vpn-3.1.0/package/yast2-vpn.changes   2015-07-29 
11:15:37.0 +0200
+++ new/yast2-vpn-3.1.1/package/yast2-vpn.changes   2015-09-07 
14:46:01.0 +0200
@@ -1,4 +1,10 @@
 ---
+Mon Sep  7 12:45:26 UTC 2015 - h...@suse.com
+
+- Display a warning if ipsec.conf or ipsec.secrets appear to have
+  been manually manipulated.
+
+---
 Fri Jul 17 11:49:05 UTC 2015 - h...@suse.com
 
 - New package. Initial version, initial release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vpn-3.1.0/package/yast2-vpn.spec 
new/yast2-vpn-3.1.1/package/yast2-vpn.spec
--- old/yast2-vpn-3.1.0/package/yast2-vpn.spec  2015-07-29 11:15:48.0 
+0200
+++ new/yast2-vpn-3.1.1/package/yast2-vpn.spec  2015-09-07 14:45:14.0 
+0200
@@ -16,7 +16,7 @@
 #
 
 Name:   yast2-vpn
-Version:3.1.0
+Version:3.1.1
 Release:0
 License:GPL-2.0
 URL:https://github.com/yast/yast-vpn
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-vpn-3.1.0/src/lib/vpn/ipsec.rb 
new/yast2-vpn-3.1.1/src/lib/vpn/ipsec.rb
--- old/yast2-vpn-3.1.0/src/lib/vpn/ipsec.rb2015-07-29 10:46:41.0 
+0200
+++ new/yast2-vpn-3.1.1/src/lib/vpn/ipsec.rb2015-09-07 14:42:44.0 
+0200
@@ -223,15 +223,22 @@
 # Load parameters from connections of known scenarios
 conns = Yast::IPSecConf.GetIPSecConnections
 conns ||= {}
+has_unsupported_scenario = false
 conns.each { | name, conf|
 scenario = determine_scenario(conf)
 if scenario == nil
+has_unsupported_scenario = true
 log.info "The connection is not supported: " + name
 else
 conn_conf = {"name" => name, "scenario" => scenario}
 @all_conns[name] = 
conn_conf.merge(get_scenario_specific_params(scenario, conf))
 end
 }
+if has_unsupported_scenario || 
!Yast::IPSecConf.GetUnsupportedConfiguration.empty? ||
+!Yast::IPSecConf.GetUnsupportedSecrets.empty?
+Yast::Popup.LongWarning(_("ipsec.conf and ipsec.secrets have 
been manipulated outside of this module.\n" +
+"Continue using the module will remove your 
customisation."))
+end
 log.info "Loaded IPSec connections: #{@all_conns}"
 # By default, look at the first connection
 @curr_conn_name = @all_conns.keys.first unless 
@all_conns[@curr_conn_name]
@@ -555,4 +562,4 @@
 end
 end
 IPSec = IPSecClass.new
-end
\ No newline at end of file
+end




commit afl for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package afl for openSUSE:Factory checked in 
at 2015-09-08 17:45:03

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-08-12 15:13:00.0 
+0200
+++ /work/SRC/openSUSE:Factory/.afl.new/afl.changes 2015-09-08 
18:06:42.0 +0200
@@ -1,0 +2,37 @@
+Mon Sep  7 13:22:07 UTC 2015 - astie...@suse.com
+
+- afl 1.92b:
+  * C++ fix (namespaces)
+
+---
+Thu Sep  3 14:32:09 UTC 2015 - astie...@suse.com
+
+- afl 1.91b:
+  * C++ instrumentation fixes
+- includes changes from 1.90b:
+  * documentation updates
+  * Fixed a potential problem with deferred mode signatures getting
+optimized out by the linker (with --gc-sections).
+
+---
+Wed Sep  2 07:57:31 UTC 2015 - astie...@suse.com
+
+- afl 1.89b:
+  * Revamped the support for persistent and deferred forkserver
+modes. Both now feature simpler syntax and do not require
+companion env variables.
+  * Added a bit more info about afl-showmap.
+
+---
+Sun Aug 30 23:40:19 UTC 2015 - astie...@suse.com
+
+- afl 1.88b:
+  * Make AFL_EXIT_WHEN_DONE work in non-tty mode. 
+
+---
+Thu Aug 27 14:32:46 UTC 2015 - astie...@suse.com
+
+- afl 1.87b:
+  * Add QuickStartGuide.txt and other documentation updates
+
+---

Old:

  afl-1.86b.tgz

New:

  afl-1.92b.tgz



Other differences:
--
++ afl.spec ++
--- /var/tmp/diff_new_pack.ukTcEm/_old  2015-09-08 18:06:45.0 +0200
+++ /var/tmp/diff_new_pack.ukTcEm/_new  2015-09-08 18:06:45.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   afl
-Version:1.86b
+Version:1.92b
 Release:0
 Summary:American fuzzy lop is a security-oriented fuzzer
 License:Apache-2.0

++ afl-1.86b.tgz -> afl-1.92b.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.86b/Makefile new/afl-1.92b/Makefile
--- old/afl-1.86b/Makefile  2015-08-09 06:26:31.0 +0200
+++ new/afl-1.92b/Makefile  2015-09-03 19:54:32.0 +0200
@@ -14,7 +14,7 @@
 #
 
 PROGNAME= afl
-VERSION = 1.86b
+VERSION = 1.92b
 
 PREFIX ?= /usr/local
 BIN_PATH= $(PREFIX)/bin
@@ -132,4 +132,5 @@
cat docs/historical_notes.txt >~/www/afl/historical_notes.txt
cat docs/technical_details.txt >~/www/afl/technical_details.txt
cat docs/ChangeLog >~/www/afl/ChangeLog.txt
+   cat docs/QuickStartGuide.txt >~/www/afl/QuickStartGuide.txt
echo -n "$(VERSION)" >~/www/afl/version.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.86b/QuickStartGuide.txt 
new/afl-1.92b/QuickStartGuide.txt
--- old/afl-1.86b/QuickStartGuide.txt   1970-01-01 01:00:00.0 +0100
+++ new/afl-1.92b/QuickStartGuide.txt   2015-09-08 18:06:45.0 +0200
@@ -0,0 +1 @@
+symbolic link to docs/QuickStartGuide.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.86b/afl-cmin new/afl-1.92b/afl-cmin
--- old/afl-1.86b/afl-cmin  2015-08-01 04:43:30.0 +0200
+++ new/afl-1.92b/afl-cmin  2015-08-09 07:58:08.0 +0200
@@ -18,11 +18,11 @@
 # the starting corpus. This has two uses:
 #
 #   - Screening large corpora of input files before using them as a seed for
-# seed for afl-fuzz. The tool effectively reject functionally redundant
-# files and likely leave you with a much smaller set.
+# seed for afl-fuzz. The tool will remove functionally redundant files and
+# likely leave you with a much smaller set.
 #
 # (In this case, you probably also want to consider running afl-tmin on
-# the individual files to reduce their size.)
+# the individual files later on to reduce their size.)
 #
 #   - Minimizing the corpus generated organically by afl-fuzz, perhaps when
 # planning to feed it to more resource-intensive tools. The tool achieves
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/afl-1.86b/afl-fuzz.c new/afl-1.92b/afl-fuzz.c
--- old/afl-1.86b/afl-fuzz.c2015-08-09 06:34:48.0 +0200
+++ new/afl-1.92b/afl-fuzz.c2015-09-03 07:12:32.0 +0200
@@ -2072,9 +2072,9 @@
 
  "- Less likely, there is a horrible bug in the fuzzer. If other 
options\n"
  "  fail, poke 

commit elementary for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package elementary for openSUSE:Factory 
checked in at 2015-09-08 17:45:01

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


Package is "elementary"

Changes:

--- /work/SRC/openSUSE:Factory/elementary/elementary.changes2015-08-27 
08:55:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.elementary.new/elementary.changes   
2015-09-08 18:05:56.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep  7 11:34:28 UTC 2015 - si...@simotek.net
+
+- Use luajit on platforms that support it and lua < 5.2 following efl
+
+---



Other differences:
--
++ elementary.spec ++
--- /var/tmp/diff_new_pack.i8LLjX/_old  2015-09-08 18:06:41.0 +0200
+++ /var/tmp/diff_new_pack.i8LLjX/_new  2015-09-08 18:06:41.0 +0200
@@ -18,6 +18,12 @@
 
 %define build_doc 0%{?mandriva_version} == 20101 || 0%{?centos_version} == 6
 
+%ifarch %ix86 x86_64 %arml ppc
+%define luajit_present 1
+%else
+%define luajit_present 0
+%endif
+
 %define efl_version1.15.0
 
 Name:   elementary
@@ -39,7 +45,11 @@
 BuildRequires:  ImageMagick
 BuildRequires:  gettext-devel
 BuildRequires:  libtool
-BuildRequires:  lua-devel
+%if %luajit_present
+BuildRequires:  pkgconfig(luajit)
+%else
+BuildRequires:  pkgconfig(lua) < 5.2
+%endif
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(ecore) >= %efl_version
 BuildRequires:  pkgconfig(ecore-con) >= %efl_version
@@ -89,7 +99,11 @@
 Requires:   efl-devel
 Requires:   gettext-devel
 Requires:   libelementary1 = %{version}
-Requires:   lua-devel
+%if %luajit_present
+Requires:   pkgconfig(luajit)
+%else
+Requires:   pkgconfig(lua) < 5.2
+%endif
 
 %description devel
 Development files for Elementary library.




commit xmltooling for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package xmltooling for openSUSE:Factory 
checked in at 2015-09-08 17:45:10

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


Package is "xmltooling"

Changes:

--- /work/SRC/openSUSE:Factory/xmltooling/xmltooling.changes2015-08-29 
20:04:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmltooling.new/xmltooling.changes   
2015-09-08 18:06:50.0 +0200
@@ -1,0 +2,13 @@
+Mon Sep  7 14:39:36 UTC 2015 - kstreit...@suse.com
+
+- update to xmltooling 1.5.6 
+  * [CPPXT-105] - PKIX revocation checking calls OpenSSL's 
+X509_verify_cert in an unsupported way (breaks with OpenSSL
+1.0.1p/1.0.2d and later)
+
+---
+Wed Aug  5 18:04:11 UTC 2015 - mplus...@suse.com
+
+- Add gpg signature
+
+---

Old:

  xmltooling-1.5.5.tar.bz2

New:

  xmltooling-1.5.6.tar.bz2
  xmltooling-1.5.6.tar.bz2.asc
  xmltooling.keyring



Other differences:
--
++ xmltooling.spec ++
--- /var/tmp/diff_new_pack.HpoNH6/_old  2015-09-08 18:06:52.0 +0200
+++ /var/tmp/diff_new_pack.HpoNH6/_new  2015-09-08 18:06:52.0 +0200
@@ -18,13 +18,15 @@
 
 %define pkgdocdir %{_docdir}/%{name}
 Name:   xmltooling
-Version:1.5.5
+Version:1.5.6
 Release:0
 Summary:OpenSAML XML library
 License:Apache-2.0
 Group:  Development/Libraries/C and C++
 Url:
https://wiki.shibboleth.net/confluence/display/OpenSAML/XMLTooling-C
-Source: 
http://shibboleth.net/downloads/c++-opensaml/2.5.5/%{name}-%{version}.tar.bz2
+Source0:
http://shibboleth.net/downloads/c++-opensaml/2.5.5/%{name}-%{version}.tar.bz2
+Source1:
http://shibboleth.net/downloads/c++-opensaml/2.5.5/%{name}-%{version}.tar.bz2.asc
+Source2:%{name}.keyring
 Patch0: xmltooling-1.5.5-doxygen_timestamp.patch
 BuildRequires:  boost-devel >= 1.32.0
 BuildRequires:  curl-devel >= 7.10.6

++ xmltooling-1.5.5.tar.bz2 -> xmltooling-1.5.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xmltooling-1.5.5/config_win32.h 
new/xmltooling-1.5.6/config_win32.h
--- old/xmltooling-1.5.5/config_win32.h 2015-07-09 17:16:13.0 +0200
+++ new/xmltooling-1.5.6/config_win32.h 2015-08-04 15:46:59.0 +0200
@@ -114,13 +114,13 @@
 #define PACKAGE_NAME "xmltooling"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "xmltooling 1.5.5"
+#define PACKAGE_STRING "xmltooling 1.5.6"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "xmltooling"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.5.5"
+#define PACKAGE_VERSION "1.5.6"
 
 /* Define to the necessary symbol if this constant uses a non-standard name on
your system. */
@@ -133,7 +133,7 @@
 /* #undef TM_IN_SYS_TIME */
 
 /* Version number of package */
-#define VERSION "1.5.5"
+#define VERSION "1.5.6"
 
 /* Define if you wish to disable XML-Security-dependent features. */
 /* #undef XMLTOOLING_NO_XMLSEC */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xmltooling-1.5.5/configure 
new/xmltooling-1.5.6/configure
--- old/xmltooling-1.5.5/configure  2015-07-09 17:28:23.0 +0200
+++ new/xmltooling-1.5.6/configure  2015-08-04 15:47:20.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for xmltooling 1.5.5.
+# Generated by GNU Autoconf 2.69 for xmltooling 1.5.6.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='xmltooling'
 PACKAGE_TARNAME='xmltooling'
-PACKAGE_VERSION='1.5.5'
-PACKAGE_STRING='xmltooling 1.5.5'
+PACKAGE_VERSION='1.5.6'
+PACKAGE_STRING='xmltooling 1.5.6'
 PACKAGE_BUGREPORT='https://issues.shibboleth.net/'
 PACKAGE_URL=''
 
@@ -1413,7 +1413,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 xmltooling 1.5.5 to adapt to many kinds of systems.
+\`configure' configures xmltooling 1.5.6 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1483,7 +1483,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of xmltooling 1.5.5:";;
+ short | recursive ) echo "Configuration of xmltooling 1.5.6:";;
esac
   cat <<\_ACEOF
 
@@ 

commit kdelibs3 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2015-09-08 17:45:17

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2015-06-06 
09:54:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2015-09-08 
18:09:19.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 00:00:00 CEST 2015 - dste...@suse.cz
+
+- fix build on factory
+  * Added: fix-perl-no-defined-array.diff
+
+---

New:

  fix-perl-no-defined-array.diff



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.wzi77F/_old  2015-09-08 18:10:04.0 +0200
+++ /var/tmp/diff_new_pack.wzi77F/_new  2015-09-08 18:10:04.0 +0200
@@ -208,6 +208,7 @@
 Patch231:   kdelibs-3.5.10-cups16.patch
 Patch232:   kdelibs-3.5.10-cups20.patch
 Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
+Patch234:   fix-perl-no-defined-array.diff
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -416,6 +417,7 @@
 %patch230 -p1
 %patch231 -p1
 %patch232 -p1
+%patch234 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ fix-perl-no-defined-array.diff ++
defined(@array) is deprecated and is an error newer perl


Index: kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
===
--- kdelibs-3.5.10.orig/dcop/dcopidlng/kdocAstUtil.pm
+++ kdelibs-3.5.10/dcop/dcopidlng/kdocAstUtil.pm
@@ -438,7 +438,7 @@ sub dumpAst
dumpAst( $kid );
}
 
-   print "\t" x $depth, "Documentation nodes:\n" if defined 
+   print "\t" x $depth, "Documentation nodes:\n" if
@{ $node->{Doc}->{ "Text" }};
 
foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {



commit kfilemetadata5 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package kfilemetadata5 for openSUSE:Factory 
checked in at 2015-09-08 17:37:57

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


Package is "kfilemetadata5"

Changes:

--- /work/SRC/openSUSE:Factory/kfilemetadata5/kfilemetadata5.changes
2015-09-02 07:45:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfilemetadata5.new/kfilemetadata5.changes   
2015-09-08 17:38:32.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep  4 17:08:15 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Only Recommend catdoc, to help reducing liveCD/DVD size
+
+---



Other differences:
--
++ kfilemetadata5.spec ++
--- /var/tmp/diff_new_pack.gONNeu/_old  2015-09-08 17:38:33.0 +0200
+++ /var/tmp/diff_new_pack.gONNeu/_new  2015-09-08 17:38:33.0 +0200
@@ -46,7 +46,7 @@
 %if "%{suse_version}" != "1315" || 0%{!?sle_version}
 BuildRequires:  pkgconfig(poppler-qt5)
 %endif
-Requires:   catdoc
+Recommends: catdoc
 %if %{with lang}
 Recommends: %{name}-lang
 %endif




commit gettext-runtime for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package gettext-runtime for openSUSE:Factory 
checked in at 2015-09-08 17:36:24

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


Package is "gettext-runtime"

Changes:

gettext-java.changes: same change
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime-mini.changes 
2015-08-21 07:34:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime-mini.changes
2015-09-08 17:37:36.0 +0200
@@ -1,0 +2,8 @@
+Mon Aug 24 15:37:36 UTC 2015 - i...@marguerite.su
+
+- add patch: boo941649-unnessary-rpath-on-standard-path.patch
+  * config.rpath from gettext-tools will set rpath for ELF binaries
+not in /usr/lib, even if it's the standard path the linker
+would search anyway. 
+
+---
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime.changes  
2015-08-21 07:34:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime.changes 
2015-09-08 17:37:36.0 +0200
@@ -1,0 +2,8 @@
+Mon Aug 24 15:35:02 UTC 2015 - i...@marguerite.su
+
+- add patch: boo941629-unnessary-rpath-on-standard-path.patch
+  * config.rpath from gettext-tools will set rpath for ELF binaries
+not in /usr/lib, even if it's the standard path the linker
+would search anyway.
+
+---

New:

  boo941629-unnessary-rpath-on-standard-path.patch



Other differences:
--
gettext-java.spec: same change
++ gettext-runtime-mini.spec ++
--- /var/tmp/diff_new_pack.n1afbP/_old  2015-09-08 17:37:51.0 +0200
+++ /var/tmp/diff_new_pack.n1afbP/_new  2015-09-08 17:37:51.0 +0200
@@ -70,6 +70,8 @@
 Patch9: gettext-needlessly_init_vars.patch
 # PATCH-FIX-OPENSUSE gettext-0.19.5.1-gettextize.diff -- m...@suse.com
 Patch10:gettext-0.19.5.1-gettextize.diff
+# PATCH-FIX-UPSTREAM boo#941629 -- p...@suse.com
+Patch11:boo941629-unnessary-rpath-on-standard-path.patch
 
 %description
 This package contains the intl library as well as tools that ease the
@@ -128,6 +130,7 @@
 %patch6 -p1
 %patch9
 %patch10 -p1
+%patch11 -p1
 
 %build
 # expect a couple "You should update your `aclocal.m4' by running aclocal."

gettext-runtime.spec: same change
++ boo941629-unnessary-rpath-on-standard-path.patch ++
Index: gettext-0.19.5.1/build-aux/config.rpath
===
--- gettext-0.19.5.1.orig/build-aux/config.rpath
+++ gettext-0.19.5.1/build-aux/config.rpath
@@ -216,7 +216,9 @@ if test "$with_gnu_ld" = yes; then
   ;;
 gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
   if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
-:
+if $libdir == /usr/lib | $libdir == /usr/lib64; then
+hardcode_libdir_flag_spec=""
+fi
   else
 ld_shlibs=no
   fi



commit NetworkManager-pptp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-pptp for 
openSUSE:Factory checked in at 2015-09-08 17:37:08

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


Package is "NetworkManager-pptp"

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-pptp/NetworkManager-pptp.changes  
2015-07-05 17:59:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-pptp.new/NetworkManager-pptp.changes 
2015-09-08 17:38:12.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  1 10:38:10 UTC 2015 - si...@simotek.net
+
+- Update to version 1.0.6:
+  + Enhanced the GUI to support agent-owned and always-ask
+passwords.
+  + Updated translations.
+
+---

Old:

  NetworkManager-pptp-1.0.2.tar.xz

New:

  NetworkManager-pptp-1.0.6.tar.xz



Other differences:
--
++ NetworkManager-pptp.spec ++
--- /var/tmp/diff_new_pack.q7XC5x/_old  2015-09-08 17:38:13.0 +0200
+++ /var/tmp/diff_new_pack.q7XC5x/_new  2015-09-08 17:38:13.0 +0200
@@ -21,7 +21,7 @@
 Summary:NetworkManager VPN support for PPTP
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Version:1.0.2
+Version:1.0.6
 Release:0
 # FIXME .desktop icons are currently disabled (on purpose) in the NM tarballs. 
They will re-appear later on (when nmce supports --import)
 # FIXME: --disable-more-warnings should be dropped from configure when 
possible. Added with 0.9.2.0 for Gtk+ 3.3 build.
@@ -37,7 +37,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libnm-glib) >= 0.9.10
 BuildRequires:  pkgconfig(libnm-glib-vpn) >= 0.9.10
-BuildRequires:  pkgconfig(libnm-gtk) >= 0.9.10
+BuildRequires:  pkgconfig(libnm-gtk) >= 1.0.5
 BuildRequires:  pkgconfig(libnm-util) >= 0.9.10
 BuildRequires:  pkgconfig(libsecret-unstable)
 Requires:   %{name}-frontend = %{version}

++ NetworkManager-pptp-1.0.2.tar.xz -> NetworkManager-pptp-1.0.6.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-pptp-1.0.2/NEWS 
new/NetworkManager-pptp-1.0.6/NEWS
--- old/NetworkManager-pptp-1.0.2/NEWS  2015-05-05 13:58:36.0 +0200
+++ new/NetworkManager-pptp-1.0.6/NEWS  2015-08-27 18:46:59.0 +0200
@@ -1,4 +1,15 @@
 ===
+network-manager-pptp-1.0.4
+Overview of changes since network-manager-pptp-1.0.2
+===
+
+This is a new stable release of network-manager-pptp.  Notable changes include:
+
+* Enhanced the GUI to support agent-owned and always-ask passwords
+* Added Occitan translation
+
+
+===
 network-manager-pptp-1.0.2
 Overview of changes since network-manager-pptp-1.0
 ===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-pptp-1.0.2/configure 
new/NetworkManager-pptp-1.0.6/configure
--- old/NetworkManager-pptp-1.0.2/configure 2015-05-05 13:58:59.0 
+0200
+++ new/NetworkManager-pptp-1.0.6/configure 2015-08-27 18:47:25.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for NetworkManager-pptp 1.0.2.
+# Generated by GNU Autoconf 2.69 for NetworkManager-pptp 1.0.6.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='NetworkManager-pptp'
 PACKAGE_TARNAME='NetworkManager-pptp'
-PACKAGE_VERSION='1.0.2'
-PACKAGE_STRING='NetworkManager-pptp 1.0.2'
+PACKAGE_VERSION='1.0.6'
+PACKAGE_STRING='NetworkManager-pptp 1.0.6'
 PACKAGE_BUGREPORT='d...@redhat.com'
 PACKAGE_URL=''
 
@@ -1401,7 +1401,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 NetworkManager-pptp 1.0.2 to adapt to many kinds of 
systems.
+\`configure' configures NetworkManager-pptp 1.0.6 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1472,7 +1472,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of NetworkManager-pptp 1.0.2:";;
+ short | recursive ) echo "Configuration of NetworkManager-pptp 1.0.6:";;
esac
   cat <<\_ACEOF
 
@@ -1609,7 +1609,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-NetworkManager-pptp configure 1.0.2
+NetworkManager-pptp 

commit NetworkManager for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2015-09-08 17:36:54

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


Package is "NetworkManager"

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes
2015-08-21 07:38:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new/NetworkManager.changes   
2015-09-08 17:37:58.0 +0200
@@ -1,0 +2,16 @@
+Tue Sep  1 10:28:48 UTC 2015 - si...@simotek.net
+
+- Update to version 1.0.6:
+  + Improved capture portal detection.
+  + Default route through WiFi connection is now preferred to
+Mobile Broadband if both are available.
+  + Expose a flag to determine whether a particular connection is
+metered via API and client tools.
+  + Add support for locking connections to a channel within a
+particular band.
+  + Add support for configuring Wake-on-LAN capabilitites.
+  + Allow overriding the MTU for team device.
+  + Usual pile of bug fixes and robustness improvements.
+- Rebase NetworkManager-geoclue-interaction.patch .
+
+---

Old:

  NetworkManager-1.0.4.tar.xz

New:

  NetworkManager-1.0.6.tar.xz



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.2pxOkK/_old  2015-09-08 17:38:09.0 +0200
+++ /var/tmp/diff_new_pack.2pxOkK/_new  2015-09-08 17:38:09.0 +0200
@@ -26,7 +26,7 @@
 
 Name:   NetworkManager
 Url:http://www.gnome.org/projects/NetworkManager/
-Version:1.0.4
+Version:1.0.6
 Release:0
 Summary:Network Link Manager and User Applications
 License:GPL-2.0+

++ NetworkManager-1.0.4.tar.xz -> NetworkManager-1.0.6.tar.xz ++
 14040 lines of diff (skipped)

++ NetworkManager-geoclue-interaction.patch ++
--- /var/tmp/diff_new_pack.2pxOkK/_old  2015-09-08 17:38:11.0 +0200
+++ /var/tmp/diff_new_pack.2pxOkK/_new  2015-09-08 17:38:11.0 +0200
@@ -2,13 +2,12 @@
 ===
 --- NetworkManager-0.9.10.0.orig/src/org.freedesktop.NetworkManager.conf
 +++ NetworkManager-0.9.10.0/src/org.freedesktop.NetworkManager.conf
-@@ -26,6 +26,9 @@
- 
- 
+@@ -28,6 +28,9 @@
+ 
+ 
  
 +
 +
 +
  
  
- 




commit NetworkManager-gnome for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-gnome for 
openSUSE:Factory checked in at 2015-09-08 17:37:43

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


Package is "NetworkManager-gnome"

Changes:

New Changes file:

--- /dev/null   2015-08-24 19:43:32.284261900 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-gnome.new/NetworkManager-appindicator.changes
2015-09-08 17:38:26.0 +0200
@@ -0,0 +1,877 @@
+---
+Tue Sep  1 10:25:16 UTC 2015 - si...@simotek.net
+
+- Add dual spec file for building appindicator support
+- Add nm-applet-app-indicator.patch: introduce appindicator
+  support.
+
+---
+Tue Sep  1 10:25:16 UTC 2015 - si...@simotek.net
+
+- Update to version 1.0.6:
+  + Added option to set MTU of Team devices.
+  + Added AppData for nm-connection-editor.
+  + Build fixes.
+  + Updated Czech, Polish and Hungarian translations.
+
+---
+Wed Aug 19 19:52:54 UTC 2015 - dims...@opensuse.org
+
+- Toggle with_cacert_patch to 1: the patch has been rebased.
+
+---
+Wed Jul 15 11:45:35 UTC 2015 - dims...@opensuse.org
+
+- Update to version 1.0.4:
+  + Setting MTU for a bond device is now supported.
+  + Connecting to a wireless network from the NetworkManager applet
+no longer results in an attempt to create system-wide
+connections. This fixes the ability to connect to a wireless
+network for non-privileged user.
+  + The master interface name is used instead of master connection
+UUID for slave connections created with nm-connection-editor.
+This fixes compatibility of the ifcfg configuration files with
+the legacy network service.
+  + It is now possible to specify an interface name instead of a
+MAC address when editing a connection using
+nm-connection-editor.
+  + The WWAN connections now have IPv6 enabled by default.
+  + libnm-gtk includes functions for password storage selection,
+which eases implementation of password GUI for VPN plugins and
+other users.
+- Rebase nm-applet-probe-radius-server-cert.patch and
+  nm-applet-probe-radius-server-cert.patch.
+- Toggle with_cacert_patch to 0: the cacert patch is currently
+  disabled in NetworkManager (boo#938198).
+
+---
+Wed May  6 07:58:47 UTC 2015 - dims...@opensuse.org
+
+- Update to version 1.0.2:
+  + The applet is no longer started in GNOME 3.
+  + STP controls are no longer displayed if STP is disabled.
+  + Improved accessibility for screen reader users.
+  + Multiple bugs fixed, including crashes.
+  + Updated translations.
+
+---
+Thu Mar 12 10:30:50 UTC 2015 - dims...@opensuse.org
+
+- Add with_cacert_patch condition. When enabled:
+  + Add NetworkManager(cacert-patch) Requires
+  + Apply nm-applet-probe-radius-server-cert.patch
+  + This needs to be toggled whenever NetworkManager is updated
+and the nm-probe-radius-server-cert.patch there is not rebased
+yet.
+
+---
+Tue Mar 10 03:06:20 UTC 2015 - g...@suse.com
+
+- Refresh and enable nm-applet-probe-radius-server-cert.patch
+
+---
+Tue Jan 27 10:32:47 UTC 2015 - dims...@opensuse.org
+
+- Update to version 1.0.0:
+  + Added support for editing Bluetooth mobile broadband
+connections.
+  + Added support for IPv6 mobile broadband connections.
+  + Allow IPv6-only configuration for more connection types.
+  + The applet and editor are no longer shown in GNOME 3, which has
+its own network indicator and control panel.
+- Rebase NetworkManager-gnome-no-firewalld.patch.
+- Disable nm-applet-probe-radius-server-cert.patch for now: needs
+  rebase (possibly only in NetworkManager itself).
+
+---
+Tue Sep 30 22:34:01 UTC 2014 - dims...@opensuse.org
+
+- Add NetworkManager-gnome-no-firewalld.patch: Allow to build
+  without firewalld integration (which openSUSE does not offer,
+  boo#897636).
+- Pass --without-firewalld to configure, to disable integration.
+
+---
+Tue Jul 15 09:51:28 UTC 2014 - g...@suse.com
+
+- Rebase nm-applet-probe-radius-server-cert.patch.
+
+---
+Wed Jul  9 20:29:31 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.9.10.0:
+  + Added controls 

commit libEMF for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libEMF for openSUSE:Factory checked 
in at 2015-09-08 17:37:30

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


Package is "libEMF"

Changes:

--- /work/SRC/openSUSE:Factory/libEMF/libEMF.changes2013-12-13 
13:07:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.libEMF.new/libEMF.changes   2015-09-08 
17:38:19.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 14:24:02 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Enable build checks
+
+---



Other differences:
--
++ libEMF.spec ++
--- /var/tmp/diff_new_pack.VU24VR/_old  2015-09-08 17:38:22.0 +0200
+++ /var/tmp/diff_new_pack.VU24VR/_new  2015-09-08 17:38:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libEMF
 #
-# 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,17 +17,17 @@
 
 
 Name:   libEMF
-BuildRequires:  gcc-c++
 Version:1.0.7
 Release:0
-Source: 
http://downloads.sourceforge.net/project/libemf/libemf/%{version}/%{name}-%{version}.tar.gz
-Patch:  aarch64-support.patch
-Patch2: ppc64le-support.patch
-Url:http://libemf.sourceforge.net/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Library for Manipulation with Enhanced MetaFile (EMF, ECMA-234)
 License:LGPL-2.1+ and GPL-2.0+
 Group:  System/Libraries
+Url:http://libemf.sourceforge.net/
+Source: 
http://downloads.sourceforge.net/project/libemf/libemf/%{version}/%{name}-%{version}.tar.gz
+Patch0: aarch64-support.patch
+Patch2: ppc64le-support.patch
+BuildRequires:  gcc-c++
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # taken from includes/wine/winnt.h
 ExclusiveArch:  alpha %arm aarch64 %ix86 mips ppc ppc64 ppc64le sparc s390 
s390x x86_64
 
@@ -92,20 +92,20 @@
 
 %prep
 %setup -q
-%patch -p1
+%patch0 -p1
 %patch2 -p1
 
 %build
 %configure\
--disable-static
-%{__make} %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
-%{__rm} %{buildroot}%{_libdir}/*.la
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+find %{buildroot} -type f -name "*.la" -delete -print
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%check
+make %{?_smp_mflags} check
 
 %post -n libEMF1 -p /sbin/ldconfig
 




commit openjpeg2 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package openjpeg2 for openSUSE:Factory 
checked in at 2015-09-08 17:37:36

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


Package is "openjpeg2"

Changes:

--- /work/SRC/openSUSE:Factory/openjpeg2/openjpeg2.changes  2014-06-16 
21:43:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.openjpeg2.new/openjpeg2.changes 2015-09-08 
17:38:22.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep  4 11:54:30 UTC 2015 - mplus...@suse.com
+
+- Use cmake macro
+- Remove baselibs.conf (it was broken anyways for months)
+- Cleanup spec file with spec-cleaner
+
+---

Old:

  baselibs.conf



Other differences:
--
++ openjpeg2.spec ++
--- /var/tmp/diff_new_pack.0MH3sF/_old  2015-09-08 17:38:26.0 +0200
+++ /var/tmp/diff_new_pack.0MH3sF/_new  2015-09-08 17:38:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openjpeg2
 #
-# 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,9 +17,8 @@
 
 
 %define library_name  libopenjp2-7
-
-Name:   openjpeg2
 %define base_version 2.1
+Name:   openjpeg2
 Version:%{base_version}.0
 Release:0
 Summary:Opensource JPEG 2000 Codec Implementation
@@ -27,11 +26,9 @@
 Group:  Productivity/Graphics/Other
 Url:http://www.openjpeg.org/
 Source0:
http://sourceforge.net/projects/openjpeg.mirror/files/%{version}/openjpeg-%{version}.tar.gz
-Source1:baselibs.conf
 BuildRequires:  cmake > 2.8.2
 BuildRequires:  doxygen
 BuildRequires:  fdupes
-BuildRequires:  gcc
 BuildRequires:  pkgconfig(lcms2)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(libtiff-4)
@@ -79,11 +76,7 @@
 done
 
 %build
-export CFLAGS="%{optflags}"
-export CXXFLAGS="%{optflags}"
-mkdir build
-cd build
-cmake \
+%cmake \
 -DBUILD_SHARED_LIBS:BOOL=ON \
 -DBUILD_CODEC:BOOL=ON \
 -DBUILD_JPIP:BOOL=OFF \
@@ -92,28 +85,23 @@
 -DBUILD_TESTING:BOOL=OFF \
 -DBUILD_DOC:BOOL=ON \
 -DBUILD_THIRDPARTY:BOOL=OFF \
--DCMAKE_INSTALL_PREFIX:PATH="%{_prefix}" \
--DOPENJPEG_INSTALL_LIB_DIR:PATH="%{_lib}" \
--DCMAKE_BUILD_TYPE:STRING="Release" \
-..
-
-make %{?_smp_mflags} VERBOSE=1
-make %{?_smp_mflags} VERBOSE=1 doc
+  -DOPENJPEG_INSTALL_LIB_DIR:PATH="%{_lib}"
+make %{?_smp_mflags} all doc
 
 cat << END > libopenjp2.pc 
+
 Name: openjpeg
-Description: Opensource JPEG 2000 Codec Implementation
-URL: %{url}
 Version: %{version}
+Url:%{url}
+Description: Opensource JPEG 2000 Codec Implementation
 Libs: -L%{_libdir} -lopenjp2
 Libs.private: -lm
 Cflags: -I%{_includedir}/openjpeg-%{base_version}
 END
-
 %fdupes -s doc/html/
 
 %install
-%make_install -C build
+%cmake_install
 mkdir -p %{buildroot}%{_libdir}/pkgconfig/
 install -m 644 build/libopenjp2.pc %{buildroot}%{_libdir}/pkgconfig/
 rm -rf %{buildroot}%{_datadir}/doc




commit xterm for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package xterm for openSUSE:Factory checked 
in at 2015-09-08 17:36:48

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


Package is "xterm"

Changes:

--- /work/SRC/openSUSE:Factory/xterm/xterm.changes  2015-04-22 
01:16:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.xterm.new/xterm.changes 2015-09-08 
17:37:52.0 +0200
@@ -1,0 +2,45 @@
+Wed Sep  2 13:50:49 UTC 2015 - pce...@suse.com
+
+- Patch #320 - 2015/08/28
+  * correct documentation for %t format (report by Martin
+Tournoij).
+  * add %R for consistency to exec-formatted() and
+insert-formatted() actions.
+  * add %r format to exec-formatted() and insert-formatted()
+actions (patch by Martin Tournoij).
+  * Amend fix for Debian #794201 (report forwarded from Christian
+Jachmann by Emanuel Haupt, Debian #797008).
+- Patch #319 - 2015/08/19
+  * add a section to ctlseqs.ms discussing control sequences and
+ECMA-48, to explain why C1 controls do not occur in the
+decoded characters from UTF-8 byte streams (prompted by
+discussion with Poul-Henning Kamp).
+  * modify check for cursor-theme from patch #301 to also check
+if the resource Xcursor.theme is set to a nonempty value
+before fallback to xterm's own dummy theme (request by Robert
+Kloefkorn).
+  * explain in ctlseqs.ms that some keys which normally send
+SS3-prefixes are changed to CSI-prefixes if key-modifiers are
+passed as parameters (report by George Nachman).
+  * correct double-free of font information when multiple
+problems are found, particularly for the wide fonts loaded
+via the -wc option (report/testcase by Nelson Beebe).
+  * make configure option --enable-builtin-xpms actually work
+(report by William Bulley).
+  * correct combination of -ls and -e options for utempter
+configuration (Debian #794201).
+  * NetBSD build-fix for OPT_RENDERFONT versus OPT_SHIFT_FONTS
+(patch by Matthew Green, forwarded by Thomas Klausner).
+  * fix a few minor bugs found with Coverity.
+  * update pixelvector handling (Ross Combs):
++ split pixel-based and coord-based functions with common
+  parts factored out to a "raw" function
++ add a "step" variant which loads a single PV digit
+  * make the graphic dirty upon resize or clear, fixing some
+missing refreshes (patch by Ross Combs)
+  * fixes scrolling to use user coordinates and move in the
+correct direction (patch by Ross Combs)
+  * several fixes/improvements for ReGIS whitespace and
+page-handling (patch by Ross Com
+
+---

Old:

  xterm-318.tgz
  xterm-318.tgz.asc

New:

  xterm-320.tgz
  xterm-320.tgz.asc



Other differences:
--
++ xterm.spec ++
--- /var/tmp/diff_new_pack.dT5fP3/_old  2015-09-08 17:37:58.0 +0200
+++ /var/tmp/diff_new_pack.dT5fP3/_new  2015-09-08 17:37:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xterm
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define vttest_version 20120506
 %define splitbin 0%{?suse_version} >= 1300
 Name:   xterm
-Version:318
+Version:320
 Release:0
 Summary:The basic X terminal program
 License:MIT





++ xterm-318.tgz -> xterm-320.tgz ++
 3450 lines of diff (skipped)




commit php5 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:Factory checked in 
at 2015-09-08 17:38:05

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-08-11 
08:25:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes   2015-09-08 
17:38:33.0 +0200
@@ -1,0 +2,14 @@
+Fri Sep  4 18:27:35 UTC 2015 - pgaj...@suse.com
+
+- updated to 5.6.13:
+  * 11 security-related issues were fixed in this release.
+  * refreshed php5-systzdata-r12.patch
+
+---
+Fri Sep  4 17:22:04 UTC 2015 - pgaj...@suse.com
+
+- fixed segfault in odbc extension when result set is containing 
+  NULL (php bugs #52554, #53007) [bnc#935074] (internal)
+  + php-odbc-cmp-int-cast.patch
+
+---

Old:

  php-5.6.12.tar.xz
  php-5.6.12.tar.xz.asc

New:

  php-5.6.13.tar.xz
  php-5.6.13.tar.xz.asc
  php-odbc-cmp-int-cast.patch



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.QdbRUm/_old  2015-09-08 17:39:00.0 +0200
+++ /var/tmp/diff_new_pack.QdbRUm/_new  2015-09-08 17:39:00.0 +0200
@@ -108,7 +108,7 @@
 %define php_sysconf   %{_sysconfdir}/%{pkg_name}
 %define _x11prefix %(pkg-config --variable=prefix xft)
 %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.12
+Version:5.6.13
 Release:0
 Provides:   php
 Provides:   php-api = %{apiver}
@@ -180,6 +180,7 @@
 Patch17:php5-per-mod-log.patch
 Patch18:php5-apache24-updates.patch
 Patch19:php5-crypto-checks.patch
+Patch20:php-odbc-cmp-int-cast.patch
 Url:http://www.php.net
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:PHP5 Core Files
@@ -1312,7 +1313,7 @@
 %patch4
 %patch5
 %patch6
-%patch7 -p1
+%patch7
 %patch8
 %patch10
 %if %{need_libxml2_hack}
@@ -1329,6 +1330,7 @@
 %patch17 -p1
 %patch18 -p1
 %patch19
+%patch20
 # Safety check for API version change.
 vapi=`sed -n '/#define PHP_API_VERSION/{s/.* //;p}' main/php.h`
 if test "x${vapi}" != "x%{apiver}"; then

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

++ php-odbc-cmp-int-cast.patch ++
https://bugs.php.net/bug.php?id=53007
Index: ext/odbc/php_odbc.c
===
--- ext/odbc/php_odbc.c.orig2015-09-02 14:55:18.156673247 +0200
+++ ext/odbc/php_odbc.c 2015-09-02 14:58:03.711981310 +0200
@@ -1749,7 +1749,7 @@
 
if (rc == SQL_SUCCESS_WITH_INFO) {
Z_STRLEN_P(tmp) = result->longreadlen;
-   } else if (result->values[i].vallen == 
SQL_NULL_DATA) {
+   } else if ((int)result->values[i].vallen == 
(int)SQL_NULL_DATA) {
ZVAL_NULL(tmp);
break;
} else {
@@ -1759,7 +1759,7 @@
break;
 
default:
-   if (result->values[i].vallen == SQL_NULL_DATA) {
+   if ((int)result->values[i].vallen == 
(int)SQL_NULL_DATA) {
ZVAL_NULL(tmp);
break;
}
@@ -1900,7 +1900,7 @@
}
if (rc == SQL_SUCCESS_WITH_INFO) {
Z_STRLEN_P(tmp) = result->longreadlen;
-   } else if (result->values[i].vallen == 
SQL_NULL_DATA) {
+   } else if ((int)result->values[i].vallen == 
(int)SQL_NULL_DATA) {
ZVAL_NULL(tmp);
break;
} else {
@@ -1910,7 +1910,7 @@
break;
 
default:
-   if (result->values[i].vallen == SQL_NULL_DATA) {
+   if ((int)result->values[i].vallen == 
(int)SQL_NULL_DATA) {
ZVAL_NULL(tmp);
break;
}
@@ -2129,7 

commit nss_ldap for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package nss_ldap for openSUSE:Factory 
checked in at 2015-09-08 17:39:32

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


Package is "nss_ldap"

Changes:

--- /work/SRC/openSUSE:Factory/nss_ldap/nss_ldap.changes2014-11-10 
17:29:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.nss_ldap.new/nss_ldap.changes   2015-09-08 
17:44:06.0 +0200
@@ -1,0 +2,11 @@
+Wed Sep  2 11:01:16 UTC 2015 - mplus...@suse.com
+
+- Use %configure macro
+- Remove unrecognized configure options
+  * --enable-schema-mapping,
+  * --enable-xad
+- Use url for source
+- Update dependencies on autotools
+- Use Requires(pre) in spec file
+
+---

Old:

  nss_ldap-265.tar.bz2

New:

  nss_ldap-265.tar.gz



Other differences:
--
++ nss_ldap.spec ++
--- /var/tmp/diff_new_pack.3TU06i/_old  2015-09-08 17:44:07.0 +0200
+++ /var/tmp/diff_new_pack.3TU06i/_new  2015-09-08 17:44:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nss_ldap
 #
-# 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,27 +17,17 @@
 
 
 Name:   nss_ldap
-BuildRequires:  automake
-BuildRequires:  db-devel
-BuildRequires:  krb5-devel
-BuildRequires:  openldap2-devel
-PreReq: sed coreutils /usr/bin/grep /bin/mktemp
-# bug437293
-%ifarch ppc64
-Obsoletes:  nss_ldap-64bit
-%endif
-#
 Version:265
 Release:0
 Summary:NSS LDAP Module
 License:LGPL-2.1+
 Group:  Productivity/Networking/LDAP/Clients
 Url:http://www.padl.com/OSS/nss_ldap.html
-Source: nss_ldap-%{version}.tar.bz2
+Source: http://www.padl.com/download/nss_ldap-%{version}.tar.gz
 Source1:README.SUSE
 Source2:baselibs.conf
 Source3:ldap.conf
-Patch:  nss_ldap.dif
+Patch0: nss_ldap.dif
 Patch1: group-utf8.dif
 Patch2: nss_ldap-ldapconn-leak-bug418.dif
 Patch3: nss_ldap-getent-retry.dif
@@ -50,6 +40,16 @@
 Patch7: bnc#842120.dif
 # reverse ipv6 host lookups fail when ldap is used
 Patch8: bnc#866763.dif
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  db-devel
+BuildRequires:  krb5-devel
+BuildRequires:  libtool
+BuildRequires:  openldap2-devel
+Requires(pre):  %{_bindir}/grep
+Requires(pre):  /bin/mktemp
+Requires(pre):  coreutils
+Requires(pre):  sed
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -60,7 +60,7 @@
 
 %prep
 %setup -q
-%patch -p1
+%patch0 -p1
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
@@ -69,48 +69,39 @@
 %patch6
 %patch7 -p1
 %patch8 -p1
-cp -v %{S:1} .
+cp -v %{SOURCE1} .
 
 %build
 autoreconf -fiv
-CFLAGS="$RPM_OPT_FLAGS" \
-CPPFLAGS="-I/usr/include/sasl -DINET6" \
-./configure --prefix=/usr \
---mandir=%{_mandir} \
+CPPFLAGS="-I/usr/include/sasl -DINET6"
+%configure \
--enable-rfc2307bis \
-   --enable-schema-mapping \
-   --enable-xad \
--enable-paged-results \
 --enable-configurable-krb5-ccname-gssapi \
-   --libdir=%{_libdir} \
-   --sysconfdir=/etc \
-   --x-libraries=/usr/X11R6/%{_lib}
-make
+   --x-libraries=%{_prefix}/X11R6/%{_lib}
+make %{?_smp_mflags}
 
 %install
-mkdir -p $RPM_BUILD_ROOT/%{_lib}
-mkdir -p $RPM_BUILD_ROOT%{_libdir}
-install -m 755 nss_ldap.so $RPM_BUILD_ROOT/%{_lib}/libnss_ldap.so.2
-install -d 755 $RPM_BUILD_ROOT/%{_sysconfdir}/
-install -m 644 %{S:3} $RPM_BUILD_ROOT/%{_sysconfdir}/
-make DESTDIR=$RPM_BUILD_ROOT install-man
-
-%clean
-rm -fr $RPM_BUILD_ROOT
+mkdir -p %{buildroot}/%{_lib}
+mkdir -p %{buildroot}%{_libdir}
+install -m 755 nss_ldap.so %{buildroot}/%{_lib}/libnss_ldap.so.2
+install -d 755 %{buildroot}/%{_sysconfdir}/
+install -m 644 %{SOURCE3} %{buildroot}/%{_sysconfdir}/
+make DESTDIR=%{buildroot} install-man
 
 %pre
 # If we have a /etc/ldap.conf.rpmsave, and no /etc/ldap.conf,
 # backup the rpmsave file and use that later instead of our
 # own version. This fixes the problem that the file was moved
 # from pwdutils to nss_ldap and else the changes would go lost.
-if [ ! -e /etc/ldap.conf -a -f /etc/ldap.conf.rpmsave ]; then
-   cp -p /etc/ldap.conf.rpmsave /etc/...ldap.conf.pwdutils
+if [ ! -e %{_sysconfdir}/ldap.conf -a -f %{_sysconfdir}/ldap.conf.rpmsave ]; 
then
+   cp -p %{_sysconfdir}/ldap.conf.rpmsave %{_sysconfdir}/...ldap.conf.pwdutils
 fi
 
 %post
 /sbin/ldconfig
 

commit nitrogen for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package nitrogen for openSUSE:Factory 
checked in at 2015-09-08 17:39:55

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


Package is "nitrogen"

Changes:

--- /work/SRC/openSUSE:Factory/nitrogen/nitrogen.changes2012-11-08 
08:06:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.nitrogen.new/nitrogen.changes   2015-09-08 
17:44:47.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep  4 09:05:05 UTC 2015 - mplus...@suse.com
+
+- Use url for source
+- Use macro for configure
+- Add patch x11_linking.patch to fix linking
+- Cleanup spec file with spec-cleaner
+
+---

New:

  x11_linking.patch



Other differences:
--
++ nitrogen.spec ++
--- /var/tmp/diff_new_pack.RmrA6u/_old  2015-09-08 17:44:48.0 +0200
+++ /var/tmp/diff_new_pack.RmrA6u/_new  2015-09-08 17:44:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nitrogen
 #
-# Copyright (c) 2012 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
@@ -19,20 +19,29 @@
 Name:   nitrogen
 Version:1.5.2
 Release:0
-License:GPL-2.0 and CC-BY-SA-3.0
 Summary:A background browser and setter for X windows
-Url:http://projects.l3ib.org/nitrogen/
+License:GPL-2.0 and CC-BY-SA-3.0
 Group:  System/X11/Utilities
-Source0:%{name}-%{version}.tar.gz
+Url:http://projects.l3ib.org/nitrogen/
+Source0:
http://projects.l3ib.org/nitrogen/files/%{name}-%{version}.tar.gz
 Source1:%{name}.desktop
+# upstream fix 30b50d1e3d77966cd29e27c12dbe8f12eff2175d
+Patch0: x11_linking.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gtkmm2-devel
-BuildRequires:  fdupes
-BuildRequires:  pkgconfig
+BuildRequires:  hicolor-icon-theme
+BuildRequires:  libtool
+BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(xinerama)
+Requires:   hicolor-icon-theme
+Requires(post): update-desktop-files
+Requires(postun): update-desktop-files
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -52,18 +61,13 @@
   its size.
 * Display preview images in a tiled icon layout
 
-
 %prep
 %setup -q
+%patch0 -p1
 
 %build
-
-CFLAGS="%{optflags} -fno-strict-aliasing " \
-CXXFLAGS="$CFLAGS" \
-CPPFLAGS="$CFLAGS" \
-LIBS=-lX11 GTK2_LIBS=$LIBS LDFLAGS=-L%{_lib} \
- ./configure --prefix=%{_prefix}
-
+autoreconf -fiv
+%configure
 make %{?_smp_mflags}
 
 %install
@@ -73,8 +77,7 @@
 
 %suse_update_desktop_file %{name} Settings DesktopSettings
 
-
-%fdupes  %buildroot/
+%fdupes  %{buildroot}/
 
 %post
 %desktop_database_post
@@ -87,10 +90,10 @@
 %files
 %defattr(-,root,root,-)
 %doc COPYING AUTHORS README ChangeLog NEWS
-%{_bindir}/%name
-%{_datadir}/applications/%name.desktop
+%{_bindir}/%{name}
+%{_datadir}/applications/%{name}.desktop
 %{_datadir}/icons/hicolor/*/*/*.png
-%{_datadir}/pixmaps/%name.png
-%{_mandir}/man1/%name.1.gz
+%{_datadir}/pixmaps/%{name}.png
+%{_mandir}/man1/%{name}.1.gz
 
 %changelog

++ x11_linking.patch ++
>From 30b50d1e3d77966cd29e27c12dbe8f12eff2175d Mon Sep 17 00:00:00 2001
From: Dave Foster 
Date: Wed, 28 Mar 2012 21:28:33 -0400
Subject: [PATCH] Explicitly check for X11 lib in configure.ac, possibly fixes
 #12

---
 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/configure.ac b/configure.ac
index 05fa03b..aa4dc42 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,6 +39,9 @@ PKG_CHECK_MODULES(GTHREAD2, [gthread-2.0 >= 
$GTHREAD2_VERSION])
 NITROGEN_LIBS="$GLIB2_LIBS $GTK2_LIBS $GTKMM2_LIBS $GTHREAD2_LIBS"
 NITROGEN_CFLAGS="$GLIB2_CFLAGS $GTK2_CFLAGS $GTKMM2_CFLAGS $GTHREAD2_CFLAGS"
 
+dnl apparantly we have to check for X11 now
+AC_CHECK_LIB(X11, XOpenDisplay, [NITROGEN_LIBS="$NITROGEN_LIBS -lX11"])
+
 dnl do some autotools picen to get inotify
 AC_ARG_ENABLE(inotify, [  --disable-inotify   disable support for inotify 
watching of dirs (default: enabled)], 
[enable_inotify=$enableval],[enable_inotify=yes])
 



commit qqwing for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package qqwing for openSUSE:Factory checked 
in at 2015-09-08 17:39:52

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


Package is "qqwing"

Changes:

--- /work/SRC/openSUSE:Factory/qqwing/qqwing.changes2014-08-25 
11:06:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.qqwing.new/qqwing.changes   2015-09-08 
17:44:43.0 +0200
@@ -1,0 +2,15 @@
+Mon May 25 09:12:42 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.3.4:
+  + Added hasUniqueSolution() method to the API.
+- Changes from version 1.3.3:
+  + Java API improvements.
+- Changes from version 1.3.2:
+  + debian directory included in tar.gz download.
+- Changes from version 1.3.1:
+  + Fix library version number.
+- Changes from version 1.3.0:
+  + Multi-threaded Java version.
+  + Revamp of website and documentation. 
+
+---

Old:

  qqwing-1.2.0.tar.gz

New:

  qqwing-1.3.4.tar.gz



Other differences:
--
++ qqwing.spec ++
--- /var/tmp/diff_new_pack.yFQWwu/_old  2015-09-08 17:44:44.0 +0200
+++ /var/tmp/diff_new_pack.yFQWwu/_new  2015-09-08 17:44:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qqwing
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   qqwing
-Version:1.2.0
+Version:1.3.4
 Release:0
 Summary:Sudoku solver and generator
 License:GPL-2.0+
@@ -69,7 +69,8 @@
 
 %prep
 %setup -q
-%patch0 -p1
+# Disable, needs rebase
+#patch0 -p1
 
 %build
 %configure

++ qqwing-1.2.0.tar.gz -> qqwing-1.3.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqwing-1.2.0/Makefile.am new/qqwing-1.3.4/Makefile.am
--- old/qqwing-1.2.0/Makefile.am2014-08-23 15:11:38.0 +0200
+++ new/qqwing-1.3.4/Makefile.am2015-04-18 02:55:34.0 +0200
@@ -1,4 +1,5 @@
 ACLOCAL_AMFLAGS = -I m4
+EXTRA_DIST = debian
 
 include_HEADERS = qqwing.hpp
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqwing-1.2.0/Makefile.in new/qqwing-1.3.4/Makefile.in
--- old/qqwing-1.2.0/Makefile.in2014-08-23 15:11:45.0 +0200
+++ new/qqwing-1.3.4/Makefile.in2015-04-18 02:55:42.0 +0200
@@ -373,6 +373,7 @@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 ACLOCAL_AMFLAGS = -I m4
+EXTRA_DIST = debian
 include_HEADERS = qqwing.hpp
 lib_LTLIBRARIES = libqqwing.la
 libqqwing_la_SOURCES = qqwing.cpp qqwing.hpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqwing-1.2.0/README new/qqwing-1.3.4/README
--- old/qqwing-1.2.0/README 2014-08-23 15:11:38.0 +0200
+++ new/qqwing-1.3.4/README 2015-04-18 02:55:34.0 +0200
@@ -1,4 +1,4 @@
-See: http://ostermiller.org/qqwing/
+See: http://qqwing.com/
 
 qqwing 
 Sudoku solver and generator.
@@ -25,7 +25,7 @@
   --one-line   Print puzzles on one line of 81 characters
   --compactPrint puzzles on 9 lines of 9 characters
   --readable   Print puzzles in human readable form (default)
-  --csvOuput CSV format with one line puzzles
+  --csvOutput CSV format with one line puzzles
   --help   Print this message
   --about  Author and license information
   --versionDisplay current version number
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqwing-1.2.0/aclocal.m4 new/qqwing-1.3.4/aclocal.m4
--- old/qqwing-1.2.0/aclocal.m4 2014-08-23 15:11:43.0 +0200
+++ new/qqwing-1.3.4/aclocal.m4 2015-04-18 02:55:40.0 +0200
@@ -573,7 +573,8 @@
 END
 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
   fi
-fi])
+fi
+])
 
 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqwing-1.2.0/config.guess 
new/qqwing-1.3.4/config.guess
--- old/qqwing-1.2.0/config.guess   2014-08-23 15:11:45.0 +0200
+++ new/qqwing-1.3.4/config.guess   2015-04-18 02:55:42.0 +0200
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
-#   Copyright 1992-2013 Free Software Foundation, Inc.
+#   Copyright 1992-2014 

commit xfsinfo for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package xfsinfo for openSUSE:Factory checked 
in at 2015-09-08 17:39:47

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


Package is "xfsinfo"

Changes:

--- /work/SRC/openSUSE:Factory/xfsinfo/xfsinfo.changes  2015-01-07 
09:38:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.xfsinfo.new/xfsinfo.changes 2015-09-08 
17:44:37.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep  4 07:37:34 UTC 2015 - mplus...@suse.com
+
+- Add gpg signature
+
+---

New:

  xfsinfo-1.0.5.tar.bz2.sig
  xfsinfo.keyring



Other differences:
--
++ xfsinfo.spec ++
--- /var/tmp/diff_new_pack.o8AKXY/_old  2015-09-08 17:44:38.0 +0200
+++ /var/tmp/diff_new_pack.o8AKXY/_new  2015-09-08 17:44:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xfsinfo
 #
-# 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
@@ -24,6 +24,8 @@
 Group:  System/X11/Utilities
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
+Source1:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2.sig
+Source2:%{name}.keyring
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libfs)
 BuildRequires:  pkgconfig(xorg-macros) >= 1.8




commit qterm for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package qterm for openSUSE:Factory checked 
in at 2015-09-08 17:39:54

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


Package is "qterm"

Changes:

--- /work/SRC/openSUSE:Factory/qterm/qterm.changes  2012-12-21 
10:33:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.qterm.new/qterm.changes 2015-09-08 
17:44:44.0 +0200
@@ -1,0 +2,9 @@
+Fri Sep  4 08:23:17 UTC 2015 - mplus...@suse.com
+
+- Use url for source
+- Use cmake macros
+- Use macros for updating desktop file and icon cache
+- Use fdupes to replace duplicate files with symlinks
+- Clenaup spec file with spec-cleaner
+
+---



Other differences:
--
++ qterm.spec ++
--- /var/tmp/diff_new_pack.nQ7g0u/_old  2015-09-08 17:44:47.0 +0200
+++ /var/tmp/diff_new_pack.nQ7g0u/_new  2015-09-08 17:44:47.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qterm
 #
-# Copyright (c) 2012 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,19 @@
 
 
 Name:   qterm
+Version:0.5.12
+Release:0
+Summary:QTerm is BBS client
+License:GPL-2.0+
+Group:  System/X11/Terminals
+Url:http://qterm.sourceforge.net/
+Source0:
http://prdownloads.sourceforge.net/qterm/%{name}-%{version}.tar.bz2
+Source1:qterm.desktop
+Patch1: qterm-0.5.12-gcc-4.7.patch
+Patch2: qterm-0.5.12-cmake-2.6.patch
 BuildRequires:  cmake
+BuildRequires:  fdupes
+BuildRequires:  hicolor-icon-theme
 BuildRequires:  libjpeg-devel
 BuildRequires:  libqt4-devel >= 4.5.0
 BuildRequires:  libqt4-devel-doc
@@ -25,60 +37,47 @@
 BuildRequires:  python-devel
 BuildRequires:  qt4-qtscript
 BuildRequires:  update-desktop-files
-Summary:QTerm is BBS client
-License:GPL-2.0+
-Group:  System/X11/Terminals
-Version:0.5.12
-Release:0
-Url:http://qterm.sourceforge.net/
-Source0:%{name}-%{version}.tar.bz2
-Patch1: qterm-0.5.12-gcc-4.7.patch
-Patch2: qterm-0.5.12-cmake-2.6.patch
-Source1:qterm.desktop
+Requires:   hicolor-icon-theme
+Requires(post): update-desktop-files
+Requires(postun): update-desktop-files
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 QTerm is a full featured BBS client written in Qt.
 
-
-
-Authors:
-
-kingson 
-fiasco 
-hooey 
-
 %prep
-%setup -q -n %{name}-%{version}
-%patch1 -p0
+%setup -q
+%patch1
 %patch2 -p1
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.
 # So we disable it here, if you want to retest, just delete this comment and 
the line below.
 export SUSE_ASNEEDED=0
-mkdir build
-pushd build
-cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-make
-popd
+%cmake
+make %{?_smp_mflags}
 
 %install
 # This package failed when testing with -Wl,-as-needed being default.
 # So we disable it here, if you want to retest, just delete this comment and 
the line below.
 export SUSE_ASNEEDED=0
-pushd build
-%makeinstall
-popd
-mkdir -p $RPM_BUILD_ROOT/usr/share/applications/
-install -m 0644 $RPM_SOURCE_DIR/qterm.desktop 
$RPM_BUILD_ROOT/usr/share/applications/
+%cmake_install
+install -D -m 0644 %{SOURCE1} %{buildroot}%{_datadir}/applications/
+%fdupes -s %{buildroot}
+
+%post
+%desktop_database_post
+%icon_theme_cache_post
+
+%postun
+%desktop_database_postun
+%icon_theme_cache_postun
 
 %files
 %defattr(-,root,root)
-/usr/share/qterm
-/usr/share/applications/*
-/usr/share/icons/hicolor/
-/usr/share/icons/hicolor/*/apps/*.png
+%{_datadir}/qterm
+%{_datadir}/applications/*
+%{_datadir}/icons/hicolor/*/apps/*.png
 %{_bindir}/*
 
 %changelog




commit argus for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package argus for openSUSE:Factory checked 
in at 2015-09-08 17:39:51

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


Package is "argus"

Changes:

--- /work/SRC/openSUSE:Factory/argus/argus.changes  2014-09-22 
09:12:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.argus.new/argus.changes 2015-09-08 
17:44:40.0 +0200
@@ -1,0 +2,9 @@
+Thu Aug 27 12:17:28 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 3.0.8.1
+  * Upstream doesn't publish a short changelog; please read the
+ChangeLog file
+- Use download Url as source
+- Require systemd-rpm-macros instead of systemd: increase dependencies
+
+---

Old:

  argus-3.0.8.tar.gz

New:

  argus-3.0.8.1.tar.gz



Other differences:
--
++ argus.spec ++
--- /var/tmp/diff_new_pack.XeBAqH/_old  2015-09-08 17:44:43.0 +0200
+++ /var/tmp/diff_new_pack.XeBAqH/_new  2015-09-08 17:44:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package argus
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,16 +25,16 @@
 Summary:Network Monitoring Tool
 License:GPL-2.0 and LGPL-2.1 and BSD-3-Clause and MIT
 Group:  Productivity/Networking/Diagnostic
-Version:3.0.8 
+Version:3.0.8.1
 Release:0
 Url:http://www.qosient.com/argus/
-Source: %{name}-%{version}.tar.gz
+Source: http://qosient.com/argus/src/%{name}-%{version}.tar.gz
 Source3:README.SUSE
 Source4:argus_linux.8.gz
 Source5:argus.service
 Patch1: %{name}-3.0.6.1-libpcap.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  systemd
+BuildRequires:  systemd-rpm-macros
 
 %package server
 Summary:Daemon for Network Monitoring Tool

++ argus-3.0.8.tar.gz -> argus-3.0.8.1.tar.gz ++
 12239 lines of diff (skipped)





commit hawk2 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2015-09-08 17:39:44

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


Package is "hawk2"

Changes:

--- /work/SRC/openSUSE:Factory/hawk2/hawk2.changes  2015-08-31 
22:59:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2015-09-08 
17:44:18.0 +0200
@@ -1,0 +2,16 @@
+Fri Sep 04 08:10:05 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1441319582.8c8d426:
+  + Integrate documentation for add resource
+  + Template: Fix broken implementation of crm ra classes
+  + add steps to README Hacking section
+  + Revert broken rewrite in Template
+  + Add agents view to display information about resource agents
+  + Enable showing agent for appropriate resources in resource view
+  + Details view for resources
+  + Add help text for resource templates (bsc#944043)
+  + Add help text for meta attributes
+  + Minor fixes to the wizard param view
+  + CrmConfig: Show default value (if any)
+
+---

Old:

  hawk2-1.0.0~alpha1+git.1441003128.fa0ca82.tar.bz2

New:

  hawk2-1.0.0~alpha1+git.1441319582.8c8d426.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.OfHrY8/_old  2015-09-08 17:44:35.0 +0200
+++ /var/tmp/diff_new_pack.OfHrY8/_new  2015-09-08 17:44:35.0 +0200
@@ -39,7 +39,7 @@
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:1.0.0~alpha1+git.1441003128.fa0ca82
+Version:1.0.0~alpha1+git.1441319582.8c8d426
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2
@@ -235,7 +235,6 @@
 %dir %{www_base}/hawk
 %{www_base}/hawk/app
 %{www_base}/hawk/config
-%exclude %{www_base}/hawk/config/wizard
 %{www_base}/hawk/lib
 %attr(0750, %{uname},%{gname})%{_sysconfdir}/hawk
 %attr(0750, %{uname},%{gname})%{www_base}/hawk/log

++ _servicedata ++
--- /var/tmp/diff_new_pack.OfHrY8/_old  2015-09-08 17:44:35.0 +0200
+++ /var/tmp/diff_new_pack.OfHrY8/_new  2015-09-08 17:44:35.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/hawk.git
-  fa0ca82a53c9275395d4b642b1097886c63eba3a
\ No newline at end of file
+  8c8d426e6dcf9d8161abf39a4d724f222b109664
\ No newline at end of file

++ hawk2-1.0.0~alpha1+git.1441003128.fa0ca82.tar.bz2 -> 
hawk2-1.0.0~alpha1+git.1441319582.8c8d426.tar.bz2 ++
/work/SRC/openSUSE:Factory/hawk2/hawk2-1.0.0~alpha1+git.1441003128.fa0ca82.tar.bz2
 
/work/SRC/openSUSE:Factory/.hawk2.new/hawk2-1.0.0~alpha1+git.1441319582.8c8d426.tar.bz2
 differ: char 11, line 1




commit python-pyside-shiboken for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python-pyside-shiboken for 
openSUSE:Factory checked in at 2015-09-08 17:39:34

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


Package is "python-pyside-shiboken"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pyside-shiboken/python-pyside-shiboken.changes
2014-11-12 00:22:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pyside-shiboken.new/python-pyside-shiboken.changes
   2015-09-08 17:44:08.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug  5 20:04:35 UTC 2015 - r...@fthiessen.de
+
+- Specfile clean-up:
+  * Added symlinks to get rid of warnings
+  * Added python-Sphinx to get proper documentation
+
+---
--- 
/work/SRC/openSUSE:Factory/python-pyside-shiboken/python3-pyside-shiboken.changes
   2014-11-12 00:22:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pyside-shiboken.new/python3-pyside-shiboken.changes
  2015-09-08 17:44:08.0 +0200
@@ -1,0 +2,17 @@
+Sun Jul 19 22:08:15 UTC 2015 - r...@fthiessen.de
+
+- Added patch for fixing version suffix:
+  shiboken-fix-include-with-suffix.patch
+  Reported upstream: https://bugreports.qt.io/browse/PYSIDE-279
+- Fixed alternatives for suffix version and removed some warnings 
+- Fixed "Conflicts": Can not be installed with python2 version of
+  shiboken devel package.
+
+---
+Sun Jan 10  00:51:53 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * remove ifs for opensuse version <=1220
+
+---

New:

  shiboken-fix-include-with-suffix.patch



Other differences:
--
++ python-pyside-shiboken.spec ++
--- /var/tmp/diff_new_pack.WW7wJJ/_old  2015-09-08 17:44:10.0 +0200
+++ /var/tmp/diff_new_pack.WW7wJJ/_new  2015-09-08 17:44:10.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyside-shiboken
 #
-# 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
@@ -38,6 +38,7 @@
 BuildRequires:  libqt4-devel
 BuildRequires:  libxml2-devel
 BuildRequires:  libxslt-devel
+BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 Obsoletes:  libapiextractor < %{version}
 Provides:   libapiextractor = %{version}
@@ -67,8 +68,9 @@
 %package doc
 Summary:Documentation for %{name}
 License:GPL-2.0
-Group:  Development/Libraries/C and C++
+Group:  Documentation/HTML
 Recommends: %{libname} = %{version}
+BuildArch:  noarch
 
 %description doc
 Documentation and manuals for %{name}
@@ -94,22 +96,23 @@
 %setup -q -n %{tarname}-%{version}
 
 %build
-mkdir build
-pushd build
-cmake .. \
-  -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-  -DLIB_SUFFIX=$(echo %{_lib} | cut -b4-)  \
-  -DCMAKE_BUILD_TYPE=Debug \
+%cmake -DCMAKE_BUILD_TYPE=Debug \
   -DBUILD_TESTS=False
 make %{?_smp_mflags}
 make doc
 
 %install
-pushd build
+cd build
 %makeinstall DESTDIR=%{buildroot}
 mv %{buildroot}%{_bindir}/%{tarname} 
%{buildroot}%{_bindir}/%{tarname}-%{py_ver}
 mv %{buildroot}%{_mandir}/man1/%{tarname}.1 
%{buildroot}%{_mandir}/man1/%{tarname}-%{py_ver}.1
 %fdupes %{buildroot}
+# openSUSE 13.1 and lower have a bad bug with brp-symlink
+%if 0%{?suse_version} >= 1315
+  ln -s %{_sysconfdir}/alternatives/%{tarname}  
%{buildroot}%{_bindir}/%{tarname}
+  ln -s %{_sysconfdir}/alternatives/%{tarname}.1
%{buildroot}%{_mandir}/man1/%{tarname}.1
+  ln -s %{_sysconfdir}/alternatives/%{tarname}.1.gz 
%{buildroot}%{_mandir}/man1/%{tarname}.1.gz
+%endif
 
 %pre
 [ -h %{_bindir}/%{tarname} ] || rm -f %{_bindir}/%{tarname}
@@ -133,14 +136,11 @@
 %files
 %defattr(-,root,root)
 %doc COPYING ChangeLog
-%if 0%{?suse_version} >= 1230
 %ghost %{_sysconfdir}/alternatives/%{tarname}
 %ghost %{_sysconfdir}/alternatives/%{tarname}.1
-%endif
-%ghost %{_bindir}/%{tarname}
-%{_bindir}/%{tarname}-%{py_ver}
-%{_mandir}/man1/%{tarname}-%{py_ver}.1.gz
-%ghost %{_mandir}/man1/%{tarname}.1.gz
+%ghost %{_sysconfdir}/alternatives/%{tarname}.1.gz
+%{_bindir}/%{tarname}*
+%{_mandir}/man1/%{tarname}*.1.gz
 %{python_sitearch}/%{tarname}.so
 
 %files -n %{libname}
@@ -151,7 +151,7 @@
 %files doc
 %defattr(-,root,root)
 %doc COPYING
-%doc doc/
+%doc build/doc/html/*
 
 %files -n %{libprefix}-devel
 %defattr(-,root,root)

++ python3-pyside-shiboken.spec ++
--- /var/tmp/diff_new_pack.WW7wJJ/_old  2015-09-08 

commit maxima for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package maxima for openSUSE:Factory checked 
in at 2015-09-08 17:39:30

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-08-23 
17:44:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.maxima.new/maxima.changes   2015-09-08 
17:43:09.0 +0200
@@ -1,0 +2,55 @@
+Tue Sep  1 09:36:57 UTC 2015 - badshah...@gmail.com
+
+- Update to version 5.37.1 (List of changes includes fixes from
+  version 5.37.0):
+  + New items in core:
+- new function with_default_2d_display: ensure pretty-printing
+  output.
+  + New items in share:
+- new package cryptools: tools for cryptography.
+- new package elliptic_curves: elliptic curves over prime
+  fields and binary fields.
+- new function cgrind: output Maxima expressions as C code.
+- package draw: new function vennplot (Venn diagrams).
+- package stringproc: new functions flush_output, readbyte,
+  and writebyte.
+  + Changes in core:
+- function gf_symmetric renamed to gf_balanced.
+  + Changes in share:
+- functions md5sum, sha1sum, sha256sum and base64_decode:
+  accept and return numbers and octet lists as well as
+  strings.
+- packages aes and aes2: provide flexible support for
+  different data types, e.g. octet lists.
+  + Bug fixes:
+- [#3005]: Manual is wrong about "sqrt" and "radexpand".
+- [#2998]: extra () in display2d:false output.
+- [#2988]: documentation error in gf_manual.pdf.
+- [#2987]: Some divergent integrals give error, some don't.
+- [#2982]: Display of taylor series in wrong order.
+- [#2980]: "rectform" causes infinite recursion depending on
+  variable name.
+- [#2975]: number of distinct partitions gives wroing result.
+- [#2972]: Wrong limits involving logs.
+- [#2937]: dotscrules and antisymmetric.
+- [#2936]: stack overflow in integrate.
+- [#2934]: dotscrules and antisymmetric.
+- [#2929]: misformatting in debugger help message.
+- [#2905]: Assigning variable twice yields different results.
+- [#2620]: atan2(y,x)+atan2(-y,x) doesnt always return 0.
+- [#2230]: abs(x)^(2*int) doesn't simplify.
+- [#2211]: rtest_sign #77.
+- [#2183]: eigenvectors of a 10 x 10.
+- [#1193]: ev doesn't bind functions safely.
+  + Unnumbered bugs:
+- commit [6779ac0]: zn-nrt: root of zero should be zero.
+- commit [b212487]: Fix up version variables so that
+  load(drawutils) succeeds.
+- mailing list 2015-08-29: Documentation fails with error.
+- mailing list 2015-08-27: Warnings from loading cartan package.
+- mailing list 2015-08-25: Strange symmetry of acoth(x), area
+  cotangens hyperbolicus function (#552).
+- mailing list 2015-08-17: trouble with GCL build.
+- mailing list 2015-06-11: rationalize(0.1) and the manual.
+
+---

Old:

  maxima-5.37.0.tar.gz

New:

  maxima-5.37.1.tar.gz



Other differences:
--
++ maxima.spec ++
--- /var/tmp/diff_new_pack.dGSsPA/_old  2015-09-08 17:44:06.0 +0200
+++ /var/tmp/diff_new_pack.dGSsPA/_new  2015-09-08 17:44:06.0 +0200
@@ -28,7 +28,7 @@
 %define gcl_flags --disable-gcl
 
 Name:   maxima
-Version:5.37.0
+Version:5.37.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.37.0.tar.gz -> maxima-5.37.1.tar.gz ++
/work/SRC/openSUSE:Factory/maxima/maxima-5.37.0.tar.gz 
/work/SRC/openSUSE:Factory/.maxima.new/maxima-5.37.1.tar.gz differ: char 5, 
line 1




commit libhangul for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libhangul for openSUSE:Factory 
checked in at 2015-09-08 17:38:35

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


Package is "libhangul"

Changes:

--- /work/SRC/openSUSE:Factory/libhangul/libhangul.changes  2014-10-24 
10:48:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.libhangul.new/libhangul.changes 2015-09-08 
17:39:09.0 +0200
@@ -1,0 +2,12 @@
+Tue Aug 25 02:11:59 UTC 2015 - i...@marguerite.su
+
+- Update to version 0.1.0+git20150224.78e9d89:
+  * Fix incorrect sizeof expression
+  * hanja_list_new() memory leak
+- changes in 0.1.0
+  * add new API for keycode normalization
+  * remove deprecated API
+  * add supports for freebsd
+  * update some test codes
+
+---

Old:

  libhangul-0.1.0+git20140928.tar.gz

New:

  _service
  _servicedata
  libhangul-0.1.0+git20150224.78e9d89.tar.xz



Other differences:
--
++ libhangul.spec ++
--- /var/tmp/diff_new_pack.4KStCl/_old  2015-09-08 17:39:17.0 +0200
+++ /var/tmp/diff_new_pack.4KStCl/_new  2015-09-08 17:39:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libhangul
 #
-# 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,16 +16,16 @@
 #
 
 
-%define libname libhangul1
+%define soname 1
 
 Name:   libhangul
-Version:0.1.0+git20140928
+Version:0.1.0+git20150224.78e9d89
 Release:0
 Summary:The Hangul input library
 License:LGPL-2.1+
 Group:  System/I18n/Korean
 Url:https://github.com/choehwanjin/libhangul
-Source: %{name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 # FIX-FOR-SLES downgrade gettext requirement to 0.14 from 0.18
 Patch0: fix-for-sles-gettext-version.patch
@@ -36,18 +36,17 @@
 %description
 Hangul input library used by scim-hangul and ibus-hangul
 
-%package -n %{libname}
+%package -n %{name}%{soname}
 Summary:The Hangul input library
 Group:  System/I18n/Korean
 
-%description -n %{libname}
+%description -n %{name}%{soname}
 Hangul input library used by scim-hangul and ibus-hangul
 
 %package devel
 Summary:Development headers for libhangul
 Group:  Development/Libraries/C and C++
-Requires:   %{libname} = %{version}
-Requires:   glibc-devel
+Requires:   %{name}%{soname} = %{version}
 
 %description devel
 This package contains all necessary include files and libraries needed
@@ -84,11 +83,11 @@
 rm -f %{buildroot}%{_libdir}/*.la
 %find_lang %{name}
 
-%post -n %{libname} -p /sbin/ldconfig
+%post -n %{name}%{soname} -p /sbin/ldconfig
 
-%postun -n %{libname} -p /sbin/ldconfig
+%postun -n %{name}%{soname} -p /sbin/ldconfig
 
-%files -n %{libname} -f %{name}.lang
+%files -n %{name}%{soname} -f %{name}.lang
 %defattr(-, root, root)
 %doc AUTHORS COPYING NEWS README
 %{_bindir}/hangul

++ _service ++

  
https://github.com/choehwanjin/libhangul
git
.git
0.1.0+git%cd.%h
master
enable
  
  
libhangul-*.tar
xz
  
  
libhangul
  

++ _servicedata ++


https://github.com/choehwanjin/libhangul
  78e9d8926262db423b4cf9181e1c2cb06a120a9b


commit goffice for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package goffice for openSUSE:Factory checked 
in at 2015-09-08 17:42:40

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


Package is "goffice"

Changes:

--- /work/SRC/openSUSE:Factory/goffice/goffice.changes  2015-04-21 
10:52:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.goffice.new/goffice.changes 2015-09-08 
17:44:52.0 +0200
@@ -1,0 +2,15 @@
+Mon Aug  3 10:51:50 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.10.23:
+  + Disable metafiles support when there is no screen (bgo#748493).
+  + Fix ABR (bgo#749167).
+  + Shield Cairo from image sizes it cannot handle (bgo#749274).
+  + Plug leaks (bgo#749395).
+  + Portability problem affecting macs (bgo#749463).
+  + Fix log-fit problem (rh#1240470).
+  + Fix general format for wide case (bgo#752839).
+  + Fuzzed file fixes: bgo#750860, bgo#751059, bgo#751256,
+bgo#751257, bgo#751272, bgo#751925, bgo#752223, bgo#750047,
+bgo#751250.
+
+---

Old:

  goffice-0.10.22.tar.xz

New:

  goffice-0.10.23.tar.xz



Other differences:
--
++ goffice.spec ++
--- /var/tmp/diff_new_pack.Cif0l1/_old  2015-09-08 17:44:56.0 +0200
+++ /var/tmp/diff_new_pack.Cif0l1/_new  2015-09-08 17:44:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   goffice
-Version:0.10.22
+Version:0.10.23
 Release:0
 Summary:GLib/GTK+ Set of Document-Centric Objects and Utilities
 License:GPL-2.0 or GPL-3.0

++ goffice-0.10.22.tar.xz -> goffice-0.10.23.tar.xz ++
 19650 lines of diff (skipped)




commit gnumeric for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package gnumeric for openSUSE:Factory 
checked in at 2015-09-08 17:42:41

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


Package is "gnumeric"

Changes:

--- /work/SRC/openSUSE:Factory/gnumeric/gnumeric.changes2015-04-22 
01:19:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnumeric.new/gnumeric.changes   2015-09-08 
17:44:58.0 +0200
@@ -1,0 +2,49 @@
+Mon Aug  3 10:56:31 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.12.23:
+  + Fix memory handling error on fuzzed sxc file (bgo#748535).
+  + Improve import/export of page layout from/to ODF.
+  + Improve function import to ODF (bgo#750627).
+  + Add CONFIDENCE.T, MODE.MULT, PERCENTILE.EXC, PERCENTRANK.EXC
+and QUARTILE.EXC.
+  + Fix ODF import of named expressions (bgo#750627).
+  + Import reference unions from ODF (bgo#750627).
+  + Improve CONVERT function.
+  + Fix xlsx import of plot area manual layout (bgo#748016).
+  + Fix out of bounds read (bgo#749121).
+  + Fix import/export of graph backplane.
+  + Fix export of unlabelled axes.
+  + Fix export of rotated axis labels.
+  + Fix xlsx save crash related to shared strings (bgo#748477).
+  + Solver code refactoring.
+  + Plug leaks.
+  + Make solver check linearity of model.
+  + Fix xls saving of marker style (bgo#749185).
+  + Make compilation with clang work again (bgo#749138).
+  + Fix xlsx problem with import of header/footer (bgo#750853).
+  + Fix xls save problem with characters outside codepage
+(bgo#750856).
+  + Fix named expression problem (bgo#751056).
+  + Fix xlsx namespace problem (bgo#751120).
+  + Protect database functions against malformed database
+(bgo#751392).
+  + Fix csv problem with invalid UTF-8 data (bgo#751577).
+  + Fix GROWTH (bgo#751658).
+  + Restrict TABLE to array context (bgo#751871).
+  + Fuzzed file fixes: bgo#750042, bgo#751217, bgo#751270,
+bgo#751060, bgo#751501, bgo#751851, bgo#751922, bgo#752124,
+bgo#751271, bgo#751383, bgo#751384, bgo#751758, bgo#751744,
+bgo#751908, bgo#751920, bgo#751249, bgo#751945, bgo#751909,
+bgo#751946, bgo#751968, bgo#751969, bgo#751971, bgo#751989,
+bgo#748595, bgo#748597, bgo#749031, bgo#749030, bgo#749069,
+bgo#748533, bgo#749118, bgo#749166, bgo#749181, bgo#749184,
+bgo#749236, bgo#749240, bgo#749234, bgo#749235, bgo#749271,
+bgo#749270, bgo#749424, bgo#749917, bgo#749919, bgo#750043,
+bgo#750044, bgo#750046, bgo#750811, bgo#750810, bgo#750857,
+bgo#750864, bgo#750862, bgo#750858, bgo#751126, bgo#751254,
+bgo#751253, bgo#750851, bgo#751258, bgo#751259, bgo#751502,
+bgo#751390, bgo#751579, bgo#751659, bgo#751660, bgo#751662,
+bgo#751970, bgo#752022, bgo#751988, bgo#752021, bgo#752080,
+bgo#752081.
+
+---

Old:

  gnumeric-1.12.22.tar.xz

New:

  gnumeric-1.12.23.tar.xz



Other differences:
--
++ gnumeric.spec ++
--- /var/tmp/diff_new_pack.bBHkIL/_old  2015-09-08 17:45:53.0 +0200
+++ /var/tmp/diff_new_pack.bBHkIL/_new  2015-09-08 17:45:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnumeric
-Version:1.12.22
+Version:1.12.23
 Release:0
 Summary:Spreadsheet Application
 License:GPL-2.0 or GPL-3.0

++ gnumeric-1.12.22.tar.xz -> gnumeric-1.12.23.tar.xz ++
/work/SRC/openSUSE:Factory/gnumeric/gnumeric-1.12.22.tar.xz 
/work/SRC/openSUSE:Factory/.gnumeric.new/gnumeric-1.12.23.tar.xz differ: char 
28, line 1




commit rubygem-mixlib-shellout for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mixlib-shellout for 
openSUSE:Factory checked in at 2015-09-08 17:43:00

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


Package is "rubygem-mixlib-shellout"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mixlib-shellout/rubygem-mixlib-shellout.changes
  2015-05-19 23:48:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mixlib-shellout.new/rubygem-mixlib-shellout.changes
 2015-09-08 17:47:26.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep  3 04:30:26 UTC 2015 - co...@suse.com
+
+- updated to version 2.2.0
+  no changelog found
+
+---

Old:

  mixlib-shellout-2.1.0.gem

New:

  mixlib-shellout-2.2.0.gem



Other differences:
--
++ rubygem-mixlib-shellout.spec ++
--- /var/tmp/diff_new_pack.Oxikg2/_old  2015-09-08 17:47:28.0 +0200
+++ /var/tmp/diff_new_pack.Oxikg2/_new  2015-09-08 17:47:28.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mixlib-shellout
-Version:2.1.0
+Version:2.2.0
 Release:0
 %define mod_name mixlib-shellout
 %define mod_full_name %{mod_name}-%{version}

++ mixlib-shellout-2.1.0.gem -> mixlib-shellout-2.2.0.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/shellout/version.rb 
new/lib/mixlib/shellout/version.rb
--- old/lib/mixlib/shellout/version.rb  2015-05-18 18:44:05.0 +0200
+++ new/lib/mixlib/shellout/version.rb  2015-09-02 18:57:06.0 +0200
@@ -1,5 +1,5 @@
 module Mixlib
   class ShellOut
-VERSION = "2.1.0"
+VERSION = "2.2.0"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/shellout/windows/core_ext.rb 
new/lib/mixlib/shellout/windows/core_ext.rb
--- old/lib/mixlib/shellout/windows/core_ext.rb 2015-05-18 18:44:05.0 
+0200
+++ new/lib/mixlib/shellout/windows/core_ext.rb 2015-09-02 18:57:06.0 
+0200
@@ -24,7 +24,13 @@
   LOGON32_LOGON_INTERACTIVE = 0x0002
   LOGON32_PROVIDER_DEFAULT  = 0x
   UOI_NAME = 0x0002
-end  
+
+  WAIT_OBJECT_0= 0
+  WAIT_TIMEOUT = 0x102
+  WAIT_ABANDONED   = 128
+  WAIT_ABANDONED_0 = WAIT_ABANDONED
+  WAIT_FAILED  = 0x
+end
 
 # Define the functions needed to check with Service windows station
 module Process::Functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/shellout/windows.rb 
new/lib/mixlib/shellout/windows.rb
--- old/lib/mixlib/shellout/windows.rb  2015-05-18 18:44:05.0 +0200
+++ new/lib/mixlib/shellout/windows.rb  2015-09-02 18:57:06.0 +0200
@@ -19,19 +19,14 @@
 #
 
 require 'win32/process'
-require 'windows/handle'
-require 'windows/process'
-require 'windows/synchronize'
-
 require 'mixlib/shellout/windows/core_ext'
 
 module Mixlib
   class ShellOut
 module Windows
 
-  include ::Windows::Handle
-  include ::Windows::Process
-  include ::Windows::Synchronize
+  include Process::Functions
+  include Process::Constants
 
   TIME_SLICE = 0.05
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-05-18 18:44:05.0 +0200
+++ new/metadata2015-09-02 18:57:06.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: mixlib-shellout
 version: !ruby/object:Gem::Version
-  version: 2.1.0
+  version: 2.2.0
 platform: ruby
 authors:
 - Opscode
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-05-18 00:00:00.0 Z
+date: 2015-09-02 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rspec
@@ -59,7 +59,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.6
+rubygems_version: 2.4.8
 signing_key: 
 specification_version: 4
 summary: Run external commands on Unix or Windows




commit rubygem-pg for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-pg for openSUSE:Factory 
checked in at 2015-09-08 17:42:57

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


Package is "rubygem-pg"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-pg/rubygem-pg.changes2015-05-16 
07:14:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-pg.new/rubygem-pg.changes   
2015-09-08 17:47:24.0 +0200
@@ -1,0 +2,137 @@
+Fri Sep  4 04:32:03 UTC 2015 - co...@suse.com
+
+- updated to version 0.18.3
+ see installed ChangeLog
+
+  2015-09-03  Michael Granger  
+  
+   * History.rdoc:
+   Added recent fix to the History file
+   [f12dc2f1ce14] [tip]
+  
+  2015-09-01  Lars Kanis  
+  
+   * lib/pg/text_decoder.rb:
+   Add missing require
+   [d0ba6a2cb10f]
+  
+   * Merge pull request #9 from ramfjord/date-decoder-return-dates
+  
+   Date decoder to return real Dates
+   [676def89b826]
+  
+  2015-06-21  Thomas Ramfjord  
+  
+   * lib/pg/text_decoder.rb, spec/pg/basic_type_mapping_spec.rb:
+   modified TextDecoder::Date to return an actual ruby Date instead of
+   a Time
+   [c50593d12ba2]
+  
+  2015-08-20  Lars Kanis  
+  
+   * Rakefile:
+   Add include for Hoe::MercurialHelpers as a temporary solution for
+   the error:
+  
+Packaging tasks require the hoe-mercurial plugin (gem install hoe-
+   mercurial)
+   [a84f83ff5b31]
+  
+   * History.rdoc:
+   Update History.rdoc
+   [cadfac537e73]
+  
+   * Merge branch 'master' of github.com:larskanis/ruby-pg
+   [d27d6d5a6545]
+  
+   * README.rdoc:
+   Add Appveyor status badge to the README.
+   [c9637c6efcfb]
+  
+   * appveyor.yml:
+   Use 9.3 because 9.0, 9.1 and 9.2 segfault in PG.init_openssl
+   [158f6649b7b8]
+  
+   * spec/pg/connection_spec.rb:
+   Skip conn#host test on Windows-x64, because it segfaults, currently.
+   [04110aad7fc6]
+  
+   * spec/pg/connection_spec.rb:
+   libpq on Windows doesn't respect the PGPORT env variable, so we
+   accept both.
+   [b4b666011f3f]
+  
+   * spec/helpers.rb:
+   Older versions of PostgreSQL don't have a pid column, so this could
+   raise an exception: TypeError: can't convert nil into Integer
+   [48f1145fa631]
+  
+   * Rakefile.cross:
+   Update OpenSSL version for Windows cross build.
+   [be6b75fef0ff]
+  
+   * appveyor.yml:
+   Add CI-tests on appveyor.
+   [c2dc9e491853]
+  
+  2015-06-29  Lars Kanis  
+  
+   * History.rdoc:
+   Merge branch 'master' of https://github.com/larskanis/ruby-pg
+  
+   Conflicts: History.rdoc
+   [affb47533d82]
+  
+   * History.rdoc, ext/util.c, spec/pg/type_spec.rb:
+   Fix data type resulting in wrong base64 encoding.
+   [5fb9170f6a7d]
+  
+  2015-06-17  Lars Kanis  
+  
+   * Gemfile, Rakefile, Rakefile.cross:
+   Update versions of rake-compiler-dock, OpenSSL and PostgreSQL.
+   [10c6b496314c]
+  
+  2015-06-12  Lars Kanis  
+  
+   * Rakefile.cross:
+   Update OpenSSL and PostgreSQL versions for cross build.
+   [02094cca1cf8]
+  
+  2015-06-11  Lars Kanis  
+  
+   * History.rdoc, README-Windows.rdoc:
+   Update README-Windows in regards to rake-compiler-dock.
+   [4d9fd821ec1e]
+  
+  2015-06-09  Lars Kanis  
+  
+   * Rakefile.cross:
+   Cross build: Ensure ChangeLog file is built on the host side before
+   entering the docker container.
+   [d32412acff38]
+  
+   * Rakefile.cross:
+   Cross build: Add workaround for missing symlink support on Windows.
+   [52bb3eef00f0]
+  
+   * Rakefile.cross:
+   Explicitly set the gcc-toolchain, instead of deriving from the rake-
+   compiler config.
+  
+   Now, that we use the libpq.dll (instead of static linking), we can
+   mix the gcc-toolchains. So we better build the dll with the newer
+   mingw-w64 toolchain (instead of the old mingw32) and build only the
+   extension for ruby-1.9 with the old mingw32-gcc.
+   [b3d169fa189b]
+  
+   * Merge https://github.com/ged/ruby-pg
+   [5aeb99dda0ca]
+  
+  2015-05-25  Michael Granger  
+  
+   * lib/pg/basic_type_mapping.rb:
+   Whitespace fixes
+   [57cfbc230597]
+
+---

Old:

  pg-0.18.2.gem

New:

  pg-0.18.3.gem



Other differences:

commit rubygem-rb-fsevent for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rb-fsevent for 
openSUSE:Factory checked in at 2015-09-08 17:42:59

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


Package is "rubygem-rb-fsevent"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rb-fsevent/rubygem-rb-fsevent.changes
2015-06-23 11:56:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rb-fsevent.new/rubygem-rb-fsevent.changes   
2015-09-08 17:47:25.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep  3 04:31:25 UTC 2015 - co...@suse.com
+
+- updated to version 0.9.6
+  no changelog found
+
+---

Old:

  rb-fsevent-0.9.5.gem

New:

  rb-fsevent-0.9.6.gem



Other differences:
--
++ rubygem-rb-fsevent.spec ++
--- /var/tmp/diff_new_pack.KFGabD/_old  2015-09-08 17:47:26.0 +0200
+++ /var/tmp/diff_new_pack.KFGabD/_new  2015-09-08 17:47:26.0 +0200
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-rb-fsevent
-Version:0.9.5
+Version:0.9.6
 Release:0
 %define mod_name rb-fsevent
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:http://rubygems.org/gems/rb-fsevent
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:rubygem-rb-fsevent-rpmlintrc

++ rb-fsevent-0.9.5.gem -> rb-fsevent-0.9.6.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-fsevent/fsevent.rb 
new/lib/rb-fsevent/fsevent.rb
--- old/lib/rb-fsevent/fsevent.rb   1970-01-01 01:00:00.0 +0100
+++ new/lib/rb-fsevent/fsevent.rb   2015-09-02 10:33:09.0 +0200
@@ -52,7 +52,7 @@
 
   def stop
 unless @pipe.nil?
-  Process.kill('KILL', @pipe.pid)
+  Process.kill('KILL', @pipe.pid) if process_running?(@pipe.pid)
   @pipe.close
 end
   rescue IOError
@@ -60,6 +60,15 @@
 @running = false
   end
 
+  def process_running?(pid)
+begin
+  Process.kill(0, pid)
+  true
+rescue Errno::ESRCH
+  false
+end
+  end
+
   if RUBY_VERSION < '1.9'
 def open_pipe
   IO.popen("'#{self.class.watcher_path}' #{options_string} 
#{shellescaped_paths}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-fsevent/version.rb 
new/lib/rb-fsevent/version.rb
--- old/lib/rb-fsevent/version.rb   1970-01-01 01:00:00.0 +0100
+++ new/lib/rb-fsevent/version.rb   2015-09-02 10:33:09.0 +0200
@@ -1,5 +1,5 @@
 # -*- encoding: utf-8 -*-
 
 class FSEvent
-  VERSION = '0.9.5'
+  VERSION = '0.9.6'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata1970-01-01 01:00:00.0 +0100
+++ new/metadata2015-09-02 10:33:09.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: rb-fsevent
 version: !ruby/object:Gem::Version
-  version: 0.9.5
+  version: 0.9.6
 platform: ruby
 authors:
 - Thibaud Guillaume-Gentil
@@ -9,48 +9,48 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-05-20 00:00:00.0 Z
+date: 2015-09-02 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: bundler
   requirement: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '1.0'
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '1.0'
 - !ruby/object:Gem::Dependency
   name: rspec
   requirement: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '2.11'
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '2.11'
 - !ruby/object:Gem::Dependency
   name: guard-rspec
   requirement: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '4.2'
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
-- - ~>
+- - "~>"
   - !ruby/object:Gem::Version
 version: '4.2'
 

commit synergy for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package synergy for openSUSE:Factory checked 
in at 2015-09-08 17:42:53

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


Package is "synergy"

Changes:

--- /work/SRC/openSUSE:Factory/synergy/synergy.changes  2015-08-19 
09:29:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.synergy.new/synergy.changes 2015-09-08 
17:46:52.0 +0200
@@ -1,0 +2,30 @@
+Fri Sep  4 15:34:37 UTC 2015 - sleep_wal...@opensuse.org
+
+- make clipboard and selection work reliably again
+  (bnc#944514, synergy #4735)
+  fix-bug-4735-don-t-leave-until-fillclipboard-s-all.patch
+  properly-lock-condvar-add-timeout-condition-to-prevent.patch
+
+---
+Thu Sep  3 12:30:24 UTC 2015 - mplus...@suse.com
+
+- Update to 1.7.4
+  * Bug #4721 - High CPU usage for Windows service
+  * Bug #4750 - SSL connect error 'passive ssl error limit'
+  * Bug #4584 - Drag and drop with SSL causes crash
+  * Bug #4749 - Clipboard thread race condition causes assertion 
+failure
+  * Bug #4720 - Plugin download shows 'Could not get Linux package 
+type' error
+  * Bug #4712 - Unable to send clipboard with size above 1KB when 
+using SSL
+  * Bug #4642 - Connecting causes SSL23_GET_SERVER_HELLO error
+  * Bug #4690 - Log line 'activeDesktop' does not use logging 
+system
+  * Bug #4866 - Wrong ns plugin version can be loaded
+  * Enhancement #4901 - Auto restart when running from GUI in 
+desktop mode
+  * Enhancement #4845 - Add timestamp to log output
+- Enable building for SLE-12
+
+---

Old:

  v1.7.3-stable.tar.gz

New:

  fix-bug-4735-don-t-leave-until-fillclipboard-s-all.patch
  properly-lock-condvar-add-timeout-condition-to-prevent.patch
  v1.7.4-stable.tar.gz



Other differences:
--
++ synergy.spec ++
--- /var/tmp/diff_new_pack.n2Gd1f/_old  2015-09-08 17:47:22.0 +0200
+++ /var/tmp/diff_new_pack.n2Gd1f/_new  2015-09-08 17:47:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   synergy
-Version:1.7.3
+Version:1.7.4
 Release:0
 Summary:Mouse, keyboard and clipboard sharing utility
 License:GPL-2.0+
@@ -33,22 +33,26 @@
 Patch11:synergy-1.5.0-pthread.patch
 Patch13:synergy-1.5.0-test.patch
 Patch14:synergy-1.5.0-disable-version-check.patch
+Patch15:fix-bug-4735-don-t-leave-until-fillclipboard-s-all.patch
+Patch16:properly-lock-condvar-add-timeout-condition-to-prevent.patch
 BuildRequires:  avahi-devel
 BuildRequires:  cmake
 BuildRequires:  curl-devel
 BuildRequires:  gcc-c++
-BuildRequires:  libcryptopp-devel
 BuildRequires:  libqt4-devel
 BuildRequires:  mDNSResponder-devel
 BuildRequires:  systemd
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xtst)
-%{?systemd_requires}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} != 1315
+BuildRequires:  libcryptopp-devel
 Requires(pre):  %fillup_prereq
 Provides:   synergy-plus = %{version}
 Obsoletes:  synergy-plus < %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%endif
+%{?systemd_requires}
 
 %description
 Synergy lets you easily share a single mouse and keyboard between
@@ -79,6 +83,8 @@
 %patch11 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
+%patch16 -p1
 
 cp %{SOURCE2} .
 
@@ -128,7 +134,7 @@
 %suse_update_desktop_file -i q%{name}
 
 %post
-%{fillup_only}
+%fillup_only
 %desktop_database_post
 %service_add_post synergys.service synergys.socket
 
@@ -150,8 +156,8 @@
 %{_bindir}/synergys
 %{_bindir}/syntool
 %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/synergy
-%doc %{_mandir}/man1/synergys.1%{?ext_man}
-%doc %{_mandir}/man1/synergyc.1%{?ext_man}
+%{_mandir}/man1/synergys.1%{?ext_man}
+%{_mandir}/man1/synergyc.1%{?ext_man}
 %{_unitdir}/synergys.service
 %{_unitdir}/synergys.socket
 %{_sbindir}/rcsynergys

++ fix-bug-4735-don-t-leave-until-fillclipboard-s-all.patch ++
>From 32ad85706878a92f5964847b1d88752fb5685303 Mon Sep 17 00:00:00 2001
From: Nye Liu 
Date: Tue, 1 Sep 2015 17:39:25 -0700
Subject: [PATCH] Fix bug #4735 - don't leave() until fillClipboard()s all
 complete

---
 src/lib/client/Client.cpp | 66 ++-
 src/lib/client/Client.h   |  9 +--
 2 files changed, 55 insertions(+), 20 deletions(-)

Index: synergy-1.7.4-stable/src/lib/client/Client.cpp
===
--- synergy-1.7.4-stable.orig/src/lib/client/Client.cpp
+++ 

commit pulseaudio-equalizer for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio-equalizer for 
openSUSE:Factory checked in at 2015-09-08 17:43:05

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


Package is "pulseaudio-equalizer"

Changes:

--- 
/work/SRC/openSUSE:Factory/pulseaudio-equalizer/pulseaudio-equalizer.changes
2015-05-02 21:37:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.pulseaudio-equalizer.new/pulseaudio-equalizer.changes
   2015-09-08 17:47:32.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 14:47:08 UTC 2015 - altesh...@gmail.com
+
+- Some quotes in patch 0008-fix-locale-issues.patch were wrong:
+  ' instead of " and the other way around.
+
+---



Other differences:
--
++ 0008-fix-locale-issues.patch ++
--- /var/tmp/diff_new_pack.u5ApmV/_old  2015-09-08 17:47:33.0 +0200
+++ /var/tmp/diff_new_pack.u5ApmV/_new  2015-09-08 17:47:33.0 +0200
@@ -51,7 +51,7 @@
# Move active client sinks to ALSA sink
echo "Moving active PulseAudio clients to ALSA sink ($PA_MASTER_SINK)..."
 -  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | grep 'index: ' | 
sed 's/index: /move-sink-input /g' | sed "s/$/ $PA_MASTER_SINK/g")"
-+  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | iconv -c -t ascii | 
sed -e '/index: /!d;s/index: /move-sink-input /g;s/$/ $PA_MASTER_SINK/g")"
++  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | iconv -c -t ascii | 
sed -e '/index: /!d;s/index: /move-sink-input /g;s/$/ $PA_MASTER_SINK/g')"
  
# Transfer current mute/sink volume to ALSA sink
echo "Transferring current mute ($PA_CURRENT_MUTE) & volume 
($PA_CURRENT_VOLUME%) to ALSA sink ($PA_MASTER_SINK)..."
@@ -69,7 +69,7 @@
# Move currently active client sinks to LADSPA sink
echo "Moving active PulseAudio clients to LADSPA sink ($PA_LADSPA_SINK)..."
 -  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | grep 'index: ' | 
sed 's/index: /move-sink-input /g' | sed "s/$/ $PA_LADSPA_SINK/g")"
-+  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | iconv -c -t ascii | 
sed -e '/index: /!d;s/index: /move-sink-input /g' | sed "s/$/ 
$PA_LADSPA_SINK/g')"
++  echo >>/tmp/eqcommands.sh "$(pacmd "list-sink-inputs" | iconv -c -t ascii | 
sed -e '/index: /!d;s/index: /move-sink-input /g' | sed 's/$/ 
$PA_LADSPA_SINK/g')"
  
# Execute all queued commands (for potential speed benefit)...
pacmd /dev/null




commit golang-packaging for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package golang-packaging for 
openSUSE:Factory checked in at 2015-09-08 17:42:52

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


Package is "golang-packaging"

Changes:

--- /work/SRC/openSUSE:Factory/golang-packaging/golang-packaging.changes
2015-09-02 00:35:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.golang-packaging.new/golang-packaging.changes   
2015-09-08 17:46:51.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 16:24:13 UTC 2015 - i...@marguerite.su
+
+- update version 10
+  * support all archtectures like ppc/arm
+
+---

Old:

  golang-packaging-9.tar.gz

New:

  golang-packaging-10.tar.gz



Other differences:
--
++ golang-packaging.spec ++
--- /var/tmp/diff_new_pack.OaV5sL/_old  2015-09-08 17:46:52.0 +0200
+++ /var/tmp/diff_new_pack.OaV5sL/_new  2015-09-08 17:46:52.0 +0200
@@ -21,7 +21,7 @@
 %endif
 
 Name:   golang-packaging
-Version:9
+Version:10
 Release:0
 Summary:A toolchain to help packaging golang
 License:GPL-3.0

++ golang-packaging-9.tar.gz -> golang-packaging-10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-9/golang.attr 
new/golang-packaging-10/golang.attr
--- old/golang-packaging-9/golang.attr  2015-08-28 13:25:02.0 +0200
+++ new/golang-packaging-10/golang.attr 2015-09-04 18:21:25.0 +0200
@@ -1,4 +1,3 @@
-ndir}/*|/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64)/.*\\.a)$
 %__golang_requires  %{_rpmconfigdir}/golang.req
 %__golang_provides  %{_rpmconfigdir}/golang.prov
-%__golang_path  
^(/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64)/.*\\.a|%{_bindir}/.*)$
+%__golang_path  
^(/usr/lib(64)?/go/contrib/pkg/linux_(386|amd64|ppc.*|arm.*)/.*\\.a|%{_bindir}/.*)$




commit golang-org-x-crypto for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package golang-org-x-crypto for 
openSUSE:Factory checked in at 2015-09-08 17:42:50

Comparing /work/SRC/openSUSE:Factory/golang-org-x-crypto (Old)
 and  /work/SRC/openSUSE:Factory/.golang-org-x-crypto.new (New)


Package is "golang-org-x-crypto"

Changes:

--- /work/SRC/openSUSE:Factory/golang-org-x-crypto/golang-org-x-crypto.changes  
2015-07-24 09:58:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-org-x-crypto.new/golang-org-x-crypto.changes 
2015-09-08 17:46:48.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep  4 11:14:02 UTC 2015 - dval...@suse.com
+
+- Fix flaky TestHostKeyCert test (crypto-fix-ssh.patch) (boo#944474)
+
+---

New:

  crypto-fix-ssh.patch



Other differences:
--
++ golang-org-x-crypto.spec ++
--- /var/tmp/diff_new_pack.tbUv9p/_old  2015-09-08 17:46:51.0 +0200
+++ /var/tmp/diff_new_pack.tbUv9p/_new  2015-09-08 17:46:51.0 +0200
@@ -24,6 +24,7 @@
 Group:  Development/Languages/Other
 Url:https://github.com/golang/crypto
 Source: crypto-%{version}.tar.xz
+Patch0: crypto-fix-ssh.patch
 BuildRequires:  golang-packaging
 BuildRequires: xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -40,6 +41,7 @@
 
 %prep
 %setup -q -n crypto-%{version}
+%patch0 -p1
 
 %build
 %goprep golang.org/x/crypto

++ crypto-fix-ssh.patch ++
>From 77de70a8d459abbd88b95faa92f4a69bd2f5a7d8 Mon Sep 17 00:00:00 2001
From: Dave Cheney 
Date: Fri, 31 Jul 2015 14:55:01 +1000
Subject: [PATCH] ssh: fix flake in TestHostKeyCert

Update golang/go#11811

The increased default concurrency in Go 1.5 showed up a test flake in
the TestHostKeyCert test. Under load, when the client provided incorrect
data, both sides would race to tear down the connection, which would often
lead to the server side, running in its own goroutine to see an unexpected
EOF or connection reset.

Fix this flake (and the incorrect use of t.Fatalf) by passing the error back
to the main goroutine for inspection. This also lets us ignore the expected
error in the unsuccessful path

Change-Id: I5a95c6d240479e9d537f34177e5ca8023b1b08e9
Reviewed-on: https://go-review.googlesource.com/12916
Reviewed-by: Brad Fitzpatrick 
---
 ssh/certs_test.go | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/ssh/certs_test.go b/ssh/certs_test.go
index d6c4a33..c5f2e53 100644
--- a/ssh/certs_test.go
+++ b/ssh/certs_test.go
@@ -186,15 +186,15 @@ func TestHostKeyCert(t *testing.T) {
defer c1.Close()
defer c2.Close()
 
+   errc := make(chan error)
+
go func() {
conf := ServerConfig{
NoClientAuth: true,
}
conf.AddHostKey(certSigner)
_, _, _, err := NewServerConn(c1, )
-   if err != nil {
-   t.Fatalf("NewServerConn: %v", err)
-   }
+   errc <- err
}()
 
config := {
@@ -207,5 +207,10 @@ func TestHostKeyCert(t *testing.T) {
if (err == nil) != succeed {
t.Fatalf("NewClientConn(%q): %v", name, err)
}
+
+   err = <-errc
+   if (err == nil) != succeed {
+   t.Fatalf("NewServerConn(%q): %v", name, err)
+   }
}
 }



commit perl-Sub-Identify for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Sub-Identify for 
openSUSE:Factory checked in at 2015-09-08 17:43:03

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


Package is "perl-Sub-Identify"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sub-Identify/perl-Sub-Identify.changes  
2015-04-15 16:26:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sub-Identify.new/perl-Sub-Identify.changes 
2015-09-08 17:47:29.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 09:47:59 UTC 2015 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-Sub-Identify/Changes
+
+---

Old:

  Sub-Identify-0.10.tar.gz

New:

  Sub-Identify-0.11.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Sub-Identify.spec ++
--- /var/tmp/diff_new_pack.17aDFW/_old  2015-09-08 17:47:31.0 +0200
+++ /var/tmp/diff_new_pack.17aDFW/_new  2015-09-08 17:47:31.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Sub-Identify
-Version:0.10
+Version:0.11
 Release:0
 %define cpan_name Sub-Identify
 Summary:Retrieve names of code references
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Sub-Identify/
-Source: 
http://www.cpan.org/authors/id/R/RG/RGARCIA/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/R/RG/RGARCIA/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros

++ Sub-Identify-0.10.tar.gz -> Sub-Identify-0.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Identify-0.10/Identify.xs 
new/Sub-Identify-0.11/Identify.xs
--- old/Sub-Identify-0.10/Identify.xs   2015-01-02 13:29:47.0 +0100
+++ new/Sub-Identify-0.11/Identify.xs   2015-09-04 09:19:40.0 +0200
@@ -45,7 +45,7 @@
 PPCODE:
 if (SvOK(coderef) && SvROK(coderef) && SvTYPE(SvRV(coderef)) == 
SVt_PVCV) {
 coderef = SvRV(coderef);
-if (CvSTART(coderef)) {
+if (CvSTART(coderef) && !CvISXSUB(coderef)) {
 file = CvFILE(coderef);
 line = CopLINE((const COP*)CvSTART(coderef));
 EXTEND(SP, 2);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Identify-0.10/MANIFEST 
new/Sub-Identify-0.11/MANIFEST
--- old/Sub-Identify-0.10/MANIFEST  2015-01-02 13:30:00.0 +0100
+++ new/Sub-Identify-0.11/MANIFEST  2015-09-04 09:19:40.0 +0200
@@ -8,10 +8,13 @@
 t/04codelocation-pureperl.t
 t/05constant.t
 t/05constant-pureperl.t
+t/06codelocxs.t
+t/06codelocxs-pureperl.t
 t/10pureperl-basic.t
 t/pod.t
 t/20attributes.t
 t/21attributes-pureperl.t
+t/30signatures.t
 Makefile.PL
 MANIFEST
 MANIFEST.SKIP
@@ -19,4 +22,3 @@
 META.yml Module meta-data (added by MakeMaker)
 README.mdown
 TODO.mdown
-META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Identify-0.10/META.json 
new/Sub-Identify-0.11/META.json
--- old/Sub-Identify-0.10/META.json 2015-01-02 13:30:00.0 +0100
+++ new/Sub-Identify-0.11/META.json 1970-01-01 01:00:00.0 +0100
@@ -1,31 +0,0 @@
-{
-   "abstract" : "Retrieve names of code references",
-   "author" : [
-  "unknown"
-   ],
-   "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter 
version 2.112150",
-   "license" : [
-  "perl_5"
-   ],
-   "meta-spec" : {
-  "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  "version" : "2"
-   },
-   "name" : "Sub-Identify",
-   "no_index" : {
-  "directory" : [
- "t",
- "inc"
-  ]
-   },
-   "release_status" : "stable",
-   "resources" : {
-  "repository" : {
- "type" : "git",
- "url" : "https://github.com/rgs/Sub-Identify.git;,
- "web" : "https://github.com/rgs/Sub-Identify;
-  }
-   },
-   "version" : "0.10"
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Identify-0.10/META.yml 
new/Sub-Identify-0.11/META.yml
--- old/Sub-Identify-0.10/META.yml  2015-01-02 13:30:00.0 +0100
+++ new/Sub-Identify-0.11/META.yml  2015-09-04 09:20:52.0 +0200
@@ -1,19 +1,26 @@

-abstract: 'Retrieve names of code references'
-author:
-  - unknown

commit perl-Test-MockTime for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-MockTime for 
openSUSE:Factory checked in at 2015-09-08 17:43:01

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


Package is "perl-Test-MockTime"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-MockTime/perl-Test-MockTime.changes
2015-04-23 08:03:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-MockTime.new/perl-Test-MockTime.changes   
2015-09-08 17:47:28.0 +0200
@@ -1,0 +2,14 @@
+Fri Sep  4 09:51:03 UTC 2015 - co...@suse.com
+
+- updated to 0.15
+   see /usr/share/doc/packages/perl-Test-MockTime/Changes
+
+0.15 - 03 Sep 2015
+  
+* Corrected README.  Merged POD into pm file
+  
+0.14 - 03 Sep 2015
+  
+* fixing POD code examples as per RT #104088.
+
+---

Old:

  Test-MockTime-0.13.tar.gz

New:

  Test-MockTime-0.15.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Test-MockTime.spec ++
--- /var/tmp/diff_new_pack.XYtFQi/_old  2015-09-08 17:47:29.0 +0200
+++ /var/tmp/diff_new_pack.XYtFQi/_new  2015-09-08 17:47:29.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Test-MockTime
-Version:0.13
+Version:0.15
 Release:0
 %define cpan_name Test-MockTime
 Summary:Replaces actual time with simulated time 
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Test-MockTime/
-Source: 
http://www.cpan.org/authors/id/D/DD/DDICK/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DD/DDICK/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -58,6 +59,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes
+%doc Changes README
 
 %changelog

++ Test-MockTime-0.13.tar.gz -> Test-MockTime-0.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-MockTime-0.13/Changes 
new/Test-MockTime-0.15/Changes
--- old/Test-MockTime-0.13/Changes  2014-08-07 10:57:44.0 +0200
+++ new/Test-MockTime-0.15/Changes  2015-09-03 14:14:02.0 +0200
@@ -1,6 +1,14 @@
 CHANGES
 ---
 
+  0.15 - 03 Sep 2015
+
+  * Corrected README.  Merged POD into pm file
+
+  0.14 - 03 Sep 2015
+
+  * fixing POD code examples as per RT #104088.
+
   0.13 - 07 Aug 2014
 
   * explicit license in META as per RT #97806
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-MockTime-0.13/MANIFEST 
new/Test-MockTime-0.15/MANIFEST
--- old/Test-MockTime-0.13/MANIFEST 2014-08-07 10:57:51.0 +0200
+++ new/Test-MockTime-0.15/MANIFEST 2015-09-03 14:22:32.0 +0200
@@ -1,4 +1,5 @@
 MANIFEST
+README
 Makefile.PL
 Changes
 t/export.t
@@ -7,6 +8,5 @@
 t/string-time.t
 t/prototypes.t
 lib/Test/MockTime.pm
-lib/Test/MockTime.pod
-META.yml Module meta-data (added by MakeMaker)
+META.yml Module YAML meta-data (added by 
MakeMaker)
 META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-MockTime-0.13/META.json 
new/Test-MockTime-0.15/META.json
--- old/Test-MockTime-0.13/META.json2014-08-07 10:57:51.0 +0200
+++ new/Test-MockTime-0.15/META.json2015-09-03 14:22:32.0 +0200
@@ -4,7 +4,7 @@
   "David Dick "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter 
version 2.132140",
+   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.150001",
"license" : [
   "perl_5"
],
@@ -39,5 +39,5 @@
   }
},
"release_status" : "stable",
-   "version" : "0.13"
+   "version" : "0.15"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-MockTime-0.13/META.yml 
new/Test-MockTime-0.15/META.yml
--- old/Test-MockTime-0.13/META.yml 2014-08-07 10:57:51.0 +0200
+++ new/Test-MockTime-0.15/META.yml 2015-09-03 14:22:32.0 +0200
@@ -3,22 +3,22 @@
 author:
   - 'David Dick '
 build_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 configure_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.72, 

commit ghc-cabal-helper for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package ghc-cabal-helper for 
openSUSE:Factory checked in at 2015-09-08 17:42:54

Comparing /work/SRC/openSUSE:Factory/ghc-cabal-helper (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-cabal-helper.new (New)


Package is "ghc-cabal-helper"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-cabal-helper/ghc-cabal-helper.changes
2015-08-28 08:27:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-cabal-helper.new/ghc-cabal-helper.changes   
2015-09-08 17:47:23.0 +0200
@@ -1,0 +2,10 @@
+Sun Aug 30 10:13:08 UTC 2015 - mimi...@gmail.com
+
+- rework %install 
+
+---
+Fri Aug 28 14:15:54 UTC 2015 - mimi...@gmail.com
+
+- move cabal-helper-wrapper to %_libexecdir 
+
+---



Other differences:
--
++ ghc-cabal-helper.spec ++
--- /var/tmp/diff_new_pack.xUagR9/_old  2015-09-08 17:47:23.0 +0200
+++ /var/tmp/diff_new_pack.xUagR9/_new  2015-09-08 17:47:23.0 +0200
@@ -86,12 +86,11 @@
 %setup -q -n %{pkg_name}-%{version}
 
 %build
+%define cabal_configure_options --libexecdir=%{_libexecdir}
 %ghc_lib_build
 
 %install
 %ghc_lib_install
-mkdir %{buildroot}%{_prefix}/bin
-mv %{buildroot}%{_prefix}/libexec/cabal-helper-wrapper 
%{buildroot}%{_bindir}/cabal-helper-wrapper
 
 %check
 %if %{with tests}
@@ -107,7 +106,7 @@
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
-%{_bindir}/cabal-helper-wrapper
+%{_libexecdir}/cabal-helper-wrapper
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)




commit perl-App-Cmd for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-App-Cmd for openSUSE:Factory 
checked in at 2015-09-08 17:43:04

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


Package is "perl-App-Cmd"

Changes:

--- /work/SRC/openSUSE:Factory/perl-App-Cmd/perl-App-Cmd.changes
2015-04-15 16:24:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-App-Cmd.new/perl-App-Cmd.changes   
2015-09-08 17:47:31.0 +0200
@@ -1,0 +2,15 @@
+Fri Sep  4 09:09:21 UTC 2015 - co...@suse.com
+
+- updated to 0.328
+   see /usr/share/doc/packages/perl-App-Cmd/Changes
+
+  0.328 2015-09-03 20:37:50-04:00 America/New_York
+  - get command description from Pod by default (Jakob Voss)
+  - add a "--help" option to all commands by default (Jakob Voss)
+  - add "command_groups" to group commands in listing (Jakob Voss)
+  - fix the handling of "exit" in App::Cmd::Tester (Matthew Astley)
+  - add 'show_version_cmd' option to enable display of 'version'
+command in command list. (John Anderson)
+  - minor documentation improvements (Alberto Simões, rjbs)
+
+---

Old:

  App-Cmd-0.327.tar.gz

New:

  App-Cmd-0.328.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-App-Cmd.spec ++
--- /var/tmp/diff_new_pack.COwdAp/_old  2015-09-08 17:47:32.0 +0200
+++ /var/tmp/diff_new_pack.COwdAp/_new  2015-09-08 17:47:32.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-App-Cmd
-Version:0.327
+Version:0.328
 Release:0
 %define cpan_name App-Cmd
-Summary:write command line apps with less suffering
+Summary:Write Command Line Apps with Less Suffering
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/App-Cmd/
-Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -68,6 +69,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ App-Cmd-0.327.tar.gz -> App-Cmd-0.328.tar.gz ++
 2186 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 libqt5-qtct for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libqt5-qtct for openSUSE:Factory 
checked in at 2015-09-08 17:43:59

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


Package is "libqt5-qtct"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtct/libqt5-qtct.changes  2015-08-25 
08:51:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qtct.new/libqt5-qtct.changes 
2015-09-08 17:58:16.0 +0200
@@ -1,0 +2,11 @@
+Sun Sep  6 10:32:23 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.15 (changes since 0.13):
+  * Add option "Dialog buttons have icons".
+  * Add option "Menus have icons".
+  * Fix style and palette initialisation.
+  * Fix problem with qtcurve style.
+  * Update Russian, German, Dutch (Netherlands), Chinese (Taiwan),
+Czech translations.
+
+---

Old:

  qt5ct-0.13.tar.bz2

New:

  qt5ct-0.15.tar.bz2



Other differences:
--
++ libqt5-qtct.spec ++
--- /var/tmp/diff_new_pack.vmzj8N/_old  2015-09-08 17:58:17.0 +0200
+++ /var/tmp/diff_new_pack.vmzj8N/_new  2015-09-08 17:58:17.0 +0200
@@ -18,7 +18,7 @@
 
 %define _name   qt5ct
 Name:   libqt5-qtct
-Version:0.13
+Version:0.15
 Release:0
 Summary:Qt5 Configuration Tool
 License:BSD-2-Clause

++ qt5ct-0.13.tar.bz2 -> qt5ct-0.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qt5ct-0.13/ChangeLog new/qt5ct-0.15/ChangeLog
--- old/qt5ct-0.13/ChangeLog2015-08-22 17:58:53.0 +0200
+++ new/qt5ct-0.15/ChangeLog2015-09-05 21:35:18.0 +0200
@@ -77,3 +77,16 @@
 Version 0.13
 * added $XDG_DATA_HOME support
 * added Italian translation (Luigi Baldoni)
+
+Version 0.14
+* added option "Dialog buttons have icons"
+* added option "Menus have icons"
+* fixed style and palette initialization
+* updated Russian translation
+* updated German translation (Ettore Atalan)
+* updated Dutch (Netherlands) translation (Heimen Stoffels)
+* updated Chinese (Taiwan) translation (Jeff Huang)
+
+Version 0.15
+* fixed problem with qtcurve style
+* updated Czech translation (fri)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qt5ct-0.13/ChangeLog.svn new/qt5ct-0.15/ChangeLog.svn
--- old/qt5ct-0.13/ChangeLog.svn2015-08-22 17:58:53.0 +0200
+++ new/qt5ct-0.15/ChangeLog.svn2015-09-05 21:35:18.0 +0200
@@ -1,4 +1,83 @@
 
+r196 | trialuser02 | 2015-09-05 22:32:11 +0300 (Сб., 05 сент. 2015) | 1 line
+
+fixed changelog
+
+r195 | trialuser02 | 2015-09-05 22:29:34 +0300 (Сб., 05 сент. 2015) | 2 lines
+
+added comment
+
+
+r194 | trialuser02 | 2015-09-05 22:16:36 +0300 (Сб., 05 сент. 2015) | 1 line
+
+updated Czech translation (Fri)
+
+r193 | trialuser02 | 2015-09-05 22:15:19 +0300 (Сб., 05 сент. 2015) | 2 lines
+
+fixed qtcurve style support
+
+
+r192 | trialuser02 | 2015-09-04 14:02:04 +0300 (Пт., 04 сент. 2015) | 1 line
+
+version bump
+
+r190 | trialuser02 | 2015-09-02 00:42:51 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated changelog
+
+r189 | trialuser02 | 2015-09-02 00:38:46 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated .ts files
+
+r188 | trialuser02 | 2015-09-02 00:38:11 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated Chinese (Taiwan) translation (Jeff Huang)
+
+r187 | trialuser02 | 2015-09-02 00:36:10 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated Dutch (Netherlands) translation (Heimen Stoffels)
+
+r186 | trialuser02 | 2015-09-02 00:33:29 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated German translation (Ettore Atalan)
+
+r185 | trialuser02 | 2015-09-02 00:28:46 +0300 (Ср., 02 сент. 2015) | 1 line
+
+updated Russian translation
+
+r184 | trialuser02 | 2015-09-02 00:25:20 +0300 (Ср., 02 сент. 2015) | 2 

commit xiphos for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package xiphos for openSUSE:Factory checked 
in at 2015-09-08 17:44:09

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


Package is "xiphos"

Changes:

--- /work/SRC/openSUSE:Factory/xiphos/xiphos.changes2015-05-16 
19:01:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.xiphos.new/xiphos.changes   2015-09-08 
17:58:36.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep  5 09:15:30 UTC 2015 - kkir...@opensuse.org
+
+- update to 4.0.4
+  + Implemented dynamic allocation enhancement to replace survivability fix.
+  + Updated language abbreviations to eliminate unknowns.
+  + Fixed module installation messages so they are not lost.
+  + Fixed abbrev support, to show abbrevs in all non-essential contexts.
+  + Fixed maximization restoral (mostly gtk3; partial for gtk2).
+- release notes for 4.0.3:
+  + Fixed a small hard limit on the number of language groups that
+can be supported.
+
+---

Old:

  xiphos-4.0.2.tar.gz

New:

  xiphos-4.0.4.tar.gz



Other differences:
--
++ xiphos.spec ++
--- /var/tmp/diff_new_pack.3ynpWK/_old  2015-09-08 17:58:51.0 +0200
+++ /var/tmp/diff_new_pack.3ynpWK/_new  2015-09-08 17:58:51.0 +0200
@@ -21,7 +21,7 @@
 %endif
 
 Name:   xiphos
-Version:4.0.2
+Version:4.0.4
 Release:0
 Summary:GNOME-based Bible research tool
 License:GPL-2.0

++ xiphos-4.0.2.tar.gz -> xiphos-4.0.4.tar.gz ++
/work/SRC/openSUSE:Factory/xiphos/xiphos-4.0.2.tar.gz 
/work/SRC/openSUSE:Factory/.xiphos.new/xiphos-4.0.4.tar.gz differ: char 5, line 
1




commit rubygem-puppet for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-puppet for openSUSE:Factory 
checked in at 2015-09-08 17:44:07

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


Package is "rubygem-puppet"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-puppet/rubygem-puppet.changes
2015-09-03 18:12:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-puppet.new/rubygem-puppet.changes   
2015-09-08 17:58:29.0 +0200
@@ -1,0 +2,8 @@
+Thu Sep  3 12:26:54 UTC 2015 - robert.munte...@gmail.com
+
+- Update to 3.8.2
+  * 
https://docs.puppetlabs.com/puppet/3.8/reference/release_notes.html#puppet-382
+  * 
https://docs.puppetlabs.com/puppet/3.8/reference/release_notes.html#puppet-381
+  * 
https://docs.puppetlabs.com/puppet/3.8/reference/release_notes.html#puppet-380 
+
+---

Old:

  puppet-3.7.5.gem

New:

  puppet-3.8.2.gem



Other differences:
--
++ rubygem-puppet.spec ++
--- /var/tmp/diff_new_pack.2cXAt5/_old  2015-09-08 17:58:35.0 +0200
+++ /var/tmp/diff_new_pack.2cXAt5/_new  2015-09-08 17:58:35.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-puppet
-Version:3.7.5
+Version:3.8.2
 Release:0
 %define mod_name puppet
 %define mod_full_name %{mod_name}-%{version}
@@ -214,7 +214,7 @@
 %{?systemd_requires}
 %endif
 
-# Requires:  rubygem-puppet = 3.7.5
+# Requires:  rubygem-puppet = 3.8.2
 %description master
 Puppet lets you centrally manage every important aspect of your system
 using a cross-platform specification language that manages all the
@@ -298,7 +298,7 @@
 Provides:puppet-vim = %{version}-%{release}
 Obsoletes:   puppet-vim < %{version}-%{release}
 
-# Requires:  rubygem-puppet = 3.7.5
+# Requires:  rubygem-puppet = 3.8.2
 %description vim
 Vim ftdetect and syntax files for Puppet manifests
 
@@ -321,7 +321,7 @@
 Supplements: packageand(emacs:%{name})
 Provides:puppet-emacs = %{version}-%{release}
 
-# Requires:  rubygem-puppet = 3.7.5
+# Requires:  rubygem-puppet = 3.8.2
 %description emacs
 Emacs syntax files for Puppet manifests
 

++ puppet-3.7.5.gem -> puppet-3.8.2.gem ++
 18560 lines of diff (skipped)




commit glucat for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package glucat for openSUSE:Factory checked 
in at 2015-09-08 17:43:48

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


Package is "glucat"

Changes:

--- /work/SRC/openSUSE:Factory/glucat/glucat.changes2014-12-29 
00:30:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.glucat.new/glucat.changes   2015-09-08 
17:57:57.0 +0200
@@ -1,0 +2,11 @@
+Sat Sep  5 11:30:47 UTC 2015 - badshah...@gmail.com
+
+- Update to version 0.7.5:
+  + The use of Autotools in configuring, building and installing
+GluCat and PyClical has been simplified and improved.
+  + Deprecated configuation options have been dropped.
+  + The default for --with-random is now std.
+  + The default for --with-map is now stdunordered.
+- Remove glucat-fix-32bit-build.patch: fixed upstream.
+
+---

Old:

  glucat-0.7.4.tar.gz
  glucat-fix-32bit-build.patch

New:

  glucat-0.7.5.tar.gz



Other differences:
--
++ glucat.spec ++
--- /var/tmp/diff_new_pack.jsnVgT/_old  2015-09-08 17:58:12.0 +0200
+++ /var/tmp/diff_new_pack.jsnVgT/_new  2015-09-08 17:58:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package glucat
 #
-# 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,13 @@
 
 
 Name:   glucat
-Version:0.7.4
+Version:0.7.5
 Release:0
 Summary:Library of C++ templates implementing universal Clifford 
algebras
 License:LGPL-3.0
 Group:  Development/Libraries/C and C++
 Url:http://glucat.sourceforge.net/
 Source: 
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
-Patch0: glucat-fix-32bit-build.patch
 BuildRequires:  boost-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python-Cython
@@ -69,9 +68,6 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%ifarch i586 ppc
-%patch0 -p1
-%endif
 
 %build
 %configure --prefix=%{buildroot}%{_prefix}

++ glucat-0.7.4.tar.gz -> glucat-0.7.5.tar.gz ++
 116343 lines of diff (skipped)




commit qmmp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package qmmp for openSUSE:Factory checked in 
at 2015-09-08 17:44:41

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


Package is "qmmp"

Changes:

--- /work/SRC/openSUSE:Factory/qmmp/qmmp.changes2015-06-16 
14:06:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.qmmp.new/qmmp.changes   2015-09-08 
18:04:46.0 +0200
@@ -1,0 +2,82 @@
+Sun Sep  6 10:32:23 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.9.1:
+  * Fix 16-bit converter.
+  * Improve Russian translation.
+- Rename & rebase qmmp-0.6.1-default_pulse.patch to
+  qmmp-default-pulse.patch.
+- Build with ffmpeg support outside PMBS as well.
+- Do not force UNIX permissions in %files globally.
+- Obsolete qmmp-plugin-pack-simple-ui as it's merged with
+  libqmmp0-plugins.
+
+---
+Sat Sep  5 07:45:00 UTC 2015 - quarcks...@gmail.com
+
+- Update to 0.9.0:
+  * added "Save List" action to the tab menu;
+  * added *.med files support;
+  * added 9 channels support to equalizer;
+  * added album artist tag support;
+  * added asynchronous sorting;
+  * added audio-channel sequence converter;
+  * added default hotkey for the "Rename List" action;
+  * added feature to change user agent;
+  * added feature to change window title;
+  * added feature to disable fadeout in the gme plugin;
+  * added feature to disable plugins without qmmp.pri modification (qmake only)
+  * added feature to exclude cue data files;
+  * added feature to hide song length;
+  * added feature to hide track length;
+  * added feature to move files;
+  * added feature to remember playlist scroll position;
+  * added feature to reset fonts;
+  * added feature to reset shortcuts;
+  * added feature to restore default shortcuts;
+  * added multiple column support;
+  * added s3m, stm and xm extensions to desktop files;
+  * added Simple User Interface (QSUI) with the following changes:
+  * added sorting by album artist;
+  * added sorting by file modification date;
+  * changed default playlist separator;
+  * changed default skin to Glare;
+  * fixed cmake support;
+  * fixed config directory path;
+  * fixed crash when quitting while playlist is being populated;
+  * fixed details dialog form;
+  * fixed documentation;
+  * fixed home page;
+  * fixed main window activation;
+  * fixed minimizing throw taskbar under windows;
+  * fixed opus plugin;
+  * fixed some skins parsing;
+  * fixed some skins support;
+  * fixed support of keyboards with single play/pause button;
+  * fixed text scroller colors;
+  * fixed typos;
+  * improved ape tags support in the mpeg plugin;
+  * improved cmake build scripts;
+  * improved fileops plugin:
+  * improved global hotkey settings;
+  * improved playlist changes notification;
+  * improved status bar;
+  * improved title formatter;
+  * increased details dialog size;
+  * optimized playlist container;
+  * optimized sample rate converter;
+  * reduced cpu usage;
+  * reworked settings dialog;
+  * updated Czech translation;
+  * updated French translation;
+  * updated German translation;
+  * updated Greek translation;
+  * updated Hebrew translation;
+  * updated Japanese translation;
+  * updated Japanese translation;
+  * updated Polish translation;
+  * updated Portuguese translation;
+  * updated Russian translation;
+  * updated Ukrainian translation;
+  * using DirectSound output as default under Windows.
+
+---

Old:

  qmmp-0.6.1-default_pulse.patch
  qmmp-0.8.5.tar.bz2

New:

  qmmp-0.9.1.tar.bz2
  qmmp-default-pulse.patch



Other differences:
--
++ qmmp.spec ++
--- /var/tmp/diff_new_pack.Rd4OOq/_old  2015-09-08 18:04:50.0 +0200
+++ /var/tmp/diff_new_pack.Rd4OOq/_new  2015-09-08 18:04:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qmmp
 #
-# 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
@@ -15,24 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+%define sover   0
 %bcond_with ffmpeg
 %bcond_with mad
 %bcond_with faad
-
-%define soname 0
-
 Name:   qmmp
-Version:0.8.5
+Version:0.9.1
 Release:0
 Summary:XMMS-like audio player
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Players
 Url:http://qmmp.ylsoftware.com/
 Source0:

commit midori for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package midori for openSUSE:Factory checked 
in at 2015-09-08 17:44:42

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


Package is "midori"

Changes:

--- /work/SRC/openSUSE:Factory/midori/midori.changes2015-04-30 
11:50:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.midori.new/midori.changes   2015-09-08 
18:04:52.0 +0200
@@ -1,0 +2,63 @@
+Fri Sep  4 08:01:18 UTC 2015 - mailaen...@opensuse.org
+
+- Add switches for Pantheon/Elementary
+
+---
+Sun Aug 30 20:34:53 UTC 2015 - lazy.k...@opensuse.org
+
+- Update to 0.5.11.
+  * Add fake theme for built-in icons.
+  * Don't truncate long speed dial titles if there's room to
+display them.
+  * Fix warnings for -Wformat-security.
+  * Ensure vala knows the prototypes of functions it calls, fixing
+pointer truncation in tests.
+  * Add unit test to check appmenu/menubar visibility.
+  * Fix last known GTK2 entry placeholder text bugs.
+  * Make sure that only one of appmenu and menubar are visible
+*initially* as well as when changed.
+  * Move adblock icons to hicolor.
+  * Limit bookmarks panel callbacks to the lifetime of the panel to
+fix a crash.
+  * Fix fallout (broken bookmarks and history panel search) from
+tweaks to GTK2 entry placeholder.
+  * Fix property binding to ensure that exactly one of appmenu
+button and menubar is always visible.
+  * Skip open-with codepath with abp links, they are internal.
+  * Use find_file to locate execinfo.h.
+  * Fix middle/ctrl/normal clicking bookmarks (not folders) in the
+bookmarkbar.
+  * Add copright header to sanitize_bar.sh.
+  * Adblock fixup: Escape . in filter with \.
+  * Don't shadow variable uri in midori_browser_save_uri.
+  * Switch Adblock icons to 24px color.
+  * Always include app menu in toolbar.
+  * Fix various mis[sing ]annotations and style issues in GIR.
+  * Compile typelib from gir.
+  * Fix assert when resetting webapp state after inactivity reset.
+  * Clean up handling of double-valued db column in Tabby.
+  * Add a comment to explain MidoriBrowser popup callback.
+  * Fix warnings printed when right-clicking resize grip between
+location and search entries.
+  * Fix menubar warning caused by direct cast instead of `as`.
+  * Helper script for setting up bzr with some usefull plugins and
+settings.
+  * Stop using Gtk.Entry.max_width_chars.
+  * Avoid deprecated SoupServer API with libsoup 2.48.
+  * Use unowned in foreach loops in Midori.Window.
+  * Use unowned in foreach loops in Midori.Completion.
+  * Use unowned with Adblock.Subscription and Element in foreach
+loops.
+  * Use unowned strings in foreach loops.
+  * Enable openWith in app mode and make it work with view-new.
+  * Implement Midori.Window class with toolbar/ headerbar.
+  * Drop support for libsoup-gnome-2.4 < 2.37.1.
+  * Make search icons for engines work correctly.
+  * Move to WebKit2 4.0 which broke ABI.
+  * Port to zeitgeist-2.0.
+  * Avoid deprecated GtkDialog API with GTK+2 >= 2.22.
+  * Title case for "Export Certificate" button.
+  * Fix incorrect type of MAX(sorting) in Tabby.
+- Disable zeitgeist support.
+
+---

Old:

  midori_0.5.10_all_.tar.bz2

New:

  midori_0.5.11_all_.tar.bz2



Other differences:
--
++ midori.spec ++
--- /var/tmp/diff_new_pack.IcTrKb/_old  2015-09-08 18:04:56.0 +0200
+++ /var/tmp/diff_new_pack.IcTrKb/_new  2015-09-08 18:04:56.0 +0200
@@ -18,7 +18,7 @@
 
 %define major   1
 Name:   midori
-Version:0.5.10
+Version:0.5.11
 Release:0
 Summary:Lightweight Webkit-based Web Browser
 License:LGPL-2.1+
@@ -28,6 +28,16 @@
 Source1:%{name}.1
 Source99:   baselibs.conf
 Patch0: midori-fix-plugins.diff
+%if 0%{?with_granite}
+BuildRequires:  pkgconfig(granite)
+BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(javascriptcoregtk-3.0)
+BuildRequires:  pkgconfig(webkitgtk-3.0)
+%else
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(javascriptcoregtk-1.0)
+BuildRequires:  pkgconfig(webkit-1.0)
+%endif
 BuildRequires:  cmake
 BuildRequires:  docutils
 BuildRequires:  fdupes
@@ -39,9 +49,7 @@
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gmodule-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
-BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(gtk-doc)
-BuildRequires:  pkgconfig(javascriptcoregtk-1.0)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libsoup-2.4)
 BuildRequires:  pkgconfig(libxml-2.0)

commit java-1_9_0-openjdk for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package java-1_9_0-openjdk for 
openSUSE:Factory checked in at 2015-09-08 17:44:30

Comparing /work/SRC/openSUSE:Factory/java-1_9_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new (New)


Package is "java-1_9_0-openjdk"

Changes:

--- /work/SRC/openSUSE:Factory/java-1_9_0-openjdk/java-1_9_0-openjdk.changes
2015-08-28 08:27:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/java-1_9_0-openjdk.changes   
2015-09-08 18:02:06.0 +0200
@@ -1,0 +2,17 @@
+Fri Sep  4 13:41:17 UTC 2015 - fst...@suse.com
+
+- Upgrade to upstream tag jdk9-b80
+- Modified patch:
+  * java-atk-wrapper-security.patch
+- Rediff to the new context
+
+---
+Wed Sep  2 09:27:54 UTC 2015 - fst...@suse.com
+
+- Upgrade to upstream tag jdk9-b79
+- Update the config.guess and config.sub to newer versions
+- Added patch:
+  * aarch64-fix.patch
+- Fix an undefined symbol in aarch64 build
+
+---

Old:

  0940ce86c614.tar.bz2
  182bb7accc52.tar.bz2
  20dc06b04fe5.tar.bz2
  5b1899c9822d.tar.bz2
  6f634e84387e.tar.bz2
  7fd155b7041c.tar.bz2
  8c40d4143ee1.tar.bz2
  ac1748bab074.tar.bz2

New:

  4947810137ae.tar.bz2
  61b401b23fc2.tar.bz2
  821a0373ef2d.tar.bz2
  8e8377739c06.tar.bz2
  aarch64-fix.patch
  c5671e662392.tar.bz2
  e9940bf1c8dd.tar.bz2
  f464f9b2fb11.tar.bz2
  f7c5ae2933c0.tar.bz2



Other differences:
--
++ java-1_9_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.JqTwSZ/_old  2015-09-08 18:04:40.0 +0200
+++ /var/tmp/diff_new_pack.JqTwSZ/_new  2015-09-08 18:04:40.0 +0200
@@ -33,17 +33,17 @@
 %global minorver9
 %global microver0
 %global updatever   0
-%global buildverb78
+%global buildverb80
 %global root_projectjdk9
 %global root_repository jdk9
-%global root_revision   8c40d4143ee1
-%global corba_revision  182bb7accc52
-%global hotspot_revision 20dc06b04fe5
-%global jaxp_revision   5b1899c9822d
-%global jaxws_revision  ac1748bab074
-%global jdk_revision0940ce86c614
-%global langtools_revision 7fd155b7041c
-%global nashorn_revision 6f634e84387e
+%global root_revision   f7c5ae2933c0
+%global corba_revision  821a0373ef2d
+%global hotspot_revision 8e8377739c06
+%global jaxp_revision   f464f9b2fb11
+%global jaxws_revision  e9940bf1c8dd
+%global jdk_revision4947810137ae
+%global langtools_revision c5671e662392
+%global nashorn_revision 61b401b23fc2
 %global icedtea_sound_version 1.0.1
 # priority must be 6 digits in total
 %global priority1905
@@ -198,6 +198,8 @@
 Patch4: PStack-808293.patch
 # Allow multiple initialization of PKCS11 libraries
 Patch5: multiple-pkcs11-library-init.patch
+# Fix: undefined symbol in aarch64 build
+Patch6: aarch64-fix.patch
 # From icedtea: Increase default memory limits
 Patch10:memory-limits.patch
 # Fix use of unintialized memory in adlc parser
@@ -473,6 +475,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 %patch10 -p1
 %patch12 -p1
 %patch13 -p1

++ 0940ce86c614.tar.bz2 -> 4947810137ae.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/0940ce86c614.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/4947810137ae.tar.bz2 differ: 
char 11, line 1

++ 0940ce86c614.tar.bz2 -> 61b401b23fc2.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/0940ce86c614.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/61b401b23fc2.tar.bz2 differ: 
char 11, line 1

++ 0940ce86c614.tar.bz2 -> 821a0373ef2d.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/0940ce86c614.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/821a0373ef2d.tar.bz2 differ: 
char 11, line 1

++ 0940ce86c614.tar.bz2 -> 8e8377739c06.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-1_9_0-openjdk/0940ce86c614.tar.bz2 
/work/SRC/openSUSE:Factory/.java-1_9_0-openjdk.new/8e8377739c06.tar.bz2 differ: 
char 11, line 1

++ aarch64-fix.patch ++
# HG changeset patch
# User enevill
# Date 1439985542 0
#  Wed Aug 19 11:59:02 2015 +
# Node ID 10cbaebfcf3dccdf11fa73f5bdf954e07fb8e596
# Parent  73e6afceb02eefb23b6f6590de7a0974a98e6734
8133935: aarch64: fails to build from source
Summary: add include of oops/oop.inline.hpp to fix build
Reviewed-by: coleenp

diff --git jdk9/hotspot/src/cpu/aarch64/vm/macroAssembler_aarch64.cpp 
jdk9/hotspot/src/cpu/aarch64/vm/macroAssembler_aarch64.cpp
--- jdk9/hotspot/src/cpu/aarch64/vm/macroAssembler_aarch64.cpp
+++ jdk9/hotspot/src/cpu/aarch64/vm/macroAssembler_aarch64.cpp
@@ -34,6 +34,7 @@
 #include "memory/resourceArea.hpp"
 #include 

commit python3-pyudev for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python3-pyudev for openSUSE:Factory 
checked in at 2015-09-08 17:44:45

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


Package is "python3-pyudev"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyudev/python3-pyudev.changes
2013-06-21 19:08:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pyudev.new/python3-pyudev.changes   
2015-09-08 18:05:06.0 +0200
@@ -1,0 +2,24 @@
+Mon Sep  7 09:13:23 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.17
+  * #52: Remove global libudev object
+  * #57: Really start the monitor on :meth:`pyudev.Monitor.poll()`
+  * #60: Do not use :meth:`select.select` to avoid hitting its file descriptor
+limit
+  * #58: Force non  *blocking IO in :class:`pyudev.Monitor` to avoid blocking 
on
+receiving the device
+  * #63: Set proper flags on pipe fds.
+  * #65: Handle irregular polling events properly.
+  * #50: Add :class:`pyudev.wx.MonitorObserver` and deprecate
+:class:`pyudev.wx.WxUDevMonitorObserver`
+  * #50: Add :class:`pyudev.glib.MonitorObserver` and deprecate
+:class:`pyudev.glib.GUDevMonitorObserver`
+  * #50: Add :class:`pyudev.pyqt4.MonitorObserver` and deprecate
+  :class:`pyudev.pyqt4.QUDevMonitorObserver`
+  * #50: Add :class:`pyudev.pyside.MonitorObserver` and deprecate
+:class:`pyudev.pyside.QUDevMonitorObserver`
+  * Add a wrapper function to retry interruptible system calls.
+- Use python3-setuptools instead of python3-distribute
+- Remove python3-2to3 build dependency
+
+---

Old:

  pyudev-0.16.1.tar.gz

New:

  pyudev-0.17.tar.gz



Other differences:
--
++ python3-pyudev.spec ++
--- /var/tmp/diff_new_pack.gwJLlE/_old  2015-09-08 18:05:09.0 +0200
+++ /var/tmp/diff_new_pack.gwJLlE/_new  2015-09-08 18:05:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pyudev
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,18 @@
 
 
 Name:   python3-pyudev
-Version:0.16.1
+Version:0.17
 Release:0
 Summary:Udev bindings for Python
 License:LGPL-2.1+
 Group:  Development/Libraries/Python
 Url:http://pyudev.readthedocs.org/
-Source0:
http://pypi.python.org/packages/source/p/pyudev/pyudev-%{version}.tar.gz
+Source0:
https://pypi.python.org/packages/source/p/pyudev/pyudev-%{version}.tar.gz
 BuildRequires:  libudev-devel
-BuildRequires:  python3-2to3
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-devel
-BuildRequires:  python3-distribute
+BuildRequires:  python3-setuptools
 BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A Python binding to libudev, the hardware management library and service found
@@ -48,6 +46,8 @@
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+# Remove the tests; avoid further conflicts
+rm -rf %{buildroot}%{python3_sitelib}/tests
 
 %files
 %defattr(-,root,root,-)

++ pyudev-0.16.1.tar.gz -> pyudev-0.17.tar.gz ++
 6891 lines of diff (skipped)




commit gcin for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package gcin for openSUSE:Factory checked in 
at 2015-09-08 17:44:48

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


Package is "gcin"

Changes:

--- /work/SRC/openSUSE:Factory/gcin/gcin.changes2015-06-01 
09:52:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.gcin.new/gcin.changes   2015-09-08 
18:05:13.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 08:11:22 UTC 2015 - g...@suse.com
+
+- Add libappindicator3-devel to BuildRequires to enable appindicator
+  support for Plasma 5
+
+---



Other differences:
--
++ gcin.spec ++
--- /var/tmp/diff_new_pack.yhA1Mv/_old  2015-09-08 18:05:23.0 +0200
+++ /var/tmp/diff_new_pack.yhA1Mv/_new  2015-09-08 18:05:23.0 +0200
@@ -57,6 +57,13 @@
 BuildRequires:  libQt5PlatformSupport-devel-static
 BuildRequires:  libqt5-qtbase-devel
 %endif
+%if 0%{?suse_version} > 1315
+BuildRequires:  libappindicator3-devel
+%else
+%if 0%{?suse_version} == 1315 && 0%{?is_opensuse}
+BuildRequires:  libappindicator3-devel
+%endif
+%endif
 Requires:   %{name}-branding
 Requires:   %{name}-gtk2-immodule = %{version}
 Requires:   %{name}-qt4-immodule = %{version}




commit python3-Pillow for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package python3-Pillow for openSUSE:Factory 
checked in at 2015-09-08 17:44:59

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


Package is "python3-Pillow"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Pillow/python3-Pillow.changes
2015-08-05 06:49:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-Pillow.new/python3-Pillow.changes   
2015-09-08 18:05:38.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep  5 07:09:14 UTC 2015 - badshah...@gmail.com
+
+- For openSUSE:42 do not use %exclude on packages which are not
+  being packaged elsewhere anyway; fixes build failures caused
+  due to unpackaged debuginfo files generated otherwise.
+
+---



Other differences:
--
++ python3-Pillow.spec ++
--- /var/tmp/diff_new_pack.VpOmRc/_old  2015-09-08 18:05:56.0 +0200
+++ /var/tmp/diff_new_pack.VpOmRc/_new  2015-09-08 18:05:56.0 +0200
@@ -106,9 +106,11 @@
 %{_bindir}/pilprint-%{py3_ver}
 %{python3_sitearch}/PIL
 %{python3_sitearch}/Pillow-%{version}-py%{py3_ver}.egg-info
+%if 0%{?suse_version} != 1315
 %exclude %{python3_sitearch}/PIL/ImageTk*
 %exclude %{python3_sitearch}/PIL/_imagingtk*
 %exclude %{python3_sitearch}/PIL/__pycache__/ImageTk.*.pyc
+%endif
 %if 0%{?suse_version} > 1210
 %ghost %{_sysconfdir}/alternatives/pilconvert
 %ghost %{_sysconfdir}/alternatives/pildriver




commit qpid-cpp for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package qpid-cpp for openSUSE:Factory 
checked in at 2015-09-08 17:44:52

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


Package is "qpid-cpp"

Changes:

--- /work/SRC/openSUSE:Factory/qpid-cpp/perl-qpid.changes   2015-04-02 
16:02:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.qpid-cpp.new/perl-qpid.changes  2015-09-08 
18:05:25.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 31 08:58:33 UTC 2015 - fst...@suse.com
+
+- Update to upstream 0.34
+
+---
--- /work/SRC/openSUSE:Factory/qpid-cpp/qpid-cpp.changes2015-04-02 
16:02:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.qpid-cpp.new/qpid-cpp.changes   2015-09-08 
18:05:25.0 +0200
@@ -1,0 +2,53 @@
+Mon Aug 31 08:53:46 UTC 2015 - fst...@suse.com
+
+- Update to upstream 0.34
+  * New features and improvements
+- QPID-6492 - When AMQP 1.0 link attach triggers an ACL error,
+  the link should be refused
+- QPID-6592 - [amqp1.0] Add identifying information to the
+  connection properties advertised to the client
+  * Bugs fixed
+- QPID-6256 - Improved control over AMQP versions tried
+- QPID-6368 - Coverity 1262251 - double free in ~PersistableQueue
+- QPID-6392 - [C++ Broker] [AMQP 1.0] the broker didnt respond
+  to a link detach request
+- QPID-6397 - [C++ broker] segfault when processing QMF method
+  during periodic processing
+- QPID-6399 - Windows run_test.ps1 script needs revamp to match
+  run_test
+- QPID-6409 - Taking address of a 0-length vector throws
+  exception
+- QPID-6463 - WinSDK script fails - Proton components have moved
+- QPID-6470 - FieldValue::getFloatingPointValue() converts endian
+  each time it is called
+- QPID-6484 - AccessViolationException when creating queues
+- QPID-6493 - cmake install (TARGET ...) component syntax is
+  incorrect in the src/CMakeLists.txt
+- QPID-6511 - [C++ Broker, clients] AMQP 0-10 windows clients
+  can not connect to --no-auth broker
+- QPID-6521 - [AMQP 1.0] messages received pre-settled are never
+  settled locally causing memory build up in client
+- QPID-6524 - [C++ broker]: Fix for QPID-5107 incomplete for
+  queues
+- QPID-6526 - [AMQP 1.0]: race condition in creating
+  senders/receivers
+- QPID-6529 - [C++ Client] Fails to compile with Proton 0.10
+- QPID-6532 - make sasl service name configurable
+- QPID-6548 - SYSV init scripts do not work properly with
+  SSL-only broker.
+- QPID-6549 - service qpidd status returns 1 - hidden error is
+  "ConnectionError: connection-forced: Connection must be
+  encrypted.(320)"
+- QPID-6551 - [C++ broker]: linearstore raising
+  JERR_LFCR_SEQNUMNOTFOUND after sending many DTX transactions
+- QPID-6559 - NullSaslClient only support ANONYMOUS
+- QPID-6563 - [amqp1.0] broker does not clean up closed sessions
+  or links
+- QPID-6568 - [amqp1.0] bump the minimum required proton version
+  to 0.7
+- QPID-6602 - [AMQP 1.0] prefetch is not always accurate
+- Added patch:
+  * qpid-boost-test-message.patch
+- Fix build with boost 1.59
+
+---

Old:

  qpid-cpp-0.32.tar.gz

New:

  qpid-boost-test-message.patch
  qpid-cpp-0.34.tar.gz



Other differences:
--
++ perl-qpid.spec ++
--- /var/tmp/diff_new_pack.65T317/_old  2015-09-08 18:05:34.0 +0200
+++ /var/tmp/diff_new_pack.65T317/_new  2015-09-08 18:05:34.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   perl-qpid
-Version:0.32
+Version:0.34
 Release:0
 Summary:Perl bindings for the Qpid messaging framework
 License:Apache-2.0
 Group:  Development/Libraries/Perl
 Url:http://qpid.apache.org/
-Source0:
http://www.apache.org/dist/qpid/%{version}/qpid-cpp-%{version}.tar.gz
+Source0:
http://www.apache.org/dist/qpid/cpp/%{version}/qpid-cpp-%{version}.tar.gz
 BuildRequires:  gcc-c++
 BuildRequires:  qpid-cpp-client-devel = %{version}
 BuildRequires:  swig >= 2.0.9

++ qpid-cpp.spec ++
--- /var/tmp/diff_new_pack.65T317/_old  2015-09-08 18:05:34.0 +0200
+++ /var/tmp/diff_new_pack.65T317/_new  2015-09-08 18:05:34.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   qpid-cpp
-Version:0.32
+Version:0.34
 Release:0
 Summary:Libraries for Qpid C++ client applications
 License:Apache-2.0
 Group:  Productivity/Networking/Other
 Url:http://qpid.apache.org
-Source0:

commit libirman for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libirman for openSUSE:Factory 
checked in at 2015-09-08 17:44:50

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


Package is "libirman"

Changes:

--- /work/SRC/openSUSE:Factory/libirman/libirman.changes2015-08-21 
07:40:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.libirman.new/libirman.changes   2015-09-08 
18:05:24.0 +0200
@@ -1,0 +2,12 @@
+Mon Sep  7 08:36:28 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.4.6
+  * Refreshing automake files and installation
+  * Add a pkgconfig file
+- Remove obsolete dependencies
+  * autoconf
+  * automake
+  * libtool
+- Add a dependency to pkg-config
+
+---

Old:

  libirman-0.4.5.tar.bz2

New:

  libirman-0.4.6.tar.bz2



Other differences:
--
++ libirman.spec ++
--- /var/tmp/diff_new_pack.DXt3ND/_old  2015-09-08 18:05:25.0 +0200
+++ /var/tmp/diff_new_pack.DXt3ND/_new  2015-09-08 18:05:25.0 +0200
@@ -18,16 +18,14 @@
 
 %define lib_name %{name}0
 Name:   libirman
-Version:0.4.5
+Version:0.4.6
 Release:0
 Summary:Library for irman access
 License:GPL-2.0+
 Group:  System/Libraries
 Url:http://www.lirc.org
 Source0:
http://sourceforge.net/projects/lirc/files/libirman/%{version}/%{name}-%{version}.tar.bz2
-BuildRequires:  autoconf
-BuildRequires:  automake
-BuildRequires:  libtool
+BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -60,7 +58,6 @@
 %setup -q
 
 %build
-autoreconf -fiv
 %configure \
   --disable-static
 make %{?_smp_mflags}
@@ -68,6 +65,7 @@
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
 find %{buildroot} -type f -name "*.la" -delete -print
+rm -rf %{buildroot}%{_datadir}
 
 %post -n %{lib_name} -p /sbin/ldconfig
 
@@ -87,6 +85,7 @@
 %doc COPYING COPYING.lib NEWS README
 %defattr(-,root,root,-)
 %{_libdir}/*.so
+%{_libdir}/pkgconfig/%{name}.pc
 %{_includedir}/*.h
 
 %changelog

++ libirman-0.4.5.tar.bz2 -> libirman-0.4.6.tar.bz2 ++
 68071 lines of diff (skipped)




commit libisds for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package libisds for openSUSE:Factory checked 
in at 2015-09-08 17:44:35

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


Package is "libisds"

Changes:

--- /work/SRC/openSUSE:Factory/libisds/libisds.changes  2015-01-14 
11:45:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.libisds.new/libisds.changes 2015-09-08 
18:04:42.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep  7 08:19:41 UTC 2015 - tchva...@suse.com
+
+- Version bump to 0.10.1:
+  * Fix expired certificates so the testsuite pass again
+
+---

Old:

  libisds-0.10.tar.xz

New:

  libisds-0.10.1.tar.xz



Other differences:
--
++ libisds.spec ++
--- /var/tmp/diff_new_pack.Jrhddx/_old  2015-09-08 18:04:44.0 +0200
+++ /var/tmp/diff_new_pack.Jrhddx/_new  2015-09-08 18:04:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libisds
 #
-# 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
@@ -18,7 +18,7 @@
 
 %define libname %{name}5
 Name:   libisds
-Version:0.10
+Version:0.10.1
 Release:0
 Summary:Library for accessing the Czech Data Boxes
 License:LGPL-3.0+
@@ -30,9 +30,9 @@
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(expat) >= 2.0.0
 BuildRequires:  pkgconfig(gnutls) >= 2.12.0
+BuildRequires:  pkgconfig(libcrypto)
 BuildRequires:  pkgconfig(libcurl)
 BuildRequires:  pkgconfig(libxml-2.0)
-BuildRequires:  pkgconfig(libcrypto)
 Requires:   gpg2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ libisds-0.10.tar.xz -> libisds-0.10.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libisds-0.10/ChangeLog new/libisds-0.10.1/ChangeLog
--- old/libisds-0.10/ChangeLog  2015-01-11 11:38:03.0 +0100
+++ new/libisds-0.10.1/ChangeLog2015-09-06 10:17:12.0 +0200
@@ -1,10 +1,36 @@
-commit 41104b28b0154de6d93957af63e1b88fb2da0ec4 (HEAD, refs/heads/master)
+commit f41a9ae065cb9764a8b12fe56a97d03b393e0d1a (HEAD -> 
refs/heads/v0.10-stable)
+Author: Petr Písař 
+Date:   Sun Sep 6 10:03:16 2015 +0200
+
+Increase version to 0.10.1
+
+commit af3b67d9f26ee0307a429fab8e2cbf197169aa99
+Author: Petr Písař 
+Date:   Sat Sep 5 18:07:24 2015 +0200
+
+Regenerate certificates with longer expiration time
+
+Certificates in server/tls directory are used when running simline tests.
+The certificates expired at the end of August 2015, therefore
+certificate_user_password_authentication test unit failed.
+
+This fixes the tests by providing new certificates that are valid for next
+50 years.
+
+In the future, we will probably generate the certificates on the fly. This 
is
+only a hotfix.
+
+The new certificates have reversed order of fields in the distinguished 
names
+(because GnuTLS' certtool does so and I'm lazy to generate them again).
+Therefore the distinguished name of the client was adjusted in the test.
+
+commit 41104b28b0154de6d93957af63e1b88fb2da0ec4 (tag: refs/tags/v0.10)
 Author: Petr Písař 
 Date:   Sun Jan 11 11:28:04 2015 +0100
 
 Fix a typo in a comment
 
-commit e58c7ce5b9e6dfa2b648780b1912671a4d2a4c94 
(refs/remotes/repo.or.cz/master)
+commit e58c7ce5b9e6dfa2b648780b1912671a4d2a4c94
 Author: Petr Písař 
 Date:   Sat Jan 10 21:56:30 2015 +0100
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libisds-0.10/NEWS new/libisds-0.10.1/NEWS
--- old/libisds-0.10/NEWS   2015-01-10 16:15:09.0 +0100
+++ new/libisds-0.10.1/NEWS 2015-09-06 10:07:25.0 +0200
@@ -1,3 +1,12 @@
+Version 0.10.1
+==
+
+• This release is fully compatible with previous one. There are no chaneges in
+the code. Only tests were updated.
+
+• Pregenerated certificates used for tests expired causing a test unit to
+fail. This release updates the certificates.
+
 Version 0.10
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libisds-0.10/TODO new/libisds-0.10.1/TODO
--- old/libisds-0.10/TODO   2015-01-10 21:56:28.0 +0100
+++ new/libisds-0.10.1/TODO 2015-09-06 10:07:25.0 +0200
@@ -18,6 +18,7 @@
 Allow formatted message appending, preserve deep messages
 * Make function tests
 

  1   2   >