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 ++
 4 files cha

commit automake for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "automake"

Changes:

--- /work/SRC/openSUSE:Factory/automake/automake-testsuite.changes  
2015-05-20 23:14:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.automake.new/automake-testsuite.changes 
2015-09-08 17:35:51.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep  1 12:12:46 UTC 2015 - dims...@opensuse.org
+
+- Add automake-perl-5.22.patch: Fix test suite with perl 5.22 by
+  silencing some warnings.
+
+---
automake.changes: same change

New:

  automake-perl-5.22.patch



Other differences:
--
++ automake-testsuite.spec ++
--- /var/tmp/diff_new_pack.nrqV1c/_old  2015-09-08 17:35:54.0 +0200
+++ /var/tmp/diff_new_pack.nrqV1c/_new  2015-09-08 17:35:54.0 +0200
@@ -33,6 +33,7 @@
 Source3:automake-rpmlintrc
 Patch2: automake-require_file.patch
 Patch3: automake-1.13.4-fix-primary-prefix-invalid-couples-test.patch
+Patch4: automake-perl-5.22.patch
 Patch100:   automake-SuSE.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,6 +63,7 @@
 %setup -q -n automake-%{version}
 %patch2
 %patch3 -p1
+%patch4 -p1
 %patch100
 
 %build

++ automake.spec ++
--- /var/tmp/diff_new_pack.nrqV1c/_old  2015-09-08 17:35:54.0 +0200
+++ /var/tmp/diff_new_pack.nrqV1c/_new  2015-09-08 17:35:54.0 +0200
@@ -33,6 +33,7 @@
 Source3:automake-rpmlintrc
 Patch2: automake-require_file.patch
 Patch3: automake-1.13.4-fix-primary-prefix-invalid-couples-test.patch
+Patch4: automake-perl-5.22.patch
 Patch100:   automake-SuSE.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,6 +63,7 @@
 %setup -q -n automake-%{version}
 %patch2
 %patch3 -p1
+%patch4 -p1
 %patch100
 
 %build


++ automake-perl-5.22.patch ++
Index: automake-1.15/bin/automake.in
===
--- automake-1.15.orig/bin/automake.in
+++ automake-1.15/bin/automake.in
@@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker
 sub substitute_ac_subst_variables
 {
   my ($text) = @_;
-  $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
+  $text =~ s/\$\{([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
   return $text;
 }
 



commit coreutils for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "coreutils"

Changes:

--- /work/SRC/openSUSE:Factory/coreutils/coreutils-testsuite.changes
2015-08-21 07:35:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.coreutils.new/coreutils-testsuite.changes   
2015-09-08 17:35:18.0 +0200
@@ -1,0 +2,6 @@
+Sun Aug 30 21:52:13 UTC 2015 - m...@bernhard-voelker.de
+
+- coreutils-tests-avoid-FP-of-ls-stat-free-color.patch: Add upstream
+patch on top of v8.24 to avoid a FP test failure with glibc>=2.22.
+
+---
coreutils.changes: same change

New:

  coreutils-tests-avoid-FP-of-ls-stat-free-color.patch



Other differences:
--
++ coreutils-testsuite.spec ++
--- /var/tmp/diff_new_pack.tXwgCn/_old  2015-09-08 17:35:34.0 +0200
+++ /var/tmp/diff_new_pack.tXwgCn/_new  2015-09-08 17:35:34.0 +0200
@@ -128,6 +128,8 @@
 Patch500:   coreutils-disable_tests.patch
 Patch501:   coreutils-test_without_valgrind.patch
 
+Patch600:   coreutils-tests-avoid-FP-of-ls-stat-free-color.patch
+
 # 
 %description
 These are the GNU core utilities.  This package is the union of
@@ -170,6 +172,9 @@
 %patch500
 %patch501
 
+# Upstream patch on top of v8.24 to fix a FP test failure with glibc>=2.22.
+%patch600
+
 #???## We need to statically link to gmp, otherwise we have a build loop
 #???#sed -i s,'$(LIB_GMP)',%%{_libdir}/libgmp.a,g Makefile.in
 

++ coreutils.spec ++
--- /var/tmp/diff_new_pack.tXwgCn/_old  2015-09-08 17:35:34.0 +0200
+++ /var/tmp/diff_new_pack.tXwgCn/_new  2015-09-08 17:35:34.0 +0200
@@ -128,6 +128,8 @@
 Patch500:   coreutils-disable_tests.patch
 Patch501:   coreutils-test_without_valgrind.patch
 
+Patch600:   coreutils-tests-avoid-FP-of-ls-stat-free-color.patch
+
 # 
 %description
 These are the GNU core utilities.  This package is the union of
@@ -170,6 +172,9 @@
 %patch500
 %patch501
 
+# Upstream patch on top of v8.24 to fix a FP test failure with glibc>=2.22.
+%patch600
+
 #???## We need to statically link to gmp, otherwise we have a build loop
 #???#sed -i s,'$(LIB_GMP)',%%{_libdir}/libgmp.a,g Makefile.in
 


++ coreutils-tests-avoid-FP-of-ls-stat-free-color.patch ++
Upstream patch on top of v8.24 to avoid a FP test failure with glibc>=2.22:
  http://git.sv.gnu.org/cgit/coreutils.git/commit/?id=fd5f2b1569
Patch to be removed with v8.25.

>From fd5f2b1569e2e0b31be755e14e236a7a02478fc0 Mon Sep 17 00:00:00 2001
From: Bernhard Voelker 
Date: Sun, 30 Aug 2015 22:49:35 +0200
Subject: [PATCH] tests: avoid FP of ls/stat-free-color.sh with newer glibc

Since glibc-2.22, specifically commit [0], the opendir() implementation
implicitly makes an additional stat call thus leading to a FP.
Seen on openSUSE:Tumbleweed since snapshot 20150821.

[0]
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=46f894d8c60a

* tests/ls/stat-free-color.sh: Change the test to verify that ls(1)
needs the same number of stat-like calls for a single, empty directory
argument as for one with a few directory entries (sub-directory,
regular file, symlink, etc.).
---
 tests/ls/stat-free-color.sh |   39 ---
 1 file changed, 24 insertions(+), 15 deletions(-)

Index: tests/ls/stat-free-color.sh
===
--- tests/ls/stat-free-color.sh.orig
+++ tests/ls/stat-free-color.sh
@@ -27,8 +27,6 @@ stats='stat,lstat,stat64,lstat64,newfsta
 require_strace_ $stats
 require_dirent_d_type_
 
-ln -s nowhere dangle || framework_failure_
-
 # Disable enough features via LS_COLORS so that ls --color
 # can do its job without calling stat (other than the obligatory
 # one-call-per-command-line argument).
@@ -54,22 +52,33 @@ EOF
 eval $(dircolors -b color-without-stat)
 
 # The system may perform additional stat-like calls before main.
-# To avoid counting those, first get a baseline count by running
-# ls with only the --help option.  Then, compare that with the
+# Furthermore, underlying library functions may also implicitly
+# add an extra stat call, e.g. opendir since glibc-2.21-360-g46f894d.
+# To avoid counting those, first get a baseline count for running
+# ls with one empty directory argument.  Then, compare that with the
 # invocation under test.
-strace -o log-help -e $stats ls --help >/dev/null || fail=1
-n_lines_help=$(wc -l < log-help)
+mkdir d || framework_failure_
 
-strace -o log 

commit build-compare for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "build-compare"

Changes:

--- /work/SRC/openSUSE:Factory/build-compare/build-compare.changes  
2015-08-21 07:35:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.build-compare.new/build-compare.changes 
2015-09-08 17:35:34.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 21 12:57:57 UTC 2015 - seife+...@b1-systems.com
+
+- avoid -kmp packages with "filename-too-long-for-joliet"
+  triggering constant republishing
+
+---



Other differences:
--
++ build-compare.spec ++
--- /var/tmp/diff_new_pack.iJhNYb/_old  2015-09-08 17:35:35.0 +0200
+++ /var/tmp/diff_new_pack.iJhNYb/_new  2015-09-08 17:35:35.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Development/Tools/Building
 Url:https://github.com/openSUSE/build-compare
-Version:2015.07.15
+Version:20150821T175907.9b8c0be
 Release:0
 Source1:COPYING
 Source2:same-build-result.sh

++ same-build-result.sh ++
--- /var/tmp/diff_new_pack.iJhNYb/_old  2015-09-08 17:35:35.0 +0200
+++ /var/tmp/diff_new_pack.iJhNYb/_new  2015-09-08 17:35:35.0 +0200
@@ -117,6 +117,13 @@
 # Remove release from files
 sort -u $OLDDIR/rpmlint.log|sed -e "s,$ver_rel1,@VERSION@-@RELEASE@,g" -e 
"s|/tmp/rpmlint\..*spec|.spec|g" > $file1
 sort -u $OTHERDIR/rpmlint.log|sed -e "s,$ver_rel2,@VERSION@-@RELEASE@,g" 
-e "s|/tmp/rpmlint\..*spec|.spec|g"  > $file2
+### kmp's are strange:
+# the correct way would be to find the versions of -kmp- packages and 
ignore them, but this will do, too.
+# example: this one leads to constant republishing of virtualbox for every 
build.
+# -virtualbox-guest-kmp-default.x86_64: W: filename-too-long-for-joliet 
virtualbox-guest-kmp-default-5.0.2_k3.16.7_24-177.d_l_ocaml.2.x86_64.rpm
+# +virtualbox-guest-kmp-default.x86_64: W: filename-too-long-for-joliet 
virtualbox-guest-kmp-default-5.0.2_k3.16.7_24-178.d_l_ocaml.1.x86_64.rpm
+sed -i -e "/W: filename-too-long-for-joliet/s,\(^.*-kmp-.*-kmp-\).*$,\1," 
$file1
+sed -i -e "/W: filename-too-long-for-joliet/s,\(^.*-kmp-.*-kmp-\).*$,\1," 
$file2
 if ! cmp -s $file1 $file2; then
   echo "rpmlint.log files differ:"
   diff -u $file1 $file2 |head -n 20




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 cracklib for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "cracklib"

Changes:

--- /work/SRC/openSUSE:Factory/cracklib/cracklib.changes2015-04-16 
14:11:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.cracklib.new/cracklib.changes   2015-09-08 
17:37:33.0 +0200
@@ -1,0 +2,10 @@
+Tue Aug 18 13:00:24 UTC 2015 - mplus...@suse.com
+
+- Update to 2.9.5
+  * fix matching against first password in dictionary (Anton Dobkin)
+- Changes for 2.9.4 
+  * remove doubled prototype
+- Changes for 2.9.3 
+  * expose additional functions externally
+
+---

Old:

  cracklib-2.9.2.tar.gz

New:

  cracklib-2.9.5.tar.gz



Other differences:
--
++ cracklib.spec ++
--- /var/tmp/diff_new_pack.KitTyc/_old  2015-09-08 17:37:35.0 +0200
+++ /var/tmp/diff_new_pack.KitTyc/_new  2015-09-08 17:37:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   cracklib
-Version:2.9.2
+Version:2.9.5
 Release:0
 Summary:Library to crack passwords using dictionaries
 License:LGPL-2.1

++ cracklib-2.9.2-visibility.patch ++
--- /var/tmp/diff_new_pack.KitTyc/_old  2015-09-08 17:37:35.0 +0200
+++ /var/tmp/diff_new_pack.KitTyc/_new  2015-09-08 17:37:35.0 +0200
@@ -1,8 +1,8 @@
-Index: configure.in
+Index: configure.ac
 ===
 --- configure.ac.orig
 +++ configure.ac
-@@ -97,6 +97,45 @@
+@@ -97,6 +97,45 @@ AM_CONDITIONAL(BUILD_PYTHON,[test "$buil
  dnl Handle local dict compiling properly
  AC_SUBST(CROSS_COMPILING, $cross_compiling)
  
@@ -84,7 +84,7 @@
 ===
 --- lib/packer.h.orig
 +++ lib/packer.h
-@@ -75,7 +75,7 @@ typedef struct
+@@ -76,7 +76,7 @@ typedef struct
  #define PIH_MAGIC 0x70775631
  
  /* Internal routines */
@@ -93,7 +93,7 @@
  
  #else
  
-@@ -86,14 +86,14 @@ typedef struct {
+@@ -87,15 +87,15 @@ typedef struct {
  
  #endif
  
@@ -115,5 +115,6 @@
 +CRACKLIB_API char Chop(char *string);
 +CRACKLIB_API char *Trim(char *string);
 +CRACKLIB_API char *FascistLook(PWDICT *pwp, char *instring);
- 
- #endif
+ extern char *FascistLookUser(PWDICT *pwp, char *instring, const char *user, 
const char *gecos);
+ extern char *FascistGecos(char *password, int uid);
+ extern char *FascistGecosUser(char *password, const char *user, const char 
*gecos);

++ cracklib-2.9.2.tar.gz -> cracklib-2.9.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cracklib-2.9.2/NEWS new/cracklib-2.9.5/NEWS
--- old/cracklib-2.9.2/NEWS 2014-10-05 17:59:38.0 +0200
+++ new/cracklib-2.9.5/NEWS 2015-07-13 17:17:18.0 +0200
@@ -1,3 +1,6 @@
+v2.9.5 fix matching against first password in dictionary (Anton Dobkin)
+v2.9.4 remove doubled prototype
+v2.9.3 expose additional functions externally
 v2.9.2 support build of python support outside of source tree (Michał Górny)
fix bug in Python string distance calculation (Pascal Muetschard)
fix bug #16 / debian bug 724570 - broken optimization with packlib 
prevblock (Russ Allbery)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cracklib-2.9.2/configure new/cracklib-2.9.5/configure
--- old/cracklib-2.9.2/configure2014-10-05 17:58:34.0 +0200
+++ new/cracklib-2.9.5/configure2015-07-13 17:17:51.0 +0200
@@ -1,13 +1,11 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for cracklib 2.9.2.
+# Generated by GNU Autoconf 2.69 for cracklib 2.9.5.
 #
 # Report bugs to .
 #
 #
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
-# Foundation, Inc.
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
 #
 #
 # This configure script is free software; the Free Software Foundation
@@ -136,6 +134,31 @@
 # CDPATH.
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
+# Use a proper internal environment variable to ensure we don't fall
+  # into an infinite loop, continuously re-executing ourselves.
+  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+_as_can_reexec=no; export _as_can_reexec;
+# We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent v

commit bison for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "bison"

Changes:

--- /work/SRC/openSUSE:Factory/bison/bison.changes  2015-02-27 
10:56:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.bison.new/bison.changes 2015-09-08 
17:36:07.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  1 14:24:58 UTC 2015 - tchva...@suse.com
+
+- Set the installinfo in preun rather than postun to avoid ugly
+  warning about file not being present.
+- Remove the Obsolete for old ppc64 support that won't get triggered
+
+---



Other differences:
--
++ bison.spec ++
--- /var/tmp/diff_new_pack.JkrZYz/_old  2015-09-08 17:37:33.0 +0200
+++ /var/tmp/diff_new_pack.JkrZYz/_new  2015-09-08 17:37:33.0 +0200
@@ -31,13 +31,10 @@
 BuildRequires:  gcc-c++
 BuildRequires:  xz
 Requires:   m4
-Requires(pre):  %{install_info_prereq}
+Requires(post):  %{install_info_prereq}
+Requires(preun): %{install_info_prereq}
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# bug437293
-%ifarch ppc64
-Obsoletes:  bison-64bit
-%endif
 
 %description
 Bison is a parser generator similar to yacc(1).
@@ -82,7 +79,7 @@
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
-%postun
+%preun
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
 
 %changelog






commit gnu-efi for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "gnu-efi"

Changes:

--- /work/SRC/openSUSE:Factory/gnu-efi/gnu-efi.changes  2015-06-18 
06:36:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnu-efi.new/gnu-efi.changes 2015-09-08 
17:37:51.0 +0200
@@ -1,0 +2,12 @@
+Tue Aug 18 04:24:16 UTC 2015 - g...@suse.com
+
+- Update to gnu-efi 3.0.3
+  + Add URI Device Path
+  + Makes the symbols consistent between the linker scripts
+  + Added some missing error code descriptions
+  + Add setjump()/longjump()
+- Drop patches
+  + gnu-efi-setjmp.patch
+  + gnu-efi-missing-error-code.patch
+
+---

Old:

  gnu-efi-3.0.2.tar.bz2
  gnu-efi-missing-error-code.patch
  gnu-efi-setjmp.patch

New:

  gnu-efi-3.0.3.tar.bz2



Other differences:
--
++ gnu-efi.spec ++
--- /var/tmp/diff_new_pack.vVSXd6/_old  2015-09-08 17:37:52.0 +0200
+++ /var/tmp/diff_new_pack.vVSXd6/_new  2015-09-08 17:37:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnu-efi
-Version:3.0.2
+Version:3.0.3
 Release:0
 Summary:Library for EFI Applications
 License:BSD-3-Clause and GPL-2.0+
@@ -25,8 +25,6 @@
 Url:http://sourceforge.net/projects/gnu-efi
 Source: 
http://sourceforge.net/projects/gnu-efi/files/gnu-efi-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
-Patch1: %{name}-setjmp.patch
-Patch2: %{name}-missing-error-code.patch
 BuildRequires:  kernel-source
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  ia64 %ix86 x86_64 aarch64 %arm
@@ -38,8 +36,6 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
 
 %build
 ##

++ gnu-efi-3.0.2.tar.bz2 -> gnu-efi-3.0.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnu-efi-3.0.2/.gitignore new/gnu-efi-3.0.3/.gitignore
--- old/gnu-efi-3.0.2/.gitignore2015-04-10 14:49:50.0 +0200
+++ new/gnu-efi-3.0.3/.gitignore2015-08-17 22:06:47.0 +0200
@@ -1,4 +1,5 @@
 *.efi
+*.efi.debug
 *.o
 *.a
 *.tar.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnu-efi-3.0.2/ChangeLog new/gnu-efi-3.0.3/ChangeLog
--- old/gnu-efi-3.0.2/ChangeLog 2015-04-10 14:49:50.0 +0200
+++ new/gnu-efi-3.0.3/ChangeLog 2015-08-17 22:06:47.0 +0200
@@ -1,3 +1,309 @@
+Updated Changelog
+
+Signed-off-by: Nigel Croxon 
+
+commit 37d7bee82a627999563069b090866076e055a871
+Author: Nigel Croxon 
+Date:   Thu May 14 12:38:39 2015 -0400
+
+Added some missing error code descriptions
+
+Signed-off-by: Peter Jones 
+Signed-off-by: Nigel Croxon 
+
+commit dae0b4b0b0d522caecf09123db2cf0250c37a169
+Author: Nigel Croxon 
+Date:   Thu May 14 12:20:51 2015 -0400
+
+Turns out we actually need setjmp in one of gnu-efi's prominent
+users, and it seems to make more sense to put it here than in
+the application.
+
+All of these are derived from the Tiano code, but I re-wrote the
+x86_64 one because we use the ELF psABI calling conventions instead
+of the MS ABI calling conventions.  Which is to say you probably
+shouldn't setjmp()/longjmp() between functions with EFIAPI (aka
+__attribute__((ms_abi))) and those without.
+
+Signed-off-by: Peter Jones 
+Signed-off-by: Nigel Croxon 
+
+commit b5a8e93cec396381a6d2beee022abbf50100f2fd
+Author: Nigel Croxon 
+Date:   Fri Apr 10 08:49:50 2015 -0400
+
+Bump version to 3.0.2
+
+Signed-off-by: Nigel Croxon 
+
+commit 01c9f11ed5ad55661e8fc8a3eee35c578564754b
+Author: Nigel Croxon 
+Date:   Fri Apr 10 08:46:40 2015 -0400
+
+Fix ARM32 and AARCH64 builds
+Without these added into SUBDIRS the initplat.c compilation will fail.
+
+Signed-off-by: Koen Kooi 
+Acked-by: Ard Biesheuvel 
+Signed-off-by: Nigel Croxon 
+
+commit dada63fd3de148c6f8551d253355c113547cd5a0
+Author: Nigel Croxon 
+Date:   Mon Mar 23 10:41:43 2015 -0400
+
+[PATCH] _SPrint: fix NULL termination
+
+maxlen is the maximum string length not the buffer size.
+
+Signed-off-by: Jeremy Compostella 
+Signed-off-by: Nigel Croxon 
+
+commit ce7098fb52e5fd4d16038964d029eb759f28eaaf
+Author: Nigel Croxon 
+Date:   Thu Feb 19 11:22:45 2015 -0500
+
+Enable out-of-tree building
+
+This patch enables building gnu-efi outside of the source tree.
+That in turn enables building for multiple architectures in parallel.
+
+The build

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 configure 1.0.6
 gener

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 fo

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 libgit2 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "libgit2"

Changes:

--- /work/SRC/openSUSE:Factory/libgit2/libgit2.changes  2015-02-03 
11:39:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.libgit2.new/libgit2.changes 2015-09-08 
17:39:02.0 +0200
@@ -1,0 +2,91 @@
+Mon Sep  7 19:55:45 UTC 2015 - astie...@suse.com
+
+- libgit2 0.23.2:
+  * documentation fixes
+  * diff: don't error out on an invalid regex
+  * http: propagate the credentials callback's error code
+  * Fix bug in git_smart__push: push_transfer_progress cb is never called
+  * remote: don't confuse tag auto-follow rules with refspec matching
+  * curl: use the most secure auth method for the proxy
+  * Forcing libssh2 lib location
+  * fix duplicate basenames to support older VS
+- includes changes from 0.23.1:
+  * Stage an unregistered submodule in _add_bypath()
+  * filebuf: remove lockfile upon rename errors
+  * Increase required version of cmake to 2.8
+  * Handle ssh:// and git:// urls containing a '~' character.
+  * documentation updates
+  * submodule URL handling fixes
+  * index: allow add_bypath to update submodules
+  * blob: fail to create a blob from a dir with EDIRECTORY
+  * submodule: lookup the submodule by path if available
+  * submdule: reproduce double-reporting of a submodule in foreach
+- note cmake requirement and use cmake makros
+- build with system libcurl
+- build with system http-parser
+
+---
+Tue Jul 28 12:34:52 UTC 2015 - dims...@opensuse.org
+
+- Update to version 0.23.0:
+  + Changes or improvements:
+- Patience and minimal diff drivers can now be used for merges.
+- Merges can now ignore whitespace changes.
+- Updated binary identification in CRLF filtering to avoid
+  false positives in UTF-8 files.
+- Rename and copy detection is enabled for small files.
+- Checkout can now handle an initial checkout of a repository,
+  making GIT_CHECKOUT_SAFE_CREATE unnecessary for users of
+  clone.
+- The signature parameter in the ref-modifying functions has
+  been removed. Use git_repository_set_ident() and
+  git_repository_ident() to override the signature to be used.
+- The local transport now auto-scales the number of threads to
+  use when creating the packfile instead of sticking to one.
+- Reference renaming now uses the right id for the old value.
+- The annotated version of branch creation, HEAD detaching and
+  reset allow for specifying the expression from the user to be
+  put into the reflog.
+- git_rebase_commit now returns GIT_EUNMERGED when you attempt
+  to commit with unstaged changes.
+- On Mac OS X, we now use SecureTransport to provide the
+  cryptographic support for HTTPS connections insead of
+  OpenSSL.
+- Checkout can now accept an index for the baseline
+  computations via the baseline_index member.
+- The configuration for fetching is no longer stored inside the
+  git_remote struct but has been moved to a git_fetch_options.
+  The remote functions now take these options or the callbacks
+  instead of setting them beforehand.
+- git_submodule instances are no longer cached or shared across
+  lookup. Each submodule represents the configuration at the
+  time of loading.
+- The index now uses diffs for add_all() and update_all() which
+  gives it a speed boost and closer semantics to git.
+- The ssh transport now reports the stderr output from the
+  server as the error message, which allows you to get the
+  "repository not found" messages.
+- git_index_conflict_add() will remove staged entries that
+  exist for conflicted paths.
+- The flags for a git_diff_file will now have the
+  GIT_DIFF_FLAG_EXISTS bit set when a file exists on that side
+  of the diff. This is useful for understanding whether a side
+  of the diff exists in the presence of a conflict.
+- The constructor for a write-stream into the odb now takes
+  git_off_t instead of size_t for the size of the blob, which
+  allows putting large files into the odb on 32-bit systems.
+- The remote's push and pull URLs now honor the
+  url.$URL.insteadOf configuration. This allows modifying URL
+  prefixes to a custom value via gitconfig.
+- git_diff_foreach, git_diff_blobs, git_diff_blob_to_buffer,
+  and git_diff_buffers now accept a new binary callback of type
+  git_diff_binary_cb that includes the binary diff information.
+- The race condition mitigations described in racy-git.txt have
+  been imp

commit fcitx-libpinyin for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "fcitx-libpinyin"

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-libpinyin/fcitx-libpinyin.changes  
2014-04-26 10:00:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-libpinyin.new/fcitx-libpinyin.changes 
2015-09-08 17:39:18.0 +0200
@@ -1,0 +2,12 @@
+Tue Aug 25 16:06:07 UTC 2015 - i...@marguerite.su
+
+- update version 0.3.2
+  * bind_textdomain_codeset to utf8
+  * Close Issue#9 Disable all dictionary by default
+  * add missing libintl libraries
+  * no matter libpinyin tools found or not,we can build it
+  * compatible with new libpinyin
+  * add phrase to actual user dictionary
+  * fix sogou download wrong file name encoding
+
+---

Old:

  fcitx-libpinyin-0.3.1_dict.tar.xz

New:

  fcitx-libpinyin-0.3.2_dict.tar.xz



Other differences:
--
++ fcitx-libpinyin.spec ++
--- /var/tmp/diff_new_pack.FdxTQj/_old  2015-09-08 17:39:51.0 +0200
+++ /var/tmp/diff_new_pack.FdxTQj/_new  2015-09-08 17:39:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-libpinyin
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   fcitx-libpinyin
-Version:0.3.1
+Version:0.3.2
 Release:0
 Summary:Libpinyin Wrapper for Fcitx
 License:GPL-2.0+
@@ -26,6 +26,7 @@
 Source: 
http://download.fcitx-im.org/fcitx-libpinyin/%{name}-%{version}_dict.tar.xz
 BuildRequires:  cmake
 BuildRequires:  fcitx-devel
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gettext
 BuildRequires:  glib2-devel
@@ -41,21 +42,22 @@
 Fcitx-libpinyin is a Frontend of the Intelligent Pinyin IME Backend.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 
 %build
-mkdir -pv build
-pushd build
-cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -DLIB_INSTALL_DIR=%{_lib} ..
+mkdir build && pushd build
+CXXFLAGS+="%{optflags}" cmake \
+   -DCMAKE_INSTALL_PREFIX=%{_prefix} \
+   -DLIB_INSTALL_DIR=%{_libdir} \
+   ..
 make %{?_smp_mflags}
 
 %install
 pushd build
-make install DESTDIR=%{buildroot}
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
 popd
-
-strip %{buildroot}%{_libdir}/fcitx/%{name}.so
 %find_lang %{name}
+%fdupes %{buildroot}
 
 %post -p /sbin/ldconfig
 

++ _service ++
--- /var/tmp/diff_new_pack.FdxTQj/_old  2015-09-08 17:39:51.0 +0200
+++ /var/tmp/diff_new_pack.FdxTQj/_new  2015-09-08 17:39:51.0 +0200
@@ -1,13 +1,17 @@
 
-   
-   
-   
-   
-   
-   http://github.com/fcitx/fcitx-libpinyin.git0.1.0gitgit
-   
-   *.tar
-   bz2
-   
-   
+  
+https://github.com/fcitx/fcitx-libpinyin
+git
+.git
+0.3.2+git%cd.%h
+master
+enable
+  
+  
+fcitx-libpinyin-*.tar
+xz
+  
+  
+fcitx-libpinyin
+  
 

++ fcitx-libpinyin-0.3.1_dict.tar.xz -> fcitx-libpinyin-0.3.2_dict.tar.xz 
++
/work/SRC/openSUSE:Factory/fcitx-libpinyin/fcitx-libpinyin-0.3.1_dict.tar.xz 
/work/SRC/openSUSE:Factory/.fcitx-libpinyin.new/fcitx-libpinyin-0.3.2_dict.tar.xz
 differ: char 26, line 1




commit qpid-proton for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "qpid-proton"

Changes:

--- /work/SRC/openSUSE:Factory/qpid-proton/qpid-proton.changes  2015-06-02 
10:10:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.qpid-proton.new/qpid-proton.changes 
2015-09-08 17:39:54.0 +0200
@@ -1,0 +2,140 @@
+Mon Aug 31 08:34:21 UTC 2015 - fst...@suse.com
+
+- Upgrade to version 0.10
+  * New features and improvements
+- PROTON-490 - [proton-c] Python binding fails to link with
+  Python 3 libraries
+- PROTON-518 - Add SASL hostname getter/setter
+- PROTON-781 - Implement the Reactive APIs in Ruby
+- PROTON-799 - Provide the engine APIs in Ruby
+- PROTON-857 - reduce memory usage for the TransportSession link
+  handle tracking
+- PROTON-873 - Convert use of Object.send to Object.__send__ for
+  Ruby bindings
+- PROTON-880 - make Array iterable
+- PROTON-881 - Proton-j reactor implementation
+- PROTON-882 - it should be possible to override logging from
+  python
+- PROTON-883 - Return the raw bytes from a transport buffer in
+  Ruby.
+- PROTON-885 - Allow setup.py to bundle qpid-proton
+- PROTON-897 - Enhance the Ruby examples
+- PROTON-903 - UUID version should be in sixth octet
+- PROTON-906 - Would be nice to make durable subscriptions
+  simpler
+- PROTON-919 - make C impl behave like java wrt channel_max error
+- PROTON-932 - Document platform-specific usage of certificates
+  and trust stores.
+- PROTON-944 - add ability to set a default state for settling
+  received deliveries
+- PROTON-956 - [proton-j] avoid some overhead when sending frames
+  if the trace logging isnt enabled and there is no frame tracer
+- PROTON-957 - [proton-j] make trace logging of transfer frames
+  more useful
+  * Bugs fixed
+- PROTON-109 - Proton should handle inbound max-frame size
+  violations.
+- PROTON-707 - Valgrind 'invalid read' errors in
+  proton_tests.message.LoadSaveTest tests
+- PROTON-842 - proton-c should honor channel_max
+- PROTON-843 - proton-j: Transport advertises idle timeout as-is
+  whereas proton-c halves it before
+- PROTON-844 - proton-j: ArrayIndexOutOfBounds exception if
+  remote peer sends a handle >1024
+- PROTON-845 - Proton-J: Potential NPE in proton-jms outbound
+  native transformer
+- PROTON-848 - [proton-j] TransportSession state is never
+  discarded
+- PROTON-849 - [proton-j] TransportLink state is never discarded
+- PROTON-850 - inconsistent state when reusing link name
+- PROTON-853 - [proton-j] the transport emitted a new attach
+  frame for a link in the process of being closed
+- PROTON-854 - [proton-j] ConnectionImpl retains all created
+  Sessions until the Connection is freed
+- PROTON-858 - unbalanced maps can get corrupted
+- PROTON-859 - cyrus sasl not compatible with pre 2.1.24 versions
+- PROTON-861 - need to get at aspect of the client certificate
+  when for authenticated clients
+- PROTON-864 - don't crash when channel number goes high
+- PROTON-868 - Make Pipelined ANONYMOUS authentication work with
+  fallback SASL implementation
+- PROTON-874 - PN_VERSION only supports major and minor versions
+- PROTON-877 - proton-c sasl client hangs on server pipeline
+- PROTON-878 - Python wrapper mixes up 'user' and 'password'
+  configuration API
+- PROTON-879 - null initial response makes cyrus challenge when
+  it probably shouldn't
+- PROTON-887 - Windows SSL implementation needs working version
+  of pn_ssl_get_remote_subject()
+- PROTON-895 - Rely on python to build the downloaded tarball
+- PROTON-898 - Ruby Messenger using pn_selectable_fd and not
+  pn_selectable_get_fd
+- PROTON-899 - Unnecessary relative path in include
+- PROTON-901 - No constants defined for Terminus.expiry_policy
+- PROTON-904 - Remove dependency on libuuid
+- PROTON-907 - Qpid Proton Point to Point Hang on CentOS 6
+  pn_messenger_send
+- PROTON-908 - Use swig as a build dependency when possible
+- PROTON-913 - Calling allow_unsecured_client() on
+  SSLDomain.MODE_CLIENT causes client segfault
+- PROTON-914 - SSL.peer_hostname does not return the proper value.
+- PROTON-915 - Incompatible protocol header handled incorrectly
+- PROTON-916 - [SASL] pn_sasl_config_name - name gets overwritten
+  in python binding
+- PROTON-917 - [SASL] buffer underrun if no mechs specified by
+  peer
+- PROTON-920 - frames on invalid channel crash p

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: lsvpd-1.7.5/src/include/devicetreecollector.hpp
===
--- lsvpd-1.7.5.orig/

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
xz

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 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 perl-Locale-US for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Locale-US for openSUSE:Factory 
checked in at 2015-09-08 17:38:51

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


Package is "perl-Locale-US"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Locale-US/perl-Locale-US.changes
2012-01-09 21:43:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Locale-US.new/perl-Locale-US.changes   
2015-09-08 17:40:45.0 +0200
@@ -1,0 +2,23 @@
+Tue Sep  1 09:06:19 UTC 2015 - co...@suse.com
+
+- updated to 3.04
+   see /usr/share/doc/packages/perl-Locale-US/Changes
+
+  3.04 - Ditto, this is fun
+
+---
+Mon Aug 31 09:04:49 UTC 2015 - co...@suse.com
+
+- updated to 3.03
+   see /usr/share/doc/packages/perl-Locale-US/Changes
+
+  3.03 - still trying to get the license right, edited META.yml
+  3.02 - Update for license
+
+---
+Sun Aug 30 08:54:26 UTC 2015 - co...@suse.com
+
+- updated to 3.01
+   see /usr/share/doc/packages/perl-Locale-US/Changes
+
+---

Old:

  Locale-US-2.112150.tar.gz

New:

  Locale-US-3.04.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Locale-US.spec ++
--- /var/tmp/diff_new_pack.hPT4JP/_old  2015-09-08 17:40:45.0 +0200
+++ /var/tmp/diff_new_pack.hPT4JP/_new  2015-09-08 17:40:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Locale-US
 #
-# 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,20 +17,20 @@
 
 
 Name:   perl-Locale-US
-Version:2.112150
+Version:3.04
 Release:0
 %define cpan_name Locale-US
 Summary:Two letter codes for state identification in the United States 
and vice versa
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Locale-US/
-Source: 
http://www.cpan.org/authors/id/T/TB/TBONE/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/A/AC/ACCARDO/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Data::Section::Simple)
-#BuildRequires: perl(Locale::US)
 Requires:   perl(Data::Section::Simple)
 %{perl_requires}
 

++ Locale-US-2.112150.tar.gz -> Locale-US-3.04.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Locale-US-2.112150/Changes new/Locale-US-3.04/Changes
--- old/Locale-US-2.112150/Changes  2011-08-03 16:40:06.0 +0200
+++ new/Locale-US-3.04/Changes  2015-08-31 19:21:38.0 +0200
@@ -1,6 +1,5 @@
-Revision history for Perl extension Locale::US.
-
-0.01  Mon Sep 15 12:44:19 2003
-   - original version; created by h2xs 1.22 with options
-   -b 5.6.1 -A -X -n Locale::US
-
+3.04 - Ditto, this is fun
+3.03 - still trying to get the license right, edited META.yml
+3.02 - Update for license
+3.01 - Removed dist.ini, bumped version
+3.00 - New release for maintainer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Locale-US-2.112150/LICENSE new/Locale-US-3.04/LICENSE
--- old/Locale-US-2.112150/LICENSE  2011-08-03 16:40:06.0 +0200
+++ new/Locale-US-3.04/LICENSE  2015-08-30 00:13:17.0 +0200
@@ -1,4 +1,4 @@
-This software is copyright (c) 2011 by Terrence Brannon.
+This software is copyright (c) 2015 by Mike Accardo.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2011 by Terrence Brannon.
+This software is Copyright (c) 2015 by Mike Accardo.
 
 This is free software, licensed under:
 
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2011 by Terrence Brannon.
+This software is Copyright (c) 2015 by Mike Accardo.
 
 This is free software, licensed under:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Locale-US-2.112150/MANIFEST 
new/Locale-US-3.04/MANIFEST
--- old/Locale-US-2.112150/MANIFEST 2011-08-03 16:40:06.00

commit epiphany for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "epiphany"

Changes:

--- /work/SRC/openSUSE:Factory/epiphany/epiphany.changes2015-07-14 
17:45:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.epiphany.new/epiphany.changes   2015-09-08 
17:41:39.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug 23 04:02:46 UTC 2015 - badshah...@gmail.com
+
+- Add BuildRequires on gnome-icon-theme (which really
+  provides the web-browser.png icon); copy relevant icons from
+  the gnome-icon-theme dir into the hicolor-icon-theme dir and
+  package these files to fix builds for openSUSE:42.
+
+---



Other differences:
--
++ epiphany.spec ++
--- /var/tmp/diff_new_pack.1DXjWF/_old  2015-09-08 17:41:47.0 +0200
+++ /var/tmp/diff_new_pack.1DXjWF/_new  2015-09-08 17:41:47.0 +0200
@@ -30,6 +30,7 @@
 # The icon we rely on is from adwaita-icon-theme
 BuildRequires:  adwaita-icon-theme
 BuildRequires:  fdupes
+BuildRequires:  gnome-icon-theme
 BuildRequires:  intltool >= 0.50
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
@@ -129,7 +130,7 @@
 %suse_update_desktop_file %{name}
 # Copy the icons in hicolor, else brp-check is sad
 for size in 8x8 16x16 22x22 24x24 32x32 48x48 256x256; do
-if test -f %{_datadir}/icons/gnome/$size/apps/web-browser.png; then
+if test -f %{_datadir}/icons/gnome/${size}/apps/web-browser.png; then
 mkdir -p %{buildroot}%{_datadir}/icons/hicolor/$size/apps
 cp -a %{_datadir}/icons/gnome/$size/apps/web-browser.png 
%{buildroot}%{_datadir}/icons/hicolor/$size/apps/web-browser.png
 fi
@@ -168,6 +169,7 @@
 %dir %{_libdir}/epiphany/%{_base_version}
 %dir %{_libdir}/epiphany/%{_base_version}/web-extensions
 %{_libdir}/epiphany/%{_base_version}/web-extensions/libephywebextension.so
+%{_datadir}/icons/hicolor/*/apps/web-browser.png
 
 %files lang -f %{name}.lang
 




commit vlc for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "vlc"

Changes:

--- /work/SRC/openSUSE:Factory/vlc/vlc.changes  2015-08-01 11:35:56.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vlc.new/vlc.changes 2015-09-08 
17:40:53.0 +0200
@@ -1,0 +2,8 @@
+Wed Sep  2 20:10:21 UTC 2015 - wba...@tmo.at
+
+- Modify vlc-2.1.5-fix-skins2-default-skin-creation.patch to patch
+  Makefile.am instead of Makefile.in: autoreconf overwrote the
+  change, making the patch totally ineffective and thus the default
+  skin was broken
+
+---



Other differences:
--
++ vlc-2.1.5-fix-skins2-default-skin-creation.patch ++
--- /var/tmp/diff_new_pack.RW0qwr/_old  2015-09-08 17:41:39.0 +0200
+++ /var/tmp/diff_new_pack.RW0qwr/_new  2015-09-08 17:41:39.0 +0200
@@ -5,11 +5,11 @@
 * they contain atime and thus the build time
 Avoid this by passign "--format=ustar" to tar when creating skins2/default.vlt
 
-Index: b/share/Makefile.in
+Index: b/share/Makefile.am
 ===
 a/share/Makefile.in
-+++ b/share/Makefile.in
-@@ -1757,7 +1757,7 @@ skins2/default.vlt: $(skins2_default_vlt
+--- a/share/Makefile.am
 b/share/Makefile.am
+@@ -79,7 +79,7 @@ skins2/default.vlt: $(skins2_default_vlt
mkdir -p skins2
(cd "$(srcdir)/skins2"; find default -print0 | \
LC_ALL=C sort -z | \
@@ -17,4 +17,4 @@
 +  tar cvv --format=ustar --exclude .svn --no-recursion --null -T 
-) | \
gzip -n > skins2/default.vlt
  
- .lua.luac:
+ #




commit nuntius for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "nuntius"

Changes:

--- /work/SRC/openSUSE:Factory/nuntius/nuntius.changes  2015-03-11 
09:58:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.nuntius.new/nuntius.changes 2015-09-08 
17:41:47.0 +0200
@@ -1,0 +2,17 @@
+Sun Aug 30 20:39:09 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.2.0:
+  + Add user interface.
+  + Add translation support.
+  + Misc bugfixes.
+- Add pkgconfig(gtk+-3.0) and pkgconfig(libqrencode) BuildRequires:
+  new dependencies.
+- Replace vala-devel BuildRequires with vala: we only need the
+  compiler.
+- Replace desktop-file-utils BuildRequires with
+  update-desktop-files.
+- Create nuntius-lang package, recommended by main package.
+- Change .desktop file categories to Utility;PDA;
+- Add check section, calling make check.
+
+---
@@ -5 +21,0 @@
-

Old:

  nuntius-0.1.0.tar.xz

New:

  nuntius-0.2.0.tar.xz



Other differences:
--
++ nuntius.spec ++
--- /var/tmp/diff_new_pack.9sDgSJ/_old  2015-09-08 17:41:48.0 +0200
+++ /var/tmp/diff_new_pack.9sDgSJ/_new  2015-09-08 17:41:48.0 +0200
@@ -17,26 +17,29 @@
 
 
 Name:   nuntius
-Version:0.1.0
+Version:0.2.0
 Release:0
 Summary:Get notifications from the phone or tablet
 License:GPL-2.0+
 Group:  Hardware/Mobile
 Url:https://github.com/holylobster/nuntius-linux
 Source: 
https://github.com/holylobster/nuntius-linux/releases/download/v%{version}/nuntius-%{version}.tar.xz
-BuildRequires:  desktop-file-utils
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool >= 0.50.1
-BuildRequires:  vala-devel
-BuildRequires:  pkgconfig(gio-2.0)
-BuildRequires:  pkgconfig(gio-unix-2.0)
-BuildRequires:  pkgconfig(glib-2.0)
-BuildRequires:  pkgconfig(json-glib-1.0)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  update-desktop-files
+BuildRequires:  vala >= 0.23.3
+BuildRequires:  pkgconfig(gio-2.0) >= 2.40
+BuildRequires:  pkgconfig(glib-2.0) >= 2.38
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.14
+BuildRequires:  pkgconfig(json-glib-1.0) >= 0.16.2
+BuildRequires:  pkgconfig(libqrencode) >= 3.1
+Recommends: %{name}-lang
 
 %description
-Nuntius is a daemon that connects to another Nuntius app running on a phone or
-a tablet and proxies the notifications using Bluetooth.
+Nuntius is a daemon that connects to another Nuntius app running on
+a phone or a tablet and proxies the notifications using Bluetooth.
+
+%lang_package
 
 %prep
 %setup -q
@@ -46,7 +49,12 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
+%suse_update_desktop_file -r 
%{buildroot}%{_datadir}/applications/*nuntius.desktop Utility PDA
+%find_lang nuntius
+
+%check
+make check %{?_smp_mflags}
 
 %post
 %desktop_database_post
@@ -58,13 +66,19 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING
+%doc AUTHORS COPYING NEWS
 %{_bindir}/nuntius
-%{_datadir}/applications/org.holylobster.nuntius.desktop
-# Own dirs so we do not need to BuildRequire them
+%dir %{_datadir}/appdata/
+%{_datadir}/appdata/*nuntius.appdata.xml
+%{_datadir}/applications/*nuntius.desktop
+# Own dirs so we do not need to BuildRequire dbus-1 for this
 %dir %{_datadir}/dbus-1/
 %dir %{_datadir}/dbus-1/services/
-%{_datadir}/dbus-1/services/org.holylobster.nuntius.service
+%{_datadir}/dbus-1/services/*nuntius.service
 %{_datadir}/icons/hicolor/*/apps/nuntius.png
-%{_sysconfdir}/xdg/autostart/org.holylobster.nuntius.desktop
-%{_datadir}/appdata/org.holylobster.nuntius.appdata.xml
+%{_sysconfdir}/xdg/autostart/*nuntius.desktop
+
+%files lang -f %{name}.lang
+%defattr(-,root,root)
+
+%changelog

++ nuntius-0.1.0.tar.xz -> nuntius-0.2.0.tar.xz ++
 8724 lines of diff (skipped)




commit perl-Mojolicious-Plugin-Bootstrap3 for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Mojolicious-Plugin-Bootstrap3 
for openSUSE:Factory checked in at 2015-09-08 17:38:41

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


Package is "perl-Mojolicious-Plugin-Bootstrap3"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Mojolicious-Plugin-Bootstrap3/perl-Mojolicious-Plugin-Bootstrap3.changes
2015-04-25 11:23:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Mojolicious-Plugin-Bootstrap3.new/perl-Mojolicious-Plugin-Bootstrap3.changes
   2015-09-08 17:39:52.0 +0200
@@ -1,0 +2,6 @@
+Sun Aug 30 08:58:15 UTC 2015 - co...@suse.com
+
+- updated to 3.3502
+   see /usr/share/doc/packages/perl-Mojolicious-Plugin-Bootstrap3/Changes
+
+---

Old:

  Mojolicious-Plugin-Bootstrap3-3.3007.tar.gz

New:

  Mojolicious-Plugin-Bootstrap3-3.3502.tar.gz



Other differences:
--
++ perl-Mojolicious-Plugin-Bootstrap3.spec ++
--- /var/tmp/diff_new_pack.9tobAT/_old  2015-09-08 17:39:53.0 +0200
+++ /var/tmp/diff_new_pack.9tobAT/_new  2015-09-08 17:39:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious-Plugin-Bootstrap3
-Version:3.3007
+Version:3.3502
 Release:0
 %define cpan_name Mojolicious-Plugin-Bootstrap3
 Summary:Mojolicious + http://getbootstrap.com/
@@ -30,11 +30,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Mojolicious) >= 5.00
-BuildRequires:  perl(Mojolicious::Plugin::AssetPack) >= 0.31
+BuildRequires:  perl(Mojolicious) >= 6.00
+BuildRequires:  perl(Mojolicious::Plugin::AssetPack) >= 0.63
 BuildRequires:  perl(Test::More) >= 0.88
-Requires:   perl(Mojolicious) >= 5.00
-Requires:   perl(Mojolicious::Plugin::AssetPack) >= 0.31
+Requires:   perl(Mojolicious) >= 6.00
+Requires:   perl(Mojolicious::Plugin::AssetPack) >= 0.63
 %{perl_requires}
 
 %description

++ Mojolicious-Plugin-Bootstrap3-3.3007.tar.gz -> 
Mojolicious-Plugin-Bootstrap3-3.3502.tar.gz ++
 21665 lines of diff (skipped)




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
-This program uses icons based on GLYPHICONS FREE package.
-Visit GLYPHICONS.com; for more 
info.
-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' old/Minion-1.15/Makefile.PL n

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"
   },
   "L

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 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 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
 Platform: UNKNOWN
-Classifier: De

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 1

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 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 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 Free

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 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 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 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 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 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 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 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 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:
--
++ rubygem-pg.spec ++
--- /var/tmp/diff_new_pack.xWi1wc/_old  2015-09-08 17:47:25.0 +0200
+++ /var/tmp/diff_new_pack.xWi1wc/_new  2015-09-08 17:47:25.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:

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'
 desc

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
+++ synergy-1.7.4-stable/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, &conf)
-   if err != nil {
-   t.Fatalf("NewServerConn: %v", err)
-   }
+   errc <- err
}()
 
config := &ClientConfig{
@@ -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 gl2ps for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "gl2ps"

Changes:

--- /work/SRC/openSUSE:Factory/gl2ps/gl2ps.changes  2013-04-05 
07:35:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.gl2ps.new/gl2ps.changes 2015-09-08 
17:46:47.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 11:14:26 UTC 2015 - mplus...@suse.com
+
+- Use %cmake macro
+- Cleanup spec file with spec-cleaner
+
+---



Other differences:
--
++ gl2ps.spec ++
--- /var/tmp/diff_new_pack.SzwVTx/_old  2015-09-08 17:46:48.0 +0200
+++ /var/tmp/diff_new_pack.SzwVTx/_new  2015-09-08 17:46:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gl2ps
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,6 @@
 
 
 %define so_ver 1
-
 Name:   gl2ps
 Version:1.3.8
 Release:0
@@ -32,6 +31,7 @@
 BuildRequires:  freeglut-devel
 BuildRequires:  libpng-devel
 BuildRequires:  zlib-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?sles_version}
 BuildRequires:  Mesa-devel
 %else
@@ -41,7 +41,6 @@
 BuildRequires:  libXi-devel
 BuildRequires:  libXmu-devel
 %endif
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 GL2PS is a C library providing high quality vector output for any OpenGL
@@ -93,20 +92,11 @@
 %patch0
 
 %build
-mkdir build
-cd build
-export CFLAGS="%{optflags}"
-export CXXFLAGS="%{optflags}"
-__libsuffix=$(echo %{_lib} | cut -b4-)
- cmake \
- -DCMAKE_INSTALL_PREFIX=%{_prefix} \
- -DLIB_SUFFIX="$__libsuffix" \
- -DCMAKE_BUILD_TYPE=release ..
-make %{?_smp_mflags} VERBOSE=1
-cd ..
+%cmake
+make 
 
 %install
-make DESTDIR=%{buildroot} install -C build
+%cmake_install
 # Remove static libraries
 rm -f %{buildroot}%{_libdir}/libgl2ps.a
 # Remove doc files (they are installed in the %%files section)




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
-b

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, CPAN::Meta::Converter version 
2.132140'
+generated_

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 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 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 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: !ruby/object:Gem::Requirem

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 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 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 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"], _ = 
base64.StdEncoding.DecodeString("H4sIAAAJbogA/9RbbW/bOPJ///8UrLD/1gYiO70rClwvMZBrWlxwzbZoelfcLvYKWqItIpKoJekkvmzus98MKcp6tOWHGnsv2ljUcDgczvxmhqTOQn5HeHjusZDr9yIOmfRIEFOlzr1EhDQmMxoyj2g65WnIHs49/6U3+T9CTMcyoR9yGos5sQ/x3FC10QUi1SzV+fs2iohRlMMRAEn0qkqhuY5ZiQBIVEZTks59FYn7c+8Zzoen83cPXOFfb2IJci4zCvPyZ3a+k7MxvssptKSpiqlmk4swJFYljsD+6R61z6AZSwMedw76DlisH/VsHL0qdDcG5XUrcirCZVmNMyETIkXMQBj46ZGUJuY3DocjC1lVaomjFPeVd9W3gYj9JPRf/qFGU6XCQf25FIvMQ6XlrY8vIqp8JqWQL96QsjAj+3B1OfqBp3c05iF5/ryLIuRSL58a44MEMZ0yMGQh3VSvLr2G4q3OydVloXbTrYUdT7OFrqgO+OF8JNitSONl0xCMi61oy+pAd4AlARdbZsBQswdtmMEKshgUu5ASvMVKN+KhRyT7dcElC8ki5b8uWG7F2CWjWjOZnnvjf/1M/X9f+D+d+n/yv41+eXx58vrV0w9jtDojfcusMidVxOLMn8YiuG3RpTP5Qm84Lp9Vbai0KHbRfvuta9EyaTQEvnwTCalBTzBZPuMwIdAO0RHLe47I9UJpMmWmTYHyiUgJjWMQG14AfcjueMDUqOmlu4luDHJklZwj4+RLIQ8YCklyiSzNgQculnmDxdeFCmiaCiPWNKbp7YGlyk1sW6GcpihR9WUevAZsj6ikATBWBBY9ZkoNCfiFst5DxAzacFx1QtJFMkU6mobGEkKY62A0PCEhVREZ+EPzZgGxSqoAXIgMvg0r/ME/O3VyNs4a8FVG2KJxf0z7RHW0CdUszSZcWy1gCeGwq+cwDR+2gTPTuTegWeqdIS0z3WPge+7BVFkA81/6+FyCunGL3CHVFMmMKLWereYuMs1FaueVMVoej/CUFA8fzNiwM

commit seamonkey for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

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

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


Package is "seamonkey"

Changes:

--- /work/SRC/openSUSE:Factory/seamonkey/seamonkey.changes  2015-06-30 
10:42:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.seamonkey.new/seamonkey.changes 2015-09-08 
17:49:05.0 +0200
@@ -1,0 +2,17 @@
+Sat Aug 29 20:09:34 UTC 2015 - w...@rosenauer.org
+
+- update to SeaMonkey 2.35 (bnc#935979)
+  * based on 38.1.1esr
+  * requires NSPR 4.10.8 and NSS 3.19.2
+- removed obsolete patches
+  * mozilla-visitSubstr.patch
+  * mozilla-undef-CONST.patch
+  * mozilla-reintroduce-pixman-code-path.patch
+  * mozilla-fix-prototype.patch
+  * mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
+- renamed mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch
+  to mozilla-add-glibcxx_use_cxx11_abi.patch (sync with Firefox)
+- dropped mozilla-prefer_plugin_pref.patch as this feature is
+  likely not worth maintaining further
+
+---

Old:

  l10n-2.33.1.tar.bz2
  mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch
  mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
  mozilla-fix-prototype.patch
  mozilla-prefer_plugin_pref.patch
  mozilla-reintroduce-pixman-code-path.patch
  mozilla-undef-CONST.patch
  mozilla-visitSubstr.patch
  seamonkey-2.33.1-source.tar.bz2

New:

  l10n-2.35.tar.bz2
  mozilla-add-glibcxx_use_cxx11_abi.patch
  seamonkey-2.35-source.tar.bz2



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.DiNITg/_old  2015-09-08 17:57:53.0 +0200
+++ /var/tmp/diff_new_pack.DiNITg/_new  2015-09-08 17:57:53.0 +0200
@@ -60,9 +60,9 @@
 %endif
 Provides:   web_browser
 Provides:   browser(npapi)
-Version:2.33.1
+Version:2.35
 Release:0
-%define releasedate 2015032100
+%define releasedate 2015082600
 Summary:The successor of the Mozilla Application Suite
 License:MPL-2.0
 Group:  Productivity/Networking/Web/Browsers
@@ -79,24 +79,13 @@
 Source9:create-tar.sh
 Source10:   compare-locales.tar.bz2
 Patch1: mozilla-nongnome-proxies.patch
-Patch2: mozilla-prefer_plugin_pref.patch
-Patch3: mozilla-shared-nss-db.patch
-Patch5: mozilla-language.patch
-Patch7: mozilla-ntlm-full-path.patch
-Patch8: mozilla-ua-locale.patch
-Patch11:mozilla-icu-strncat.patch
-Patch12:mozilla-openaes-decl.patch
-Patch13:mozilla-fix-prototype.patch
-# PATCH-FIX-UPSTREAM mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch -- 
fix build with GCC 5 (bmo#1153109)
-Patch14:mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch
-# PATCH-FIX-UPSTREAM mozilla-reintroduce-pixman-code-path.patch -- fix build 
on ppc (bmo#1136958)
-Patch15:mozilla-reintroduce-pixman-code-path.patch
-# PATCH-FIX-UPSTREAM mozilla-visitSubstr.patch -- fix build on ppc 
(bmo#1108834)
-Patch16:mozilla-visitSubstr.patch
-# PATCH-FIX-UPSTREAM mozilla-undef-CONST.patch -- fix build on ppc 
(bmo#395)
-Patch17:mozilla-undef-CONST.patch
-# PATCH-FIX-UPSTREAM mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch -- fix 
build on ppc (from deb#763900)
-Patch18:mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
+Patch2: mozilla-shared-nss-db.patch
+Patch3: mozilla-language.patch
+Patch4: mozilla-ntlm-full-path.patch
+Patch5: mozilla-ua-locale.patch
+Patch6: mozilla-add-glibcxx_use_cxx11_abi.patch
+Patch7: mozilla-icu-strncat.patch
+Patch8: mozilla-openaes-decl.patch
 Patch100:   seamonkey-ua-locale.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: /bin/sh coreutils
@@ -123,9 +112,9 @@
 %global __find_provides %provfind
 # the following conditions are always met in Factory by definition
 # so using %opensuse_bs is secure for now
-BuildRequires:  mozilla-nspr-devel >= 4.10.7
+BuildRequires:  mozilla-nspr-devel >= 4.10.8
 PreReq: mozilla-nspr >= %(rpm -q --queryformat '%{VERSION}' 
mozilla-nspr)
-BuildRequires:  mozilla-nss-devel >= 3.17.4
+BuildRequires:  mozilla-nss-devel >= 3.19.2
 PreReq: mozilla-nss >= %(rpm -q --queryformat '%{VERSION}' mozilla-nss)
 
 %description
@@ -198,17 +187,11 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 %patch5 -p1
+%patch6 -p1
 %patch7 -p1
 %patch8 -p1
-%patch11 -p1
-%patch12 -p1
-%patch13 -p1
-%patch14 -p1
-%patch15 -p1
-%patch16 -p1
-%patch17 -p1
-%patch18 -p1
 popd
 # comm patches
 %patch100 -p1


++ compare-locales.tar.bz2 +

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 lin

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 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 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  libu2f-host-1.0.0.tar.xz ++
 3181 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 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 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 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:http://qmmp.ylsoftware.com/files/qmmp-%{vers

  1   2   >