commit mpfr for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package mpfr for openSUSE:Factory checked in 
at 2017-08-08 11:56:22

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


Package is "mpfr"

Tue Aug  8 11:56:22 2017 rev:44 rq:512478 version:3.1.5

Changes:

--- /work/SRC/openSUSE:Factory/mpfr/mpfr.changes2017-06-12 
15:11:33.065125604 +0200
+++ /work/SRC/openSUSE:Factory/.mpfr.new/mpfr.changes   2017-08-08 
11:56:24.607934333 +0200
@@ -1,0 +2,6 @@
+Tue Jul 25 10:40:05 UTC 2017 - rguent...@suse.com
+
+- Add mpfr-3.1.5-p9.patch with cummulative patches to patchlevel p9,
+  obsoletes mpfr-3.1.5-p8.patch.
+
+---

Old:

  mpfr-3.1.5-p8.patch

New:

  mpfr-3.1.5-p9.patch



Other differences:
--
++ mpfr.spec ++
--- /var/tmp/diff_new_pack.n1E7nM/_old  2017-08-08 11:56:26.219707328 +0200
+++ /var/tmp/diff_new_pack.n1E7nM/_new  2017-08-08 11:56:26.231705638 +0200
@@ -27,7 +27,7 @@
 Source1:http://www.mpfr.org/mpfr-%{version}/mpfr-%{version}.tar.bz2.asc
 Source2:%{name}.keyring
 Source3:baselibs.conf
-Patch:  mpfr-3.1.5-p8.patch
+Patch:  mpfr-3.1.5-p9.patch
 BuildRequires:  gmp-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ mpfr-3.1.5-p8.patch -> mpfr-3.1.5-p9.patch ++
--- /work/SRC/openSUSE:Factory/mpfr/mpfr-3.1.5-p8.patch 2017-06-12 
15:11:31.973279665 +0200
+++ /work/SRC/openSUSE:Factory/.mpfr.new/mpfr-3.1.5-p9.patch2017-08-08 
11:56:24.415961371 +0200
@@ -685,3 +685,54 @@
/* clear all variables */
mpf_clear (y);
mpf_clear (x);
+diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES
+--- mpfr-3.1.5-a/PATCHES   2017-07-21 09:17:42.675157685 +
 mpfr-3.1.5-b/PATCHES   2017-07-21 09:17:42.699157421 +
+@@ -0,0 +1 @@
++sincos-overflow
+diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION
+--- mpfr-3.1.5-a/VERSION   2017-06-06 20:31:35.943341213 +
 mpfr-3.1.5-b/VERSION   2017-07-21 09:17:42.699157421 +
+@@ -1 +1 @@
+-3.1.5-p8
++3.1.5-p9
+diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h
+--- mpfr-3.1.5-a/src/mpfr.h2017-06-06 20:31:35.939341259 +
 mpfr-3.1.5-b/src/mpfr.h2017-07-21 09:17:42.699157421 +
+@@ -27,7 +27,7 @@
+ #define MPFR_VERSION_MAJOR 3
+ #define MPFR_VERSION_MINOR 1
+ #define MPFR_VERSION_PATCHLEVEL 5
+-#define MPFR_VERSION_STRING "3.1.5-p8"
++#define MPFR_VERSION_STRING "3.1.5-p9"
+ 
+ /* Macros dealing with MPFR VERSION */
+ #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
+diff -Naurd mpfr-3.1.5-a/src/sin_cos.c mpfr-3.1.5-b/src/sin_cos.c
+--- mpfr-3.1.5-a/src/sin_cos.c 2016-09-27 07:58:15.0 +
 mpfr-3.1.5-b/src/sin_cos.c 2017-07-21 09:17:42.691157510 +
+@@ -350,10 +350,12 @@
+  which reduces to T[k] = (2*i+2)*(2*i+3)*2^r-pp,
+  Q[k] = (2*i)*(2*i+1)*(2*i+2)*(2*i+3). */
+   log2_nb_terms[k] = 1;
+-  mpz_set_ui (Q[k], (2 * i + 2) * (2 * i + 3));
++  mpz_set_ui (Q[k], 2 * i + 2);
++  mpz_mul_ui (Q[k], Q[k], 2 * i + 3);
+   mpz_mul_2exp (T[k], Q[k], r);
+   mpz_sub (T[k], T[k], pp);
+-  mpz_mul_ui (Q[k], Q[k], (2 * i) * (2 * i + 1));
++  mpz_mul_ui (Q[k], Q[k], 2 * i);
++  mpz_mul_ui (Q[k], Q[k], 2 * i + 1);
+   /* the next term of the series is divided by Q[k] and multiplied
+  by pp^2/2^(2r), thus the mult. factor < 1/2^mult[k] */
+   mult[k] = mpz_sizeinbase (Q[k], 2) + 2 * r - size_ptoj[1] - 1;
+diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c
+--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:31:35.943341213 +
 mpfr-3.1.5-b/src/version.c 2017-07-21 09:17:42.699157421 +
+@@ -25,5 +25,5 @@
+ const char *
+ mpfr_get_version (void)
+ {
+-  return "3.1.5-p8";
++  return "3.1.5-p9";
+ }






commit audit for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package audit for openSUSE:Factory checked 
in at 2017-08-08 11:56:33

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


Package is "audit"

Tue Aug  8 11:56:33 2017 rev:82 rq:514176 version:2.7.7

Changes:

--- /work/SRC/openSUSE:Factory/audit/audit-secondary.changes2017-07-24 
12:29:17.71670 +0200
+++ /work/SRC/openSUSE:Factory/.audit.new/audit-secondary.changes   
2017-08-08 11:56:38.054040557 +0200
@@ -1,0 +2,6 @@
+Mon Jul 24 13:59:06 UTC 2017 - jeng...@inai.de
+
+- Rectify RPM groups, diversify descriptions.
+- Remove mentions of static libraries because they are not built.
+
+---
audit.changes: same change



Other differences:
--
++ audit-secondary.spec ++
--- /var/tmp/diff_new_pack.gJL75L/_old  2017-08-08 11:56:39.141887341 +0200
+++ /var/tmp/diff_new_pack.gJL75L/_new  2017-08-08 11:56:39.145886778 +0200
@@ -22,7 +22,7 @@
 Name:   audit-secondary
 Version:2.7.7
 Release:0
-Summary:Secondary packages for audit
+Summary:Linux kernel audit subsystem utilities
 License:GPL-2.0+
 Group:  System/Monitoring
 Url:http://people.redhat.com/sgrubb/audit/
@@ -47,10 +47,12 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Secondary packages for system auditing.
+The audit package contains the user space utilities for storing and
+processing the records generated by the audit subsystem in the
+Linux kernel.
 
 %package -n audit
-Summary:User Space Tools for 2.6 Kernel Auditing
+Summary:User Space Tools for Kernel Auditing
 License:LGPL-2.1+
 Group:  System/Monitoring
 Requires:   %{_name}-libs = %{version}
@@ -60,12 +62,12 @@
 %description -n audit
 The audit package contains the user space utilities for storing and
 processing the audit records generated by the audit subsystem in the
-Linux 2.6 kernel.
+Linux kernel.
 
 %package -n audit-libs-python
 Summary:Python Bindings for libaudit
 License:LGPL-2.1+
-Group:  System/Monitoring
+Group:  Development/Languages/Python
 
 %description -n audit-libs-python
 The audit-libs-python package contains the bindings for using libaudit
@@ -74,7 +76,7 @@
 %package -n audit-libs-python3
 Summary:Python3 Bindings for libaudit
 License:LGPL-2.1+
-Group:  System/Monitoring
+Group:  Development/Languages/Python
 
 %description -n audit-libs-python3
 The audit-libs-python3 package contains the bindings for using libaudit
@@ -113,8 +115,7 @@
--with-apparmor \
--with-libwrap \
--with-libcap-ng=yes \
-   --disable-static \
-   --with-pic
+   --disable-static
 make %{?_smp_mflags}
 
 %install

++ audit.spec ++
--- /var/tmp/diff_new_pack.gJL75L/_old  2017-08-08 11:56:39.253871569 +0200
+++ /var/tmp/diff_new_pack.gJL75L/_new  2017-08-08 11:56:39.257871007 +0200
@@ -19,7 +19,7 @@
 Name:   audit
 Version:2.7.7
 Release:0
-Summary:First part of auditing package
+Summary:Linux kernel audit subsystem utilities
 License:GPL-2.0+
 Group:  System/Monitoring
 Url:http://people.redhat.com/sgrubb/audit/
@@ -37,38 +37,38 @@
 
 %description
 The audit package contains the user space utilities for storing and
-processing the audit records generated by the audit subsystem in the
+processing the records generated by the audit subsystem in the
 Linux kernel.
 
 %package -n libaudit1
-Summary:Dynamic library for libaudit
+Summary:Library for interfacing with the kernel audit subsystem
 License:LGPL-2.1+
-Group:  System/Monitoring
+Group:  System/Libraries
 Obsoletes:  %{name}-libs < 2.0.4
 Provides:   %{name}-libs = %{version}
 
 %description -n libaudit1
-The libaudit package contains the dynamic libraries needed for
+The libaudit package contains the shared libraries needed for
 applications to use the audit framework.
 
 %package -n libauparse0
-Summary:Dynamic library for libauparse
+Summary:Library for parsing and interpreting audit events
 License:LGPL-2.1+
-Group:  System/Monitoring
+Group:  System/Libraries
 
 %description -n libauparse0
-The libauparse package contains the dynamic libraries needed to
+The libauparse package contains the shared libraries needed to
 parse audit records.
 
 %package -n audit-devel
-Summary:Header files and static library for libaudit
+Summary:Header files for libaudit
 License:LGPL-2.1+
 Group:  Development/Libraries/C and

commit build-compare for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package build-compare for openSUSE:Factory 
checked in at 2017-08-08 11:56:38

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


Package is "build-compare"

Tue Aug  8 11:56:38 2017 rev:104 rq:514218 version:20170727T140623.5b2169e

Changes:

--- /work/SRC/openSUSE:Factory/build-compare/build-compare.changes  
2017-04-12 17:10:11.458437601 +0200
+++ /work/SRC/openSUSE:Factory/.build-compare.new/build-compare.changes 
2017-08-08 11:56:39.569827069 +0200
@@ -1,0 +2,5 @@
+Thu Jul 27 12:05:25 UTC 2017 - o...@aepfle.de
+
+- Compare also supplements and recomments (issue#18)
+
+---



Other differences:
--
++ build-compare.spec ++
--- /var/tmp/diff_new_pack.qlQNNR/_old  2017-08-08 11:56:40.357716101 +0200
+++ /var/tmp/diff_new_pack.qlQNNR/_new  2017-08-08 11:56:40.361715538 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Development/Tools/Building
 Url:https://github.com/openSUSE/build-compare
-Version:20170331T154431.96db83e
+Version:20170727T140623.5b2169e
 Release:0
 Source1:COPYING
 Source2:same-build-result.sh

++ functions.sh ++
--- /var/tmp/diff_new_pack.qlQNNR/_old  2017-08-08 11:56:40.497696387 +0200
+++ /var/tmp/diff_new_pack.qlQNNR/_new  2017-08-08 11:56:40.497696387 +0200
@@ -21,6 +21,8 @@
 QF_PROVIDES="${QF_PROVIDES}[%{REQUIRENAME} %{REQUIREFLAGS} 
%{REQUIREVERSION}\\n]\\n"
 QF_PROVIDES="${QF_PROVIDES}[%{CONFLICTNAME} %{CONFLICTFLAGS} 
%{CONFLICTVERSION}\\n]\\n"
 QF_PROVIDES="${QF_PROVIDES}[%{OBSOLETENAME} %{OBSOLETEFLAGS} 
%{OBSOLETEVERSION}\\n]\\n"
+QF_PROVIDES="${QF_PROVIDES}[%{RECOMMENDNAME} %{RECOMMENDFLAGS} 
%{RECOMMENDVERSION}\\n]\\n"
+QF_PROVIDES="${QF_PROVIDES}[%{SUPPLEMENTNAME} %{SUPPLEMENTFLAGS} 
%{SUPPLEMENTVERSION}\\n]\\n"
 
 # don't look at RELEASE, it contains our build number
 QF_TAGS="%{NAME} %{VERSION} %{EPOCH}\\n"

++ pkg-diff.sh ++
--- /var/tmp/diff_new_pack.qlQNNR/_old  2017-08-08 11:56:40.545689627 +0200
+++ /var/tmp/diff_new_pack.qlQNNR/_new  2017-08-08 11:56:40.553688500 +0200
@@ -7,6 +7,10 @@
 # Enhanced by Andreas Jaeger
 
 FUNCTIONS=${0%/*}/functions.sh
+: ${buildcompare_head:="head -n 200"}
+nofilter=${buildcompare_nofilter}
+sort=sort
+[[ $nofilter ]] && sort=cat
 
 check_all=
 case $1 in
@@ -114,9 +118,107 @@
 filter_disasm()
 {
local file=$1
+   [[ $nofilter ]] && return
sed -i -e 's/^ *[0-9a-f]\+://' -e 's/\$0x[0-9a-f]\+/$something/' -e 
's/callq *[0-9a-f]\+/callq /' -e 's/# *[0-9a-f]\+/#  /' -e 
's/\(0x\)\?[0-9a-f]\+(/offset(/' -e 's/[0-9a-f]\+ :/\1:/' 
-e 's/<\(.*\)+0x[0-9a-f]\+>/<\1 + ofs>/' ${file}
 }
 
+filter_zip_flist()
+{
+   local file=$1
+   [[ $nofilter ]] && return
+   #  10-05-2010 14:39
+   sed -i -e "s, [0-9][0-9]-[0-9][0-9]-[0-9]\+ [0-9][0-9]:[0-9][0-9] , date ," 
$file
+   # 2012-02-03 07:59
+   sed -i -e "s, 20[0-9][0-9]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9] , 
date ," $file
+}
+
+filter_xenefi() {
+   # PE32+ executable (EFI application) x86-64 (stripped to external PDB), for 
MS Windows
+   perl -e "open fh, '+<', '$f'; seek fh, 0x80 + 0x08, SEEK_SET; print fh 
'time'; seek fh, 0x80 + 0x58, SEEK_SET; print fh 'chck';"
+}
+
+filter_pyc() {
+   perl -e "open fh, '+<', '$f'; seek fh, 4, SEEK_SET; print fh '';"
+}
+
+filter_dvi() {
+   # Opcodes 247: pre; i[1], num[4], den[4], mag[4], k[1], x[k]
+   perl -e "
+   my \$rec;
+   open fh, '+<', '$f';
+   my \$dummy = read fh, \$rec, 15;
+   (\$pre, \$i, \$num, \$den, \$mag, \$k) = unpack('C2 N3 C', \$rec);
+   seek fh, 15, SEEK_SET;
+   while (\$k > 0) {
+ print fh '0';
+ \$k--;
+   }
+   "
+}
+
+filter_png() {
+   convert "$f" +set date:create +set date:modify "${f}.$PPID.$$"
+   mv -f "${f}.$PPID.$$" "${f}"
+}
+
+filter_emacs_lisp() {
+   sed -i -e '
+s|^;;; .ompiled by abuild@.* on ... ... .. ..:..:.. |;;; compiled by 
abuild@buildhost on Wed Jul 01 00:00:00 2009|
+s|^;;; from file .*\.el|;;; from file 
/home/abuild/rpmbuild/BUILD/anthy-9100h/src-util/elc.8411/anthy-azik.el|
+s|^;;; emacs version .*|;;; emacs version 21.5  (beta34) "kale" XEmacs 
Lucid.|
+s|^;;; bytecomp version .*|;;; bytecomp version 2.28 XEmacs; 2009-08-09.|
+' "$f"
+}
+
+filter_pdf() {
+   # PDF files contain a unique ID, remove it
+   # Format of the ID is:
+   # /ID [<9ACE247A70CF9BEAFEE15E116259BD6D> 
<9ACE247A70CF9BEAFEE15E116259BD6D>]
+   # with optional spaces. pdftex creates also:
+   # /CreationDate (D:20120103083206Z)
+   # /ModDate (D:20120103083206Z)
+   # and possibly XML metadata as well
+   sed -i \
+'/obj/,/endobj/{
+   s%/ID \?\[ \?<[

commit ncurses for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-08-08 11:56:28

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


Package is "ncurses"

Tue Aug  8 11:56:28 2017 rev:133 rq:513140 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-07-21 
22:35:15.488416053 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-08-08 
11:56:31.458969420 +0200
@@ -1,0 +2,35 @@
+Mon Jul 24 07:17:59 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170722
+  + improve test-packages for ncurses-examples and AdaCurses for lintian
+  + modify logic for endwin-state to be able to detect the case where
+the screen was never initialized, using that to trigger a flush of
+ncurses' buffer for mvcur, e.g., in test/dots_mvcur.c for the
+term-driver configuration.
+  + add dependency upon ncurses_cfg.h to a few other internal header
+files to allow each to be compiled separately.
+  + add dependency upon ncurses_cfg.h to tic's header-files; any program
+using tic-library will have to supply this file.  Legacy tack
+versions supply this file; ongoing tack development has dropped the
+dependency upon tic-library and new releases will not be affected.
+
+---
+Tue Jul 18 06:49:37 UTC 2017 - wer...@suse.de
+
+- Fix build by removing workaround in patch ncurses-5.7-tack.dif 
+  which was required since patch 20170415 but had become obsolete
+  with patch 20170715
+
+---
+Mon Jul 17 08:44:28 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170715
+  + modify command-line parameters for "convert" used in picsmap to work
+with ImageMagick 6.8 and newer.
+  + fix build-problem with tack and ABI-5 (Debian #868328).
+  + repair termcap-format from tic/infocmp broken in 20170701 fixes
+(Debian #868266).
+  + reformat terminfo.src with 20170513 updates.
+  + improve test-packages to address lintian warnings.
+
+---
@@ -4 +39 @@
-- Add Ncurses patch 20170708
+- Add ncurses patch 20170708



Other differences:
--
++ ncurses-5.7-tack.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:33.602667497 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:33.622664680 +0200
@@ -9,14 +9,3 @@
  LDFLAGS   = @EXTRA_LDFLAGS@ @TICS_LDFLAGS@ @TINFO_LDFLAGS@ \
  @LDFLAGS@ @LD_MODEL@ @TICS_LIBS@ @TINFO_LIBS@ @LIBS@
  
 ncurses/tinfo/read_entry.c
-+++ ncurses/tinfo/read_entry.c 2017-04-24 07:47:15.533617238 +
-@@ -752,7 +752,7 @@ _nc_read_entry2(const char *const name,
- return code;
- }
- 
--#if NCURSES_EXT_NUMBERS
-+#if !NCURSES_EXT_NUMBERS
- /*
-  * This entrypoint is used by tack.
-  */

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:33.862630883 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:33.874629193 +0200
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2017-04-24 06:51:39.870170103 +
-@@ -15971,8 +15971,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2017-07-17 08:46:19.868878686 +
+@@ -15972,8 +15972,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.0-patches.tar.bz2 ++
 1815 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:37.738085056 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:37.746083929 +0200
@@ -21,7 +21,7 @@
  19 files changed, 247 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2017-07-03 07:09:04.699399144 +
 aclocal.m4 2017-07-24 07:18:46.968450937 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2017-07-03 07:09:04.699399144 +
 configure  2017-07-24 07:18:46.976450789 +
 @@ -5925,7 +5925,7 @@ case $cf_cv_system_name in
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2017-07-03 07:09:04.699399144 +
 include/curses.h.in2017-07-24 07:18:46.976450789 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  

commit quilt for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package quilt for openSUSE:Factory checked 
in at 2017-08-08 11:57:13

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


Package is "quilt"

Tue Aug  8 11:57:13 2017 rev:68 rq:512346 version:0.65

Changes:

--- /work/SRC/openSUSE:Factory/quilt/quilt.changes  2017-06-05 
18:51:20.112818822 +0200
+++ /work/SRC/openSUSE:Factory/.quilt.new/quilt.changes 2017-08-08 
11:57:14.352928136 +0200
@@ -1,0 +2,5 @@
+Fri Jul 21 17:11:23 UTC 2017 - o...@aepfle.de
+
+- Correct fold -R helptext in german locale with quilt-translations.patch
+
+---

New:

  quilt-translations.patch



Other differences:
--
++ quilt.spec ++
--- /var/tmp/diff_new_pack.doOMth/_old  2017-08-08 11:57:16.440634098 +0200
+++ /var/tmp/diff_new_pack.doOMth/_new  2017-08-08 11:57:16.456631845 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package quilt
 #
-# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -43,6 +43,7 @@
 Patch3: patch-wrapper-rpm.diff
 Patch4: suse-workaround-pseudo-release.patch
 Patch5: mail-fix-patch-set-threading.patch
+Patch6: quilt-translations.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %if 0%{?suse_version}
@@ -66,6 +67,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 %build
 # --with-rpmbuild=/usr/lib/rpm/rpmb:

++ quilt-translations.patch ++
--- a/po/de.po
+++ b/po/de.po
@@ -433,7 +433,7 @@ msgstr ""
 "im obersten Patch enthalten sind, dann wird der neue Patch mit der\n"
 "angegebenen Anzahl an Strip-Ebenen angewandt (Standardwert = 1).\n"
 "\n"
-"-r\tPatch verkehrt herum anwenden.\n"
+"-R\tPatch verkehrt herum anwenden.\n"
 "\n"
 "-q\tWenige Meldungen ausgeben.\n"
 "\n"



commit libqt5-qtbase for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package libqt5-qtbase for openSUSE:Factory 
checked in at 2017-08-08 11:57:28

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


Package is "libqt5-qtbase"

Tue Aug  8 11:57:28 2017 rev:62 rq:514205 version:5.9.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtbase/libqt5-qtbase.changes  
2017-07-08 12:25:21.842922770 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-qtbase.new/libqt5-qtbase.changes 
2017-08-08 11:57:28.690908738 +0200
@@ -1,0 +2,18 @@
+Thu Aug  3 08:56:09 UTC 2017 - m...@suse.com
+
+- Remove openSUSE specific %ifs (bsc#1051900)
+
+---
+Tue Jul 25 11:13:53 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to not abort if no $DISPLAY is available (boo#1050046)
+  * dont-abort-missing-display.patch
+
+---
+Mon Jul 24 19:26:00 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to fix include path for private headers of modules
+  built in a shadow directory (QTBUG-37417)
+  * force-cmake-private-headers.patch
+
+---

New:

  dont-abort-missing-display.patch
  force-cmake-private-headers.patch



Other differences:
--
++ libqt5-qtbase.spec ++
--- /var/tmp/diff_new_pack.x7F4Ib/_old  2017-08-08 11:57:30.670629909 +0200
+++ /var/tmp/diff_new_pack.x7F4Ib/_new  2017-08-08 11:57:30.686627656 +0200
@@ -60,6 +60,10 @@
 Patch13:0001-Fix-open-chmod-race-condition-in-QSaveFile.patch
 # PATCH-FIX-OPENSUSE (?)
 Patch14:0001-Fix-at-spi2-build.patch
+# PATCH-FIX-OPENSUSE
+Patch15:force-cmake-private-headers.patch
+# PATCH-FIX-OPENSUSE
+Patch16:   dont-abort-missing-display.patch
 # patches 1000-2000 and above from upstream 5.9 branch #
 # patches 2000-3000 and above from upstream 5.10/dev branch #
 BuildRequires:  alsa-devel
@@ -104,9 +108,7 @@
 BuildRequires:  xz
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gtk+-3.0)
-%if 0%{?is_opensuse} 
 BuildRequires:  pkgconfig(harfbuzz)
-%endif
 BuildRequires:  pkgconfig(ice)
 BuildRequires:  pkgconfig(libinput)
 BuildRequires:  pkgconfig(libudev)
@@ -151,6 +153,8 @@
 %patch12 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
+%patch16 -p1
 
 # be sure not to use them
 rm -rf src/3rdparty/{libjpeg,freetype,zlib}
@@ -750,9 +754,7 @@
-system-libjpeg \
-openssl-linked \
-system-libpng \
-%if 0%{?is_opensuse}
-system-harfbuzz \
-%endif
-fontconfig \
-system-freetype \
-cups \
@@ -1059,9 +1061,7 @@
 %{libqt5_libdir}/sse2/libQt5Gui.so.*
 %endif
 %{libqt5_libdir}/libQt5EglFSDeviceIntegration.so.*
-%if 0%{?is_opensuse}
 %{libqt5_libdir}/libQt5EglFsKmsSupport.so.*
-%endif
 %{libqt5_libdir}/libQt5XcbQpa.so.*
 %{libqt5_plugindir}/generic
 %{libqt5_plugindir}/imageformats
@@ -1083,10 +1083,8 @@
 %{libqt5_libdir}/libQt5Gui.prl
 %{libqt5_libdir}/libQt5EglFSDeviceIntegration.so
 %{libqt5_libdir}/libQt5EglFSDeviceIntegration.prl
-%if 0%{?is_opensuse}
 %{libqt5_libdir}/libQt5EglFsKmsSupport.prl
 %{libqt5_libdir}/libQt5EglFsKmsSupport.so
-%endif
 %{libqt5_libdir}/cmake/Qt5Gui/
 %{libqt5_libdir}/pkgconfig/Qt5Gui.pc
 %{libqt5_includedir}/QtGui/

++ dont-abort-missing-display.patch ++
From: Fabian Vogt 
Subject: Do not abort if no $DISPLAY available

This is annoying and also generates coredumps for no reason.

Index: qtbase-opensource-src-5.9.1/src/plugins/platforms/xcb/qxcbconnection.cpp
===
--- 
qtbase-opensource-src-5.9.1.orig/src/plugins/platforms/xcb/qxcbconnection.cpp
+++ qtbase-opensource-src-5.9.1/src/plugins/platforms/xcb/qxcbconnection.cpp
@@ -571,8 +571,10 @@ QXcbConnection::QXcbConnection(QXcbNativ
 m_connection = xcb_connect(m_displayName.constData(), 
&m_primaryScreenNumber);
 #endif //XCB_USE_XLIB
 
-if (Q_UNLIKELY(!m_connection || xcb_connection_has_error(m_connection)))
-qFatal("QXcbConnection: Could not connect to display %s", 
m_displayName.constData());
+if (Q_UNLIKELY(!m_connection || xcb_connection_has_error(m_connection))) {
+qCritical("QXcbConnection: Could not connect to display %s", 
m_displayName.constData());
+exit(1);
+}
 
 
 m_reader = new QXcbEventReader(this);
++ force-cmake-private-headers.patch ++
From: Fabian Vogt 
Subject: Forcee inclusion of _PRIVATE_INCLUDE_DIRS to CMakeConfig files
References: QTBUG-37417

This is broken for shadow builds otherwise.

Index: qtbase-opensource-src-5.9.1/mkspecs/features/create_cmake.prf
===

commit libidn2 for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package libidn2 for openSUSE:Factory checked 
in at 2017-08-08 11:57:21

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


Package is "libidn2"

Tue Aug  8 11:57:21 2017 rev:6 rq:512360 version:2.0.3

Changes:

--- /work/SRC/openSUSE:Factory/libidn2/libidn2.changes  2017-05-27 
13:12:43.471351451 +0200
+++ /work/SRC/openSUSE:Factory/.libidn2.new/libidn2.changes 2017-08-08 
11:57:25.943295719 +0200
@@ -1,0 +2,13 @@
+Mon Jul 24 18:26:03 UTC 2017 - astie...@suse.com
+
+- update to 2.0.3:
+  * %IDN2_USE_STD3_ASCII_RULES disabled by default.
+Previously libidn2 was eliminating non-STD3 characters from
+domain strings such as _443._tcp.example.com, or IPs such as
+1.2.3.4/24 provided to libidn2 functions. That was an
+unexpected regression for applications switching from libidn
+and thus it is no longer applied by default.
+Use %IDN2_USE_STD3_ASCII_RULES to enable that behavior again.
+- disable documentation, does not build correctly
+
+---

Old:

  libidn2-2.0.2.tar.gz
  libidn2-2.0.2.tar.gz.sig

New:

  libidn2-2.0.3.tar.gz
  libidn2-2.0.3.tar.gz.sig



Other differences:
--
++ libidn2.spec ++
--- /var/tmp/diff_new_pack.PVBpZS/_old  2017-08-08 11:57:27.547069839 +0200
+++ /var/tmp/diff_new_pack.PVBpZS/_new  2017-08-08 11:57:27.575065896 +0200
@@ -18,7 +18,7 @@
 
 %define lname  libidn2-0
 Name:   libidn2
-Version:2.0.2
+Version:2.0.3
 Release:0
 Summary:Support for Internationalized Domain Names (IDN) based on 
IDNA2008
 License:GPL-3.0+
@@ -29,8 +29,6 @@
 Source3:baselibs.conf
 BuildRequires:  libunistring-devel
 BuildRequires:  pkgconfig
-Requires(post): %{install_info_prereq}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)
@@ -65,7 +63,8 @@
 --disable-rpath \
 --disable-silent-rules \
 --disable-static \
---disable-gtk-doc
+--disable-gtk-doc \
+--disable-doc
 
 make %{?_smp_mflags}
 
@@ -78,31 +77,19 @@
 %check
 make check %{?_smp_mflags}
 
-%post tools
-%install_info --info-dir=%{_infodir} %{_infodir}/libidn2.info.*
-
-%preun tools
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/libidn2.info.*
-
 %post -n %{lname} -p /sbin/ldconfig
 %postun -n %{lname} -p /sbin/ldconfig
 
 %files tools
-%defattr(-,root,root)
 %doc AUTHORS COPYING* ChangeLog NEWS README.md
-%{_infodir}/libidn*
 %{_bindir}/idn2
-%{_mandir}/man1/idn2.1%{ext_man}
 
 %files -n %{lname}
-%defattr(-,root,root)
 %{_libdir}/libidn2.so.*
 
 %files devel
-%defattr(-,root,root)
 %{_libdir}/libidn2.so
 %{_libdir}/pkgconfig/libidn2.pc
 %{_includedir}/*.h
-%{_mandir}/man3/*
 
 %changelog

++ libidn2-2.0.2.tar.gz -> libidn2-2.0.3.tar.gz ++
 8580 lines of diff (skipped)




commit tcsh for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package tcsh for openSUSE:Factory checked in 
at 2017-08-08 11:57:45

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


Package is "tcsh"

Tue Aug  8 11:57:45 2017 rev:62 rq:511380 version:6.20.00

Changes:

--- /work/SRC/openSUSE:Factory/tcsh/tcsh.changes2017-05-04 
08:52:50.786151598 +0200
+++ /work/SRC/openSUSE:Factory/.tcsh.new/tcsh.changes   2017-08-08 
11:57:47.124312527 +0200
@@ -1,0 +2,16 @@
+Wed Jul 19 10:25:40 UTC 2017 - wer...@suse.de
+
+- Add patch tcsh-6.20.00-avoid-dotlock-for-fcntl.patch as we are
+  using fcntl's F_SETLKW patches for locking therefore avoid dot
+  file locking without holding a file descriptor as otherwise we
+  migth not be able to open the history file after a crash or if
+  a killall had been used during reboot.
+
+---
+Fri Jun 16 07:54:55 UTC 2017 - wer...@suse.de
+
+- Add patch tcsh-closem.patch to fix a long standing misbehaviour
+  of upstram tcsh whic his that it close sockets which do not
+  belong to it (bsc#1028864)
+
+---

New:

  tcsh-6.20.00-avoid-dotlock-for-fcntl.patch
  tcsh-closem.patch



Other differences:
--
++ tcsh.spec ++
--- /var/tmp/diff_new_pack.X8aT7g/_old  2017-08-08 11:57:48.308145792 +0200
+++ /var/tmp/diff_new_pack.X8aT7g/_new  2017-08-08 11:57:48.328142976 +0200
@@ -43,6 +43,10 @@
 Patch13:tcsh-6.20-ptr-update.patch
 # PATCH-FIX-SUSE Do not convert current used control bytes into wide characters
 Patch14:tcsh-6.20.00-8bit-cmdkeys.patch
+# PATCH-FIX-COMMUNITY Slightly less drastic closem() -- bsc#1028864
+Patch15:tcsh-closem.patch
+# PATCH-FIX-SUSE Aoid dot locking as patch 9 and 11 do the job better
+Patch16:tcsh-6.20.00-avoid-dotlock-for-fcntl.patch
 BuildRequires:  autoconf
 BuildRequires:  fdupes
 BuildRequires:  ncurses-devel
@@ -74,6 +78,8 @@
 %patch12 -p1 -b .rmstar
 %patch13 -p0 -b .ptrbuf
 %patch14 -p0 -b .8bit
+%patch15 -p0 -b .nss
+%patch16 -p0 -b .nodtlck
 %patch0 -b .0
 
 %build

++ tcsh-6.20.00-avoid-dotlock-for-fcntl.patch ++
---
 sh.hist.c |6 ++
 1 file changed, 6 insertions(+)

--- sh.hist.c
+++ sh.hist.c   2017-07-19 10:01:20.795354927 +
@@ -1278,6 +1278,11 @@ rechist(Char *fname, int ref)
}
 
if (merge) {
+#if 0 /* We are using fcntl's F_SETLKW patch for locking
+   * therefore avoid dot file locking without holding
+   * a file descriptor as otherwise we migth not be
+   * able to open the history file after a crash or
+   * if a killall had been used during reboot. */
if (lock) {
 #ifndef WINNT_NATIVE
char *lockpath = strsave(short2str(fname));
@@ -1287,6 +1292,7 @@ rechist(Char *fname, int ref)
cleanup_push(lockpath, dotlock_cleanup);
 #endif
}
+#endif
/* Read .history file, leave it's fd open for writing. */
fd = loadhist(fname, 
HIST_MERGE|HIST_FILE_WRLCK|HIST_FILE_OPEN|HIST_FILE_LOCK);
if (fd > 0) {
++ tcsh-closem.patch ++
[PATCH] Slightly less drastic closem()
Miloslav Trmac mitr at volny.cz
Thu Sep 9 19:17:10 EDT 2004

Previous message: [PATCH] Slightly less drastic closem()
Next message: Newlines in command substitution
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

On Wed, Sep 08, 2004 at 08:38:03PM -0400, Christos Zoulas wrote:
(Original mail reordered)
> Finally, I do have an old patch that makes tcsh not use closem at all,
> and adds sh like I/O redirection (plus other fd manipulations) to it,
sh-like I/O redirection could actually make the problem worse if
tcsh is using NSS after performing the redirections --- I haven't checked
whether it does.

Avoiding closem () completely is of course the "correct" fix, but I'm
afraid I won't be able to spend the time needed to do this.


> The same problem has been present for years with NIS. Same as with nss_ldap,
> NIS happily discovers that the fd it was using before is gone, and re-opens
> it.
Are other file types than sockets involved?

> I don't like the socket hack because:
> 
> 1. It makes closem not close all the fds anymore.
I have already argued this should not be a problem: tcsh never
creates sockets.

> 3. the message that nss_ldap produces should be log_debug at best.
I can imagine scenarios where the message is really useful, but
I don't feel strongly about it.

> 2. The fact that nss_ldap uses sockets now is an artifact of the
>implementation. What if tomorrow it changes to use doors or named pipes?
I have never met doors in practice so I won't comment on 

commit grub2 for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2017-08-08 11:58:03

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


Package is "grub2"

Tue Aug  8 11:58:03 2017 rev:165 rq:512434 version:2.02

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2017-07-12 
19:30:23.815849008 +0200
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2017-08-08 
11:58:04.361884736 +0200
@@ -1,0 +2,5 @@
+Mon Jul 24 13:39:25 UTC 2017 - bwiedem...@suse.com
+
+- Make grub2.info build reproducible (boo#1047218)
+
+---



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.BdfbS6/_old  2017-08-08 11:58:09.709131614 +0200
+++ /var/tmp/diff_new_pack.BdfbS6/_new  2017-08-08 11:58:09.729128797 +0200
@@ -524,6 +524,11 @@
 %patch409 -p1
 %patch410 -p1
 %patch411 -p1
+# patches above may update the timestamp of grub.texi
+# and via build-aux/mdate-sh they end up in grub2.info, breaking build-compare
+[ -z "$SOURCE_DATE_EPOCH" ] ||\
+  [ `stat -c %Y docs/grub.texi` -lt $SOURCE_DATE_EPOCH ] ||\
+  touch -d@$SOURCE_DATE_EPOCH docs/grub.texi
 
 # This simplifies patch handling without need to use git to create patch
 # that renames file






commit libpsl for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package libpsl for openSUSE:Factory checked 
in at 2017-08-08 11:57:54

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


Package is "libpsl"

Tue Aug  8 11:57:54 2017 rev:12 rq:511666 version:0.18.0

Changes:

--- /work/SRC/openSUSE:Factory/libpsl/libpsl.changes2017-04-12 
17:11:24.292127242 +0200
+++ /work/SRC/openSUSE:Factory/.libpsl.new/libpsl.changes   2017-08-08 
11:58:00.026495345 +0200
@@ -1,0 +2,16 @@
+Thu Jul 20 13:48:27 UTC 2017 - astie...@suse.com
+
+- update to 0.18.0:
+  * Fix order of files in psl_latest()
+  * Add fuzzing architecture
+  * Fix memleak in _psl_is_public_suffix()
+  * Add configure option --enable-asan (Address sanitizer)
+  * Add configure option --enable-usan (Undefined sanitizer)
+  * Add configure option --enable-cfi (Control Flow Integrity)
+  * Fix finding libidn2 for static builds
+  * Fix use of uninitialized stack value
+  * Fix buffer overflow in libicu build
+  * Use libidn2 as default for builds (former libicu)
+  * Add pkg-config support for libidn and libidn2
+
+---
--- /work/SRC/openSUSE:Factory/libpsl/psl-make-dafsa.changes2017-02-03 
17:48:16.714910553 +0100
+++ /work/SRC/openSUSE:Factory/.libpsl.new/psl-make-dafsa.changes   
2017-08-08 11:58:00.646408035 +0200
@@ -1,0 +2,6 @@
+Thu Jul 20 13:48:27 UTC 2017 - astie...@suse.com
+
+- update to 0.18.0:
+  * no changes for psl-make-dafsa 
+
+---

Old:

  libpsl-0.17.0.tar.gz

New:

  libpsl-0.18.0.tar.gz



Other differences:
--
++ libpsl.spec ++
--- /var/tmp/diff_new_pack.L8WwUZ/_old  2017-08-08 11:58:02.030213136 +0200
+++ /var/tmp/diff_new_pack.L8WwUZ/_new  2017-08-08 11:58:02.058209193 +0200
@@ -19,10 +19,10 @@
 
 %define somajor 5
 Name:   libpsl
-Version:0.17.0
+Version:0.18.0
 Release:0
 Summary:C library for the Publix Suffix List
-License:MIT and MPL-2.0 and BSD-3-Clause
+License:MIT AND MPL-2.0 AND BSD-3-Clause
 Group:  Development/Libraries/C and C++
 Url:https://rockdaboot.github.io/libpsl
 Source: 
https://github.com/rockdaboot/libpsl/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
@@ -32,7 +32,6 @@
 BuildRequires:  pkgconfig >= 0.9.0
 BuildRequires:  publicsuffix
 BuildRequires:  python-base >= 2.7
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with gtk-doc}
 BuildRequires:  gtk-doc >= 1.15
 %endif
@@ -48,7 +47,7 @@
 %package -n %{name}%{somajor}
 Summary:C library for the Publix Suffix List
 # The libary code is MIT, with built-in data from publicsuffix
-License:MIT and MPL-2.0
+License:MIT AND MPL-2.0
 Group:  System/Libraries
 Recommends: publicsuffix
 
@@ -105,14 +104,13 @@
--disable-runtime \
--disable-builtin \
 %endif
-   --enable-builtin=libidn2 --enable-runtime=libidn2 \
--with-psl-file=%{_datadir}/publicsuffix/public_suffix_list.dat \
--with-psl-distfile=%{_datadir}/publicsuffix/public_suffix_list.dafsa
 
 make %{?_smp_mflags}
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 # in psl-make-dafsa package to break build cycle
 make DESTDIR=%{buildroot} install-man
@@ -125,12 +123,10 @@
 %postun -n %{name}%{somajor} -p /sbin/ldconfig
 
 %files -n %{name}%{somajor}
-%defattr(-,root,root)
 %doc COPYING
 %{_libdir}/libpsl.so.%{somajor}*
 
 %files devel
-%defattr(-,root,root)
 %doc AUTHORS NEWS COPYING
 %doc docs/libpsl/html
 %{_includedir}/libpsl.h
@@ -141,7 +137,6 @@
 %endif
 
 %files -n psl
-%defattr(-,root,root)
 %doc AUTHORS NEWS COPYING
 %{_bindir}/psl
 %{_mandir}/man1/psl.1%{ext_man}

++ psl-make-dafsa.spec ++
--- /var/tmp/diff_new_pack.L8WwUZ/_old  2017-08-08 11:58:02.298175396 +0200
+++ /var/tmp/diff_new_pack.L8WwUZ/_new  2017-08-08 11:58:02.334170326 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   psl-make-dafsa
-Version:0.17.0
+Version:0.18.0
 Release:0
 Summary:Create a binary DAFSA from a Public Suffix List
 License:BSD-3-Clause

++ libpsl-0.17.0.tar.gz -> libpsl-0.18.0.tar.gz ++
/work/SRC/openSUSE:Factory/libpsl/libpsl-0.17.0.tar.gz 
/work/SRC/openSUSE:Factory/.libpsl.new/libpsl-0.18.0.tar.gz differ: char 5, 
line 1




commit vidcutter for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package vidcutter for openSUSE:Factory 
checked in at 2017-08-08 11:58:24

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


Package is "vidcutter"

Tue Aug  8 11:58:24 2017 rev:2 rq:503846 version:3.5.0

Changes:

--- /work/SRC/openSUSE:Factory/vidcutter/vidcutter.changes  2017-06-15 
11:18:59.420711464 +0200
+++ /work/SRC/openSUSE:Factory/.vidcutter.new/vidcutter.changes 2017-08-08 
11:58:27.214666078 +0200
@@ -1,0 +2,41 @@
+Mon May 29 07:28:17 UTC 2017 - aloi...@gmx.com
+
+- Update to version 3.5.0
+  * Redesigned timeline & slider with timecode labels at fixed 
+intervals as per regular video editors.
+  * Thumbnail previews on timeline; the entire timeline background
+is overlayed with thumbnail previews which looks good + helps
+you target where you want to mark a start/stop point. Thumbnail
+generation is threaded so it will not slow the app down or
+hinder your use of it. Thumbnails will regenerate on app resize.
+  * Thumbnail previews and on screen display toggle buttons added
+to far left of main toolbar; what they do is self-explanatory.
+  * Slider movement/sync with mpv backend improved; should be less 
+jumpy on problematic videos with bad indexes.
+  * Configurable seeking time lengths; this is for the up+down and 
+shift up+down keys which were set to 2 secs and 5 secs forwards
+and backwards. You can now set the number of secs as preferred
+via new spinboxes added to the settings menu labelled Seek #1
+and Seek #2.
+  * Additional on screen display text added to various functions
+  * Fixed bug when clearing clip index and you could not continue 
+navigating video requiring you to reload.
+  * Continue button added to the job completion dialog and set as 
+the default button selection.
+  * libmpv bindings library updated with the latest changed from 
+upstream; should not be noticeable to users albeit improved
+playback or slider position sync.
+  * VidCutter project files (.vcp) can now be preloaded like regular 
+videos either by passing file path on command line or drag 'n
+dropping project onto a VidCutter application/shortcut icon.
+  * New icon, let me know if you find the old icon still being used 
+someplace
+  * Other minor bug fixes from user issues.
+
+---
+Wed May 10 11:36:12 UTC 2017 - jeng...@inai.de
+
+- Trim filler words from description. Rewrite, because ffmpeg
+  is not driving any GUI - the GUI drives ffmpeg.
+
+---

Old:

  vidcutter-3.2.0.tar.gz

New:

  vidcutter-3.5.0.tar.gz



Other differences:
--
++ vidcutter.spec ++
--- /var/tmp/diff_new_pack.icDWoH/_old  2017-08-08 11:58:28.246520749 +0200
+++ /var/tmp/diff_new_pack.icDWoH/_new  2017-08-08 11:58:28.254519622 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   vidcutter
-Version:3.2.0
+Version:3.5.0
 Release:0
 Summary:Video cutter and joiner
 License:GPL-3.0+
@@ -41,9 +41,8 @@
 BuildArch:  noarch
 
 %description
-Cross-platform Qt5 based app for quick and easy video trimming/splitting
-and merging/joining for simple quick edits. FFmpeg drives the backend with
-a stylishly hand edited Qt5 UI.
+Vidcutter is a Qt5-based application for video trimming/splitting
+and merging/joining. The backend is driven by FFmpeg.
 
 %prep
 %setup -q
@@ -89,6 +88,7 @@
 %{_datadir}/icons/hicolor/256x256/apps/%{name}.png
 %{_datadir}/icons/hicolor/512x512/apps/%{name}.png
 %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
+%{_datadir}/mime/packages/x-%{name}.xml
 %{_datadir}/pixmaps/%{name}.svg
 
 %changelog

++ vidcutter-3.2.0.tar.gz -> vidcutter-3.5.0.tar.gz ++
 186743 lines of diff (skipped)




commit umoci for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package umoci for openSUSE:Factory checked 
in at 2017-08-08 11:58:15

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


Package is "umoci"

Tue Aug  8 11:58:15 2017 rev:5 rq:512497 version:0.3.0

Changes:

--- /work/SRC/openSUSE:Factory/umoci/umoci.changes  2017-05-24 
16:46:42.709440477 +0200
+++ /work/SRC/openSUSE:Factory/.umoci.new/umoci.changes 2017-08-08 
11:58:16.948112053 +0200
@@ -1,0 +2,57 @@
+Tue Jul 25 10:42:54 UTC 2017 - asa...@suse.com
+
+- Add backport of https://github.com/openSUSE/umoci/pull/157, to fix i586
+  builds.
++ i586-0001-fix-mis-usage-of-time.Unix.patch
+
+---
+Sat Jul 22 15:57:44 UTC 2017 - asa...@suse.com
+
+- Update to umoci v0.3.0. Upstream changelog:
+   - `umoci` now passes all of the requirements for the [CII best 
practices bading
+ program][cii]. openSUSE/umoci#134
+   - `umoci` also now has more extensive architecture, quick-start and 
roadmap
+ documentation. openSUSE/umoci#134
+   - `umoci` now supports [`1.0.0` of the OCI image
+ specification][ispec-v1.0.0] and [`1.0.0` of the OCI runtime
+ specification][rspec-v1.0.0], which are the first milestone release. 
Note
+ that there are still some remaining UX issues with `--image` and 
other parts
+ of `umoci` which may be subject to change in future versions. In 
particular,
+ this update of the specification now means that images may have 
ambiguous
+ tags. `umoci` will warn you if an operation may have an ambiguous 
result, but
+ we plan to improve this functionality far more in the future.
+ openSUSE/umoci#133 openSUSE/umoci#142
+   - `umoci` also now supports more complicated descriptor walk 
structures, and
+ also handles mutation of such structures more sanely. At the moment, 
this
+ functionality has not been used "in the wild" and `umoci` doesn't 
have the UX
+ to create such structures (yet) but these will be implemented in 
future
+ versions. openSUSE/umoci#145
+   - `umoci repack` now supports `--mask-path` to ignore changes in the 
rootfs
+ that are in a child of at least one of the provided masks when 
generating new
+ layers. openSUSE/umoci#127
+   - Error messages from `github.com/openSUSE/umoci/oci/cas/drivers/dir` 
actually
+ make sense now. openSUSE/umoci#121
+   - `umoci unpack` now generates `config.json` blobs according to the 
[still
+ proposed][ispec-pr492] OCI image specification conversion document.
+ openSUSE/umoci#120
+   - `umoci repack` also now automatically adding `Config.Volumes` from 
the image
+ configuration to the set of masked paths.  This matches recently added
+ [recommendations by the spec][ispec-pr694], but is a 
backwards-incompatible
+ change because the new default is that `Config.Volumes` **will** be 
masked.
+ If you wish to retain the old semantics, use `--no-mask-volumes` 
(though make
+ sure to be aware of the reasoning behind `Config.Volume` masking).
+ openSUSE/umoci#127
+   - `umoci` now uses [`SecureJoin`][securejoin] rather than a patched 
version of
+ `FollowSymlinkInScope`. The two implementations are roughly 
equivalent, but
+ `SecureJoin` has a nicer API and is maintained as a separate project.
+   - Switched to using `golang.org/x/sys/unix` over `syscall` where 
possible,
+ which makes the codebase significantly cleaner. openSUSE/umoci#141
+
+   [cii]: https://bestpractices.coreinfrastructure.org/projects/1084
+   [rspec-v1.0.0]: 
https://github.com/opencontainers/runtime-spec/releases/tag/v1.0.0
+   [ispec-v1.0.0]: 
https://github.com/opencontainers/image-spec/releases/tag/v1.0.0
+   [ispec-pr492]: https://github.com/opencontainers/image-spec/pull/492
+   [ispec-pr694]: https://github.com/opencontainers/image-spec/pull/694
+   [securejoin]: https://github.com/cyphar/filepath-securejoin
+
+---

Old:

  umoci-0.2.1.tar.xz
  umoci-0.2.1.tar.xz.asc

New:

  i586-0001-fix-mis-usage-of-time.Unix.patch
  umoci-0.3.0.tar.xz
  umoci-0.3.0.tar.xz.asc



Other differences:
--
++ umoci.spec ++
--- /var/tmp/diff_new_pack.izCfmE/_old  2017-08-08 11:58:18.407906450 +0200
+++ /var/tmp/diff_new_pack.izCfmE/_new  2017-08-08 11:58:18.427903634 +0200
@@ -24,7 +24,7 @@
 %define project github.com/openSUSE/umoci
 
 Name:   umoci
-Version:0.2.1
+Version:0.3.0
 Release:0
 Summary

commit tigervnc for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package tigervnc for openSUSE:Factory 
checked in at 2017-08-08 11:57:50

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


Package is "tigervnc"

Tue Aug  8 11:57:50 2017 rev:42 rq:511646 version:1.8.0

Changes:

--- /work/SRC/openSUSE:Factory/tigervnc/tigervnc.changes2017-06-16 
10:53:29.710379631 +0200
+++ /work/SRC/openSUSE:Factory/.tigervnc.new/tigervnc.changes   2017-08-08 
11:57:50.383853443 +0200
@@ -1,0 +2,19 @@
+Thu Jul 20 07:49:41 UTC 2017 - m...@suse.com
+
+- U_allow_multiple_certs_with_same_dn_in_saved_certs_file.patch,
+  U_handle_certificate_verification_for_saved_certs_correctly.patch
+  * Fix certificate handling in the java client. (bnc#1041847)
+
+- Refresh u_tigervnc-add-autoaccept-parameter.patch and apply it
+  last.
+
+- Make sure CN in generated certificate doesn't exceed 64
+  characters. (bnc#1041847)
+
+---
+Fri Jul  7 08:06:00 UTC 2017 - m...@suse.com
+
+- Change with-vnc-key.sh to generate TLS certificate using current
+  hostname. (bnc#1041847)
+
+---

New:

  U_allow_multiple_certs_with_same_dn_in_saved_certs_file.patch
  U_handle_certificate_verification_for_saved_certs_correctly.patch



Other differences:
--
++ tigervnc.spec ++
--- /var/tmp/diff_new_pack.s02rYR/_old  2017-08-08 11:57:51.935634886 +0200
+++ /var/tmp/diff_new_pack.s02rYR/_new  2017-08-08 11:57:51.955632069 +0200
@@ -116,10 +116,12 @@
 Patch3: u_tigervnc-ignore-epipe-on-write.patch
 Patch4: n_tigervnc-date-time.patch
 Patch5: u_tigervnc-cve-2014-8240.patch
-Patch6: u_tigervnc-add-autoaccept-parameter.patch
-Patch7: u_tigervnc_update_default_vncxstartup.patch
-Patch8: u_build_libXvnc_as_separate_library.patch
-Patch9: u_tigervnc-show-unencrypted-warning.patch
+Patch6: u_tigervnc_update_default_vncxstartup.patch
+Patch7: u_build_libXvnc_as_separate_library.patch
+Patch8: u_tigervnc-show-unencrypted-warning.patch
+Patch9: U_allow_multiple_certs_with_same_dn_in_saved_certs_file.patch
+Patch10:
U_handle_certificate_verification_for_saved_certs_correctly.patch
+Patch11:u_tigervnc-add-autoaccept-parameter.patch
 
 %description
 TigerVNC is a high-performance, platform-neutral implementation of VNC 
(Virtual Network Computing), 
@@ -143,6 +145,8 @@
 Requires:   xkbcomp
 Requires:   xkeyboard-config
 Requires:   xorg-x11-fonts-core
+# For the with-vnc-key.sh script
+Requires:   /bin/hostname
 Provides:   xorg-x11-Xvnc:/usr/lib/vnc/with-vnc-key.sh
 Summary:TigerVNC implementation of Xvnc
 Group:  System/X11/Servers/XF86_4
@@ -178,6 +182,8 @@
 %patch7 -p1
 %patch8 -p1
 %patch9 -p1
+%patch10 -p1
+%patch11 -p1
 
 pushd unix/xserver
 patch -p1 < ../xserver119.patch

++ U_allow_multiple_certs_with_same_dn_in_saved_certs_file.patch ++
Git-commit: 7fcc8614e1ff8c19fd3a1a275fa5ab6eda28f6bd
Author: "Brian P. Hinz" 
Subject: Allow multiple certs with same DN in saved certs file.
Signed-off-by: Michal Srb 
References: bnc#1041847


diff --git a/java/com/tigervnc/rfb/CSecurityTLS.java 
b/java/com/tigervnc/rfb/CSecurityTLS.java
index 4b20e0bf..08aa1125 100644
--- a/java/com/tigervnc/rfb/CSecurityTLS.java
+++ b/java/com/tigervnc/rfb/CSecurityTLS.java
@@ -218,9 +218,8 @@ public class CSecurityTLS extends CSecurity {
   Collection cacerts =
 cf.generateCertificates(caStream);
   for (Certificate cert : cacerts) {
-String dn =
-  ((X509Certificate)cert).getSubjectX500Principal().getName();
-ks.setCertificateEntry(dn, (X509Certificate)cert);
+String thumbprint = getThumbprint((X509Certificate)cert);
+ks.setCertificateEntry(thumbprint, (X509Certificate)cert);
   }
 }
 File cacert = new File(cafile);
@@ -229,9 +228,8 @@ public class CSecurityTLS extends CSecurity {
   Collection cacerts =
 cf.generateCertificates(caStream);
   for (Certificate cert : cacerts) {
-String dn =
-  ((X509Certificate)cert).getSubjectX500Principal().getName();
-ks.setCertificateEntry(dn, (X509Certificate)cert);
+String thumbprint = getThumbprint((X509Certificate)cert);
+ks.setCertificateEntry(thumbprint, (X509Certificate)cert);
   }
 }
 PKIXBuilderParameters params =
@@ -264,19 +262,13 @@ public class CSecurityTLS extends CSecurity {
 public void checkServerTrusted(X509Certificate[] chain, String authT

commit capnet-assist for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package capnet-assist for openSUSE:Factory 
checked in at 2017-08-08 11:58:22

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


Package is "capnet-assist"

Tue Aug  8 11:58:22 2017 rev:1 rq:503466 version:0.2.1

Changes:

New Changes file:

--- /dev/null   2017-07-20 07:30:00.335470106 +0200
+++ /work/SRC/openSUSE:Factory/.capnet-assist.new/capnet-assist.changes 
2017-08-08 11:58:23.843140935 +0200
@@ -0,0 +1,43 @@
+---
+Thu Jan 19 20:38:51 UTC 2017 - avvi...@yandex.by
+
+- Update to 0.2.1:
+  * Change the capnet dummy URL address
+  * Launchpad automatic translations update.
+  * Add 2017 to license copyright and app years.
+  * Add GSetting to enable the assistant
+  * move the TLS popover code to the cert_button class
+  * Pass Downloads to a web browser
+  * New Window & tab requests are put into their own tabs
+  * update translation template
+  * CaptiveLogin.vala: Use the construct method
+  * CaptiveLogin.vala:
+  * Eliminate the variable view_security
+  * Only check security once to assign style classes in the 
+popover
+  * CertButton.vala:
+  * Make security a gettable property
+  * Move captivity check to the application class
+  * Update license header
+  * return privacy mode without creating a variable
+  * remove extra comment
+
+---
+Tue Sep 20 16:36:19 UTC 2016 - avvi...@yandex.by
+
+- Add Recommends: capnet-assist-lang
+
+---
+Sat Sep 10 16:09:42 UTC 2016 - mailaen...@opensuse.org
+
+- update to version 0.2.0.1
+
+---
+Thu Mar 10 18:49:06 UTC 2016 - and.novem...@opensuse.org
+
+- update
+
+---
+Sat Sep 26 08:34:51 UTC 2015 - and.novem...@opensuse.org
+
+- initial package (version 0.1.1) for build.opensuse.org

New:

  capnet-assist-0.2.1.tar.xz
  capnet-assist.changes
  capnet-assist.spec



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

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


Name:   capnet-assist
Version:0.2.1
Release:0
Summary:Captive Portal Assistant
License:GPL-3.0
Group:  Productivity/Networking/Other
Url:https://launchpad.net/capnet-assist
Source: 
https://launchpad.net/capnet-assist/loki/%{version}/+download/%{name}-%{version}.tar.xz
BuildRequires:  cmake
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  pkgconfig
BuildRequires:  update-desktop-files
BuildRequires:  vala >= 0.28.0
BuildRequires:  pkgconfig(gcr-3)
BuildRequires:  pkgconfig(gcr-ui-3)
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(granite)
BuildRequires:  pkgconfig(gtk+-3.0)
BuildRequires:  pkgconfig(webkit2gtk-4.0)
Recommends: %{name}-lang
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%glib2_gsettings_schema_requires

%description
Assists users in connective to Captive Portals such as those found on
public access points in train stations, coffee shops, universities, etc.
Upon detection, the assistant appears showing the captive portal. Once a
connection is known to have been established, it dismisses itself. Written
in Vala and using WebkitGtk+.

%lang_package

%prep
%setup -q

%build
%cmake
make %{?_smp_mflags}

%install
%cmake_install
%suse_update_desktop_file org.pantheon.%{name}
%fdupes %{buildroot}%{_datadir}/locale
%find_lang captive-login %{name}.lang

%post
%desktop_database_post
%glib2_gsettings_schema_post

%postun
%desktop_database_postun
%glib2_gsettings_schema_postun

%files
%defattr(-,root,root)
%doc AUTHORS COPYING README*
%{_bindir}/captive-login
%{_datadir}/applications/org.pantheon.%{name}.desktop
%{_datadir}/glib-2.0/schemas/org.pantheon.capnet-assist.gschema.xml
%dir %{_sysconfdir}/NetworkManager
%dir %{_sysconfdir}/NetworkManage

commit pidentd for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package pidentd for openSUSE:Factory checked 
in at 2017-08-08 11:58:28

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


Package is "pidentd"

Tue Aug  8 11:58:28 2017 rev:19 rq:504898 version:3.0.19

Changes:

--- /work/SRC/openSUSE:Factory/pidentd/pidentd.changes  2012-05-25 
16:18:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.pidentd.new/pidentd.changes 2017-08-08 
11:58:32.365940555 +0200
@@ -1,0 +2,30 @@
+Fri Jun 16 07:58:42 UTC 2017 - tchva...@suse.com
+
+- Switch to github url
+- Remove pidentd-SuSE.tar.bz2 as it contains only sysv initscript
+- Remove xinetd service as we should be using socket activation if needed
+  (atm it really is not required so do not provide it by default)
+- Switch to released upstream tarball 3.0.19 used by all other distributions
+- Drop all the patches, upstream seem to merge or include them one
+  way or another:
+  * pidentd-3.1a25-allocfix.diff
+  * pidentd-3.1a25-autoconf.diff
+  * pidentd-3.1a25-autoheader.diff
+  * pidentd-3.1a25-buffer-overflow.diff
+  * pidentd-3.1a25-config.diff
+  * pidentd-3.1a25-fmt.diff
+  * pidentd-3.1a25-ipv6.diff
+  * pidentd-3.1a25-prototypes.diff
+  * pidentd-3.1a25-send.diff
+  * pidentd-3.1a25-warnings-fix.diff
+- Add patch to respect destdir in install:
+  * pidentd-destdir.patch
+- Add patch from debian:
+  * 01-legacy.patch
+- Add patch to fix gcc errors found by brp checks:
+  * pidentd-rpmlint-gcc-checks.patch
+- Add patch to not include date/time in binaries:
+  * pidentd-no-date.patch
+- Install proper systemd service
+
+---

Old:

  pidentd-3.1a25-allocfix.diff
  pidentd-3.1a25-autoconf.diff
  pidentd-3.1a25-autoheader.diff
  pidentd-3.1a25-buffer-overflow.diff
  pidentd-3.1a25-config.diff
  pidentd-3.1a25-fmt.diff
  pidentd-3.1a25-ipv6.diff
  pidentd-3.1a25-prototypes.diff
  pidentd-3.1a25-send.diff
  pidentd-3.1a25-warnings-fix.diff
  pidentd-3.1a25.tar.bz2
  pidentd-SuSE.tar.bz2
  pidentd.xinetd

New:

  01-legacy.patch
  pidentd-destdir.patch
  pidentd-no-date.patch
  pidentd-rpmlint-gcc-checks.patch
  pidentd.service
  v3.0.19.tar.gz



Other differences:
--
++ pidentd.spec ++
--- /var/tmp/diff_new_pack.P3tA6q/_old  2017-08-08 11:58:36.245394160 +0200
+++ /var/tmp/diff_new_pack.P3tA6q/_new  2017-08-08 11:58:36.269390780 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pidentd
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,28 +17,19 @@
 
 
 Name:   pidentd
-PreReq: %insserv_prereq %fillup_prereq
-Provides:   nkitb:/usr/sbin/in.identd
-Version:3.1a25
+Version:3.0.19
 Release:0
 Summary:An Implementation of the RFC1413 Identification Server
 License:GPL-2.0+
 Group:  Productivity/Networking/System
-Url:http://sf.www.lysator.liu.se/~pen/pidentd/
-Source: %{name}-%{version}.tar.bz2
-Source1:%{name}-SuSE.tar.bz2
-Source2:%{name}.xinetd
-Patch0: %{name}-%{version}-config.diff
-Patch1: %{name}-%{version}-allocfix.diff
-Patch2: %{name}-%{version}-buffer-overflow.diff
-Patch3: %{name}-%{version}-fmt.diff
-Patch4: %{name}-%{version}-prototypes.diff
-Patch5: %{name}-%{version}-autoconf.diff
-Patch6: %{name}-%{version}-warnings-fix.diff
-Patch7: %{name}-%{version}-send.diff
-Patch8: %{name}-%{version}-ipv6.diff
-Patch9: %{name}-%{version}-autoheader.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/ptrrkssn/pidentd
+Source: https://github.com/ptrrkssn/pidentd/archive/v%{version}.tar.gz
+Source1:pidentd.service
+Patch0: pidentd-destdir.patch
+Patch1: 01-legacy.patch
+Patch2: pidentd-rpmlint-gcc-checks.patch
+Patch3: pidentd-no-date.patch
+BuildRequires:  autoconf
 BuildRequires:  libtool
 Requires:   inet-daemon
 
@@ -47,77 +38,53 @@
 server.  Identd looks up specific TCP/IP connections and returns the
 user name and other information about the connection.
 
-
-
-Authors:
-
-Peter Eriksson 
-
-%define prefix   /usr
-
 %prep
-%setup -q -a 1
-%patch0
-%patch1
-%patch2
-%patch3
-%patch4
-%patch5
-%patch6
-%patch7
-%patch8
-%patch9 -p1
+%setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
-# files are not copied by autoreconf since package doesn't use automak

commit gns3-server for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package gns3-server for openSUSE:Factory 
checked in at 2017-08-08 11:58:55

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


Package is "gns3-server"

Tue Aug  8 11:58:55 2017 rev:10 rq:511359 version:2.0.3

Changes:

--- /work/SRC/openSUSE:Factory/gns3-server/gns3-server.changes  2017-05-17 
17:19:00.911482097 +0200
+++ /work/SRC/openSUSE:Factory/.gns3-server.new/gns3-server.changes 
2017-08-08 11:58:57.002470661 +0200
@@ -1,0 +2,8 @@
+Sat Jun 24 19:42:05 UTC 2017 - mrueck...@suse.de
+
+- update to 2.0.3
+  https://github.com/GNS3/gns3-server/releases/tag/v2.0.1
+  https://github.com/GNS3/gns3-server/releases/tag/v2.0.2
+  https://github.com/GNS3/gns3-server/releases/tag/v2.0.3
+
+---

Old:

  gns3-server-2.0.0.tar.gz

New:

  gns3-server-2.0.3.tar.gz



Other differences:
--
++ gns3-server.spec ++
--- /var/tmp/diff_new_pack.dAF1Fo/_old  2017-08-08 11:58:59.118172678 +0200
+++ /var/tmp/diff_new_pack.dAF1Fo/_new  2017-08-08 11:58:59.146168735 +0200
@@ -27,28 +27,28 @@
 Summary:GNS3 is a graphical network simulator
 License:GPL-3.0+
 Group:  Productivity/Networking/Other
-Version:2.0.0
+Version:2.0.3
 Release:0
 Url:http://www.gns3.net/
 Source0:%{name}-%{version}.tar.gz
 Source1:   %{name}-rpmlintrc
+BuildRequires:  busybox
 BuildRequires:  python3-devel >= 3.3
 BuildRequires:  python3-pip
 BuildRequires:  python3-setuptools
-BuildRequires: busybox
+Requires:   busybox
 Requires:   cpulimit
-Requires:   dynamips >= 0.2.11
 Requires:  docker
+Requires:   dynamips >= 0.2.11
 Requires:   iouyap
 Requires:   python3-Jinja2 >= 2.7.3
 Requires:   python3-aiohttp >= 0.21.5
+Requires:   python3-docker-py >= 1.4.0
 Requires:   python3-jsonschema >= 2.4.0
-Requires:   python3-raven >= 5.2.0
 Requires:  python3-psutil >= 3.0.0
-Requires:  python3-docker-py >= 1.4.0
+Requires:   python3-raven >= 5.2.0
 Requires:  python3-zipstream >= 1.1.3
 Requires:   qemu
-Requires:  busybox
 Requires:   vpcs >= 0.5b1
 Requires:   wireshark
 %if 0%{?suse_version}

++ gns3-server-2.0.0.tar.gz -> gns3-server-2.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-server-2.0.0/.gitignore 
new/gns3-server-2.0.3/.gitignore
--- old/gns3-server-2.0.0/.gitignore2017-05-02 10:16:11.0 +0200
+++ new/gns3-server-2.0.3/.gitignore2017-06-13 10:35:50.0 +0200
@@ -53,3 +53,6 @@
 vpcs.hist
 startup.vpcs
 .gns3_shell_history
+
+# Virtualenv
+env
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-server-2.0.0/.travis.yml 
new/gns3-server-2.0.3/.travis.yml
--- old/gns3-server-2.0.0/.travis.yml   2017-05-02 10:16:11.0 +0200
+++ new/gns3-server-2.0.3/.travis.yml   2017-06-13 10:35:50.0 +0200
@@ -9,7 +9,8 @@
 - python setup.py install
 - pip install -rdev-requirements.txt
 script:
-- py.test -v -s tests
+- mkdir ‡
+- py.test -v -s tests --basetemp=‡
 deploy:
   provider: pypi
   user: noplay
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-server-2.0.0/CHANGELOG 
new/gns3-server-2.0.3/CHANGELOG
--- old/gns3-server-2.0.0/CHANGELOG 2017-05-02 10:16:11.0 +0200
+++ new/gns3-server-2.0.3/CHANGELOG 2017-06-13 10:35:50.0 +0200
@@ -1,5 +1,62 @@
 # Change Log
 
+## 2.0.3 13/06/2017
+
+* Fixes #1068 - handle zipfile encoding issues at project duplication
+* Fix: #1066 - Catching parsing errors at linked vbox file
+* Ignoring virtualenv directory at gitignore
+* Escaping VPCS name in regex #1067
+* Fix racecondition when listing interface
+* Fix Qemu disk creation with unicode characters not supported by local 
filesystem #1058 (#1063)
+* Fix when config file doesn't have computes section (#1062)
+* Check aiohttp version
+
+## 2.0.2 30/05/2017
+
+* Set correct permission on ubridge when doing a remote installation
+* Remote install script should be totally non interactive
+* Duplicate project on remote server use UUID
+* Fix import of some old topologies from 1.3
+* Fix error in logging of error during starting GNS3 VM
+* Fix an error when logging Docker container fail to start
+* Use docker version in error message of outdated docker installation
+* Support images created by "docker commit". Fixes #1039
+* Do not wait auto start to finish in order to complete project opening
+* Improv

commit rssguard for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package rssguard for openSUSE:Factory 
checked in at 2017-08-08 11:58:37

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


Package is "rssguard"

Tue Aug  8 11:58:37 2017 rev:3 rq:510076 version:3.4.1

Changes:

--- /work/SRC/openSUSE:Factory/rssguard/rssguard.changes2017-03-14 
10:07:10.135093533 +0100
+++ /work/SRC/openSUSE:Factory/.rssguard.new/rssguard.changes   2017-08-08 
11:58:42.648492326 +0200
@@ -1,0 +2,38 @@
+Thu Jul 13 11:40:16 UTC 2017 - aloi...@gmx.com
+
+- Update to version 3.4.1
+  Added:
+  * Toolbar editor can reset toolbars.
+  * Toolbar editor now uses iconified tool buttons.
+  * Double mouse click on feed or recycle bin items in feeds list
+now opens all messages of the item in newspaper mode.
+  * Columns in message list can be hidden/shown/reordered with
+context menu. (issue #115)
+  * Auto-update notification is now switchable. (issue #119)
+  * Messages which are not removed or restored are not instantly
+deleted from list, they are striked-through instead. This is
+more resource friendly.
+  * Message list is now not reloaded when doing batch message
+operations.
+  * Message list SQL queries are now fully adjustable. This will
+allow for integration of labels functionality in the future.
+  * Auto-update status of feeds is now more general and complete.
+(issue #91)
+  * Display feed title in list of messages. (issue #97)
+  * Displayed feeds can now be sorted by multiple columns. Do you
+want to sort by author, and THEN by title? Simply click first
+"Title" column, then on "Author" column. If you hold CTRL during
+sorting, the sort is done in reverse column order.
+  Changed:
+  * Updating of RSS Guard now uses GitHub API. (issue #109)
+  * Better ATOM/RSS parsing, respects now XML namespaces, bit
+better link parsing and other stuff. (issue #104)
+  * Folder which holds SQL scripts got renamed to "sql".
+  * Tweaked some conditions for determining newly "updated"
+messages in ATOM format. (issue #103)
+  Fixed:
+  * Fixed regression when restoring deleted messages.
+  * Crash in TT-RSS plugin on application exit, when TT-RSS user
+needed to be logged out.
+
+---

Old:

  rssguard-3.4.0.tar.gz

New:

  rssguard-3.4.1.tar.gz



Other differences:
--
++ rssguard.spec ++
--- /var/tmp/diff_new_pack.KpeTiN/_old  2017-08-08 11:58:43.540366711 +0200
+++ /var/tmp/diff_new_pack.KpeTiN/_new  2017-08-08 11:58:43.560363895 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rssguard
-Version:3.4.0
+Version:3.4.1
 Release:0
 Summary:RSS/ATOM/RDF feed reader
 License:GPL-3.0
@@ -59,6 +59,7 @@
 sed -e "s/__DATE__/\"$FAKE_BUILDDATE\"/" -i src/gui/dialogs/formabout.cpp
 
 dos2unix resources/desktop/rssguard.desktop.autostart \
+ resources/sql/db_update_sqlite_7_8.sql \
  resources/skins/dark/html_single_message.html \
  resources/skins/dark/html_wrapper.html \
  resources/skins/dark/theme.css \
@@ -66,7 +67,7 @@
  resources/skins/vergilius/html_wrapper.html \
  resources/skins/vergilius/html_single_message.html
 chmod -x resources/desktop/rssguard.desktop.autostart resources/text/CHANGELOG 
\
- resources/misc/db_update*.sql resources/skins/*/*.html \
+ resources/sql/db_update*.sql resources/skins/*/*.html \
  resources/skins/*/*.css resources/skins/*/*.xml
 
 %build
@@ -88,7 +89,7 @@
 %{_datadir}/%{name}/icons
 %{_datadir}/%{name}/information
 %{_datadir}/%{name}/initial_feeds
-%{_datadir}/%{name}/misc
+%{_datadir}/%{name}/sql
 %{_datadir}/%{name}/skins
 
 %files lang -f %{name}.lang

++ rssguard-3.4.0.tar.gz -> rssguard-3.4.1.tar.gz ++
 16401 lines of diff (skipped)




commit gns3 for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package gns3 for openSUSE:Factory checked in 
at 2017-08-08 11:58:58

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


Package is "gns3"

Tue Aug  8 11:58:58 2017 rev:29 rq:511360 version:2.0.3

Changes:

--- /work/SRC/openSUSE:Factory/gns3/gns3.changes2017-05-17 
17:18:50.272982356 +0200
+++ /work/SRC/openSUSE:Factory/.gns3.new/gns3.changes   2017-08-08 
11:59:04.753378995 +0200
@@ -1,0 +2,8 @@
+Sat Jun 24 19:38:21 UTC 2017 - mrueck...@suse.de
+
+- update to 2.0.3
+  - https://github.com/GNS3/gns3-gui/releases/tag/v2.0.1
+  - https://github.com/GNS3/gns3-gui/releases/tag/v2.0.2
+  - https://github.com/GNS3/gns3-gui/releases/tag/v2.0.3
+
+---

Old:

  gns3-gui-2.0.0.tar.gz

New:

  gns3-gui-2.0.3.tar.gz



Other differences:
--
++ gns3.spec ++
--- /var/tmp/diff_new_pack.rwK2eq/_old  2017-08-08 11:59:07.68092 +0200
+++ /var/tmp/diff_new_pack.rwK2eq/_new  2017-08-08 11:59:07.704963283 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gns3
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -27,7 +27,7 @@
 Summary:A graphical network simulator
 License:GPL-3.0+
 Group:  Productivity/Networking/Other
-Version:2.0.0
+Version:2.0.3
 Release:0
 Url:http://www.gns3.net/
 Source0:%{name}-gui-%{version}.tar.gz
@@ -44,12 +44,12 @@
 BuildRequires:  update-desktop-files
 %endif
 Requires:   gns3-server = %{version}
+Requires:   python3-configobj
 Requires:   python3-jsonschema >= 2.4.0
-Requires:   python3-raven >= 5.2.0
 Requires:  python3-psutil >= 3.0.0
-Requires:  python3-configobj
-Requires:  python3-sip
 Requires:  python3-qt5
+Requires:   python3-raven >= 5.2.0
+Requires:   python3-sip
 Provides:   gns3-gui > %{version}
 Obsoletes:  gns3-gui <= %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build


++ gns3-gui-2.0.0.tar.gz -> gns3-gui-2.0.3.tar.gz ++
 1863 lines of diff (skipped)





commit skopeo for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package skopeo for openSUSE:Factory checked 
in at 2017-08-08 11:59:07

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


Package is "skopeo"

Tue Aug  8 11:59:07 2017 rev:2 rq:512231 version:0.1.23

Changes:

--- /work/SRC/openSUSE:Factory/skopeo/skopeo.changes2017-05-27 
13:13:27.497127075 +0200
+++ /work/SRC/openSUSE:Factory/.skopeo.new/skopeo.changes   2017-08-08 
11:59:12.300316056 +0200
@@ -1,0 +2,8 @@
+Sat Jul 22 16:25:08 UTC 2017 - asa...@suse.com
+
+- Update to skopeo v0.1.23. This supports OCI v1, as well as a variety of new
+  transports such as docker-archive and ostree.
+- Disable ostree builds by default with %bcond_with, as only Tumbleweed has
+  libostree and we need skopeo for KIWI.
+
+---

Old:

  skopeo-0.1.19.tar.xz

New:

  skopeo-0.1.23.tar.xz



Other differences:
--
++ skopeo.spec ++
--- /var/tmp/diff_new_pack.KLoVcB/_old  2017-08-08 11:59:13.224185935 +0200
+++ /var/tmp/diff_new_pack.KLoVcB/_new  2017-08-08 11:59:13.228185371 +0200
@@ -16,15 +16,15 @@
 #
 # nodebuginfo
 
-# By the time this project is mature, all interesting architectures will have
-# full ports of the gc compiler -- meaning there's no point in handling gcc-go.
-%define go_arches %ix86 x86_64 aarch64
+
+# Don't enable ostree by default, as libostree is only available in tumbleweed.
+%bcond_with ostree
 
 # Remove stripping of Go binaries.
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:   skopeo
-Version:0.1.19
+Version:0.1.23
 Release:0
 Summary:Container image repository tool
 License:Apache-2.0
@@ -36,8 +36,12 @@
 BuildRequires:  libgpgme-devel
 # Required for containers/storage integration.
 BuildRequires:  device-mapper-devel >= 1.2.68
+BuildRequires:  glib2-devel
 BuildRequires:  libbtrfs-devel >= 3.8
-BuildRoot:  %{_tmppath}/%{name}-%{raw_version}-build
+%if 0%{with ostree}
+BuildRequires:  libostree-devel
+%endif
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 skopeo is a command line utility for various operations on container images and
@@ -57,6 +61,9 @@
 %if 0%{?suse_version} <= 1320
BUILDTAGS+=" libdm_no_deferred_remove"
 %endif
+%if ! 0%{with ostree}
+   BUILDTAGS+=" containers_image_ostree_stub"
+%endif
 
 # Build.
 go build -ldflags "-X main.gitCommit=" -gcflags "" -tags "$BUILDTAGS" -o 
skopeo github.com/projectatomic/skopeo/cmd/skopeo
@@ -64,8 +71,8 @@
 
 %install
 # Install the binary.
-%{__install} -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
-%{__install} -D -m 0644 default-policy.json 
"%{buildroot}/etc/containers/policy.json"
+install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
+install -D -m 0644 default-policy.json 
"%{buildroot}/etc/containers/policy.json"
 make INSTALLDIR="%{buildroot}/%{_bindir}" install-binary
 
 # Install the docs.

++ _service ++
--- /var/tmp/diff_new_pack.KLoVcB/_old  2017-08-08 11:59:13.300175232 +0200
+++ /var/tmp/diff_new_pack.KLoVcB/_new  2017-08-08 11:59:13.300175232 +0200
@@ -3,8 +3,8 @@
 https://github.com/projectatomic/skopeo
 git
 skopeo
-0.1.19
-v0.1.19
+0.1.23
+v0.1.23
 .git
   
   

++ skopeo-0.1.19.tar.xz -> skopeo-0.1.23.tar.xz ++
 176989 lines of diff (skipped)




commit python-reportlab for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package python-reportlab for 
openSUSE:Factory checked in at 2017-08-08 11:59:11

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


Package is "python-reportlab"

Tue Aug  8 11:59:11 2017 rev:18 rq:512552 version:3.4.0

Changes:

--- /work/SRC/openSUSE:Factory/python-reportlab/python-reportlab.changes
2017-05-22 10:46:29.169348125 +0200
+++ /work/SRC/openSUSE:Factory/.python-reportlab.new/python-reportlab.changes   
2017-08-08 11:59:16.243760647 +0200
@@ -1,0 +2,10 @@
+Tue Jul 25 14:45:47 UTC 2017 - jmate...@suse.com
+
+- drop-requirements.patch: do not list setuptools and pip in egg-info
+  as requirements
+  (fixes bsc#1049516, upstream issue 
https://bitbucket.org/rptlab/reportlab/issues/113 )
+- set LANG variable correctly to help with test suite
+  * note that test suite is broken, multiple tests fail and this does not stop 
build
+  * causes of failure are spurious though
+
+---

New:

  drop-requirements.patch



Other differences:
--
++ python-reportlab.spec ++
--- /var/tmp/diff_new_pack.QO1FFe/_old  2017-08-08 11:59:17.023650804 +0200
+++ /var/tmp/diff_new_pack.QO1FFe/_new  2017-08-08 11:59:17.039648550 +0200
@@ -29,14 +29,16 @@
 Group:  Development/Languages/Python
 Source: 
https://files.pythonhosted.org/packages/source/r/reportlab/reportlab-%{version}.tar.gz
 Patch0: reportlab-missing-includes.patch
+# PATCH-FIX-UPSTREAM drop unneeded requirements 
https://bitbucket.org/rptlab/reportlab/issues/113
+Patch1: drop-requirements.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  freetype2-devel
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module Pillow}
+BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module xml}
+BuildRequires:  fdupes
+BuildRequires:  freetype2-devel
+BuildRequires:  python-rpm-macros
 Requires:   python-Pillow
 %ifpython2
 Obsoletes:  %{oldpython}-ReportLab < %{version}
@@ -54,6 +56,7 @@
 %prep
 %setup -q -n reportlab-%{version}
 %patch0
+%patch1 -p1
 sed -i "1d" 
src/reportlab/lib/{formatters,fonts,corp,units,pagesizes,__init__,randomtext,logger,normalDate}.py
 sed -i "1d" 
src/reportlab/graphics/{widgets/table,barcode/test,testdrawings,testshapes}.py 
# Fix non-executable bits
 
@@ -67,6 +70,7 @@
 
 %if %{with tests}
 %check
+export LANG=en_US.UTF-8
 %python_exec setup.py tests
 %endif
 

++ drop-requirements.patch ++
Index: reportlab-3.4.0/setup.py
===
--- reportlab-3.4.0.orig/setup.py
+++ reportlab-3.4.0/setup.py
@@ -539,7 +539,7 @@ def main():
 ],
 
 #this probably only works for setuptools, but distutils seems to 
ignore it
-install_requires=['pillow>=2.4.0','pip>=1.4.1', 'setuptools>=2.2'],
+install_requires=['pillow>=2.4.0'],
 )
 print()
 print('## SUMMARY INFO #')



commit pantheon-photos for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package pantheon-photos for openSUSE:Factory 
checked in at 2017-08-08 11:59:18

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


Package is "pantheon-photos"

Tue Aug  8 11:59:18 2017 rev:6 rq:514657 version:0.2.4

Changes:

--- /work/SRC/openSUSE:Factory/pantheon-photos/pantheon-photos.changes  
2017-05-18 20:47:43.608284642 +0200
+++ /work/SRC/openSUSE:Factory/.pantheon-photos.new/pantheon-photos.changes 
2017-08-08 11:59:20.095218192 +0200
@@ -1,0 +2,16 @@
+Sat Jul 29 12:24:22 UTC 2017 - avvi...@yandex.by
+
+- Update to 0.2.4:
+  * remove about dialog (#158)
+  * AppWindow.vala: code style (#159)
+  * Update appdata URLs and summary (#157)
+  * Create .gitignore (#156)
+  * Create CODE_OF_CONDUCT.md (#155)
+
+---
+Tue Jul 11 12:21:33 UTC 2017 - bwiedem...@suse.com
+
+- Sort file lists to always install the same .svg size
+  to fix build-compare (boo#1041090)
+
+---

Old:

  pantheon-photos-0.2.3.tar.xz

New:

  pantheon-photos-0.2.4.tar.xz



Other differences:
--
++ pantheon-photos.spec ++
--- /var/tmp/diff_new_pack.wvOFUO/_old  2017-08-08 11:59:20.711131445 +0200
+++ /var/tmp/diff_new_pack.wvOFUO/_new  2017-08-08 11:59:20.711131445 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pantheon-photos
-Version:0.2.3
+Version:0.2.4
 Release:0
 Summary:Photo manager for Elementary OS
 License:GPL-2.0 and LGPL-2.1
@@ -90,7 +90,7 @@
 for _icon in $(find -name \*.desktop* | xargs sed -n '/Icon/s/^.*\=//p'); do
 _icon=${_icon##*/}
 if ! find -name "$_icon" | grep -q .; then
-  _icon=$(find %{_datadir}/icons -name "${_icon%.*}.svg" | head -n1)
+  _icon=$(find %{_datadir}/icons -name "${_icon%.*}.svg" | sort | head -n1)
   install -Dm0644 \
 "$_icon" ".%{_datadir}/icons/hicolor/scalable/apps/${_icon##*/}"
 else

++ pantheon-photos-0.2.3.tar.xz -> pantheon-photos-0.2.4.tar.xz ++
 75829 lines of diff (skipped)




commit wine for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package wine for openSUSE:Factory checked in 
at 2017-08-08 11:59:19

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


Package is "wine"

Tue Aug  8 11:59:19 2017 rev:229 rq:514716 version:2.14

Changes:

--- /work/SRC/openSUSE:Factory/wine/wine.changes2017-07-25 
11:39:50.205081986 +0200
+++ /work/SRC/openSUSE:Factory/.wine.new/wine.changes   2017-08-08 
11:59:28.306061745 +0200
@@ -1,0 +2,11 @@
+Fri Aug  4 11:03:53 UTC 2017 - meiss...@suse.com
+
+- Update to 2.14 development snapshot
+  - Mono engine updated with some bug fixes.
+  - C++ calling convention workarounds in the IDL compiler.
+  - Z-order support in the Android graphics driver.
+  - Scalable mouse cursors on macOS.
+  - Various bug fixes.
+- updated winetricks
+
+---

Old:

  wine-2.13.tar.xz
  wine-2.13.tar.xz.sign

New:

  wine-2.14.tar.xz
  wine-2.14.tar.xz.sign



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.WzcQIP/_old  2017-08-08 11:59:30.409765451 +0200
+++ /var/tmp/diff_new_pack.WzcQIP/_new  2017-08-08 11:59:30.417764325 +0200
@@ -61,8 +61,8 @@
 BuildRequires:  valgrind-devel
 BuildRequires:  xorg-x11-devel
 BuildRequires:  pkgconfig(libudev)
-%define realver 2.13
-Version:2.13
+%define realver 2.14
+Version:2.14
 Release:0
 Summary:An MS Windows Emulator
 License:LGPL-2.1+

++ wine-2.13.tar.xz -> wine-2.14.tar.xz ++
/work/SRC/openSUSE:Factory/wine/wine-2.13.tar.xz 
/work/SRC/openSUSE:Factory/.wine.new/wine-2.14.tar.xz differ: char 26, line 1


++ winetricks ++
--- /var/tmp/diff_new_pack.WzcQIP/_old  2017-08-08 11:59:30.693725457 +0200
+++ /var/tmp/diff_new_pack.WzcQIP/_new  2017-08-08 11:59:30.721721515 +0200
@@ -2416,20 +2416,13 @@
 
 case "$comparison" in
 # expected value if the comparison is true
--bn) _expected_pos_current_wine="2"
- 
_wine_versions_string="${known_wine_val1}\n${_wine_version_stripped}\n${known_wine_val2}"
- ;;
--ge) _expected_pos_current_wine="2"
- 
_wine_versions_string="${known_wine_val1}\n${_wine_version_stripped}"
- ;;
--le) _expected_pos_current_wine="1"
- 
_wine_versions_string="${known_wine_val1}\n${_wine_version_stripped}"
- ;;
+-bn) _expected_pos_current_wine="2";;
+-ge) _expected_pos_current_wine="2";;
+-le) _expected_pos_current_wine="1";;
 *) w_die "Unsupported comparison. Only -ge and -le are supported" ;;
 esac
 
-# shellcheck disable=SC2039
-_pos_current_wine="$(echo -e "${_wine_versions_string}" | sort -V | grep 
-n "^${_wine_version_stripped}\$" | cut -d : -f1)"
+_pos_current_wine="$(printf "%s\n%s\n%s" "${known_wine_val1}" 
"${_wine_version_stripped}" "${known_wine_val2}" | sort -V | grep -n 
"^${_wine_version_stripped}\$" | cut -d : -f1)"
 if [ "$_pos_current_wine" = "$_expected_pos_current_wine" ] ; then
 #echo "true: known_wine_version=$2, comparison=$1, stripped 
wine=$_wine_version_stripped, expected_pos=$_expected_pos_known, 
pos_known=$_pos_known_wine"
 #echo "Wine version comparison is true"
@@ -3035,7 +3028,7 @@
 # Gecko (winezeug bug 223).
 # The tr removes carriage returns so expanded variables don't have crud on 
the end
 # The grep works around using new wineprefixes with old wine
-WINEDEBUG=-all "$WINE" "$@" 2> "$W_TMP_EARLY"/early_wine.err.txt | ( sed 
's/.*1h.=//' | tr -d '\r' | grep -v "Module not found" || true)
+WINEDEBUG=-all "$WINE" "$@" 2> "$W_TMP_EARLY"/early_wine.err.txt | ( sed 
's/.*1h.=//' | tr -d '\r' | grep -v -e "Module not found" -e "Could not load 
wine-gecko" || true)
 }
 
 winetricks_detect_gui()
@@ -4920,6 +4913,11 @@
 # wine-2.8
 _wine_version_stripped="$(echo "$WINETRICKS_WINE_VERSION" | cut -d ' ' -f1 
| sed -e 's/wine-//' -e 's/-rc.*//')"
 
+# If WINE is < 2.0, warn user:
+if w_wine_version_in 2.0, ; then
+w_warn "Your version of wine $_wine_version_stripped is no longer 
supported upstream. You should upgrade to 2.x"
+fi
+
 if [ ! "$WINETRICKS_SUPER_QUIET" ] ; then
 echo "Using winetricks $(winetricks_print_version) with 
${WINETRICKS_ORIG_WINE_VERSION} and WINEARCH=${W_ARCH}"
 fi




commit mutt for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package mutt for openSUSE:Factory checked in 
at 2017-08-08 11:58:31

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


Package is "mutt"

Tue Aug  8 11:58:31 2017 rev:77 rq:510046 version:1.8.3

Changes:

--- /work/SRC/openSUSE:Factory/mutt/mutt.changes2017-05-31 
12:17:09.910227228 +0200
+++ /work/SRC/openSUSE:Factory/.mutt.new/mutt.changes   2017-08-08 
11:58:36.697330508 +0200
@@ -1,0 +2,164 @@
+Thu Jul 13 10:38:57 UTC 2017 - o...@aepfle.de
+
+- If built with gnutls, set ssl_ca_certificates_file to avoid
+  warning about "server cert signed using an insecure algorithm"
+
+---
+Wed Jul 12 09:26:50 UTC 2017 - o...@aepfle.de
+
+- Add buildconditional for openssl/gnutls
+  Disable gnutls, there can be only one of them and openssl was used
+- Use pkgconfig to refer to openssl/gnutls
+- Remove uneeded builddeps and recommends for smtp_daemon by
+  specifying the path to sendmail
+- Remove uneeded builddep for ispell by specifying the path to it
+- Update doc builddeps: add opensp, libxslt-tools, w3m
+  drop docbook_4,libxml2,libxslt,lynx,sgml-skel,xli
+- Remove unneeded builddeps: fdupes,glibc-i18ndata,libassuan,
+  libcom_err,libgcrypt,libgpg-error
+- Wrap desktop files handing in suse_version
+- Remove included krb5-config, the copy in the devel pkg is good enough
+- Use configure macro for ordinary autoconf result
+- Build manual.txt with w3m to properly dump tables
+- Move Requires perl-Expect to doc pkg, make it a Recommends
+- Consistent suse_version for shared-mime-info usage
+- Unconditional libgpgme usage
+- Unconditional autoreconf
+
+---
+Tue Jun 13 08:21:30 UTC 2017 - wer...@suse.de
+
+- Update to neomutt 20170609 which updates to mutt 1.8.3
+  + Warn on bindkey aliasing
+  + Drop PATCHES, tidy 'mutt -v' output
+  + Add %z format strings to index_format
+  + Add debug_level/debug_file options
+  + Fix nntp group selection
+  + Fix status color
+  + Tidy up S/MIME contrib
+  + Do not try to create Maildir if it is an NNTP URI
+  + Fix missing NONULL for mutt.set() in Lua
+  + Fix German PGP shortkeys
+  + Remove feature muttrc files
+  + Merge README.notmuch into manual
+  + Remove unneded scripts
+  + Remove README.SECURITY
+  + Remove BEWARE and devel-notes.txt
+  + Update Makefiles
+  + Delete TODO files
+  + Remove legacy files
+  + Don't generate vim-neomutt syntax file
+  + Remove LaTeX/pdf manual generation
+  + Add missing docs for expandos
+  + Fix sidebar howto examples
+  + Remove some upstream references
+  + Drop refs to patches
+  + Improve PR template and CONTRIBUTING.md
+  + Fix list items in newbie-tutorial's Mailing List Guidelines
+  + Remove configure options that no longer exist
+  + fix newbie tutorial
+  + document signing tags / releases
+  + config: drop unused paginate command
+  + script: split tests up into several
+  + convert credits page to markdown
+  + simpify 404 page
+  + improve newbie tutorial
+  + remove help.html and integrate its content elsewhere
+  + make: "graphviz" program is needed for generating diagram
+  + improve getting started guide // include legacy files
+  + dev: add list of architectures/operating systems
+  + numerous small fixes
+  + Remove typedefs and rename ~130 structs
+  + Add separate hcache dir
+  + Move crypto files to ncrypt dir
+  + Split up mutt.h, protos.h
+  + Always build: sidebar, imap, pop, smtp, compressed, nntp
+  + Remove --enable-mailtool configure option
+  + Make dotlock optional
+  + Change gpgme requirement back to 1.1.0
+  + Remove check_sec.sh
+  + Fix safe_calloc args
+  + Remove unused macros
+  + Remove unused option: SmimeSignOpaqueCommand
+  + Move configure-generated files
+  + Update distcheck build flags
+  + Drop obsolete iconv check
+  + Unused prototypes - unsupported systems
+  + Drop many configure tests for things defined in POSIX:2001
+  + Kill useless crypthash.h file
+  + Run clang-format on the code
+  + Fail early if ncursesw cannot be found
+  + Add names prototype arguments
+  + Abbreviate pointer tests against NULL
+  + Initialise pointers to NULL
+  + Reduce the scope of for loop variables
+  + Coverity: fix defects
+  + Convert all exec calls to use mutt_envlist(), remove setenv function
+  + Note that mbox-hooks are dependent on $move
+  + Refresh header color when updating label
+  + Remove glibc-specific execvpe() call in sendlib.c
+  + Add color commands for the compose menu headers and security status
+  + Fix sidebar count updates when closing mailbox
+  + Don't modify LastFolder/CurrentFolder upon aborting a change folder 
operation
+  + Change message modifying operations to additively set redraw f

commit pidgin-embeddedvideo for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package pidgin-embeddedvideo for 
openSUSE:Factory checked in at 2017-08-08 11:59:31

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


Package is "pidgin-embeddedvideo"

Tue Aug  8 11:59:31 2017 rev:12 rq:514970 version:1.2

Changes:

--- 
/work/SRC/openSUSE:Factory/pidgin-embeddedvideo/pidgin-embeddedvideo.changes
2016-12-29 22:44:02.391019279 +0100
+++ 
/work/SRC/openSUSE:Factory/.pidgin-embeddedvideo.new/pidgin-embeddedvideo.changes
   2017-08-08 11:59:35.413060767 +0200
@@ -1,0 +2,6 @@
+Wed Jul 26 20:13:26 UTC 2017 - suse-b...@cboltz.de
+
+- no longer recommend flash-player in pidgin-plugin-embeddedvideo
+  to avoid that security nightmare
+
+---



Other differences:
--
++ pidgin-embeddedvideo.spec ++
--- /var/tmp/diff_new_pack.QBGF4t/_old  2017-08-08 11:59:36.144957684 +0200
+++ /var/tmp/diff_new_pack.QBGF4t/_new  2017-08-08 11:59:36.148957121 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pidgin-embeddedvideo
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -41,7 +41,6 @@
 %package -n pidgin-plugin-%{_name}
 Summary:Pidgin plugin to watch videos directly into your Pidgin 
conversation
 Group:  Productivity/Networking/Instant Messenger
-Recommends: flash-player
 Provides:   %{name} = %{version}
 %requires_gepidgin
 




commit spirv-headers for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package spirv-headers for openSUSE:Factory 
checked in at 2017-08-08 11:59:39

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


Package is "spirv-headers"

Tue Aug  8 11:59:39 2017 rev:5 rq:515069 version:1.1.g46

Changes:

--- /work/SRC/openSUSE:Factory/spirv-headers/spirv-headers.changes  
2017-07-26 13:05:17.818080502 +0200
+++ /work/SRC/openSUSE:Factory/.spirv-headers.new/spirv-headers.changes 
2017-08-08 11:59:42.700034441 +0200
@@ -1,0 +2,6 @@
+Mon Aug  7 16:34:41 UTC 2017 - jeng...@inai.de
+
+- Update to new snapshot 1.1.g46
+  * Reserve number 16 for the Mesa-IR/SPIR-V Translator.
+
+---

Old:

  spirv-headers-1.1.g44.tar.xz

New:

  spirv-headers-1.1.g46.tar.xz



Other differences:
--
++ spirv-headers.spec ++
--- /var/tmp/diff_new_pack.6Y0M33/_old  2017-08-08 11:59:43.427931921 +0200
+++ /var/tmp/diff_new_pack.6Y0M33/_new  2017-08-08 11:59:43.435930794 +0200
@@ -16,10 +16,10 @@
 #
 
 
-%define version_unconverted 1.1.g44
+%define version_unconverted 1.1.g46
 
 Name:   spirv-headers
-Version:1.1.g44
+Version:1.1.g46
 Release:0
 Summary:Machine-readable files from the SPIR-V registry
 License:MIT

++ spirv-headers-1.1.g44.tar.xz -> spirv-headers-1.1.g46.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spirv-headers-1.1.g44/include/spirv/spir-v.xml 
new/spirv-headers-1.1.g46/include/spirv/spir-v.xml
--- old/spirv-headers-1.1.g44/include/spirv/spir-v.xml  2017-06-30 
21:46:52.0 +0200
+++ new/spirv-headers-1.1.g46/include/spirv/spir-v.xml  2017-07-21 
07:26:56.0 +0200
@@ -65,7 +65,8 @@
 
 
 
-
+
+
 
 
 




commit unetbootin for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package unetbootin for openSUSE:Factory 
checked in at 2017-08-08 11:59:33

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


Package is "unetbootin"

Tue Aug  8 11:59:33 2017 rev:7 rq:514992 version:0.0.655

Changes:

--- /work/SRC/openSUSE:Factory/unetbootin/unetbootin.changes2017-06-20 
09:40:19.004733107 +0200
+++ /work/SRC/openSUSE:Factory/.unetbootin.new/unetbootin.changes   
2017-08-08 11:59:36.376925013 +0200
@@ -1,0 +2,7 @@
+Thu Aug 03 13:21:44 UTC 2017 - joerg.loren...@ki.tng.de
+
+- update to revision 655
+- added Leap_42.3 to supported versions
+- fixed unetbootin-locate-usb-devices.diff
+
+---

Old:

  unetbootin-source-647.tar.gz

New:

  unetbootin-source-655.tar.gz



Other differences:
--
++ unetbootin.spec ++
--- /var/tmp/diff_new_pack.xGlPhQ/_old  2017-08-08 11:59:37.664743632 +0200
+++ /var/tmp/diff_new_pack.xGlPhQ/_new  2017-08-08 11:59:37.672742505 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package unetbootin
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,7 +16,7 @@
 #
 
 
-%define rev 647
+%define rev 655
 
 Name:   unetbootin
 Summary:Universal Netboot Installer
@@ -31,11 +31,13 @@
 Patch2: %{name}-desktop.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  libqt4-devel
 # Requires syslinux, and that only exists for the following arches:
 ExclusiveArch:  %ix86 x86_64
-Requires:   hicolor-icon-theme
+Requires(post): hicolor-icon-theme
+Requires(post): update-desktop-files
+Requires(postun): hicolor-icon-theme
+Requires(postun): update-desktop-files
 Requires:   mtools
 Requires:   p7zip
 Requires:   syslinux
@@ -74,6 +76,14 @@
 
 install -D -m 0644 %{name}.desktop 
%{buildroot}%{_datadir}/applications/%{name}.desktop
 
+%post
+%desktop_database_post
+%icon_theme_cache_post
+
+%postun
+%desktop_database_postun
+%icon_theme_cache_postun
+
 %files
 %defattr(-,root,root)
 %doc README.TXT

++ unetbootin-locate-usb-devices.diff ++
--- /var/tmp/diff_new_pack.xGlPhQ/_old  2017-08-08 11:59:37.736733492 +0200
+++ /var/tmp/diff_new_pack.xGlPhQ/_new  2017-08-08 11:59:37.736733492 +0200
@@ -2,7 +2,7 @@
 ===
 --- unetbootin.cpp.orig
 +++ unetbootin.cpp
-@@ -575,17 +575,12 @@ QStringList unetbootin::listsanedrives()
+@@ -508,17 +508,12 @@
}
#endif
#ifdef Q_OS_LINUX
@@ -23,10 +23,10 @@
if (!volidcommand.isEmpty())
{
if 
(QString(callexternapp(volidcommand, QString("-t 
%2").arg(usbfileinfoL.at(i).canonicalFilePath(.contains(QRegExp("(vfat|ext2|ext3|ext4)")))
-@@ -602,20 +597,7 @@ QStringList unetbootin::listsanedrives()
-   }
-   }
-   }
+@@ -635,20 +630,7 @@
+   }
+   }
+   }
 -  /*
 -  QString fdisklusbdevsS = 
callexternapp(fdiskcommand, "-l");
 -  QStringList usbdevsL = 
QString(fdisklusbdevsS).split("\n").filter(QRegExp("\\.{0,}FAT|Disk\\.{0,}")).join("\n").split("
 ").join("\n").split("\t").join("\n").split("\n").filter("/dev/");
@@ -43,5 +43,5 @@
 -  #endif
 +  #endif
  #ifdef Q_OS_MAC
- QString diskutilList = callexternapp("diskutil", "list");
- QStringList usbdevsL = 
diskutilList.split("\n").filter(QRegExp("(FAT|Microsoft)")).join(" ").split(" 
").filter("disk");
+ QString systemprofilertext = callexternapp("system_profiler", 
"SPStorageDataType");
+ QRegExp filesystemregex("File System: (.+)\\n");

++ unetbootin-source-647.tar.gz -> unetbootin-source-655.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.TXT new/README.TXT
--- old/README.TXT  2017-05-01 07:40:11.0 +0200
+++ new/README.TXT  2017-07-18 23:28:51.0 +0200
@@ -1,16 +1,16 @@
-UNetbootin Source Revision 647
+UNetbootin Source Revi

commit hourglass for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package hourglass for openSUSE:Factory 
checked in at 2017-08-08 11:58:46

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


Package is "hourglass"

Tue Aug  8 11:58:46 2017 rev:1 rq:510401 version:1.0.1

Changes:

New Changes file:

--- /dev/null   2017-07-20 07:30:00.335470106 +0200
+++ /work/SRC/openSUSE:Factory/.hourglass.new/hourglass.changes 2017-08-08 
11:58:49.643507124 +0200
@@ -0,0 +1,16 @@
+---
+Tue Jun 13 14:41:50 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---
+Wed May 10 07:57:45 UTC 2017 - avvi...@yandex.by
+
+- Update to stable release 1.0.1 
+- Specfile cleanup
+
+---
+Sun Mar  6 17:47:10 UTC 2016 - and.novem...@opensuse.org
+
+- initial package (version 1.0.1) for openSUSE
+

New:

  hourglass-1.0.1.tar.gz
  hourglass.changes
  hourglass.spec



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

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


Name:   hourglass
Version:1.0.1
Release:0
Summary:Clock gadget for Elementary OS
License:GPL-3.0
Group:  System/X11/Utilities
Url:https://launchpad.net/hourglass
Source: 
https://launchpad.net/hourglass/1.x/1.0/+download/%{name}-%{version}.tar.gz
BuildRequires:  cmake
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  pkgconfig
BuildRequires:  update-desktop-files
BuildRequires:  vala >= 0.28
BuildRequires:  pkgconfig(gee-0.8)
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(granite)
BuildRequires:  pkgconfig(gtk+-3.0)
BuildRequires:  pkgconfig(libcanberra)
BuildRequires:  pkgconfig(libnotify)
Recommends: %{name}-lang
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%glib2_gsettings_schema_requires

%description
A clock application that is designed to fit perfectly into
Elementary's design scheme.

%lang_package

%prep
%setup -q

%build
%cmake \
  -DGSETTINGS_COMPILE=OFF
make %{?_smp_mflags}

%install
%cmake_install %{?_smp_mflags}
%suse_update_desktop_file -r %{name} GNOME GTK Utility Clock
sed -i 's/^\(Version=\).*/\11.0/' 
%{buildroot}%{_datadir}/applications/%{name}.desktop
sed -i '/Keywords/s/$/;/' %{buildroot}%{_datadir}/applications/%{name}.desktop
%fdupes %{buildroot}%{_datadir}/
%find_lang %{name}

%post
%glib2_gsettings_schema_post
%icon_theme_cache_post
%desktop_database_post

%postun
%glib2_gsettings_schema_postun
%icon_theme_cache_postun
%desktop_database_postun

%files
%defattr(-,root,root)
%doc AUTHORS COPYING README.md
%{_bindir}/%{name}*
%{_datadir}/%{name}/
%{_datadir}/applications/%{name}.desktop
%{_datadir}/glib-2.0/schemas/org.pantheon.%{name}.gschema.xml
%{_datadir}/icons/hicolor/*/apps/%{name}.??g
%{_datadir}/pixmaps/%{name}.??g
%{_sysconfdir}/xdg/autostart/%{name}-daemon.desktop

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

%changelog



commit libzrtpcpp for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package libzrtpcpp for openSUSE:Factory 
checked in at 2017-08-08 11:59:16

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


Package is "libzrtpcpp"

Tue Aug  8 11:59:16 2017 rev:38 rq:513703 version:4.6.6

Changes:

--- /work/SRC/openSUSE:Factory/libzrtpcpp/libzrtpcpp.changes2016-12-02 
16:41:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzrtpcpp.new/libzrtpcpp.changes   
2017-08-08 11:59:18.351463789 +0200
@@ -1,0 +2,7 @@
+Mon Jul 31 22:31:49 UTC 2017 - jeng...@inai.de
+
+- Update to new maintenance release 4.6.6
+  * Fix a memory leak, extra buffer length checks added.
+- Remove typo.diff (merged)
+
+---

Old:

  V4.6.4.tar.gz
  typo.diff

New:

  V4.6.6.tar.gz



Other differences:
--
++ libzrtpcpp.spec ++
--- /var/tmp/diff_new_pack.xBw82r/_old  2017-08-08 11:59:19.247337611 +0200
+++ /var/tmp/diff_new_pack.xBw82r/_new  2017-08-08 11:59:19.251337048 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libzrtpcpp
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:   libzrtpcpp
 %define lname  libzrtpcpp4
-Version:4.6.4
+Version:4.6.6
 Release:0
 Summary:A ccrtp extension for ZRTP support
 License:GPL-3.0+
@@ -28,7 +28,6 @@
 #Git-Clone:git://github.com/wernerd/ZRTPCPP
 #Git-Web:  https://github.com/wernerd/ZRTPCPP
 Source: https://github.com/wernerd/ZRTPCPP/archive/V%version.tar.gz
-Patch1: typo.diff
 BuildRequires:  cmake
 BuildRequires:  gcc-c++ >= 4.7
 BuildRequires:  pkg-config
@@ -38,20 +37,20 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-This library is a GPL licensed extension to the GNU RTP Stack, ccrtp,
-that offers compatibility with Phil Zimmermann's zrtp/Zfone voice
-encryption, and which can be directly embedded into telephony
-applications.
+A library that adds RFC6189-compliant ZRTP support to the GNU ccRTP
+stack and serves as library for other RTP stacks such as PJSIP and
+GStreamer. ZRTP was developed to allow ad-hoc key negotiation to
+setup Secure RTP (SRTP) sessions.
 
 %package -n %lname
 Summary:A ccrtp extension for ZRTP support
 Group:  System/Libraries
 
 %description -n %lname
-This library is a GPL licensed extension to the GNU RTP Stack, ccrtp,
-that offers compatibility with Phil Zimmermann's zrtp/Zfone voice
-encryption, and which can be directly embedded into telephony
-applications.
+A library that adds RFC6189-compliant ZRTP support to the GNU ccRTP
+stack and serves as library for other RTP stacks such as PJSIP and
+GStreamer. ZRTP was developed to allow ad-hoc key negotiation to
+setup Secure RTP (SRTP) sessions.
 
 %package devel
 Summary:Headers and link library for libzrtpcpp
@@ -60,12 +59,11 @@
 Requires:   ccrtp-devel >= 2.0.0
 
 %description devel
-This package provides the header files, link libraries, and
-documentation for building applications that use libzrtpcpp.
+This package provides the header files for building applications that
+use libzrtpcpp.
 
 %prep
 %setup -qn ZRTPCPP-%version
-%patch -P 1 -p1
 chmod a-x INSTALL
 
 %build
@@ -94,8 +92,8 @@
 %make_install
 popd
 
-%post   -p /sbin/ldconfig -n %lname
-%postun -p /sbin/ldconfig -n %lname
+%post   -n %lname -p /sbin/ldconfig
+%postun -n %lname -p /sbin/ldconfig
 
 %files -n %lname
 %defattr(-,root,root)

++ V4.6.4.tar.gz -> V4.6.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ZRTPCPP-4.6.4/CMakeLists.txt 
new/ZRTPCPP-4.6.6/CMakeLists.txt
--- old/ZRTPCPP-4.6.4/CMakeLists.txt2016-11-10 19:28:11.0 +0100
+++ new/ZRTPCPP-4.6.6/CMakeLists.txt2017-06-02 09:05:34.0 +0200
@@ -14,9 +14,9 @@
 
 SET(CPACK_PACKAGE_VERSION_MAJOR 4)
 SET(CPACK_PACKAGE_VERSION_MINOR 6)
-SET(CPACK_PACKAGE_VERSION_PATCH 4)
+SET(CPACK_PACKAGE_VERSION_PATCH 6)
 
-set (VERSION 4.6.4)
+set (VERSION 4.6.6)
 set (SOVERSION 4)
 
 # Define supported command line parameters.
@@ -33,7 +33,7 @@
 option(SDES "Include SDES when not building for CCRTP." OFF)
 option(AXO "Include Axolotl support when not building for CCRTP." OFF)
 
-option(ANDROID "Generate Android makefiles (Android.mk)" ON)
+option(ANDROID "Generate Android makefiles (Android.mk)" OFF)
 option(JAVA "Generate Java support files (requires JDK and SWIG)" OFF)
 
 #
@@ -155,28 +155,30 @@

commit catfish for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package catfish for openSUSE:Factory checked 
in at 2017-08-08 11:58:53

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


Package is "catfish"

Tue Aug  8 11:58:53 2017 rev:1 rq:510402 version:1.4.2

Changes:

New Changes file:

--- /dev/null   2017-07-20 07:30:00.335470106 +0200
+++ /work/SRC/openSUSE:Factory/.catfish.new/catfish.changes 2017-08-08 
11:58:53.566954531 +0200
@@ -0,0 +1,35 @@
+---
+Tue Jun 13 14:41:07 UTC 2017 - jeng...@inai.de
+
+- Cure grammar problems in description.
+
+---
+Sun Apr 10 16:20:57 UTC 2016 - and.novem...@opensuse.org
+
+- update to version 1.4.2
+
+---
+Fri Oct  9 17:57:01 UTC 2015 - and.novem...@opensuse.org
+
+- update to version 1.3.3
+
+---
+Sun Oct  5 12:28:38 UTC 2014 - and.novem...@opensuse.org
+
+- update to version 1.2.2
+
+---
+Mon Mar 10 18:17:47 UTC 2014 - and.novem...@opensuse.org
+
+- update to version 1.0.2 
+
+---
+Sun Mar  2 03:59:13 UTC 2014 - and.novem...@opensuse.org
+
+- update to version 1.0.1 
+
+---
+Sat Feb  8 14:49:13 UTC 2014 - and.novem...@opensuse.org
+
+- update to version 1.0.0 
+

New:

  catfish-1.4.2.tar.bz2
  catfish.changes
  catfish.spec



Other differences:
--
++ catfish.spec ++
#
# spec file for package catfish
#
# Copyright (c) 2014 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

%define series 1.4

Name:   catfish
Version:1.4.2
Release:0
License:GPL-2.0
Summary:Versatile File Searching Tool
Url:http://www.twotoasts.de/index.php/catfish/
Group:  Productivity/File utilities
Source: 
https://launchpad.net/catfish-search/%{series}/%{version}/+download/%{name}-%{version}.tar.bz2
BuildRequires:  fdupes
BuildRequires:  hicolor-icon-theme
BuildRequires:  intltool
BuildRequires:  python3-distutils-extra
BuildRequires:  rsvg-view
BuildRequires:  update-desktop-files
# Needed for typelib() - Requires.
BuildRequires:  gobject-introspection
# Checking module dependencies...
BuildRequires:  python3-gobject
BuildRequires:  python3-pexpect
BuildRequires:  python3-xml
BuildRequires:  typelib(Gtk) = 3.0
#uildRequires:  zeitgeist
# ...OK
Requires:   gdk-pixbuf-loader-rsvg
Requires:   gnome-icon-theme-symbolic
Requires:   gsettings-backend-dconf
Requires:   findutils-locate
Requires:   python3-cairo
Requires:   python3-gobject
Requires:   python3-gobject-cairo
Requires:   python3-pexpect
Requires:   python3-xml
Requires:   sudo
Suggests:   zeitgeist
Recommends: %{name}-lang
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
Catfish is a GTK+ search utility written in python. Its search is powered by
/usr/bin/find and /usr/bin/locate, with search suggestions provided by
zeitgeist.

%lang_package

%prep
%setup -q

%build
python3 ./setup.py build

%install
python3 ./setup.py install -O1 \
--prefix="%{_prefix}" \
--root="%{buildroot}" \
--record-rpm=files.lst
rm -rf %{buildroot}%{_datadir}/doc/%{name}
grep -rl '^#!' %{buildroot}%{python3_sitelib}/%{name}*/ | xargs chmod 0755
sed -i "s/\(Exec=\).*/\1%{name}/" 
%{buildroot}%{_datadir}/applications/%{name}.desktop
for i in 16 24 32 48; do
install -dm 0755 %{buildroot}%{_datadir}/icons/hicolor/$i\x$i/apps
rsvg-convert -h $i -w $i data/media/catfish.svg -o 
%{buildroot}%{_datadir}/icons/hicolor/$i\x$i/apps/%{name}.png
done
%suse_update_desktop_file -r %{name} GNOME Utility Filesystem

%find_lang %{name}

# Python byte compile.
pushd %{buildroot}%{python3_sitelib}/%{name}_lib/__pycache__
%py3_compile -O ..
popd
%fdupes %{buildr

commit scim-bridge for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package scim-bridge for openSUSE:Factory 
checked in at 2017-08-08 11:59:30

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


Package is "scim-bridge"

Tue Aug  8 11:59:30 2017 rev:49 rq:514901 version:0.4.17

Changes:

--- /work/SRC/openSUSE:Factory/scim-bridge/scim-bridge.changes  2015-09-30 
05:51:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.scim-bridge.new/scim-bridge.changes 
2017-08-08 11:59:34.241225813 +0200
@@ -1,0 +2,13 @@
+Mon Aug  7 05:51:27 UTC 2017 - i...@marguerite.su
+
+- update version 0.4.17
+  * collected fixes from openSUSE/Fedora/Gentoo
+- upstreamed patches:
+  * bug-351920-should-return-retval.patch
+  * scim-bridge-0.4.15-gcc44.patch
+  * scim-bridge-fix-vnc-display-check.diff
+  * scim-bridge-gcc47.patch
+  * scim-bridge-reregister-type-module-if-reload.patch
+- upstreamed source: scim-bridge.1
+
+---

Old:

  bug-351920-should-return-retval.patch
  scim-bridge-0.4.15-gcc44.patch
  scim-bridge-0.4.16.tar.bz2
  scim-bridge-fix-vnc-display-check.diff
  scim-bridge-gcc47.patch
  scim-bridge-reregister-type-module-if-reload.patch
  scim-bridge.1

New:

  scim-bridge-0.4.17.tar.gz



Other differences:
--
++ scim-bridge.spec ++
--- /var/tmp/diff_new_pack.8EiRU6/_old  2017-08-08 11:59:35.185092875 +0200
+++ /var/tmp/diff_new_pack.8EiRU6/_new  2017-08-08 11:59:35.189092312 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package scim-bridge
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,34 +17,24 @@
 
 
 Name:   scim-bridge
-Version:0.4.16
+Version:0.4.17
 Release:0
 Summary:Yet another IM client of SCIM
 License:LGPL-2.1+
 Group:  System/I18n/Japanese
 Url:https://github.com/scim-im
-# CVS repository:
-# cvs -d:pserver:anonym...@scim.cvs.sourceforge.net:/cvsroot/scim login
-# cvs -z3 -d:pserver:anonym...@scim.cvs.sourceforge.net:/cvsroot/scim co 
scim-bridge
-Source: %{name}-%{version}.tar.bz2
+Source: 
https://github.com/scim-im/scim-bridge/archive/v%{version}/%{name}-%{version}.tar.gz
 Source1:xim.d-%{name}
-Source2:%{name}.1
 Source99:   baselibs.conf
-Patch3: bug-351920-should-return-retval.patch
-Patch8: scim-bridge-0.4.15-gcc44.patch
-Patch9: scim-bridge-fix-vnc-display-check.diff
-Patch10:scim-bridge-reregister-type-module-if-reload.patch
-Patch11:scim-bridge-gcc47.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  gtk2-devel
 BuildRequires:  libqt4-devel
 BuildRequires:  libtool
 BuildRequires:  scim-devel
-Provides:   scim-bridge-agent
 Recommends: scim-bridge-gtk2 = %{version}
 Recommends: scim-bridge-qt4 = %{version}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Provides:   scim-bridge-agent
 
 %description
 Yet another IM client of SCIM. The immodules of scim-bridge
@@ -59,11 +49,11 @@
 Summary:Scim-bridge immodule for GTK+ 2.0
 Group:  System/I18n/Japanese
 Requires:   %{name} = %{version}
+Supplements:packageand(scim-bridge:gtk2)
 Provides:   scim-bridge-client-gtk
 Provides:   scim-bridge-gtk = %{version}
 Obsoletes:  scim-bridge-gtk <= %{version}
-Supplements:packageand(scim-bridge:gtk2)
-%{scim_gtk2_immodule_requires}
+%scim_gtk2_immodule_requires
 
 %description gtk2
 Scim-bridge-gtk2 is the gtk+-2.0 client of scim-bridge, it provides
@@ -73,22 +63,18 @@
 Summary:Scim-bridge immodule for Qt4
 Group:  System/I18n/Japanese
 Requires:   %{name} = %{version}
+Supplements:packageand(scim-bridge:libqt4)
 Provides:   scim-bridge-client-qt4
 Provides:   scim-bridge-qt = %{version}
 Obsoletes:  scim-bridge-qt <= %{version}
-Supplements:packageand(scim-bridge:libqt4)
 
 %description qt4
 Scim-bridge-qt4 is the qt4 client of scim-bridge, it provides
 another qt-immodule for SCIM.
 
 %prep
-%setup -q -n %{name}-%{version}
-%patch3 -p1
-%patch8
-%patch9 -p1
-%patch10 -p1
-%patch11 -p1
+%setup -q
+./bootstrap
 
 %build
 export CFLAGS="%{optflags}"
@@ -105,8 +91,8 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
-find %{buildroot} -name "*.la" -delete -print
+%make_install
+find %{buildroot} -type f -name "*.la" -delete -print
 
 mkdir -p %{buildroot}%{_sysconfdir}/X11/xim.d/
 install -m 644 %{SOURCE

commit swtchart for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package swtchart for openSUSE:Factory 
checked in at 2017-08-08 11:59:28

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


Package is "swtchart"

Tue Aug  8 11:59:28 2017 rev:2 rq:514893 version:0.10.0

Changes:

--- /work/SRC/openSUSE:Factory/swtchart/swtchart.changes2016-09-23 
11:31:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.swtchart.new/swtchart.changes   2017-08-08 
11:59:32.829424657 +0200
@@ -1,0 +2,5 @@
+Sun Dec 25 19:24:29 UTC 2016 - mailaen...@opensuse.org
+
+- update to version 0.10.0
+
+---
@@ -4 +9 @@
-- initial packaging
+- initial packaging of version 0.7.0

Old:

  swtchart-0.7.0.tar.gz

New:

  swtchart-0.10.0.tar.gz



Other differences:
--
++ swtchart.spec ++
--- /var/tmp/diff_new_pack.QWPKJi/_old  2017-08-08 11:59:33.765292845 +0200
+++ /var/tmp/diff_new_pack.QWPKJi/_new  2017-08-08 11:59:33.769292282 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   swtchart
-Version:0.7.0
+Version:0.10.0
 Release:0
 Summary:Chart component based on SWT
 License:EPL-1.0

++ _service ++
--- /var/tmp/diff_new_pack.QWPKJi/_old  2017-08-08 11:59:33.805287213 +0200
+++ /var/tmp/diff_new_pack.QWPKJi/_new  2017-08-08 11:59:33.805287213 +0200
@@ -2,9 +2,9 @@
 
   
 svn
-svn://svn.code.sf.net/p/swt-chart/code/tags/0.7.0
+svn://svn.code.sf.net/p/swt-chart/code/tags/0.10.0
 swtchart
-0.7.0
+0.10.0
 no
   
 
@@ -13,4 +13,4 @@
 *.tar
   
 
-
\ No newline at end of file
+

++ swtchart-0.7.0.tar.gz -> swtchart-0.10.0.tar.gz ++
 5061 lines of diff (skipped)




commit glpk for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package glpk for openSUSE:Factory checked in 
at 2017-08-08 11:59:37

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


Package is "glpk"

Tue Aug  8 11:59:37 2017 rev:19 rq:515029 version:4.63

Changes:

--- /work/SRC/openSUSE:Factory/glpk/glpk.changes2017-01-25 
23:30:54.782236669 +0100
+++ /work/SRC/openSUSE:Factory/.glpk.new/glpk.changes   2017-08-08 
11:59:38.960561123 +0200
@@ -1,0 +2,23 @@
+Mon Jul 31 13:31:32 UTC 2017 - mplus...@suse.com
+
+- Update to version 4.63:
+  * A "smart" LP perturbation was implemented in the primal and
+dual simplex solvers.
+  * The long-step technique was implemented for phase I of the
+primal simplex solver.
+  * An internal objective scaling was included in both primal and
+ual simplex solvers.
+  * The Posix version of glp_time (glpk/src/env/time.c) was changed
+to resolve time_t issue on msys2.
+  * Three new example models in MathProg were added.
+* Changes for version 4.62:
+  * The bound perturbation technique was included in the primal
+simplex solver to improve numerical stability and avoid
+cycling.
+  * A range bug was fixed in the MPS reading routine.
+  * Changes were made to provide 64-bit portability of the Minisat
+solver.
+  * Calls to non-thread-safe functions gmtime, strerror, and strtok
+were replaced by calls to corresponding thread-safe equivalents
+
+---

Old:

  glpk-4.61.tar.gz
  glpk-4.61.tar.gz.sig

New:

  glpk-4.63.tar.gz
  glpk-4.63.tar.gz.sig



Other differences:
--
++ glpk.spec ++
--- /var/tmp/diff_new_pack.XQyoWO/_old  2017-08-08 11:59:39.912427058 +0200
+++ /var/tmp/diff_new_pack.XQyoWO/_new  2017-08-08 11:59:39.916426495 +0200
@@ -18,7 +18,7 @@
 
 %define lname   libglpk40
 Name:   glpk
-Version:4.61
+Version:4.63
 Release:0
 Summary:GNU Linear Programming Kit
 License:GPL-3.0
@@ -97,7 +97,6 @@
 %postun -n %{lname} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %dir %{_docdir}/%{name}
 %{_docdir}/%{name}/AUTHORS
 %{_docdir}/%{name}/ChangeLog
@@ -107,16 +106,13 @@
 %{_bindir}/glpsol
 
 %files -n %{lname}
-%defattr(-,root,root)
 %{_libdir}/libglpk.so.*
 
 %files devel
-%defattr(-,root,root)
 %{_includedir}/*
 %{_libdir}/libglpk.so
 
 %files doc
-%defattr(-,root,root)
 %dir %{_docdir}/%{name}
 %{_docdir}/%{name}/doc
 %{_docdir}/%{name}/examples

++ glpk-4.61.tar.gz -> glpk-4.63.tar.gz ++
 6471 lines of diff (skipped)

++ glpk.keyring ++
Binary files /var/tmp/diff_new_pack.XQyoWO/_old and 
/var/tmp/diff_new_pack.XQyoWO/_new differ




commit perl-Parse-Yapp for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package perl-Parse-Yapp for openSUSE:Factory 
checked in at 2017-08-08 11:59:21

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


Package is "perl-Parse-Yapp"

Tue Aug  8 11:59:21 2017 rev:23 rq:514857 version:1.21

Changes:

--- /work/SRC/openSUSE:Factory/perl-Parse-Yapp/perl-Parse-Yapp.changes  
2017-07-21 22:45:30.393675120 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Parse-Yapp.new/perl-Parse-Yapp.changes 
2017-08-08 11:59:30.945689970 +0200
@@ -1,0 +2,10 @@
+Sat Aug  5 06:06:27 UTC 2017 - co...@suse.com
+
+- updated to 1.21
+   see /usr/share/doc/packages/perl-Parse-Yapp/Changes
+
+  1.21 Fri Aug 04 2017
+  - Typo Fixes, POD Spelling (thanks to Gregor Herrmann)
+  - Bug Fix, Missing POD Encoding (thanks to Gregor Herrmann)
+
+---

Old:

  Parse-Yapp-1.2.tar.gz

New:

  Parse-Yapp-1.21.tar.gz



Other differences:
--
++ perl-Parse-Yapp.spec ++
--- /var/tmp/diff_new_pack.YmaSJm/_old  2017-08-08 11:59:31.665588577 +0200
+++ /var/tmp/diff_new_pack.YmaSJm/_new  2017-08-08 11:59:31.673587450 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Parse-Yapp
-Version:1.2
+Version:1.21
 Release:0
 #Upstream:  The Parse::Yapp module and its related modules and shell scripts 
are You may use and distribute them under the terms of either the GNU General 
Public License or the Artistic License, as specified in the Perl README file. 
If you use the "standalone parser" option so people don't need to install
 %define cpan_name Parse-Yapp

++ Parse-Yapp-1.2.tar.gz -> Parse-Yapp-1.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Parse-Yapp-1.2/Changes new/Parse-Yapp-1.21/Changes
--- old/Parse-Yapp-1.2/Changes  2017-06-14 10:46:21.0 +0200
+++ new/Parse-Yapp-1.21/Changes 2017-08-04 10:00:51.0 +0200
@@ -174,3 +174,7 @@
   Enable Module Version In Parse::Yapp,
   Not Just Distribution Version In Parse::Yapp::Driver
 - Bump Version
+1.21 Fri Aug 04 2017
+- Typo Fixes, POD Spelling (thanks to Gregor Herrmann)
+- Bug Fix, Missing POD Encoding (thanks to Gregor Herrmann)
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Parse-Yapp-1.2/META.json 
new/Parse-Yapp-1.21/META.json
--- old/Parse-Yapp-1.2/META.json2017-06-14 10:48:55.0 +0200
+++ new/Parse-Yapp-1.21/META.json   2017-08-04 10:02:37.0 +0200
@@ -32,6 +32,6 @@
   }
},
"release_status" : "stable",
-   "version" : "1.2",
+   "version" : "1.21",
"x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Parse-Yapp-1.2/META.yml new/Parse-Yapp-1.21/META.yml
--- old/Parse-Yapp-1.2/META.yml 2017-06-14 10:48:55.0 +0200
+++ new/Parse-Yapp-1.21/META.yml2017-08-04 10:02:37.0 +0200
@@ -17,5 +17,5 @@
   directory:
 - t
 - inc
-version: '1.2'
+version: '1.21'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Parse-Yapp-1.2/lib/Parse/Yapp/Driver.pm 
new/Parse-Yapp-1.21/lib/Parse/Yapp/Driver.pm
--- old/Parse-Yapp-1.2/lib/Parse/Yapp/Driver.pm 2017-06-14 10:44:06.0 
+0200
+++ new/Parse-Yapp-1.21/lib/Parse/Yapp/Driver.pm2017-08-04 
10:01:16.0 +0200
@@ -23,7 +23,7 @@
 use vars qw ( $VERSION $COMPATIBLE $FILENAME );
 
 # CORRELATION #py001: $VERSION must be changed in both Parse::Yapp & 
Parse::Yapp::Driver
-$VERSION = '1.2';
+$VERSION = '1.21';
 $COMPATIBLE = '0.07';
 $FILENAME=__FILE__;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Parse-Yapp-1.2/lib/Parse/Yapp.pm 
new/Parse-Yapp-1.21/lib/Parse/Yapp.pm
--- old/Parse-Yapp-1.2/lib/Parse/Yapp.pm2017-06-14 10:43:54.0 
+0200
+++ new/Parse-Yapp-1.21/lib/Parse/Yapp.pm   2017-08-04 10:01:04.0 
+0200
@@ -18,12 +18,14 @@
 use Parse::Yapp::Output;
 
 # CORRELATION #py001: $VERSION must be changed in both Parse::Yapp & 
Parse::Yapp::Driver
-our $VERSION = '1.2';
+our $VERSION = '1.21';
 
 1;
 
 __END__
 
+=encoding UTF-8
+
 =head1 NAME
 
 Parse::Yapp - Perl extension for generating and using LALR parsers. 
@@ -127,7 +129,7 @@
 Precedence declarations, introduced by C<%left>, C<%right> and C<%nonassoc>
 specifying associativity, followed by the list of tokens or litterals
 having the same precedence and associativity.
-The precedence beeing the latter declared will be havin

commit cdemu-client for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package cdemu-client for openSUSE:Factory 
checked in at 2017-08-08 11:59:47

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


Package is "cdemu-client"

Tue Aug  8 11:59:47 2017 rev:13 rq:515094 version:3.1.0

Changes:

--- /work/SRC/openSUSE:Factory/cdemu-client/cdemu-client.changes
2017-02-16 17:04:09.491426349 +0100
+++ /work/SRC/openSUSE:Factory/.cdemu-client.new/cdemu-client.changes   
2017-08-08 11:59:49.903019942 +0200
@@ -1,0 +2,8 @@
+Mon Aug  7 19:36:22 UTC 2017 - jeng...@inai.de
+
+- Update to new upstream release 3.1.0
+  * improved python3 compatibility
+  * build scripts cleanup
+  * improved handling of localized strings in python 2.7
+
+---

Old:

  cdemu-client-3.0.3.tar.bz2

New:

  cdemu-client-3.1.0.tar.bz2



Other differences:
--
++ cdemu-client.spec ++
--- /var/tmp/diff_new_pack.K4sgag/_old  2017-08-08 11:59:50.746901087 +0200
+++ /var/tmp/diff_new_pack.K4sgag/_new  2017-08-08 11:59:50.746901087 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   cdemu-client
-Version:3.0.3
+Version:3.1.0
 Release:0
 Summary:Command-line client to control cdemu-daemon
 License:GPL-2.0+

++ cdemu-client-3.0.3.tar.bz2 -> cdemu-client-3.1.0.tar.bz2 ++
 6328 lines of diff (skipped)




commit glslang for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package glslang for openSUSE:Factory checked 
in at 2017-08-08 11:59:45

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


Package is "glslang"

Tue Aug  8 11:59:45 2017 rev:7 rq:515076 version:3.0.g1516

Changes:

--- /work/SRC/openSUSE:Factory/glslang/glslang.changes  2017-03-02 
19:27:22.360228539 +0100
+++ /work/SRC/openSUSE:Factory/.glslang.new/glslang.changes 2017-08-08 
11:59:46.891444105 +0200
@@ -1,0 +2,30 @@
+Mon Aug  7 18:14:24 UTC 2017 - jeng...@inai.de
+
+- Update to new snapshot 3.0.g1516
+  * SPV: Handle nested opaque types as function parameters.
+  * SPV: Implement new extensions GL_KHX_device_group and
+GL_KHX_multiview.
+  * HLSL: Fix #747: accept 'struct' in front of previously
+user-defined type name.
+  * Rename KHX to EXT to match the released specs.
+  * PP: Recognize the '::' token, and translate appropriately to
+GLSL/HLSL token.
+  * Added 'GL_core_profile' and 'GL_compatibility_profile' macro
+definition to preamble.
+  * HLSL: Add scoping operator, accept static member functions,
+and support calling them.
+  * HLSL: require tessellation factors to be fixed size arrays
+  * HLSL: Add namespace grammar and some basic semantics.
+  * Implement the SPV_KHR_16bit_storage,
+GL_AMD_texture_gather_bias_lod, GL_AMD_gpu_shader_int16,
+GL_EXT_shadow_samplers, GL_ARB_shader_stencil_export,
+GL_OVR_multiview, GL_OVR_multiview2
+SPV_KHR_post_depth_coverage extensions.
+  * Fix NULL pointer dereference in TParseContext::builtInOpCheck.
+  * GLSL 4.6: Implement atomic counter ops and
+SPV_KHR_shader_atomic_counter_ops.
+  * GLSL 4.6: Implement draw parameters.
+  * GLSL 4.6: Implement shader group vote.
+- Add nodate.diff
+
+---

Old:

  glslang-3.0.g1115.tar.xz

New:

  glslang-3.0.g1516.tar.xz
  nodate.diff



Other differences:
--
++ glslang.spec ++
--- /var/tmp/diff_new_pack.bjeZDR/_old  2017-08-08 11:59:47.971292015 +0200
+++ /var/tmp/diff_new_pack.bjeZDR/_new  2017-08-08 11:59:47.979290888 +0200
@@ -16,10 +16,10 @@
 #
 
 
-%define version_unconverted 3.0.g1115
+%define version_unconverted 3.0.g1516
 
 Name:   glslang
-Version:3.0.g1115
+Version:3.0.g1516
 Release:0
 Summary:OpenGL and OpenGL ES shader front end and validator
 License:BSD-3-Clause
@@ -27,6 +27,7 @@
 Url:https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/
 
 Source: %name-%version.tar.xz
+Patch1: nodate.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8
@@ -56,6 +57,7 @@
 
 %prep
 %setup -q
+%patch -P 1 -p1
 
 %build
 %cmake
@@ -64,11 +66,6 @@
 %install
 b="%buildroot"
 %cmake_install
-# So much fail in this source package..
-if test "%_lib" != lib; then
-   mkdir -p "$b/%_libdir"
-   mv "$b/%_prefix/lib"/*.a "$b/%_libdir/"
-fi
 mkdir -p "$b/%_includedir"
 cp -a SPIRV glslang "$b/%_includedir/"
 find "$b/%_includedir/" -type f ! -iname "*.h" -a ! -iname "*.hpp" -print 
-delete

++ glslang-3.0.g1115.tar.xz -> glslang-3.0.g1516.tar.xz ++
 259075 lines of diff (skipped)

++ nodate.diff ++
From: Jan Engelhardt 
Date: 2017-08-07 20:22:29.456870387 +0200

---
 StandAlone/spirv-remap.cpp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: glslang/StandAlone/spirv-remap.cpp
===
--- glslang.orig/StandAlone/spirv-remap.cpp
+++ glslang/StandAlone/spirv-remap.cpp
@@ -227,7 +227,7 @@ namespace {
 }
 }
 else if (arg == "--version" || arg == "-V") {
-std::cout << basename(argv[0]) << " version 0.97 " << __DATE__ 
<< " " << __TIME__ << std::endl;
+std::cout << basename(argv[0]) << " version 0.97 " << 
std::endl;
 exit(0);
 } else if (arg == "--input" || arg == "-i") {
 // Collect input files



commit spirv-tools for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package spirv-tools for openSUSE:Factory 
checked in at 2017-08-08 11:59:42

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


Package is "spirv-tools"

Tue Aug  8 11:59:42 2017 rev:4 rq:515074 version:2016.7~g154

Changes:

--- /work/SRC/openSUSE:Factory/spirv-tools/spirv-tools.changes  2017-03-02 
19:27:35.546363393 +0100
+++ /work/SRC/openSUSE:Factory/.spirv-tools.new/spirv-tools.changes 
2017-08-08 11:59:44.923721247 +0200
@@ -1,0 +2,26 @@
+Tue Jul 18 09:01:25 UTC 2017 - jeng...@inai.de
+
+- Update to new snapshot 2016.7~g145
+  * Validation of type decls for SPV_KHR_16bit_storage
+  * Allow using FPRoundingMode when see VK_KHR_16bit_storage
+  * Validator parses and registers OpExtension
+  * Validator checks if operands require extension
+  * Validator dissallows unsupported Vulkan capability
+  * Update capability tests for SPV_KHR_16bit_storage rev 7
+  * Support SPV_AMD_gcn_shader
+  * Add FlattenDecoration transform
+  * Validator support for Variable Pointer extension.
+  * Support SPV_KHR_storage_buffer_storage_class
+  * Add SPIR-V 1.2 support, for OpenCL 2.2
+  * Added extension SPV_VALIDATOR_ignore_type_decl_unique
+  * Add support for SPV AMD extensions
+  * MARK-V decoder supports extended instructions
+  * DeadBranchElim: Improve algorithm to only remove blocks with
+no predecessors
+  * Opt: Add new size-reduction passes to usage message.
+  * Add multi-sequence move-to-front implementation.
+  * Add MemPass, move all shared functions to it.
+  * Add CommonUniformElim pass.
+  * Mem2Reg: Allow Image and Sampler types as base target types.
+
+---

Old:

  spirv-tools-2016.7~g28.tar.xz

New:

  spirv-tools-2016.7~g154.tar.xz



Other differences:
--
++ spirv-tools.spec ++
--- /var/tmp/diff_new_pack.SzMkuf/_old  2017-08-08 11:59:45.795598449 +0200
+++ /var/tmp/diff_new_pack.SzMkuf/_new  2017-08-08 11:59:45.807596759 +0200
@@ -16,11 +16,11 @@
 #
 
 
-%define version_unconverted 2016.7~g28
-%define lname libSPIRV-Tools-suse2
+%define version_unconverted 2016.7~g154
+%define lname libSPIRV-Tools-suse3
 
 Name:   spirv-tools
-Version:2016.7~g28
+Version:2016.7~g154
 Release:0
 Summary:API and commands for processing SPIR-V modules
 License:Apache-2.0
@@ -76,11 +76,6 @@
 %install
 b="%buildroot"
 %cmake_install
-# duh..
-if [ "%_lib" != lib ]; then
-   pushd "$b/%_prefix"
-   mv "lib" "%_lib"
-fi
 
 %post   -n %lname -p /sbin/ldconfig
 %postun -n %lname -p /sbin/ldconfig
@@ -93,11 +88,13 @@
 %files -n %lname
 %defattr(-,root,root)
 %_libdir/libSPIRV-Tools.so.*
+%_libdir/libSPIRV-Tools-comp.so.*
 %_libdir/libSPIRV-Tools-opt.so.*
 
 %files devel
 %defattr(-,root,root)
 %_libdir/libSPIRV-Tools.so
+%_libdir/libSPIRV-Tools-comp.so
 %_libdir/libSPIRV-Tools-opt.so
 %_includedir/spirv-tools/
 

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.SzMkuf/_old  2017-08-08 11:59:45.967574227 +0200
+++ /var/tmp/diff_new_pack.SzMkuf/_new  2017-08-08 11:59:45.979572537 +0200
@@ -1 +1 @@
-libSPIRV-Tools-suse2
+libSPIRV-Tools-suse3

++ gcc48.diff ++
--- /var/tmp/diff_new_pack.SzMkuf/_old  2017-08-08 11:59:46.011568030 +0200
+++ /var/tmp/diff_new_pack.SzMkuf/_new  2017-08-08 11:59:46.011568030 +0200
@@ -14,10 +14,10 @@
  tools/io.h |3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
-Index: spirv-tools-2016.7~g24/tools/io.h
+Index: spirv-tools-2016.7~g135/tools/io.h
 ===
 spirv-tools-2016.7~g24.orig/tools/io.h
-+++ spirv-tools-2016.7~g24/tools/io.h
+--- spirv-tools-2016.7~g135.orig/tools/io.h
 spirv-tools-2016.7~g135/tools/io.h
 @@ -38,7 +38,8 @@ bool ReadFile(const char* filename, cons
  return false;
}

++ spirv-tools-2016.7~g28.tar.xz -> spirv-tools-2016.7~g154.tar.xz ++
 37002 lines of diff (skipped)

++ ver.diff ++
--- /var/tmp/diff_new_pack.SzMkuf/_old  2017-08-08 11:59:46.403512828 +0200
+++ /var/tmp/diff_new_pack.SzMkuf/_new  2017-08-08 11:59:46.407512265 +0200
@@ -4,31 +4,44 @@
 Unversioned libraries suck!
 
 ---
- source/CMakeLists.txt |1 +
- source/opt/CMakeLists.txt |1 +
- 2 files changed, 2 insertions(+)
+ source/CMakeLists.txt  |1 +
+ source/comp/CMakeLists.txt |1 +
+ source/opt/CMakeLists.txt  |1 +
+ 3 files changed, 3 insertions(+)
 
-Index: spirv-tools-2016.7~g24/source/CMakeLists.txt
+Index: spirv-tools-2016.7~g154/source/CMakeLists.txt
 ===
 spirv-tools-2016.7~g24.orig/source/CMa

commit 000product for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2017-08-08 12:00:05

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


Package is "000product"

Tue Aug  8 12:00:05 2017 rev:46 rq: version:unknown
Tue Aug  8 12:00:04 2017 rev:45 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
_service:product_converter:openSUSE-Addon-Lang-cd-cd-x86_64.kiwi: same change
_service:product_converter:openSUSE-Addon-Lang-release.spec: same change
_service:product_converter:openSUSE-Addon-NonOss-cd-addon-nonoss-i586_x86_64.kiwi:
 same change
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
++ _service:product_converter:openSUSE-Kubic-dvd5-DVD-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.fNptBs/_old  2017-08-08 12:00:30.689275428 +0200
+++ /var/tmp/diff_new_pack.fNptBs/_new  2017-08-08 12:00:30.693274865 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -34,9 +34,9 @@
   true
   -x -2
   openSUSE
-  20170806
+  20170808
   11
-  cpe:/o:opensuse:opensuse-kubic:20170806,openSUSE 
Kubic
+  cpe:/o:opensuse:opensuse-kubic:20170808,openSUSE 
Kubic
   en_US 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

++ _service:product_converter:openSUSE-Kubic-release.spec ++
--- /var/tmp/diff_new_pack.fNptBs/_old  2017-08-08 12:00:30.781262473 +0200
+++ /var/tmp/diff_new_pack.fNptBs/_new  2017-08-08 12:00:30.789261346 +0200
@@ -20,7 +20,7 @@
 Summary:openSUSE Kubic 
 License:GPL-2.0+
 Group:  System/Fhs
-Version:20170806
+Version:    20170808
 Release:0
 BuildRequires:  skelcd-openSUSE
 Recommends: branding
@@ -31,9 +31,9 @@
 
 Provides:   %name-%version
 Provides:   product() = openSUSE-Kubic
-Provides:   product(openSUSE-Kubic) = 20170806-0
+Provides:   product(openSUSE-Kubic) = 20170808-0
 Provides:   product-label() = openSUSE%20Kubic
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dkubic%3A20170806
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dkubic%3A20170808
 Provides:   product-url(releasenotes) = 
https%3A%2F%2Fwww.suse.com%2Freleasenotes%2F%{_target_cpu}%2FSUSE%2DCAASP%2F1.0%2Frelease%2Dnotes%2Dcaasp.rpm
 Provides:   product-endoflife()
 
@@ -90,7 +90,7 @@
 PRETTY_NAME="openSUSE Kubic"
 ID="opensuse-kubic"
 ANSI_COLOR="0;32"
-CPE_NAME="cpe:/o:opensuse:opensuse-kubic:20170806"
+CPE_NAME="cpe:/o:opensuse:opensuse-kubic:20170808"
 EOF
 
 
@@ -100,11 +100,11 @@
 
   openSUSE
   openSUSE-Kubic
-  20170806
+  20170808
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-kubic:20170806
+  cpe:/o:opensuse:opensuse-kubic:20170808
   openSUSE-Kubic
   
 

++ _service:product_converter:openSUSE-cd-mini-i586.kiwi ++
--- /var/tmp/diff_new_pack.fNptBs/_old  2017-08-08 12:00:30.857251770 +0200
+++ /var/tmp/diff_new_pack.fNptBs/_new  2017-08-08 12:00:30.897246137 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -31,9 +31,9 @@
   true
   -x -2
   openSUSE
-  20170806
+  20170808
   11
-  cpe:/o:opensuse:opensuse:20170806,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20170808,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
++ _service:product_converter:openSUSE-dvd5-dvd-promo-i586.kiwi ++
--- /var/tmp/diff_new_pack.fNptBs/_old  2017-08-08 12:00:31.225199946 +0200
+++ /var/tmp/diff_new_pack.fNptBs/_new  2017-08-08 12:00:31.253196003 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,9 +32,9 @@
   true
   -x -2
   openSUSE
-  20170806
+  20170808
   11
-  cpe:/o:opensuse:opensuse:20170806,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20170808,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

_service:product_converter:openSUSE-dvd5-dvd-promo-x86_64.kiwi: same change
++ _service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.fNptBs/_old  2017-08-08 12:00:31.493162205 +0200
+++ /var/

commit pv for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package pv for openSUSE:Factory checked in 
at 2017-08-08 11:59:49

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


Package is "pv"

Tue Aug  8 11:59:49 2017 rev:15 rq:515101 version:1.6.6

Changes:

--- /work/SRC/openSUSE:Factory/pv/pv.changes2015-03-28 18:39:00.0 
+0100
+++ /work/SRC/openSUSE:Factory/.pv.new/pv.changes   2017-08-08 
11:59:54.710342859 +0200
@@ -1,0 +2,10 @@
+Mon Aug  7 23:34:32 UTC 2017 - jeng...@inai.de
+
+- Update to new upstream release 1.6.6
+  * Fix target buffer size (-B) being ignored
+  * Cap read/write sizes, and check elapsed time during read/write
+cycle to avoid display hangs with large buffers or slow media.
+  * Report error in "-d" if process fd directory is unreadable, or
+if process disappears before we start the main loop.
+
+---

Old:

  pv-1.6.0.tar.bz2
  pv-1.6.0.tar.bz2.txt

New:

  pv-1.6.6.tar.bz2
  pv-1.6.6.tar.bz2.txt



Other differences:
--
++ pv.spec ++
--- /var/tmp/diff_new_pack.mgKaqN/_old  2017-08-08 11:59:56.354111344 +0200
+++ /var/tmp/diff_new_pack.mgKaqN/_new  2017-08-08 11:59:56.374108527 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pv
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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:   pv
-Version:1.6.0
+Version:1.6.6
 Release:0
 Summary:PipeViewer - Monitor the Progress of Data through Pipes
 License:Artistic-2.0
@@ -52,23 +52,19 @@
 %setup -q
 
 %build
-%configure \
-   --enable-lfs \
-   --enable-nls \
-   --disable-debugging
-
+%configure --enable-lfs --enable-nls --disable-debugging
 make %{?_smp_mflags}
 
 %install
-make install DESTDIR="%buildroot"
-%find_lang "%{name}"
+%make_install
+%find_lang %name
 
 %check
 make test
 
 %files -f %name.lang
 %defattr(-,root,root)
-%doc README doc/COPYING doc/NEWS doc/TODO
+%doc README doc/COPYING doc/NEWS
 %_bindir/pv
 %doc %_mandir/man1/pv.1%ext_man
 

++ pv-1.6.0.tar.bz2 -> pv-1.6.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pv-1.6.0/README new/pv-1.6.6/README
--- old/pv-1.6.0/README 2015-03-15 01:29:51.0 +0100
+++ new/pv-1.6.6/README 2017-06-24 00:10:40.0 +0200
@@ -191,6 +191,7 @@
   Jacek Wielemborek 
 - implemented fdwatch in Python, suggested PV port
 - reported bug with "-l" and ETA / size
+- suggested common switches
 
   Kim Krecht
 - suggested buffer fill status and last bytes output display options
@@ -224,4 +225,7 @@
   Erkki Seppälä 
 - provided patch implementing "-I"
 
+  Eric A. Borisch
+- provided details of compatibility fix for "%Lu" in watchpid code
+
 -
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pv-1.6.0/autoconf/make/filelist.mk~ 
new/pv-1.6.6/autoconf/make/filelist.mk~
--- old/pv-1.6.0/autoconf/make/filelist.mk~ 2015-03-15 01:38:16.0 
+0100
+++ new/pv-1.6.6/autoconf/make/filelist.mk~ 2017-06-30 23:23:38.0 
+0200
@@ -1,6 +1,6 @@
 # Automatically generated file listings
 #
-# Creation time: Sun Mar 15 00:38:16 GMT 2015
+# Creation time: Fri Jun 30 22:23:37 BST 2017
 
 allsrc = src/library/getopt.c \
 src/library/gettext.c \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pv-1.6.0/autoconf/make/modules.mk~ 
new/pv-1.6.6/autoconf/make/modules.mk~
--- old/pv-1.6.0/autoconf/make/modules.mk~  2015-03-15 01:38:16.0 
+0100
+++ new/pv-1.6.6/autoconf/make/modules.mk~  2017-06-30 23:23:38.0 
+0200
@@ -1,6 +1,6 @@
 # Automatically generated module linking rules
 #
-# Creation time: Sun Mar 15 00:38:16 GMT 2015
+# Creation time: Fri Jun 30 22:23:37 BST 2017
 
 src/library.o:  src/library/getopt.o src/library/gettext.o
$(LD) $(LDFLAGS) -o $@  src/library/getopt.o src/library/gettext.o
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pv-1.6.0/doc/NEWS new/pv-1.6.6/doc/NEWS
--- old/pv-1.6.0/doc/NEWS   2015-03-15 01:34:31.0 +0100
+++ new/pv-1.6.6/doc/NEWS   2017-06-30 23:18:33.0 +0200
@@ -1,3 +1,17 @@
+1.6.6 - 30 June 2017
+  - (r161) use %llu instead of %Lu for better compati

commit youtube-dl for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package youtube-dl for openSUSE:Factory 
checked in at 2017-08-08 11:59:50

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


Package is "youtube-dl"

Tue Aug  8 11:59:50 2017 rev:66 rq:515102 version:2017.08.06

Changes:

--- /work/SRC/openSUSE:Factory/youtube-dl/python-youtube-dl.changes 
2017-08-01 09:26:04.229852584 +0200
+++ /work/SRC/openSUSE:Factory/.youtube-dl.new/python-youtube-dl.changes
2017-08-08 11:59:56.918031919 +0200
@@ -1,0 +2,10 @@
+Mon Aug  7 23:37:09 UTC 2017 - jeng...@inai.de
+
+- Update to new upstream release 2017.08.06
+  * amcnetworks: Make rating optional
+  * yandexdisk: Add extractor
+  * ard: Add support for liveS
+  * pbs: Add support for new URL schema
+  * vidme: Extract DASH and HLS formats
+
+---
youtube-dl.changes: same change

Old:

  youtube-dl-2017.07.23.tar.gz
  youtube-dl-2017.07.23.tar.gz.sig

New:

  youtube-dl-2017.08.06.tar.gz
  youtube-dl-2017.08.06.tar.gz.sig



Other differences:
--
++ python-youtube-dl.spec ++
--- /var/tmp/diff_new_pack.gngbgg/_old  2017-08-08 12:00:00.749492280 +0200
+++ /var/tmp/diff_new_pack.gngbgg/_new  2017-08-08 12:00:00.757491153 +0200
@@ -19,7 +19,7 @@
 %define modname youtube-dl
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-youtube-dl
-Version:2017.07.23
+Version:2017.08.06
 Release:0
 Summary:A python module for downloading from video sites for offline 
watching
 License:SUSE-Public-Domain and CC-BY-SA-3.0

++ youtube-dl.spec ++
--- /var/tmp/diff_new_pack.gngbgg/_old  2017-08-08 12:00:00.865475944 +0200
+++ /var/tmp/diff_new_pack.gngbgg/_new  2017-08-08 12:00:00.897471438 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   youtube-dl
-Version:2017.07.23
+Version:2017.08.06
 Release:0
 Summary:A tool for downloading from video sites for offline watching
 License:SUSE-Public-Domain and CC-BY-SA-3.0

++ youtube-dl-2017.07.23.tar.gz -> youtube-dl-2017.08.06.tar.gz ++
 2021 lines of diff (skipped)




commit ibus for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package ibus for openSUSE:Factory checked in 
at 2017-08-08 12:05:28

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


Package is "ibus"

Tue Aug  8 12:05:28 2017 rev:77 rq:512205 version:1.5.16

Changes:

--- /work/SRC/openSUSE:Factory/ibus/ibus.changes2017-06-17 
10:21:28.184612700 +0200
+++ /work/SRC/openSUSE:Factory/.ibus.new/ibus.changes   2017-08-08 
12:05:30.439056851 +0200
@@ -1,0 +2,6 @@
+Sun Jul 23 15:14:29 UTC 2017 - ft...@geeko.jp
+
+- Fix boo#1047912: ibus-setup crashes on Tumbleweed
+  * fix missing dependency on python?-gobject-Gdk
+
+---



Other differences:
--
++ ibus.spec ++
--- /var/tmp/diff_new_pack.95WwjZ/_old  2017-08-08 12:05:32.294795475 +0200
+++ /var/tmp/diff_new_pack.95WwjZ/_new  2017-08-08 12:05:32.294795475 +0200
@@ -96,10 +96,16 @@
 BuildRequires:  python3
 BuildRequires:  python3-gobject2-devel
 Requires:   python3-gobject2
+%if 0%{suse_version} > 1320
+Requires:   python3-gobject-Gdk
+%endif
 %else
 BuildRequires:  python
 BuildRequires:  python-gobject-devel
 Requires:   python-gobject
+%if 0%{suse_version} > 1320
+Requires:   python2-gobject-Gdk
+%endif
 %endif
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(vapigen)




commit perl-Module-Runtime for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package perl-Module-Runtime for 
openSUSE:Factory checked in at 2017-08-08 12:05:20

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


Package is "perl-Module-Runtime"

Tue Aug  8 12:05:20 2017 rev:11 rq:512165 version:0.015

Changes:

--- /work/SRC/openSUSE:Factory/perl-Module-Runtime/perl-Module-Runtime.changes  
2014-02-28 19:15:40.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-Runtime.new/perl-Module-Runtime.changes 
2017-08-08 12:05:22.320200372 +0200
@@ -1,0 +2,20 @@
+Mon Jul 17 05:49:49 UTC 2017 - co...@suse.com
+
+- updated to 0.015
+   see /usr/share/doc/packages/perl-Module-Runtime/Changes
+
+  version 0.015; 2017-07-16
+  
+* update test suite to not rely on . in @INC, which is no longer
+  necessarily there from Perl 5.25.7
+  
+* in documentation, warn about the security problem with
+  use_package_optimistically()
+  
+* declare correct version for Test::More dependency
+  
+* generate "traditional" style of compatibility Makefile.PL, to
+  permit building in environments that don't support Build.PL or
+  configure_requires
+
+---

Old:

  Module-Runtime-0.014.tar.gz

New:

  Module-Runtime-0.015.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Module-Runtime.spec ++
--- /var/tmp/diff_new_pack.xmAReu/_old  2017-08-08 12:05:23.304061797 +0200
+++ /var/tmp/diff_new_pack.xmAReu/_new  2017-08-08 12:05:23.308061234 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Module-Runtime
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Module-Runtime
-Version:0.014
+Version:0.015
 Release:0
 %define cpan_name Module-Runtime
-Summary:runtime module handling
+Summary:Runtime Module Handling
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Module-Runtime/
-Source: 
http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++ Module-Runtime-0.014.tar.gz -> Module-Runtime-0.015.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.014/Build.PL 
new/Module-Runtime-0.015/Build.PL
--- old/Module-Runtime-0.014/Build.PL   2014-02-06 23:09:32.0 +0100
+++ new/Module-Runtime-0.015/Build.PL   2017-07-16 02:31:17.0 +0200
@@ -15,7 +15,7 @@
},
build_requires => {
"Module::Build" => 0,
-   "Test::More" => 0,
+   "Test::More" => "0.41",
"perl" => "5.006",
"strict" => 0,
"warnings" => 0,
@@ -31,7 +31,7 @@
"git://git.fysh.org/zefram/Module-Runtime.git",
},
},
-   create_makefile_pl => "passthrough",
+   create_makefile_pl => "traditional",
sign => 1,
 )->create_build_script;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.014/Changes 
new/Module-Runtime-0.015/Changes
--- old/Module-Runtime-0.014/Changes2014-02-06 23:09:32.0 +0100
+++ new/Module-Runtime-0.015/Changes2017-07-16 02:31:17.0 +0200
@@ -1,3 +1,17 @@
+version 0.015; 2017-07-16
+
+  * update test suite to not rely on . in @INC, which is no longer
+necessarily there from Perl 5.25.7
+
+  * in documentation, warn about the security problem with
+use_package_optimistically()
+
+  * declare correct version for Test::More dependency
+
+  * generate "traditional" style of compatibility Makefile.PL, to
+permit building in environments that don't support Build.PL or
+configure_requires
+
 version 0.014; 2014-02-06
 
   * bugfix: suppress any CORE::GLOBAL::require override, where possible,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Runtime-0.014/MANIFEST 
new/Module-Runtime-0.015/MANIFEST
--- old/Module-Runtime-0.014/MANIFEST   2014-02-06 23:09:32.0 +0100
+++ new/Module-Runtime-0.015/MANIFEST   2017

commit libinput for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package libinput for openSUSE:Factory 
checked in at 2017-08-08 12:05:33

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


Package is "libinput"

Tue Aug  8 12:05:33 2017 rev:46 rq:512365 version:1.8.1

Changes:

--- /work/SRC/openSUSE:Factory/libinput/libinput.changes2017-06-23 
09:16:34.001679585 +0200
+++ /work/SRC/openSUSE:Factory/.libinput.new/libinput.changes   2017-08-08 
12:05:35.550336940 +0200
@@ -1,0 +2,54 @@
+Mon Jul 24 17:13:19 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.8.1:
+  * This release includes a build fix for the meson build (together
+with better meson instructions).
+  * The palm edge zone is slightly increased from 5% to 8% to avoid
+accidental palm touches in the edges. On most modern touchpads
+that works out to be a 5mm to 8mm increase.
+  * The second one is a straightforward bugfix: if the keyboard was
+removed while disable-while-typing was active, the touchpad
+would never turn on again.
+
+---
+Mon Jul  3 19:26:37 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.8.0:
+  * libinput debug-gui is now installed by default unless disabled.
+  * The biggest change in this release is that libinput has
+switched to meson as primary build system.
+  * The second big change that is user-visible is that we have
+switched to a git-like approach to handling the helper tools
+for libinput. The previously installed tools of
+libinput-debug-events and libinput-list-devices are now
+"libinput debug-events" and "libinput list-devices",
+respectively. For the 1.8.x releases compat-wrappers are in
+place.
+  * Tablet stylus events now average across multiple events to stop
+the wobbly lines previously produced by libinput.
+  * On touchpads that provide MT_TOOL_PALM, i.e.
+in-kernel/in-firmware palm detection we now honor that bit and
+treat that touch as palm.
+  * Tapping has seen some fixes for previously broken timestamps in
+the multi-tap use-cases.
+  * The lid switch handling now uses a udev property to tell us
+whether a keyboard is external or internal. Together with some
+improved state tracking it should make the lid switch handling
+more reliable on devices where the lid switch is broken. The
+property is also used for disable-while-typing which makes it
+easier to special-case hardware.
+- Switch buildsystem to meson following upstream changes.
+- Following the above, add meson BuildRequires.
+- Add graphviz, pkgconfig(cairo), pkgconfig(glib-2.0) and
+  pkgconfig(gtk+-3.0) BuildRequires, new dependencies (for
+  debug-gui).
+- Pass tests=false to meson, not possible to run on the obs.
+- Following the above, drop pkgconfig(check) BuildRequires, no
+  longer needed.
+- Drop xz BuildRequires: Not needed for any current openSUSE
+  release.
+- Drop autoconf, automake and libtool #git BuildRequires, no longer
+  needed when building with meson.
+- Add libinput-rpmlintrc, silence erronus rpmlint warnings.
+
+---

Old:

  libinput-1.7.3.tar.xz
  libinput-1.7.3.tar.xz.sig

New:

  libinput-1.8.1.tar.xz
  libinput-1.8.1.tar.xz.sig
  libinput-rpmlintrc



Other differences:
--
++ libinput.spec ++
--- /var/tmp/diff_new_pack.qZtuEJ/_old  2017-08-08 12:05:36.922143724 +0200
+++ /var/tmp/diff_new_pack.qZtuEJ/_new  2017-08-08 12:05:36.926143161 +0200
@@ -18,7 +18,7 @@
 
 Name:   libinput
 %define lname  libinput10
-Version:1.7.3
+Version:1.8.1
 Release:0
 Summary:Input device and event processing library
 License:MIT
@@ -32,21 +32,21 @@
 Source2:
http://freedesktop.org/software/libinput/%name-%version.tar.xz.sig
 Source3:baselibs.conf
 Source4:%name.keyring
-#git#BuildRequires:  autoconf >= 2.64
-#git#BuildRequires:  automake >= 1.11
-#git#BuildRequires:  libtool >= 2.2
+Source5:libinput-rpmlintrc
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+BuildRequires:  graphviz >= 2.26
 BuildRequires:  grep
+BuildRequires:  meson >= 0.40.0
 BuildRequires:  pkgconfig
-BuildRequires:  xz
-BuildRequires:  pkgconfig(check) >= 0.9.10
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(libevdev) >= 0.4
 BuildRequires:  pkgconfig(libudev)
 BuildRequires:  pkgconfig(libwacom) >= 0.20
 BuildRequires:  pkgconfig(mtdev) >= 1.1.0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 libinput is a library that hand

commit yast2-apparmor for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package yast2-apparmor for openSUSE:Factory 
checked in at 2017-08-08 12:05:24

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


Package is "yast2-apparmor"

Tue Aug  8 12:05:24 2017 rev:61 rq:512171 version:3.3.0

Changes:

--- /work/SRC/openSUSE:Factory/yast2-apparmor/yast2-apparmor.changes
2017-07-02 13:32:59.738910023 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-apparmor.new/yast2-apparmor.changes   
2017-08-08 12:05:25.335775635 +0200
@@ -1,0 +2,5 @@
+Mon Jul 24 01:26:27 UTC 2017 - belphe...@belbel.or.jp
+
+- fix 'Toggle Mode' bug for non-English locale (bsc#1043546)
+
+---

Old:

  yast2-apparmor-3.2.1.tar.bz2

New:

  yast2-apparmor-3.3.0.tar.bz2



Other differences:
--
++ yast2-apparmor.spec ++
--- /var/tmp/diff_new_pack.zXPAFM/_old  2017-08-08 12:05:26.439620162 +0200
+++ /var/tmp/diff_new_pack.zXPAFM/_new  2017-08-08 12:05:26.443619598 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-apparmor
-Version:3.2.1
+Version:3.3.0
 Release:0
 Summary:YaST2 - Plugins for AppArmor Profile Management
 License:GPL-2.0

++ yast2-apparmor-3.2.1.tar.bz2 -> yast2-apparmor-3.3.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-apparmor-3.2.1/package/yast2-apparmor.changes 
new/yast2-apparmor-3.3.0/package/yast2-apparmor.changes
--- old/yast2-apparmor-3.2.1/package/yast2-apparmor.changes 2017-06-30 
15:24:27.532314934 +0200
+++ new/yast2-apparmor-3.3.0/package/yast2-apparmor.changes 2017-07-24 
08:22:10.988794360 +0200
@@ -1,4 +1,9 @@
 ---
+Mon Jul 24 01:26:27 UTC 2017 - belphe...@belbel.or.jp
+
+- fix 'Toggle Mode' bug for non-English locale (bsc#1043546)
+
+---
 Fri Jun 30 12:44:14 UTC 2017 - jreidin...@suse.com
 
 - fix name of apparmor systemd service (bsc#1046750)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-apparmor-3.2.1/package/yast2-apparmor.spec 
new/yast2-apparmor-3.3.0/package/yast2-apparmor.spec
--- old/yast2-apparmor-3.2.1/package/yast2-apparmor.spec2017-06-30 
15:24:27.532314934 +0200
+++ new/yast2-apparmor-3.3.0/package/yast2-apparmor.spec2017-07-24 
08:22:10.988794360 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-apparmor
-Version:3.2.1
+Version:3.3.0
 Release:0
 Summary:YaST2 - Plugins for AppArmor Profile Management
 Url:https://github.com/yast/yast-apparmor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-apparmor-3.2.1/src/include/apparmor/config_complain.rb 
new/yast2-apparmor-3.3.0/src/include/apparmor/config_complain.rb
--- old/yast2-apparmor-3.2.1/src/include/apparmor/config_complain.rb
2017-06-30 15:24:27.540314934 +0200
+++ new/yast2-apparmor-3.3.0/src/include/apparmor/config_complain.rb
2017-07-24 08:22:10.996794360 +0200
@@ -89,7 +89,7 @@
   nil
 end
 
-def getRecordList(showAll)
+def updateRecordList(showAll)
   _Settings = {}
   Ops.set(_Settings, "list", "1")
 
@@ -99,7 +99,7 @@
 Ops.set(_Settings, "showall", "0")
   end
 
-  recList = []
+  @recList = []
   key = 1
 
   # restarts ag_complain agent if necessary
@@ -112,25 +112,18 @@
 )
   end
 
-  translation_mapping = {
-# translators: string is value in table for mode of apparmor
-"enforce"  => _("enforce"),
-"complain" => _("complain"),
-  }
-
   Builtins.foreach(db) do |record|
-recList = Builtins.add(
-  recList,
-  Item(Id(key), Ops.get(record, "name"), 
translation_mapping[record["mode"]])
+@recList = Builtins.add(
+  @recList,
+  Item(Id(key), Ops.get(record, "name"), record["mode"])
 )
 key = Ops.add(key, 1)
   end
 
-  deep_copy(recList)
+  nil
 end
 
-def getProfModeForm(recList, showAll)
-  recList = deep_copy(recList)
+def getProfModeForm(showAll)
   allBtn = PushButton(Id(:showAll), _("Show All Profiles"))
   allText = _("Configure Mode for Active Profiles")
 
@@ -139,6 +132,17 @@
 allText = _("Configure Mode for All Profiles")
   end
 
+  translation_mapping = {
+# translators: string is value in table for mode of apparmor
+"enforce"  => _("enforce"),
+"complain" => _("complain"),
+  }
+
+  recListTranslated 

commit perl-List-SomeUtils-XS for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package perl-List-SomeUtils-XS for 
openSUSE:Factory checked in at 2017-08-08 12:05:37

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


Package is "perl-List-SomeUtils-XS"

Tue Aug  8 12:05:37 2017 rev:3 rq:514095 version:0.55

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-List-SomeUtils-XS/perl-List-SomeUtils-XS.changes
2017-06-17 10:21:11.606951214 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-List-SomeUtils-XS.new/perl-List-SomeUtils-XS.changes
   2017-08-08 12:05:38.273953325 +0200
@@ -1,0 +2,23 @@
+Tue Jul 25 05:44:20 UTC 2017 - co...@suse.com
+
+- updated to 0.55
+   see /usr/share/doc/packages/perl-List-SomeUtils-XS/Changes
+
+  0.55 2017-07-23
+  
+  - Skip all the tests unless List::SomeUtils 0.56 is installed. This fixes the
+issue where trying to install the new List::SomeUtils ends up pulling this
+distribution, which then fails because an older LSU is installed but 
doesn't
+export mode(). Reported by John SJ Anderson. GH #1.
+
+---
+Sun Jul 23 05:46:03 UTC 2017 - co...@suse.com
+
+- updated to 0.54
+   see /usr/share/doc/packages/perl-List-SomeUtils-XS/Changes
+
+  0.54 2017-07-22
+  
+  - Added a new function, mode(), requested by Jerrad Pierce. GH #2.
+
+---

Old:

  List-SomeUtils-XS-0.53.tar.gz

New:

  List-SomeUtils-XS-0.55.tar.gz



Other differences:
--
++ perl-List-SomeUtils-XS.spec ++
--- /var/tmp/diff_new_pack.qeYBv6/_old  2017-08-08 12:05:39.921721241 +0200
+++ /var/tmp/diff_new_pack.qeYBv6/_new  2017-08-08 12:05:39.929720114 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-List-SomeUtils-XS
-Version:0.53
+Version:0.55
 Release:0
 %define cpan_name List-SomeUtils-XS
 Summary:XS implementation for List::SomeUtils

++ List-SomeUtils-XS-0.53.tar.gz -> List-SomeUtils-XS-0.55.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/List-SomeUtils-XS-0.53/Changes 
new/List-SomeUtils-XS-0.55/Changes
--- old/List-SomeUtils-XS-0.53/Changes  2017-06-01 22:03:44.0 +0200
+++ new/List-SomeUtils-XS-0.55/Changes  2017-07-23 17:17:03.0 +0200
@@ -1,7 +1,21 @@
+0.55 2017-07-23
+
+- Skip all the tests unless List::SomeUtils 0.56 is installed. This fixes the
+  issue where trying to install the new List::SomeUtils ends up pulling this
+  distribution, which then fails because an older LSU is installed but doesn't
+  export mode(). Reported by John SJ Anderson. GH #1.
+
+
+0.54 2017-07-22
+
+- Added a new function, mode(), requested by Jerrad Pierce. GH #2.
+
+
 0.53 2017-06-01
 
 - Moved issue tracking to GitHub.
 
+
 0.52 2016-05-06
 
 - Contains XS code changes from List::MoreUtils 0.415 ...
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/List-SomeUtils-XS-0.53/MANIFEST 
new/List-SomeUtils-XS-0.55/MANIFEST
--- old/List-SomeUtils-XS-0.53/MANIFEST 2017-06-01 22:03:44.0 +0200
+++ new/List-SomeUtils-XS-0.55/MANIFEST 2017-07-23 17:17:03.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.009.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.010.
 CONTRIBUTING.md
 Changes
 INSTALL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/List-SomeUtils-XS-0.53/META.json 
new/List-SomeUtils-XS-0.55/META.json
--- old/List-SomeUtils-XS-0.53/META.json2017-06-01 22:03:44.0 
+0200
+++ new/List-SomeUtils-XS-0.55/META.json2017-07-23 17:17:03.0 
+0200
@@ -4,7 +4,7 @@
   "Dave Rolsky "
],
"dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 6.009, CPAN::Meta::Converter version 
2.150010",
+   "generated_by" : "Dist::Zilla version 6.010, CPAN::Meta::Converter version 
2.150010",
"license" : [
   "artistic_2"
],
@@ -67,6 +67,8 @@
 "Exporter" : "0",
 "ExtUtils::MakeMaker" : "0",
 "File::Spec" : "0",
+"Scalar::Util" : "0",
+"Storable" : "0",
 "Test::Builder::Module" : "0",
 "Test::LeakTrace" : "0",
 "Test::More" : "0.96",
@@ -81,7 +83,7 @@
"provides" : {
   "List::SomeUtils::XS" : {
  "file" : "lib/List/SomeUtils/XS.pm",
- "version" : "0.53"
+ "version" : "0.55"
   }
},
"release_status" : "stable",
@@ -96,7 +98,7 @@
  "web" : "https://github.com/houseabsolute/List-SomeUti