commit ucommon for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package ucommon for openSUSE:Factory checked 
in at 2017-12-11 18:57:37

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


Package is "ucommon"

Mon Dec 11 18:57:37 2017 rev:23 rq:555907 version:7.0.0

Changes:

--- /work/SRC/openSUSE:Factory/ucommon/ucommon.changes  2016-01-01 
19:50:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.ucommon.new/ucommon.changes 2017-12-11 
18:57:41.83099 +0100
@@ -1,0 +2,7 @@
+Sun Dec 10 21:54:49 UTC 2017 - jeng...@inai.de
+
+- BuildRequire pre-1.1 openssl.
+  Update devel Require to pkgconfig() because there is (just)
+  a "-lcrypto" in /usr/bin/*-config.
+
+---



Other differences:
--
++ ucommon.spec ++
--- /var/tmp/diff_new_pack.xuV51k/_old  2017-12-11 18:57:41.999140805 +0100
+++ /var/tmp/diff_new_pack.xuV51k/_new  2017-12-11 18:57:42.003140614 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ucommon
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2008, 2009 David Sugar, Tycho Softworks.
 # This file is free software; as a special exception the author gives
 # unlimited permission to copy and/or distribute it, with or without
@@ -38,7 +38,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  graphviz-gd
 BuildRequires:  pkg-config
-BuildRequires:  pkgconfig(openssl)
+BuildRequires:  pkgconfig(openssl) < 1.1
 # Added for 13.1
 Obsoletes:  %name-bin < %version-%release
 Provides:   %name-bin = %version-%release
@@ -70,7 +70,8 @@
 Summary:Headers for building ucommon applications
 Group:  Development/Libraries/C and C++
 Requires:   %lname = %version
-Requires:   libopenssl-devel
+Requires:   pkgconfig(libcrypto)
+Requires:   pkgconfig(libssl)
 
 %description devel
 This package provides header and support files needed for building






commit rmt-server for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package rmt-server for openSUSE:Factory 
checked in at 2017-12-11 18:57:54

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


Package is "rmt-server"

Mon Dec 11 18:57:54 2017 rev:2 rq:556006 version:0.0.1

Changes:

--- /work/SRC/openSUSE:Factory/rmt-server/rmt-server.changes2017-12-06 
08:56:17.902016312 +0100
+++ /work/SRC/openSUSE:Factory/.rmt-server.new/rmt-server.changes   
2017-12-11 18:58:01.646205003 +0100
@@ -1,0 +2,6 @@
+Wed Dec  6 10:31:02 UTC 2017 - dims...@opensuse.org
+
+- Exclude Build for i586: does not build and is not supported on
+  32bit intel archs.
+
+---



Other differences:
--
++ rmt-server.spec ++
--- /var/tmp/diff_new_pack.sq7Htu/_old  2017-12-11 18:58:02.402168996 +0100
+++ /var/tmp/diff_new_pack.sq7Htu/_new  2017-12-11 18:58:02.402168996 +0100
@@ -33,6 +33,8 @@
 License:GPL-2.0+
 Group:  Productivity/Networking/Web/Proxy
 Url:https://software.opensuse.org/package/rmt
+# Does not build for i586 and is not supported on tha arch
+ExcludeArch:%ix86
 
 Source0:%{name}-%{version}.tar.bz2
 Source1:rmt-server-rpmlintrc





commit borgbackup for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package borgbackup for openSUSE:Factory 
checked in at 2017-12-11 18:57:44

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


Package is "borgbackup"

Mon Dec 11 18:57:44 2017 rev:9 rq:555920 version:1.1.3

Changes:

--- /work/SRC/openSUSE:Factory/borgbackup/borgbackup.changes2017-11-15 
16:55:52.204276289 +0100
+++ /work/SRC/openSUSE:Factory/.borgbackup.new/borgbackup.changes   
2017-12-11 18:57:55.246509825 +0100
@@ -1,0 +2,52 @@
+Mon Dec 11 09:11:21 UTC 2017 - alarr...@suse.com
+
+- Update to borgbackup 1.1.3
+- Fixes:
+  * Security Fix for CVE-2017-15914: Incorrect implementation of access
+controls allows remote users to override repository restrictions in Borg
+servers. A user able to access a remote Borg SSH server is able to
+circumvent access controls post-authentication.
+Affected releases: 1.1.0, 1.1.1, 1.1.2. Releases 1.0.x are NOT affected.
+  * crc32: deal with unaligned buffer, add tests - this broke borg on older ARM
+CPUs that can not deal with unaligned 32bit memory accesses and raise a bus
+error in such cases. the fix might also improve performance on some CPUs as
+all 32bit memory accesses by the crc32 code are properly aligned now.
+  * mount: fixed support of --consider-part-files and do not show .borg_part_N
+files by default in the mounted FUSE filesystem.
+  * fixed cache/repo timestamp inconsistency message, highlight that
+information is obtained from security dir (deleting the cache will not
+bypass this error in case the user knows this is a legitimate repo).
+  * borgfs: don't show sub-command in borgfs help
+  * create: show an error when --dry-run and --stats are used together
+- New features:
+  * mount: added exclusion group options and paths.
+Reused some code to support similar options/paths as borg extract offers -
+making good use of these to only mount a smaller subset of dirs/files can
+speed up mounting a lot and also will consume way less memory.
+  borg mount [options] repo_or_archive mountpoint path [paths...]
+paths: you can just give some "root paths" (like for borg extract) to only
+partially populate the FUSE filesystem.
+new options: --exclude[-from], --pattern[s-from], --strip-components
+ * create/extract: support st_birthtime on platforms supporting it
+ * add "borg config" command for querying/setting/deleting config values
+- Other changes:
+ * clean up and simplify packaging (only package committed files,
+   do not install .c/.h/.pyx files)
+ * docs:
+   * point out tuning options for borg create
+   * add instructions for using ntfsclone, zerofree
+   * move image backup-related FAQ entries to a new page
+   * clarify key aliases for borg list --format
+   * mention break-lock in checkpointing FAQ entry
+   * document sshfs rename workaround
+   * add FAQ about removing files from existing archives
+   * add FAQ about different prune policies
+   * usage and man page for borgfs
+   * clarify create --stats duration vs. wall time
+   * clarify encrypted key format for borg key export
+   * update release checklist about security fixes
+   * document good and problematic option placements, fix examples
+   * add note on using --nobsdflags to avoid speed penalty related to bsdflags
+   * move most of support section to www.borgbackup.org
+
+---

Old:

  borgbackup-1.1.2.tar.gz

New:

  borgbackup-1.1.3.tar.gz



Other differences:
--
++ borgbackup.spec ++
--- /var/tmp/diff_new_pack.m8djut/_old  2017-12-11 18:57:56.314458958 +0100
+++ /var/tmp/diff_new_pack.m8djut/_new  2017-12-11 18:57:56.314458958 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   borgbackup
-Version:1.1.2
+Version:1.1.3
 Release:0
 Summary:Deduplicating backup program with compression and 
authenticated encryption
 License:BSD-3-Clause

++ borgbackup-1.1.2.tar.gz -> borgbackup-1.1.3.tar.gz ++
/work/SRC/openSUSE:Factory/borgbackup/borgbackup-1.1.2.tar.gz 
/work/SRC/openSUSE:Factory/.borgbackup.new/borgbackup-1.1.3.tar.gz differ: char 
5, line 1




commit mariadb-connector-odbc for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package mariadb-connector-odbc for 
openSUSE:Factory checked in at 2017-12-11 18:57:51

Comparing /work/SRC/openSUSE:Factory/mariadb-connector-odbc (Old)
 and  /work/SRC/openSUSE:Factory/.mariadb-connector-odbc.new (New)


Package is "mariadb-connector-odbc"

Mon Dec 11 18:57:51 2017 rev:2 rq:555981 version:3.0.2

Changes:

--- 
/work/SRC/openSUSE:Factory/mariadb-connector-odbc/mariadb-connector-odbc.changes
2017-12-01 15:53:27.776415345 +0100
+++ 
/work/SRC/openSUSE:Factory/.mariadb-connector-odbc.new/mariadb-connector-odbc.changes
   2017-12-11 18:58:00.466261205 +0100
@@ -1,0 +2,5 @@
+Mon Dec 11 11:07:25 UTC 2017 - adam.ma...@suse.de
+
+- Provide upgrade path for users of MyODBC-unixODBC
+
+---



Other differences:
--
++ mariadb-connector-odbc.spec ++
--- /var/tmp/diff_new_pack.ik4O8E/_old  2017-12-11 18:58:01.342219482 +0100
+++ /var/tmp/diff_new_pack.ik4O8E/_new  2017-12-11 18:58:01.342219482 +0100
@@ -22,7 +22,7 @@
 Summary:MariaDB ODBC Connector
 License:LGPL-2.1+
 Group:  Productivity/Databases/Tools
-URL:https://downloads.mariadb.org/connector-odbc/
+Url:https://downloads.mariadb.org/connector-odbc/
 Source: 
https://downloads.mariadb.org/interstitial/connector-odbc-%{version}/mariadb-connector-odbc-%{version}-ga-src.tar.gz
 # signature is from copy/pasted stuff found on the download page, not actual 
file
 Source1:mariadb-connector-odbc-%{version}-ga-src.tar.gz.asc
@@ -34,12 +34,14 @@
 Patch7: missing_libs.patch
 Patch8: nosoname.patch
 BuildRequires:  cmake > 3.5.0
-# BuildRequires:  libmysqlclient-devel
 BuildRequires:  gcc-c++
 # This is actually MariaDB -devel package(s)
 BuildRequires:  libmariadb-devel
 BuildRequires:  libmariadbprivate
 BuildRequires:  unixODBC-devel
+# Provide upgrade path based on latest version in Factory
+Provides:   MyODBC-unixODBC = 5.1.9
+Obsoletes:  MyODBC-unixODBC <= 5.1.9
 
 %description
 This package contains the MariaDB ODBC Connector to be used with unixODBC.





commit apache2-mod_nss for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package apache2-mod_nss for openSUSE:Factory 
checked in at 2017-12-11 18:57:21

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


Package is "apache2-mod_nss"

Mon Dec 11 18:57:21 2017 rev:25 rq:555875 version:1.0.14

Changes:

--- /work/SRC/openSUSE:Factory/apache2-mod_nss/apache2-mod_nss.changes  
2017-10-25 17:47:24.247745180 +0200
+++ /work/SRC/openSUSE:Factory/.apache2-mod_nss.new/apache2-mod_nss.changes 
2017-12-11 18:57:23.971999448 +0100
@@ -1,0 +2,7 @@
+Thu Dec  7 13:19:08 UTC 2017 - vci...@suse.com
+
+- drop obsolete mod_nss-dont_disable_SSLV2.patch
+  * bump up minimal NSS version to 3.25, which we now have everywhere
+- Require iproute2 for ss, which is used by gencert to gather noise
+
+---
@@ -26,0 +34 @@
+  (bsc#998183)

Old:

  mod_nss-dont_disable_SSLV2.patch



Other differences:
--
++ apache2-mod_nss.spec ++
--- /var/tmp/diff_new_pack.g2cgLZ/_old  2017-12-11 18:57:24.603969347 +0100
+++ /var/tmp/diff_new_pack.g2cgLZ/_new  2017-12-11 18:57:24.607969156 +0100
@@ -38,7 +38,6 @@
 Source5:vhost-nss.template
 Patch1: mod_nss-migrate.patch
 Patch2: mod_nss-gencert-correct-ownership.patch
-Patch3: mod_nss-dont_disable_SSLV2.patch
 Patch4: mod_nss-gencert_use_ss_instead_of_netstat.patch
 BuildRequires:  apache-rpm-macros
 BuildRequires:  apache2-devel >= 2.2.12
@@ -49,11 +48,12 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  iproute2
+BuildRequires:  iproute2
 BuildRequires:  libapr-util1-devel
 BuildRequires:  libapr1-devel
 BuildRequires:  libtool
 BuildRequires:  mozilla-nspr-devel >= 4.6.3
-BuildRequires:  mozilla-nss-devel >= 3.15.1
+BuildRequires:  mozilla-nss-devel >= 3.25
 BuildRequires:  mozilla-nss-tools
 BuildRequires:  pkgconfig
 Requires:   %{apache_mmn}
@@ -61,7 +61,8 @@
 Requires:   apache2 >= 2.2.12
 Requires:   findutils
 Requires:   iproute2
-Requires:   mozilla-nss >= 3.15.1
+Requires:   iproute2
+Requires:   mozilla-nss >= 3.25
 Requires(post): mozilla-nss-tools
 Provides:   mod_nss
 
@@ -75,7 +76,6 @@
 %setup -q -n mod_nss-%{version}
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 %patch4 -p1
 
 # Touch expression parser sources to prevent regenerating it




commit libzrtpcpp for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package libzrtpcpp for openSUSE:Factory 
checked in at 2017-12-11 18:57:41

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


Package is "libzrtpcpp"

Mon Dec 11 18:57:41 2017 rev:39 rq:555908 version:4.6.6

Changes:

--- /work/SRC/openSUSE:Factory/libzrtpcpp/libzrtpcpp.changes2017-08-08 
11:59:18.351463789 +0200
+++ /work/SRC/openSUSE:Factory/.libzrtpcpp.new/libzrtpcpp.changes   
2017-12-11 18:57:42.271127849 +0100
@@ -1,0 +2,5 @@
+Sun Dec 10 23:31:20 UTC 2017 - jeng...@inai.de
+
+- BuildRequire pre-1.1 openssl.
+
+---



Other differences:
--
++ libzrtpcpp.spec ++
--- /var/tmp/diff_new_pack.pgMJzt/_old  2017-12-11 18:57:42.875099082 +0100
+++ /var/tmp/diff_new_pack.pgMJzt/_new  2017-12-11 18:57:42.875099082 +0100
@@ -32,7 +32,7 @@
 BuildRequires:  gcc-c++ >= 4.7
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libccrtp) >= 2
-BuildRequires:  pkgconfig(libcrypto) >= 0.9.8
+BuildRequires:  pkgconfig(libcrypto) < 1.1
 BuildRequires:  pkgconfig(sqlite3) >= 3.7
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 




commit python-tqdm for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package python-tqdm for openSUSE:Factory 
checked in at 2017-12-11 18:57:16

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


Package is "python-tqdm"

Mon Dec 11 18:57:16 2017 rev:6 rq:555843 version:4.19.5

Changes:

--- /work/SRC/openSUSE:Factory/python-tqdm/python-tqdm.changes  2017-11-08 
15:10:16.629733700 +0100
+++ /work/SRC/openSUSE:Factory/.python-tqdm.new/python-tqdm.changes 
2017-12-11 18:57:21.640110517 +0100
@@ -1,0 +2,9 @@
+Sun Dec 10 19:59:12 UTC 2017 - a...@gmx.de
+
+- update to version 4.19.5:
+  * multiprocess/lock fixes (#457)
+  * set_description in notebook (#345 -> #475)
+  * minor tidy (#476)
+  * documentation updates
+
+---

Old:

  tqdm-4.19.4.tar.gz

New:

  tqdm-4.19.5.tar.gz



Other differences:
--
++ python-tqdm.spec ++
--- /var/tmp/diff_new_pack.1Je3rU/_old  2017-12-11 18:57:22.400074320 +0100
+++ /var/tmp/diff_new_pack.1Je3rU/_new  2017-12-11 18:57:22.400074320 +0100
@@ -20,7 +20,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without test
 Name:   python-tqdm
-Version:4.19.4
+Version:4.19.5
 Release:0
 Summary:An extensible progress meter
 License:MPL-2.0 and MIT

++ tqdm-4.19.4.tar.gz -> tqdm-4.19.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tqdm-4.19.4/LICENCE new/tqdm-4.19.5/LICENCE
--- old/tqdm-4.19.4/LICENCE 2017-09-21 01:32:52.0 +0200
+++ new/tqdm-4.19.5/LICENCE 2017-12-10 19:21:44.0 +0100
@@ -6,11 +6,15 @@
 Exceptions or notable authors are listed below
 in reverse chronological order:
 
-* MPLv2.0 (text below) 2015-2016 (c) Casper da Costa-Luis
+* files: *
+  MPLv2.0 2015-2017 (c) Casper da Costa-Luis
   [casperdcl](https://github.com/casperdcl).
-* MIT 2016 (c) [PR #96] on behalf of Google Inc.
+* files: tqdm/_tqdm.py
+  MIT 2016 (c) [PR #96] on behalf of Google Inc.
+* files: tqdm/_tqdm.py setup.py README.rst MANIFEST.in .gitignore
+  MIT 2013 (c) Noam Yorav-Raphael, original author.
 
-  [PR #96]: https://github.com/tqdm/tqdm/pull/96
+[PR #96]: https://github.com/tqdm/tqdm/pull/96
 
 
 Mozilla Public Licence (MPL) v. 2.0 - Exhibit A
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tqdm-4.19.4/PKG-INFO new/tqdm-4.19.5/PKG-INFO
--- old/tqdm-4.19.4/PKG-INFO2017-10-15 17:42:34.0 +0200
+++ new/tqdm-4.19.5/PKG-INFO2017-12-10 19:57:05.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tqdm
-Version: 4.19.4
+Version: 4.19.5
 Summary: Fast, Extensible Progress Meter
 Home-page: https://github.com/tqdm/tqdm
 Author: tqdm developers
@@ -16,7 +16,7 @@
 
 |Build-Status| |Coverage-Status| |Branch-Coverage-Status| 
|Codacy-Grade|
 
-|DOI-URI| |LICENCE|
+|DOI-URI| |LICENCE| |OpenHub-Status|
 
 
 ``tqdm`` means "progress" in Arabic (taqadum, تقدّم)
@@ -90,7 +90,7 @@
 Latest development release on GitHub
 
 
-|GitHub-Status| |GitHub-Stars| |GitHub-Forks|
+|GitHub-Status| |GitHub-Stars| |GitHub-Commits| |GitHub-Forks|
 
 Pull and install in the current directory:
 
@@ -219,6 +219,8 @@
 FAQ and Known Issues
 
 
+|GitHub-Issues|
+
 The most common issues relate to excessive output on multiple lines, 
instead
 of a neat one-line progress bar.
 
@@ -242,8 +244,7 @@
   ``tqdm(zip(a, b))`` should be replaced with ``zip(tqdm(a), b)`` or 
even
   ``zip(tqdm(a), tqdm(b))``.
 
-If you come across any other difficulties, browse/open issues
-`here `__.
+If you come across any other difficulties, browse and file 
|GitHub-Issues|.
 
 Documentation
 -
@@ -528,7 +529,7 @@
 
 from time import sleep
 from tqdm import trange
-from multiprocessing import Pool, freeze_support, Lock
+from multiprocessing import Pool, freeze_support, RLock
 
 L = list(range(9))
 
@@ -543,7 +544,7 @@
 freeze_support()  # for Windows support
 p = Pool(len(L),
  # again, for Windows support
- initializer=tqdm.set_lock, initargs=(Lock(),))
+ initializer=tqdm.set_lock, 

commit efl for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package efl for openSUSE:Factory checked in 
at 2017-12-11 18:57:31

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


Package is "efl"

Mon Dec 11 18:57:31 2017 rev:34 rq:555901 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/efl/efl.changes  2017-12-06 08:59:35.918767942 
+0100
+++ /work/SRC/openSUSE:Factory/.efl.new/efl.changes 2017-12-11 
18:57:36.339410381 +0100
@@ -1,0 +2,5 @@
+Thu Dec  7 11:31:04 UTC 2017 - sch...@suse.de
+
+- Fix efl-devel lua requires
+
+---



Other differences:
--
++ efl.spec ++
--- /var/tmp/diff_new_pack.0nvTda/_old  2017-12-11 18:57:38.791293596 +0100
+++ /var/tmp/diff_new_pack.0nvTda/_new  2017-12-11 18:57:38.791293596 +0100
@@ -316,7 +316,7 @@
 Requires:   pkgconfig(luajit)
 %else
 %if 0%{?suse_version} >= 1330
-Requires:   pkgconfig(lua-5.1)
+Requires:   pkgconfig(lua5.1)
 %else
 Requires:   pkgconfig(lua) < 5.2
 %endif




commit scamper for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package scamper for openSUSE:Factory checked 
in at 2017-12-11 18:57:23

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


Package is "scamper"

Mon Dec 11 18:57:23 2017 rev:4 rq:555881 version:20171204

Changes:

--- /work/SRC/openSUSE:Factory/scamper/scamper.changes  2017-12-01 
15:54:33.910035510 +0100
+++ /work/SRC/openSUSE:Factory/.scamper.new/scamper.changes 2017-12-11 
18:57:28.315792550 +0100
@@ -1,0 +2,11 @@
+Mon Dec  4 08:40:18 UTC 2017 - sebix+novell@sebix.at
+
+- remove new-openssl.patch, included upstream
+- update to version 20171204:
+ - scamper:
+   * add a blind-fin tbit test, which tests receiver behavior to TCP FIN
+ packets which could have come from an off-path attacker.
+ - sc_radargun:
+   * add -d 2 option, which dumps interface IP-ID behavior classifications.
+
+---

Old:

  new-openssl.patch
  scamper-cvs-20170822.tar.gz

New:

  scamper-cvs-20171204.tar.gz



Other differences:
--
++ scamper.spec ++
--- /var/tmp/diff_new_pack.CKC3Mj/_old  2017-12-11 18:57:30.531687006 +0100
+++ /var/tmp/diff_new_pack.CKC3Mj/_new  2017-12-11 18:57:30.535686815 +0100
@@ -18,15 +18,13 @@
 
 
 Name:   scamper
-Version:20170822
+Version:20171204
 Release:0
 Summary:Parallel Internet measurement utility
 License:GPL-2.0
 Group:  Productivity/Networking/Diagnostic
 Url:https://www.caida.org/tools/measurement/scamper/
 Source: 
https://www.caida.org/tools/measurement/%{name}/code/%{name}-cvs-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM new-openssl.patch -- from developer, new release will 
come soon
-Patch0: new-openssl.patch
 BuildRequires:  libopenssl-devel
 BuildRequires:  pkgconfig
 
@@ -75,7 +73,6 @@
 
 %prep
 %setup -q -n %{name}-cvs-%{version}
-%patch0
 
 %build
 %configure --disable-static

++ scamper-cvs-20170822.tar.gz -> scamper-cvs-20171204.tar.gz ++
 7463 lines of diff (skipped)




commit stress-ng for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package stress-ng for openSUSE:Factory 
checked in at 2017-12-11 18:57:26

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


Package is "stress-ng"

Mon Dec 11 18:57:26 2017 rev:23 rq:555894 version:0.09.06

Changes:

--- /work/SRC/openSUSE:Factory/stress-ng/stress-ng.changes  2017-11-21 
15:34:26.208720930 +0100
+++ /work/SRC/openSUSE:Factory/.stress-ng.new/stress-ng.changes 2017-12-11 
18:57:34.259509448 +0100
@@ -1,0 +2,84 @@
+Mon Dec 11 10:01:37 UTC 2017 - mplus...@suse.com
+
+- Use xz tarball
+
+---
+Sat Dec  9 11:20:21 UTC 2017 - mar...@gmx.de
+
+- Update to version 0.09.06
+  * Makefile: bump version
+  * Add more smarts in autodetecting wcs* functions
+  * stress-tree fixes that got discovered after the 0.09.05 release:
+- stress-tree: minor changes to splay and rb tree setup and insertion
+- stress-tree: fix up tree method calling and add AVL tree
+  * stress-tree: add binary tree
+  * stress-tree: use faster method to populate data
+
+- Update to version 0.09.05
+  * Makefile: bump version
+  * Makefile: remove .xz tarball instead of .gz on make clean rule
+  * debian/control: update Standards-Version to 4.1.2
+  * Debian: watch: change watch URL to use .xz rather than .gz
+  * Makefile: use xz compression on tarball make dist rule
+  * Manual: Add more information in the tree description
+  * stress-wcstr: fix build issues for GNU/kFreeBSD builds
+  * Don't include bsd/wchar.h for GNU/kFreeBSD
+  * libbsd test: Add *BSD support
+  * stress-treee: don't build for __APPLE__
+  * Add DragonFly BSD to BSD support for libbsd
+  * stress-tree: fix build for systems without libbsd
+  * stress-ng: add funccall mini help options.
+  * Add libbsd tree stressor
+  * test/test-libpthread: remove POSIX semaphore checks
+  * stress-ng.h: fix indentation
+  * Move put values into global union, saves > 40K on x86
+  * Add the funccall function call stressor
+  * Makefile: move fanotify stressor to correct alphabetical order place
+  * stress-dev: perform open with O_RDONLY | O_WRONLY for ioctl opens
+  * stress-clone: catch OOM'ing clone stressors and re-spawn them
+
+- Update to version 0.09.04
+  * Makefile: bump version
+  * Manual: update date
+  * stress-sigsegv:  catch SIGBUS for systems such as __APPLE__
+  * stress-fault: catch SIGBUS for systems such as __APPLE__
+  * stress-mmapaddr: cast uint64_t value to intptr_t
+  * stress-mmapaddr: set addr correctly, fixes null ptr issue
+  * stress-mmapaddr: add mremapping if supported
+  * stress-mmapaddr: add MAP_LOCKED random flag setting
+  * stress-mmapaddr: 2nd mmap should check remap addr, and add MAP_32BIT
+  * stress-mmapaddr: add random MAP_FIXED flag
+  * Add stress-mmapaddr random address mmap stressor
+  * stress-icache: remove constification of page_addr
+  * stress-hrtimes: make a couple functions static
+  * stress-vm-rw: constify pointer ctxt
+  * stress-vm: add a couple of constifications in macros
+  * stress-userfaultfd: constify a couple of function args
+  * stress-tmpfs: constify rnd
+  * stress-stream: constify advice in struct stream_madvise_info_t
+  * stress-socket: constify type in struct socket_type_t
+  * stress-pty: fix typo in comment
+  * stress-mmapfork: constify ln
+  * stress-mknode: constify greycode
+  * stress-mincore: remove some empty lines
+  * stress-mergesort: reorder statements and int declaration
+  * stress-malloc: add some constifications
+  * stress-ioport: constify flag
+  * stress-icache: constify page_addr
+  * stress-hdd: add some more constifications
+  * stress-full: constify fields of a struct
+  * stress-flock: constify ppid
+  * stress-filename: add various variable constifications
+  * stress-fiemap: add various variable constifications
+  * stress-dirdeep: constify inodes_avail
+  * stress-dentry: add a constification to a data structure
+  * stress-clock: add a few more constifications
+  * stress-branch: make array labels const
+  * affinity: constify max_cpus
+  * Add more comments to stress-ng.h
+  * stress-vforkmany: call vfork syscall directly when possible
+  * stress-open: only close fd's that have been opened
+  * stress-cpu-online: only allow all CPUs to be offlined with 1 instance
+  * stress-cpu-online: by default, don't offline/online CPU 0
+
+---

Old:

  stress-ng-0.09.03.tar.gz

New:

  stress-ng-0.09.06.tar.xz



Other differences:
--
++ stress-ng.spec ++
--- /var/tmp/diff_new_pack.JJsEU7/_old  2017-12-11 18:57:35.435453437 +0100
+++ /var/tmp/diff_new_pack.JJsEU7/_new  2017-12-11 

commit asio for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package asio for openSUSE:Factory checked in 
at 2017-12-11 18:57:14

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


Package is "asio"

Mon Dec 11 18:57:14 2017 rev:25 rq:555840 version:1.10.8

Changes:

--- /work/SRC/openSUSE:Factory/asio/asio.changes2017-02-03 
17:31:41.619717851 +0100
+++ /work/SRC/openSUSE:Factory/.asio.new/asio.changes   2017-12-11 
18:57:16.152371902 +0100
@@ -1,0 +2,8 @@
+Tue Dec  5 13:58:10 UTC 2017 - suse+bu...@de-korte.org
+
+- Update to stable version 1.10.8
+  * More recent than 1.11.0 (development release).
+  * Release notes unavailable.
+  * Fixes building with openssl-1.1.0.
+
+---

Old:

  asio-1.11.0.tar.bz2

New:

  asio-1.10.8.tar.bz2



Other differences:
--
++ asio.spec ++
--- /var/tmp/diff_new_pack.sQyY3b/_old  2017-12-11 18:57:16.964333228 +0100
+++ /var/tmp/diff_new_pack.sQyY3b/_new  2017-12-11 18:57:16.964333228 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   asio
-Version:1.11.0
+Version:1.10.8
 Release:0
 Summary:A cross-platform C++ library for network and low-level I/O 
programming
 License:BSD-3-Clause

++ asio-1.11.0.tar.bz2 -> asio-1.10.8.tar.bz2 ++
 216454 lines of diff (skipped)




commit prosody for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package prosody for openSUSE:Factory checked 
in at 2017-12-11 18:57:11

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


Package is "prosody"

Mon Dec 11 18:57:11 2017 rev:8 rq:555832 version:0.10.0

Changes:

--- /work/SRC/openSUSE:Factory/prosody/prosody.changes  2017-10-03 
23:20:31.875007529 +0200
+++ /work/SRC/openSUSE:Factory/.prosody.new/prosody.changes 2017-12-11 
18:57:14.58488 +0100
@@ -1,0 +2,6 @@
+Sat Dec  9 19:20:44 UTC 2017 - sleep_wal...@opensuse.org
+
+- add lua51-BitOp as dependency for mod_websocket
+   https://prosody.im/doc/packagers#section010
+
+---



Other differences:
--
++ prosody.spec ++
--- /var/tmp/diff_new_pack.hkbzxd/_old  2017-12-11 18:57:15.316411719 +0100
+++ /var/tmp/diff_new_pack.hkbzxd/_new  2017-12-11 18:57:15.320411528 +0100
@@ -39,6 +39,7 @@
 BuildRequires:  libopenssl-devel
 BuildRequires:  lua51-devel
 Requires:   lua51
+Requires:   lua51-BitOp
 Requires:   lua51-luaexpat
 Requires:   lua51-luafilesystem
 Requires:   lua51-luasec






commit mypaint for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package mypaint for openSUSE:Factory checked 
in at 2017-12-11 18:56:56

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


Package is "mypaint"

Mon Dec 11 18:56:56 2017 rev:3 rq:555698 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/mypaint/mypaint.changes  2017-11-27 
22:15:53.900107145 +0100
+++ /work/SRC/openSUSE:Factory/.mypaint.new/mypaint.changes 2017-12-11 
18:57:01.405074324 +0100
@@ -1,0 +2,6 @@
+Sun Dec 10 13:30:29 UTC 2017 - i...@marguerite.su
+
+- rework mypaint-scons-to-python3.patch
+  * fix more 'print' parentheses
+
+---



Other differences:
--
++ mypaint.spec ++
--- /var/tmp/diff_new_pack.EubQuJ/_old  2017-12-11 18:57:02.801007835 +0100
+++ /var/tmp/diff_new_pack.EubQuJ/_new  2017-12-11 18:57:02.805007645 +0100
@@ -36,6 +36,11 @@
 BuildRequires:  python-gtk-devel
 BuildRequires:  python-numpy >= 1.5
 BuildRequires:  python-numpy-devel
+%if 0%{?suse_version} > 1320
+# just for a working python3 scons
+BuildRequires:  python3-numpy
+BuildRequires:  python3-numpy-devel
+%endif
 BuildRequires:  rsvg-view
 BuildRequires:  scons >= 1.2
 BuildRequires:  swig

++ mypaint-scons-to-python3.patch ++
--- /var/tmp/diff_new_pack.EubQuJ/_old  2017-12-11 18:57:02.821006882 +0100
+++ /var/tmp/diff_new_pack.EubQuJ/_new  2017-12-11 18:57:02.825006692 +0100
@@ -1,7 +1,41 @@
-Index: mypaint-1.1.0/SConstruct
+Index: b/SConscript
 ===
 mypaint-1.1.0.orig/SConstruct
-+++ mypaint-1.1.0/SConstruct
+--- a/SConscript
 b/SConscript
+@@ -10,9 +10,9 @@ mypaintlib = SConscript('lib/SConscript'
+ languages = SConscript('po/SConscript')
+ 
+ try:
+-new_umask = 022
++new_umask = 0o22
+ old_umask = os.umask(new_umask)
+-print "set umask to 0%03o (was 0%03o)" % (new_umask, old_umask)
++print("set umask to 0%03o (was 0%03o)" % (new_umask, old_umask))
+ except OSError:
+ # Systems like Win32...
+ pass
+@@ -28,7 +28,7 @@ def burn_python_version(target, source,
+ f.write(s)
+ f.close()
+ 
+-env.Command('mypaint', 'mypaint.py', [burn_python_version, Chmod('$TARGET', 
0755)])
++env.Command('mypaint', 'mypaint.py', [burn_python_version, Chmod('$TARGET', 
0o755)])
+ AlwaysBuild('mypaint') # especially if the "python_binary" option was changed
+ 
+ env.Clean('.', Glob('*.pyc'))
+@@ -49,7 +49,7 @@ install_perms(env, '$prefix/share/applic
+ install_perms(env, '$prefix/lib/mypaint', mypaintlib)
+ 
+ # Program and supporting UI XML
+-install_perms(env, '$prefix/bin', 'mypaint', perms=0755)
++install_perms(env, '$prefix/bin', 'mypaint', perms=0o755)
+ install_perms(env, '$prefix/share/mypaint/gui', Glob('gui/*.xml'))
+ install_perms(env, "$prefix/share/mypaint/lib",  Glob("lib/*.py"))
+ install_perms(env, "$prefix/share/mypaint/gui",  Glob("gui/*.py"))
+Index: b/SConstruct
+===
+--- a/SConstruct
 b/SConstruct
 @@ -13,7 +13,7 @@ if sys.platform == "win32":
  default_python_config = 'python-config'
  
@@ -11,7 +45,15 @@
   default_python_config = 'python-config-%d.%d'  % 
(sys.version_info[0],sys.version_info[1])
  
  SConsignFile() # no .scsonsign into $PREFIX please
-@@ -80,7 +80,7 @@ env.Append(RPATH = env.Literal(os.path.j
+@@ -73,14 +73,14 @@ if env['enable_profiling'] or env['debug
+ if sys.platform == "linux2":
+ env.Append(LINKFLAGS = Split('-z origin'))
+ 
+-env.Append(RPATH = env.Literal(os.path.join('\\$$ORIGIN')))
++env.Append(RPATH = '$$ORIGIN')
+ 
+ # remove libraries produced by earlier versions, which are actually
+ # being used if they keep lying around, leading to mysterious bugs
  env.Execute('rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so')
  
  set_dir_postaction = {}
@@ -38,37 +80,63 @@
  assert os.path.isdir(path)
  target_root = join(dest, os.path.basename(path))
  for dirpath, dirnames, filenames in os.walk(path):
-Index: mypaint-1.1.0/SConscript
+Index: b/brushlib/SConscript
 ===
 mypaint-1.1.0.orig/SConscript
-+++ mypaint-1.1.0/SConscript
-@@ -10,9 +10,9 @@ mypaintlib = SConscript('lib/SConscript'
- languages = SConscript('po/SConscript')
- 
+--- a/brushlib/SConscript
 b/brushlib/SConscript
+@@ -60,8 +60,8 @@ env = env.Clone()
+ if env['enable_introspection']:
+ env['use_glib'] = True
+ env['use_sharedlib'] = True
+-print "Enabling glib because of enable_introspection=true"
+-print "Building a shared lib instead of a static lib because of 
enable_introspection=true"
++

commit kaffeine for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package kaffeine for openSUSE:Factory 
checked in at 2017-12-11 18:57:07

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


Package is "kaffeine"

Mon Dec 11 18:57:07 2017 rev:70 rq:555774 version:2.0.14

Changes:

--- /work/SRC/openSUSE:Factory/kaffeine/kaffeine.changes2017-09-17 
22:38:04.058857435 +0200
+++ /work/SRC/openSUSE:Factory/.kaffeine.new/kaffeine.changes   2017-12-11 
18:57:11.268604519 +0100
@@ -1,0 +2,23 @@
+Fri Dec  8 09:55:41 UTC 2017 - wba...@tmo.at
+
+- Update to 2.0.14:
+  * Add support for multi-language EPG
+  * Jump to a position was not working, as it was lacking the Ok
+button
+  * On minimal and full screen mode, auto-unhide top menu bar and
+lateral DVB tab bar
+  * The mouse wheel can now be used to control volume
+  * Reduce button size at DVB tab, in order to allow showing a
+bigger playback window
+  * Fix LNBf numbering and position at DiSEqC satellite
+configuration
+  * Kaffeine's handbook now covers all menu bar items
+  * Kaffeine's handbook was improved to contain more details about
+Digital TV settings
+  * LNBf names at DVB satellite configuration are now using
+translations from libdvbv5
+  * Get rid on two compilation warnings with gcc++ version 7.2
+  * scanfile.dvb updated
+- Add fix-pt_BR-docs.patch to fix build with kdoctools < 5.41
+
+---

Old:

  kaffeine-2.0.13.tar.xz

New:

  fix-pt_BR-docs.patch
  kaffeine-2.0.14.tar.xz



Other differences:
--
++ kaffeine.spec ++
--- /var/tmp/diff_new_pack.ENRseS/_old  2017-12-11 18:57:12.180561082 +0100
+++ /var/tmp/diff_new_pack.ENRseS/_new  2017-12-11 18:57:12.184560891 +0100
@@ -20,12 +20,14 @@
 Summary:VLC-based Multimedia Player
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
-Version:2.0.13
+Version:2.0.14
 Release:0
 Url:http://kaffeine.kde.org/
 Source0:%{name}-%{version}.tar.xz
 # PATCH-FEATURE-OPENSUSE kaffeine-fixsplitter.patch -- GUI improvement (allow 
more flexibly set splitters)
 Patch0: kaffeine-fixsplitter.patch
+# PATCH-FIX-UPSTREAM fix-pt_BR-docs.patch -- fix build with kdoctools < 5.41, 
https://websvn.kde.org/?view=revision=1506003
+Patch1: fix-pt_BR-docs.patch
 Recommends: %{name}-lang = %version
 Requires:   libQt5Sql5-sqlite
 Requires:   vlc-noX
@@ -68,6 +70,7 @@
 %prep
 %setup -q
 %patch0
+%patch1 -p1
 
 %build
 %cmake_kf5 -d build

++ fix-pt_BR-docs.patch ++
--- trunk/po/pt_BR/docs/kaffeine/index.docbook  2017/11/30 09:29:15 1505509
+++ trunk/po/pt_BR/docs/kaffeine/index.docbook  2017/12/07 13:06:40 1506003
@@ -988,7 +988,9 @@
 > PgUp  Reproduzir Espaço  Reproduzir PgDn  Reproduzir ←  Reproduzir ←  Reproduzir →  Reproduzir →  Reproduzir kaffeine-2.0.14.tar.xz ++
 113973 lines of diff (skipped)




commit yamagi-quake2 for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package yamagi-quake2 for openSUSE:Factory 
checked in at 2017-12-11 18:56:45

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


Package is "yamagi-quake2"

Mon Dec 11 18:56:45 2017 rev:8 rq:555653 version:7.10

Changes:

--- /work/SRC/openSUSE:Factory/yamagi-quake2/yamagi-quake2.changes  
2017-10-02 16:54:55.920258228 +0200
+++ /work/SRC/openSUSE:Factory/.yamagi-quake2.new/yamagi-quake2.changes 
2017-12-11 18:56:47.653729309 +0100
@@ -1,0 +2,18 @@
+Sun Dec 10 09:45:13 UTC 2017 - mar...@gmx.de
+
+- Update to version 7.10
+  + Joystick support including haptic feedback. This fantastic work was
+done by Denis Pauk. The dirty work is done by SDL, how good or bad
+a joystick or gamepad is supported depends on SDLs support for it.
+  + Fix the old SDL sound backend, s_openal set to 0 is working again.
+  + Fix possible Vorbis buffer underruns if too many sound samples are
+in flight. This occured only in large multi player games with at
+least 6 custom models.
+  + Fix a possible crash on Windows if MSAA was set to a value not
+supported by the driver.
+  + It's now possible to play through the whole game on a Raspberry PI
+and other ARM boards. Please note that the RPIs hardware is really
+limited. Only the OpenGL 1.4 renderer is supported and the framerate
+is highly dependend on the screen resolution.
+
+---

Old:

  quake2-7.02.tar.xz

New:

  quake2-7.10.tar.xz



Other differences:
--
++ yamagi-quake2.spec ++
--- /var/tmp/diff_new_pack.AwzY5D/_old  2017-12-11 18:56:48.209702827 +0100
+++ /var/tmp/diff_new_pack.AwzY5D/_new  2017-12-11 18:56:48.213702637 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   yamagi-quake2
-Version:7.02
+Version:7.10
 Release:0
 Summary:Enhanced Quake 2 Source Port
 License:GPL-2.0

++ quake2-7.02.tar.xz -> quake2-7.10.tar.xz ++
 2478 lines of diff (skipped)




commit dmd for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package dmd for openSUSE:Factory checked in 
at 2017-12-11 18:56:38

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


Package is "dmd"

Mon Dec 11 18:56:38 2017 rev:3 rq:555600 version:2.077.1

Changes:

--- /work/SRC/openSUSE:Factory/dmd/dmd.changes  2017-11-18 00:22:31.164436361 
+0100
+++ /work/SRC/openSUSE:Factory/.dmd.new/dmd.changes 2017-12-11 
18:56:40.586065946 +0100
@@ -1,0 +2,12 @@
+Sat Dec  9 22:57:27 UTC 2017 - matthias.elias...@gmail.com
+
+- Update to 2.0.77.1
+  * [REG2.068] compile-time string concatenation fails with CTFE and char[] 
literal involved
+  * compiler segfault in DsymbolSemanticVisitor::visit(UnittestDeclaration*)
+  * [REG 2.077.0] dmd 2.077.0 crashes when computing mangling symbol for 
simple program
+  * [Reg 2.077] don't build libphobos2.a with PIC for i386
+  * [Reg 2.075] Fibers guard page uses a lot more memory mappings
+- Add "-fPIC" to DFLAGS in dmd.conf for 32bit so we can compile D programs for 
i586. 
+
+
+---

Old:

  dmd-2.077.0.tar.gz
  druntime-2.077.0.tar.gz
  phobos-2.077.0.tar.gz

New:

  dmd-2.077.1.tar.gz
  druntime-2.077.1.tar.gz
  phobos-2.077.1.tar.gz



Other differences:
--
++ dmd.spec ++
--- /var/tmp/diff_new_pack.X3Dak9/_old  2017-12-11 18:56:42.353981739 +0100
+++ /var/tmp/diff_new_pack.X3Dak9/_new  2017-12-11 18:56:42.353981739 +0100
@@ -24,7 +24,7 @@
 %define incbase %{_includedir}/dlang
 %define include %{incbase}/dmd-%{version}
 Name:   dmd
-Version:2.077.0
+Version:2.077.1
 Release:0
 Summary:D Programming Language 2.0
 License:BSL-1.0

++ dmd-2.077.0.tar.gz -> dmd-2.077.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dmd-2.077.0/VERSION new/dmd-2.077.1/VERSION
--- old/dmd-2.077.0/VERSION 2017-11-02 00:19:26.0 +0100
+++ new/dmd-2.077.1/VERSION 2017-11-29 20:31:16.0 +0100
@@ -1 +1 @@
-v2.077.0
+v2.077.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dmd-2.077.0/changelog/mangleBackref.dd 
new/dmd-2.077.1/changelog/mangleBackref.dd
--- old/dmd-2.077.0/changelog/mangleBackref.dd  2017-11-02 00:19:26.0 
+0100
+++ new/dmd-2.077.1/changelog/mangleBackref.dd  1970-01-01 01:00:00.0 
+0100
@@ -1,12 +0,0 @@
-Mangled Symbols now back reference types and identifiers.
-
-Symbols with extern(D) linkage are now mangled using back references
-to types and identifiers if these occur more than once in the mangled name
-as emitted before. This reduces symbol length, especially with chained 
expressions
-of templated functions with Voldemort return types. For example, the average
-symbol length of the 127000+ symbols created by a phobos unittest build
-is reduced by a factor of about 3, while the longest symbol
-shrinks from 416133 to 1142 characters.
-
-See details in the $(LINK2 $(ROOT_DIR)spec/abi.html#name_mangling, ABI)
-specification.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dmd-2.077.0/changelog/removePreludeAssert.dd 
new/dmd-2.077.1/changelog/removePreludeAssert.dd
--- old/dmd-2.077.0/changelog/removePreludeAssert.dd2017-11-02 
00:19:26.0 +0100
+++ new/dmd-2.077.1/changelog/removePreludeAssert.dd1970-01-01 
01:00:00.0 +0100
@@ -1,5 +0,0 @@
-Removed prelude assert for constructors & destructors
-
-The compiler used to insert an `assert(this, "null this");` at the start of 
constructors & destructors.
-To trigger these asserts one needed to construct or destruct an aggregate at 
the null memory location.
-This would crash upon any data member access, which is required for a 
constructor or destructor to do anything useful.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dmd-2.077.0/changelog/reproducible_builds.dd 
new/dmd-2.077.1/changelog/reproducible_builds.dd
--- old/dmd-2.077.0/changelog/reproducible_builds.dd2017-11-02 
00:19:26.0 +0100
+++ new/dmd-2.077.1/changelog/reproducible_builds.dd1970-01-01 
01:00:00.0 +0100
@@ -1,11 +0,0 @@
-DMD builds are now reproducible
-
-The dmd reference compiler now deterministically produces identical binaries 
for
-a given source code and configuration, thus allowing third parties to verify
-that distributed binaries indeed originate from specified source code.
-
-This guarantee only applies when the same compiler version and configuration is
-used. Also values of the non-deterministic lexer tokens `__DATE__`, `__TIME__`,
-and `__TIMESTAMP__` must not 

commit conky for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package conky for openSUSE:Factory checked 
in at 2017-12-11 18:56:47

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


Package is "conky"

Mon Dec 11 18:56:47 2017 rev:21 rq:555669 version:1.10.6

Changes:

--- /work/SRC/openSUSE:Factory/conky/conky.changes  2017-11-22 
11:21:56.870386619 +0100
+++ /work/SRC/openSUSE:Factory/.conky.new/conky.changes 2017-12-11 
18:56:49.281651770 +0100
@@ -1,0 +2,11 @@
+Sun Dec 10 13:21:35 UTC 2017 - i...@marguerite.su
+
+- use modular Xorg libaries if possible
+- make suse is_opensuse is defined
+
+---
+Wed Nov 29 13:24:16 UTC 2017 - pgaj...@suse.com
+
+- build with SLE 15
+
+---



Other differences:
--
++ conky.spec ++
--- /var/tmp/diff_new_pack.qzLLj7/_old  2017-12-11 18:56:49.829625669 +0100
+++ /var/tmp/diff_new_pack.qzLLj7/_new  2017-12-11 18:56:49.833625479 +0100
@@ -20,6 +20,7 @@
 %bcond_withcmus
 %bcond_withlibXNVCtrl
 %bcond_without xmms2
+%{!?is_opensuse: %global is_opensuse 0}
 
 Name:   conky
 Version:1.10.6
@@ -32,7 +33,7 @@
 Source1:conkyconf.SUSE
 Source2:conky.conf.SUSE
 Source3:README.SUSE
-Patch:  conky-1.10.0-libircclient.patch
+Patch0: conky-1.10.0-libircclient.patch
 Patch1: conky-1.10.1-avoid-git.patch
 # our ncurses doesn't supply a .pc file
 Patch2: conky-1.10.4-ncurses.patch
@@ -52,20 +53,17 @@
 BuildRequires:  lua51-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  pkg-config
-BuildRequires:  pkgconfig(cairo)
-BuildRequires:  pkgconfig(cairo-xlib)
+BuildRequires:  update-desktop-files
+%if 0%{?suse_version} <= 1320
+BuildRequires: xorg-x11-devel
+%else
+BuildRequires:  libXft-devel
+BuildRequires: libXinerama-devel
+%endif
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(libcurl)
 BuildRequires:  pkgconfig(libpulse)
-BuildRequires:  pkgconfig(librsvg-2.0)
 BuildRequires:  pkgconfig(libxml-2.0)
-%if 0%{?suse_version} > 1320 || 0%{?suse_version} == 1315
-BuildRequires:  libtolua++-5_1-devel
-%else
-BuildRequires:  tolua++
-%endif
-BuildRequires:  update-desktop-files
-BuildRequires:  xorg-x11-devel
 %if %{with audacious}
 BuildRequires:  pkgconfig(audacious)
 BuildRequires:  pkgconfig(audclient)
@@ -78,14 +76,22 @@
 Provides:   conky-feature-nvidia = %{version}
 Obsoletes:  conky-feature-nvidia < %{version}
 %endif
-%if %{with xmms2}
-BuildRequires:  pkgconfig(xmms2-client)
-%endif
 Provides:   conky-cairo = %{version}
 Obsoletes:  conky-cairo < %{version}
-%if 0%{?suse_version} != 1315 || 0%{?is_opensuse} == 1
+%if 0%{?is_opensuse}
+%if 0%{?suse_version} >= 1315
 BuildRequires:  libircclient-devel
+BuildRequires:  libtolua++-5_1-devel
+%else
+BuildRequires:  tolua++
+%endif
+BuildRequires:  pkgconfig(cairo)
+BuildRequires:  pkgconfig(cairo-xlib)
 BuildRequires:  pkgconfig(imlib2)
+BuildRequires:  pkgconfig(librsvg-2.0)
+%if %{with xmms2}
+BuildRequires:  pkgconfig(xmms2-client)
+%endif
 # This is required for imlib2 function properly.
 Requires:   imlib2-loaders
 Provides:   conky-imlib2 = %{version}
@@ -107,9 +113,11 @@
 %if %{with libXNVCtrl}
 - nVidia GPUs
 %endif
+%if 0%{?is_opensuse}
 %if %{with xmms2}
 - xmms2
 %endif
+%endif
 
 %package doc
 Summary:Documentation for conky
@@ -122,7 +130,7 @@
 
 %package -n vim-plugin-conky
 Summary:Conky Configuration File Support for Vim
-Group:  Productivity/Editors/Vi
+Group:  Productivity/Text/Editors
 Requires:   vim-base
 Provides:   conky-vim = %{version}
 Obsoletes:  conky-vim < %{version}
@@ -135,7 +143,7 @@
 
 %package -n nano-plugin-conky
 Summary:Conky Configuration File Support for nano
-Group:  Productivity/Editors/Other
+Group:  Productivity/Text/Editors
 Requires:   nano
 Provides:   conky-nano = %{version}
 Obsoletes:  conky-nano < %{version}
@@ -148,7 +156,9 @@
 
 %prep
 %setup -q
-%patch -p1
+%if 0%{?is_opensuse}
+%patch0 -p1
+%endif
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
@@ -170,20 +180,29 @@
-DBUILD_IBM=ON \
-DBUILD_ICAL=ON \
-DBUILD_ICONV=ON \
-%if 0%{?suse_version} == 1315 && 0%{?is_opensuse} != 1
-   -DBUILD_IMLIB2=OFF \
--DBUILD_LUA_IMLIB2=OFF \
-%else
+%if 0%{?is_opensuse}
+   -DBUILD_LUA_CAIRO=ON \
-DBUILD_IMLIB2=ON \
 -DBUILD_LUA_IMLIB2=ON \
-%endif
-   -DBUILD_IOSTATS=ON \
-   -DBUILD_IPV6=ON \
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1315
-DBUILD_IRC=ON \
 %else
 -DBUILD_IRC=OFF \
 %endif
+   

commit gpxsee for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package gpxsee for openSUSE:Factory checked 
in at 2017-12-11 18:56:41

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


Package is "gpxsee"

Mon Dec 11 18:56:41 2017 rev:17 rq:555647 version:4.17

Changes:

--- /work/SRC/openSUSE:Factory/gpxsee/gpxsee.changes2017-10-19 
19:33:09.701999133 +0200
+++ /work/SRC/openSUSE:Factory/.gpxsee.new/gpxsee.changes   2017-12-11 
18:56:45.957810087 +0100
@@ -1,0 +2,11 @@
+Sat Dec  9 20:56:35 CET 2017 - tu...@cbox.cz
+
+- Update to version 4.17
+  * Added support for Lambert Azimuthal Equal Area projections.
+  * Added support for map viewing without GPS log files loaded.
+  * Added slider/marker color setting.
+  * Fixed scene centering issue.
+  * Fixed offline map scale computation issue.
+  * Fixed some corner case map drawing issues.
+
+---

Old:

  GPXSee-4.16.tar.gz

New:

  GPXSee-4.17.tar.gz



Other differences:
--
++ gpxsee.spec ++
--- /var/tmp/diff_new_pack.myzarv/_old  2017-12-11 18:56:46.697774842 +0100
+++ /var/tmp/diff_new_pack.myzarv/_new  2017-12-11 18:56:46.701774651 +0100
@@ -19,7 +19,7 @@
 # See also http://en.opensuse.org/openSUSE:Specfile_guidelines
 
 Name:   gpxsee
-Version:4.16
+Version:4.17
 Release:1
 Summary:GPS log files visualizing and analyzing tool
 License:GPL-3.0
@@ -62,16 +62,19 @@
 %setup -q -n GPXSee-%{version}
 
 %build
-%if 0%{?fedora_version} >= 24 || 0%{?suse_version}
+%if 0%{?fedora_version} >= 24
+lrelease-qt5 gpxsee.pro
+%{qmake_qt5} gpxsee.pro
+%else
+%if 0%{?suse_version}
 lrelease-qt5 gpxsee.pro
 qmake-qt5 gpxsee.pro
 %else
 lrelease-qt4 gpxsee.pro
 qmake-qt4 gpxsee.pro
 %endif
+%endif
 make %{?_smp_mflags}
-make clean
-
 
 %install
 install -d 755 %{buildroot}/%{_bindir}

++ GPXSee-4.16.tar.gz -> GPXSee-4.17.tar.gz ++
 43450 lines of diff (skipped)

++ debian.changelog ++
--- /var/tmp/diff_new_pack.myzarv/_old  2017-12-11 18:56:46.933763602 +0100
+++ /var/tmp/diff_new_pack.myzarv/_new  2017-12-11 18:56:46.937763410 +0100
@@ -1,3 +1,14 @@
+gpxsee (4.17) stable; urgency=low
+
+  * Added support for Lambert Azimuthal Equal Area projections.
+  * Added support for map viewing without GPS log files loaded.
+  * Added slider/marker color setting.
+  * Fixed scene centering issue.
+  * Fixed offline map scale computation issue.
+  * Fixed some corner case map drawing issues.
+
+ -- Martin Tuma   Sat, 09 Dec 2017 21:07:06 +0100
+
 gpxsee (4.16) stable; urgency=low
 
   * Fixed broken loading of KML files with folder elements outside

++ gpxsee.dsc ++
--- /var/tmp/diff_new_pack.myzarv/_old  2017-12-11 18:56:47.021759410 +0100
+++ /var/tmp/diff_new_pack.myzarv/_new  2017-12-11 18:56:47.021759410 +0100
@@ -1,9 +1,9 @@
 Format: 1.0
 Source: gpxsee
-Version: 4.16
+Version: 4.17
 Binary: gpxsee
 Maintainer: Martin Tuma 
 Architecture: any
 Build-Depends: debhelper (>= 9), qtbase5-dev, qtbase5-dev-tools, qt5-qmake, 
qttools5-dev-tools, libqt5opengl5-dev
 Files:
-  0 GPXSee-4.16.tar.gz
+  0 GPXSee-4.17.tar.gz




commit perl-DBIx-Simple for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package perl-DBIx-Simple for 
openSUSE:Factory checked in at 2017-12-11 18:56:52

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


Package is "perl-DBIx-Simple"

Mon Dec 11 18:56:52 2017 rev:6 rq:555677 version:1.37

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBIx-Simple/perl-DBIx-Simple.changes
2012-01-09 16:21:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-DBIx-Simple.new/perl-DBIx-Simple.changes   
2017-12-11 18:56:55.621349806 +0100
@@ -1,0 +2,6 @@
+Sat Dec  9 06:13:35 UTC 2017 - co...@suse.com
+
+- updated to 1.37
+   see /usr/share/doc/packages/perl-DBIx-Simple/Changes
+
+---

Old:

  DBIx-Simple-1.35.tar.gz

New:

  DBIx-Simple-1.37.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-DBIx-Simple.spec ++
--- /var/tmp/diff_new_pack.unvpVk/_old  2017-12-11 18:56:57.469261790 +0100
+++ /var/tmp/diff_new_pack.unvpVk/_new  2017-12-11 18:56:57.473261598 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBIx-Simple
 #
-# 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
@@ -15,22 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-DBIx-Simple
-Version:1.35
+Version:1.37
 Release:0
-# coolo picked license for the author :)
+#Upstream:  Pick your favourite OSI approved license :) 
http://www.opensource.org/licenses/alphabetical
 %define cpan_name DBIx-Simple
 Summary:Very complete easy-to-use OO interface to DBI
 License:MIT
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/DBIx-Simple/
-Source: 
http://www.cpan.org/authors/id/J/JU/JUERD/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/J/JU/JUERD/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(DBI) >= 1.21
-BuildRequires:  perl(ExtUtils::MakeMaker)
 Requires:   perl(DBI) >= 1.21
 %{perl_requires}
 
@@ -64,9 +65,6 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes README

++ DBIx-Simple-1.35.tar.gz -> DBIx-Simple-1.37.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Simple-1.35/Changes new/DBIx-Simple-1.37/Changes
--- old/DBIx-Simple-1.35/Changes2011-01-04 23:53:19.0 +0100
+++ new/DBIx-Simple-1.37/Changes2017-12-08 23:49:44.0 +0100
@@ -3,15 +3,26 @@
 Incompatible changes are marked with "!!". Incompatibility with and changes in
 "undocumented features" are not always specifically mentioned here.
 
-1.35  Tue Jan 4 23:48 2010
+1.37  2017-12-08 23:49
+- POD syntax fix
+
+1.36  2017-12-08 21:23
+- $result->object and $result->objects now load any module on demand.
+  (Suggested by Krasimir Berov.)
+- New: $result->group, $result->group_hashes, $result->group_arrays.
+  (Suggested by Mark Overmeer.)
+- Fixed typo in 1.35 release date below. (Reported by Sjors Gielen.)
+- Changed changelog date format from insane to ISO 8601-ish.
+
+1.35  2011-01-04 23:48
  !! - RaiseError is now enabled by default, as announced three years ago.
   Set PERL_DBIX_SIMPLE_NO_RAISEERROR=1 to get the old behavior.
 
-1.34  Mon Dec 12 16:28 2010
-- Added missing documentation. (Reported by Krassimir Berov.)
+1.34  2010-12-12 16:28
+- Added missing documentation. (Reported by Krasimir Berov.)
 - Fixed off-by-20 mistake in unit tests.
 
-1.33  Sat Dec 4 0:30 2010
+1.33  2010-12-04 00:30
 - New license: any(OSI).
 - Documentation overhaul.
 - New: $result->kv_list, $result->kv_array, $result->kv_flat,
@@ -23,34 +34,34 @@
 - Please note that very probably RaiseError will be enabled by
   default in the next version.
 
-1.32  Mon Sep 17 14:58 2007
+1.32  2007-07-17 14:58
 - Test updated to conform to fixed bug in Test::More. See
   http://www.nntp.perl.org/group/perl.qa/2007/09/msg9269.html
 
-1.31  Sun Jul 15 0:29 2007
+1.31  2007-07-15 00:29
 - New: $db->iquery. This method loads SQL::Interp on demand. The
  

commit python-bokeh for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package python-bokeh for openSUSE:Factory 
checked in at 2017-12-11 18:56:36

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


Package is "python-bokeh"

Mon Dec 11 18:56:36 2017 rev:5 rq:35 version:0.12.13

Changes:

--- /work/SRC/openSUSE:Factory/python-bokeh/python-bokeh.changes
2017-12-08 12:58:14.071850820 +0100
+++ /work/SRC/openSUSE:Factory/.python-bokeh.new/python-bokeh.changes   
2017-12-11 18:56:38.606160250 +0100
@@ -1,0 +2,7 @@
+Thu Dec  7 16:45:48 UTC 2017 - a...@gmx.de
+
+- update to version 0.12.13:
+  * bugfixes:
++ #7283 [component: build] Windows install fails 0.12.12
+
+---

Old:

  bokeh-0.12.11.tar.gz

New:

  bokeh-0.12.13.tar.gz



Other differences:
--
++ python-bokeh.spec ++
--- /var/tmp/diff_new_pack.Uvicv0/_old  2017-12-11 18:56:39.630111478 +0100
+++ /var/tmp/diff_new_pack.Uvicv0/_new  2017-12-11 18:56:39.634111288 +0100
@@ -21,7 +21,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-bokeh
-Version:0.12.11
+Version:0.12.13
 Release:0
 Summary:Statistical and novel interactive HTML plots for Python
 License:BSD-3-Clause

++ bokeh-0.12.11.tar.gz -> bokeh-0.12.13.tar.gz ++
/work/SRC/openSUSE:Factory/python-bokeh/bokeh-0.12.11.tar.gz 
/work/SRC/openSUSE:Factory/.python-bokeh.new/bokeh-0.12.13.tar.gz differ: char 
5, line 1




commit python-bleach for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package python-bleach for openSUSE:Factory 
checked in at 2017-12-11 18:56:32

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


Package is "python-bleach"

Mon Dec 11 18:56:32 2017 rev:3 rq:34 version:2.1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-bleach/python-bleach.changes  
2017-11-15 16:57:52.779858595 +0100
+++ /work/SRC/openSUSE:Factory/.python-bleach.new/python-bleach.changes 
2017-12-11 18:56:36.934239885 +0100
@@ -1,0 +2,12 @@
+Thu Dec  7 16:50:14 UTC 2017 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 2.1.2:
+  * Bug fixes
++ Support html5lib-python 1.0.1. (#337)
++ Add deprecation warning for supporting html5lib-python < 1.0.
++ Switch to semver.
+
+---

Old:

  bleach-2.1.1.tar.gz

New:

  bleach-2.1.2.tar.gz



Other differences:
--
++ python-bleach.spec ++
--- /var/tmp/diff_new_pack.eEOkmD/_old  2017-12-11 18:56:37.478213975 +0100
+++ /var/tmp/diff_new_pack.eEOkmD/_new  2017-12-11 18:56:37.482213784 +0100
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-bleach
-Version:2.1.1
+Version:2.1.2
 Release:0
 Summary:An easy whitelist-based HTML-sanitizing tool
 License:Apache-2.0
@@ -28,6 +28,7 @@
 Source: 
https://files.pythonhosted.org/packages/source/b/bleach/bleach-%{version}.tar.gz
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module html5lib >= 0.}
+BuildRequires:  %{python_module pytest-runner}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module six}

++ bleach-2.1.1.tar.gz -> bleach-2.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bleach-2.1.1/CHANGES new/bleach-2.1.2/CHANGES
--- old/bleach-2.1.1/CHANGES2017-10-02 20:45:41.0 +0200
+++ new/bleach-2.1.2/CHANGES2017-12-07 17:01:22.0 +0100
@@ -1,6 +1,30 @@
 Bleach Changes
 ==
 
+Version 2.1.2 (December 7th, 2017)
+--
+
+**Security fixes**
+
+None
+
+**Backwards incompatible changes**
+
+None
+
+**Features**
+
+None
+
+**Bug fixes**
+
+* Support html5lib-python 1.0.1. (#337)
+
+* Add deprecation warning for supporting html5lib-python < 1.0.
+
+* Switch to semver.
+
+
 Version 2.1.1 (October 2nd, 2017)
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bleach-2.1.1/PKG-INFO new/bleach-2.1.2/PKG-INFO
--- old/bleach-2.1.1/PKG-INFO   2017-10-02 20:46:17.0 +0200
+++ new/bleach-2.1.2/PKG-INFO   2017-12-07 17:02:05.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: bleach
-Version: 2.1.1
+Version: 2.1.2
 Summary: An easy safelist-based HTML-sanitizing tool.
 Home-page: http://github.com/mozilla/bleach
 Author: Will Kahn-Greene
@@ -17,7 +17,7 @@
 .. image:: https://badge.fury.io/py/bleach.svg
:target: http://badge.fury.io/py/bleach
 
-Bleach is a allowed-list-based HTML sanitizing library that escapes or 
strips
+Bleach is an allowed-list-based HTML sanitizing library that escapes 
or strips
 markup and attributes.
 
 Bleach can also linkify text safely, applying filters that Django's 
``urlize``
@@ -133,6 +133,30 @@
 Bleach Changes
 ==
 
+Version 2.1.2 (December 7th, 2017)
+--
+
+**Security fixes**
+
+None
+
+**Backwards incompatible changes**
+
+None
+
+**Features**
+
+None
+
+**Bug fixes**
+
+* Support html5lib-python 1.0.1. (#337)
+
+* Add deprecation warning for supporting html5lib-python < 1.0.
+
+* Switch to semver.
+
+
 Version 2.1.1 (October 2nd, 2017)
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bleach-2.1.1/README.rst new/bleach-2.1.2/README.rst
--- old/bleach-2.1.1/README.rst 2017-10-02 20:45:41.0 +0200
+++ new/bleach-2.1.2/README.rst 2017-12-07 17:01:22.0 +0100
@@ -8,7 +8,7 @@
 .. image:: https://badge.fury.io/py/bleach.svg
:target: http://badge.fury.io/py/bleach
 
-Bleach is a allowed-list-based HTML sanitizing library that escapes or strips
+Bleach is an 

commit perl-CPAN-Perl-Releases for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package perl-CPAN-Perl-Releases for 
openSUSE:Factory checked in at 2017-12-11 18:56:50

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


Package is "perl-CPAN-Perl-Releases"

Mon Dec 11 18:56:50 2017 rev:54 rq:555676 version:3.42

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-CPAN-Perl-Releases/perl-CPAN-Perl-Releases.changes
  2017-11-15 16:54:48.102624902 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-CPAN-Perl-Releases.new/perl-CPAN-Perl-Releases.changes
 2017-12-11 18:56:52.433501646 +0100
@@ -1,0 +2,6 @@
+Sun Dec 10 14:04:05 UTC 2017 - co...@suse.com
+
+- updated to 3.42
+   see /usr/share/doc/packages/perl-CPAN-Perl-Releases/Changes
+
+---

Old:

  CPAN-Perl-Releases-3.40.tar.gz

New:

  CPAN-Perl-Releases-3.42.tar.gz



Other differences:
--
++ perl-CPAN-Perl-Releases.spec ++
--- /var/tmp/diff_new_pack.pvtghJ/_old  2017-12-11 18:56:53.077470973 +0100
+++ /var/tmp/diff_new_pack.pvtghJ/_new  2017-12-11 18:56:53.077470973 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-CPAN-Perl-Releases
-Version:3.40
+Version:3.42
 Release:0
 %define cpan_name CPAN-Perl-Releases
 Summary:Mapping Perl releases on CPAN to the location of the tarballs

++ CPAN-Perl-Releases-3.40.tar.gz -> CPAN-Perl-Releases-3.42.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-3.40/Changes 
new/CPAN-Perl-Releases-3.42/Changes
--- old/CPAN-Perl-Releases-3.40/Changes 2017-10-21 00:17:04.0 +0200
+++ new/CPAN-Perl-Releases-3.42/Changes 2017-11-21 00:27:15.0 +0100
@@ -1,8 +1,36 @@
 ==
-Changes from 2012-10-21 00:00:00 + to present.
+Changes from 2012-11-21 00:00:00 + to present.
 ==
 
 -
+version 3.42 at 2017-11-20 23:24:42 +
+-
+
+  Change: f9969c44f95f47f541ed64f21be32368d6566d12
+  Author: Chris 'BinGOs' Williams 
+  Date : 2017-11-20 23:24:42 +
+
+DAGOLDEN has removed .xz for v5.23.6 
+
+  Change: ce509e7fc64975713d83bb05eb97cdf6ead2d871
+  Author: Chris 'BinGOs' Williams 
+  Date : 2017-11-20 23:18:35 +
+
+XSAWYER has removed all dev and RCs 
+
+  Change: 2f02d02c0e215b3dcff2680013b4e94f17e05458
+  Author: Chris 'BinGOs' Williams 
+  Date : 2017-11-20 21:41:35 +
+
+Updated for v5.27.6 
+
+  Change: 064a18f9b350102b2298a355d9be7408bc640bdf
+  Author: Chris 'BinGOs' Williams 
+  Date : 2017-11-20 21:33:20 +
+
+No bz2 tarballs after v5.27.5 
+
+-
 version 3.40 at 2017-10-20 22:14:11 +
 -
 
@@ -1311,62 +1339,6 @@
 
 Updated for v5.17.7 
 
--
-version 0.90 at 2012-11-20 23:56:50 +
--
-
-  Change: dfd81b85147e6bf85fda0ef855c542ca6c242883
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-11-20 23:56:50 +
-
-Updated for v5.17.6 
-
--
-version 0.88 at 2012-11-10 15:39:33 +
--
-
-  Change: 7fba080dc2856fb6a00a748edd6cc9bf34302b55
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-11-10 15:39:33 +
-
-Updated for v5.12.5 
-
--
-version 0.86 at 2012-11-08 21:24:01 +
--
-
-  Change: 36f5199dcba6333b6040f155497c7acb6e73a79d
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-11-08 21:24:01 +
-
-Updated for v5.12.5-RC2 
-
--
-version 0.84 at 2012-11-03 21:38:52 +
--
-
-  Change: 7caec9a17b31ff90fe95be68ccc66171d3442979
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-11-03 21:38:52 +
-
-Updated for v5.12.5-RC1 
-
-  Change: ef41f7c2d79af5657d8a5ddbb1ab44f76197181c
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-11-03 21:33:08 +
-
-Updated for v5.16.2 
-
--
-version 0.80 at 2012-10-27 06:17:18 +
--
-
-  Change: 63beb4c2041c76ce6e0b67e98358e6474cd1ed78
-  Author: Chris 'BinGOs' Williams 

commit sisctrl for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package sisctrl for openSUSE:Factory checked 
in at 2017-12-11 18:56:30

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


Package is "sisctrl"

Mon Dec 11 18:56:30 2017 rev:18 rq:555396 version:0.0.20051202

Changes:

--- /work/SRC/openSUSE:Factory/sisctrl/sisctrl.changes  2011-12-01 
17:38:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.sisctrl.new/sisctrl.changes 2017-12-11 
18:56:31.738487362 +0100
@@ -1,0 +2,5 @@
+Thu Dec  7 20:03:20 UTC 2017 - crrodrig...@opensuse.org
+
+- Remove build dependency on xorg-x11-devel 
+
+---



Other differences:
--
++ sisctrl.spec ++
--- /var/tmp/diff_new_pack.fla24T/_old  2017-12-11 18:56:32.226464118 +0100
+++ /var/tmp/diff_new_pack.fla24T/_new  2017-12-11 18:56:32.226464118 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sisctrl
 #
-# Copyright (c) 2011 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
@@ -16,22 +16,32 @@
 #
 
 
-
 Name:   sisctrl
 Version:0.0.20051202
 Release:0
 # src/sisctrlext.c is licensed under the GPL-2.0 "only". Hence the below 
license
-License:GPL-2.0
 Summary:SiS Display Control Panel
-Url:http://www.winischhofer.net/
+License:GPL-2.0
 Group:  System/X11/Utilities
+Url:http://www.winischhofer.net/
 Source: %{name}-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE sisctrl.diff bnc#218755 bnc#483401 -- Add missing return 
value - Define functions, which don't return anything, as void - Fix build by 
linking with libm - Fix rpmlint warning "no-return-in-nonvoid-function"
 Patch0: sisctrl.diff
-BuildRequires:  automake pkgconfig
+BuildRequires:  automake
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
-BuildRequires:  xorg-x11-devel
-BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(gdk-pixbuf-2.0)
+BuildRequires:  pkgconfig(gdk-x11-2.0)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(gtk+-x11-2.0)
+BuildRequires:  pkgconfig(pango)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xext)
+BuildRequires:  pkgconfig(xinerama)
+BuildRequires:  pkgconfig(xrandr)
+BuildRequires:  pkgconfig(xv)
+BuildRequires:  pkgconfig(xxf86vm)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description




commit checkpolicy for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package checkpolicy for openSUSE:Factory 
checked in at 2017-12-11 18:56:09

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


Package is "checkpolicy"

Mon Dec 11 18:56:09 2017 rev:25 rq:545896 version:2.6

Changes:

--- /work/SRC/openSUSE:Factory/checkpolicy/checkpolicy.changes  2017-07-06 
00:02:05.289383435 +0200
+++ /work/SRC/openSUSE:Factory/.checkpolicy.new/checkpolicy.changes 
2017-12-11 18:56:11.615445834 +0100
@@ -1,0 +2,11 @@
+Fri Nov 24 09:01:04 UTC 2017 - jseg...@suse.com
+
+- Update to version 2.6. Notable changes:
+  * Add types associated to a role in the current scope when parsing
+  * Extend checkpolicy pathname matching
+  * Set flex as default lexer
+  * Fix checkmodule output message
+  * Fail if module name different than output base filename
+  * Add support for portcon dccp protocol
+
+---

Old:

  checkpolicy-2.5.tar.gz

New:

  checkpolicy-2.6.tar.gz



Other differences:
--
++ checkpolicy.spec ++
--- /var/tmp/diff_new_pack.kFKjd8/_old  2017-12-11 18:56:12.091423163 +0100
+++ /var/tmp/diff_new_pack.kFKjd8/_new  2017-12-11 18:56:12.091423163 +0100
@@ -16,15 +16,15 @@
 #
 
 
-%define libsepol_ver 2.5
+%define libsepol_ver 2.6
 Name:   checkpolicy
-Version:2.5
+Version:2.6
 Release:0
 Summary:SELinux policy compiler
 License:GPL-2.0+
 Group:  Productivity/Security
 Url:https://github.com/SELinuxProject/selinux
-Source: 
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/%{name}-%{version}.tar.gz
+Source: 
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20161014/%{name}-%{version}.tar.gz
 BuildRequires:  bison
 BuildRequires:  flex
 BuildRequires:  libselinux-devel

++ checkpolicy-2.5.tar.gz -> checkpolicy-2.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/checkpolicy-2.5/Android.mk 
new/checkpolicy-2.6/Android.mk
--- old/checkpolicy-2.5/Android.mk  2016-02-23 17:31:41.0 +0100
+++ new/checkpolicy-2.6/Android.mk  1970-01-01 01:00:00.0 +0100
@@ -1,77 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-common_src_files := \
-   policy_parse.y \
-   policy_scan.l \
-   queue.c \
-   module_compiler.c \
-   parse_util.c \
-   policy_define.c
-
-common_cflags := \
-   -Wall -Wshadow -O2 \
-   -pipe -fno-strict-aliasing \
-
-ifeq ($(HOST_OS),darwin)
-common_cflags += -DDARWIN
-endif
-
-common_includes := \
-   $(LOCAL_PATH)/ \
-   $(LOCAL_PATH)/../libsepol/include/ \
-   $(LOCAL_PATH)/../libsepol/src/ \
-
-##
-# "-x c" forces the lex/yacc files to be compiled as c the build system
-# otherwise forces them to be c++. Need to also add an explicit -std because 
the
-# build system will soon default C++ to -std=c++11.
-yacc_flags := -x c -std=gnu89
-
-
-##
-# checkpolicy
-#
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := checkpolicy
-LOCAL_MODULE_TAGS := optional
-LOCAL_C_INCLUDES := $(common_includes) 
-LOCAL_CFLAGS := $(yacc_flags) $(common_cflags)
-LOCAL_SRC_FILES := $(common_src_files) checkpolicy.c
-LOCAL_STATIC_LIBRARIES := libsepol
-LOCAL_YACCFLAGS := -v
-LOCAL_MODULE_CLASS := EXECUTABLES
-
-include $(BUILD_HOST_EXECUTABLE)
-
-
-##
-# checkmodule
-#
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := checkmodule
-LOCAL_MODULE_TAGS := optional
-LOCAL_C_INCLUDES := $(common_includes) 
-LOCAL_CFLAGS := $(yacc_flags) $(common_cflags)
-LOCAL_SRC_FILES := $(common_src_files) checkmodule.c
-LOCAL_STATIC_LIBRARIES := libsepol
-LOCAL_YACCFLAGS := -v
-LOCAL_MODULE_CLASS := EXECUTABLES
-
-include $(BUILD_HOST_EXECUTABLE)
-
-##
-# dispol
-#
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := dispol
-LOCAL_MODULE_TAGS := optional
-LOCAL_C_INCLUDES := $(common_includes)
-LOCAL_CFLAGS := $(common_cflags)
-LOCAL_SRC_FILES := test/dispol.c
-LOCAL_STATIC_LIBRARIES := libsepol
-LOCAL_MODULE_CLASS := EXECUTABLES
-
-include $(BUILD_HOST_EXECUTABLE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/checkpolicy-2.5/ChangeLog 
new/checkpolicy-2.6/ChangeLog
--- old/checkpolicy-2.5/ChangeLog   2016-02-23 17:31:41.0 +0100
+++ new/checkpolicy-2.6/ChangeLog   2016-10-14 17:31:26.0 +0200
@@ -1,3 +1,14 @@
+2.6 2016-10-14
+   * Remove Android.mk files and only keep them in Android tree, from 
Bowgo Tsai.
+   * Add types associated to a role in the current scope when parsing, 
from Nicolas Iooss.
+   * Extend checkpolicy pathname matching, from Stephen Smalley.
+  

commit policycoreutils for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package policycoreutils for openSUSE:Factory 
checked in at 2017-12-11 18:56:12

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


Package is "policycoreutils"

Mon Dec 11 18:56:12 2017 rev:42 rq:546989 version:2.6

Changes:

--- /work/SRC/openSUSE:Factory/policycoreutils/policycoreutils.changes  
2017-06-30 18:43:44.570478466 +0200
+++ /work/SRC/openSUSE:Factory/.policycoreutils.new/policycoreutils.changes 
2017-12-11 18:56:16.083233030 +0100
@@ -1,0 +2,31 @@
+Mon Nov 27 14:23:12 UTC 2017 - rbr...@suse.com
+
+- Replace references to /var/adm/fillup-templates with new 
+  %_fillupdir macro (boo#1069468)
+
+---
+Fri Nov 24 09:21:51 UTC 2017 - jseg...@suse.com
+
+- Update to policycoreutils version 2.6. Notable changes:
+  * setfiles: reverse the sense of -D option
+  * sandbox: Use dbus-run-session instead of dbus-launch when available
+  * setfiles: Utility to find security.restorecon_last entries
+  * setfiles: Add option to stop setting the digest
+  * hll/pp: Change warning for module name not matching filename to match new 
behavior
+  * sepolicy: convert to setools4
+  * sandbox: create a new session for sandboxed processes
+  * sandbox: do not try to setup directories without -X or -M
+  * sandbox: do not run xmodmap in a new X session
+  * sandbox: fix file labels on copied files
+  * semanage: Fix semanage fcontext -D
+  * semanage: Default serange to "s0" for port modify
+  * semanage: Use socket.getprotobyname for protocol
+  * semanage: Add auditing of changes in records
+  * Improve compatibility with Python 3
+  * Update sandbox types in sandbox manual
+  * hll/pp: Warn if module name different than output filename
+- Update to sepolgen version 2.6. Notable changes:
+  * Add support for TYPEBOUNDS statement in INTERFACE policy files
+- Dropped CVE-2016-7545_sandbox_escape.patch
+
+---

Old:

  CVE-2016-7545_sandbox_escape.patch
  policycoreutils-2.5.tar.gz
  sepolgen-1.2.3.tar.gz

New:

  policycoreutils-2.6.tar.gz
  sepolgen-2.6.tar.gz



Other differences:
--
++ policycoreutils.spec ++
--- /var/tmp/diff_new_pack.b1vKfS/_old  2017-12-11 18:56:16.951191689 +0100
+++ /var/tmp/diff_new_pack.b1vKfS/_new  2017-12-11 18:56:16.955191499 +0100
@@ -16,20 +16,25 @@
 #
 
 
+#Compat macro for new _fillupdir macro introduced in Nov 2017
+%if ! %{defined _fillupdir}
+  %define _fillupdir /var/adm/fillup-templates
+%endif
+
 %define libaudit_ver 2.2
-%define libsepol_ver 2.5
-%define libsemanage_ver  2.5
-%define libselinux_ver   2.5
-%define sepolgen_ver 1.2.3
+%define libsepol_ver 2.6
+%define libsemanage_ver  2.6
+%define libselinux_ver   2.6
+%define sepolgen_ver 2.6
 Name:   policycoreutils
-Version:2.5
+Version:2.6
 Release:0
 Summary:SELinux policy core utilities
 License:GPL-2.0+
 Group:  Productivity/Security
 Url:https://github.com/SELinuxProject/selinux
-Source: 
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/%{name}-%{version}.tar.gz
-Source1:
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/sepolgen-%{sepolgen_ver}.tar.gz
+Source: 
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20161014/%{name}-%{version}.tar.gz
+Source1:
https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20161014/sepolgen-%{sepolgen_ver}.tar.gz
 Source2:system-config-selinux.png
 Source3:system-config-selinux.desktop
 Source4:system-config-selinux.pam
@@ -40,7 +45,6 @@
 Patch4: policycoreutils-initscript.patch
 Patch5: policycoreutils-pam-common.patch
 Patch10:loadpolicy_path.patch
-Patch11:CVE-2016-7545_sandbox_escape.patch
 BuildRequires:  audit-devel >= %{libaudit_ver}
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
@@ -141,7 +145,6 @@
 %patch4
 %patch5
 %patch10 -p1
-%patch11 -p1
 
 %build
 export SUSE_ASNEEDED=0
@@ -176,8 +179,8 @@
 rm -f %{buildroot}%{_mandir}/ru/man8/genhomedircon.8.gz
 ln -sf consolehelper %{buildroot}%{_bindir}/system-config-selinux
 ln -sf consolehelper %{buildroot}%{_bindir}/selinux-polgengui
-mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates/
-mv %{buildroot}/%{_sysconfdir}/sysconfig/sandbox 
%{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.sandbox
+mkdir -p %{buildroot}%{_fillupdir}/
+mv %{buildroot}/%{_sysconfdir}/sysconfig/sandbox 

commit pdns-recursor for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package pdns-recursor for openSUSE:Factory 
checked in at 2017-12-11 18:56:22

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


Package is "pdns-recursor"

Mon Dec 11 18:56:22 2017 rev:16 rq:555202 version:4.1.0

Changes:

--- /work/SRC/openSUSE:Factory/pdns-recursor/pdns-recursor.changes  
2017-11-07 09:57:54.294505347 +0100
+++ /work/SRC/openSUSE:Factory/.pdns-recursor.new/pdns-recursor.changes 
2017-12-11 18:56:24.198846479 +0100
@@ -1,0 +2,37 @@
+Mon Dec  4 16:17:42 UTC 2017 - mrueck...@suse.de
+
+- enable ed25519 support (new BR: libsodium-devel)
+- enable net-snmp support (new BR: net-snmp-devel)
+- simplify BR for lua: lua-devel everywhere now
+
+---
+Mon Dec  4 14:12:37 UTC 2017 - adam.ma...@suse.de
+
+- update to version 4.1.0:
+  + Improved DNSSEC support
+  + Improved documentation
+  + Improved RPZ support
+  + Improved EDNS Client Subnet support
+  + SNMP support
+  + Lua engine has gained access to more parts of the recursor
+  + CPU affinity can now be specified
+  + TCP Fast Open support
+  + New performance metrics
+  + For complete changes see:
+https://blog.powerdns.com/2017/12/04/powerdns-recursor-4-1/
+
+---
+Mon Nov 27 16:15:40 UTC 2017 - adam.ma...@suse.de
+
+- update to version 4.0.7:
+  + fixes CVE-2017-15090: Insufficient validation of DNSSEC
+signatures
+  + fixes CVE-2017-15092: Cross-Site Scripting in the web interface
+  + fixes CVE-2017-15093: Configuration file injection in the API
+  + fixes CVE-2017-15094: Memory leak in DNSSEC parsing
+  + Fix validation at the exact RRSIG inception or expiration time
+  + Extract nested exception from Luawrapper
+  + Throw an error when lua-conf-file can’t be loaded
+  + Lowercase all outgoing qnames when lowercase-outgoing is set
+
+---

Old:

  pdns-recursor-4.0.6.tar.bz2
  pdns-recursor-4.0.6.tar.bz2.sig

New:

  pdns-recursor-4.1.0.tar.bz2
  pdns-recursor-4.1.0.tar.bz2.sig



Other differences:
--
++ pdns-recursor.spec ++
--- /var/tmp/diff_new_pack.RtjiCl/_old  2017-12-11 18:56:25.470785896 +0100
+++ /var/tmp/diff_new_pack.RtjiCl/_new  2017-12-11 18:56:25.470785896 +0100
@@ -35,9 +35,9 @@
 %endif
 
 Name:   pdns-recursor
-Version:4.0.6
+Version:4.1.0
 Release:0
-%define pkg_version 4.0.6
+%define pkg_version 4.1.0
 #
 #
 BuildRequires:  autoconf
@@ -57,19 +57,11 @@
 %endif
 
 BuildRequires:  gcc-c++
+BuildRequires:  libsodium-devel
+BuildRequires:  lua-devel
+BuildRequires:  net-snmp-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
-%if 0%{?suse_version} && (0%{?suse_version} < 1030 || 0%{?suse_version} > 1210)
-BuildRequires:  lua51-devel
-%if 0%{?suse_version} > 1210
-%define lua_lib lua
-%else
-%define lua_lib lua5.1
-%endif
-%else
-BuildRequires:  lua-devel
-%define lua_lib lua
-%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 PreReq: %insserv_prereq %fillup_prereq

++ pdns-recursor-4.0.6.tar.bz2 -> pdns-recursor-4.1.0.tar.bz2 ++
 47956 lines of diff (skipped)





commit gtksourceview for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package gtksourceview for openSUSE:Factory 
checked in at 2017-12-11 18:55:46

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


Package is "gtksourceview"

Mon Dec 11 18:55:46 2017 rev:109 rq:96 version:3.24.6

Changes:

--- /work/SRC/openSUSE:Factory/gtksourceview/gtksourceview.changes  
2017-10-06 10:57:13.101880570 +0200
+++ /work/SRC/openSUSE:Factory/.gtksourceview.new/gtksourceview.changes 
2017-12-11 18:55:49.876481274 +0100
@@ -1,0 +2,10 @@
+Sat Dec  9 18:04:07 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.6:
+  + New syntax highlighting definition file for: logcat.
+  + Improvements to the syntax highlighting of: Python and
+reStructuredText.
+  + Improvements to the Visual Studio builds.
+  + Updated translations.
+
+---

Old:

  gtksourceview-3.24.5.tar.xz

New:

  gtksourceview-3.24.6.tar.xz



Other differences:
--
++ gtksourceview.spec ++
--- /var/tmp/diff_new_pack.pwx4YO/_old  2017-12-11 18:55:50.480452507 +0100
+++ /var/tmp/diff_new_pack.pwx4YO/_new  2017-12-11 18:55:50.484452316 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gtksourceview
-Version:3.24.5
+Version:3.24.6
 Release:0
 Summary:GTK+ Source Editing Widget
 License:LGPL-2.1+

++ gtksourceview-3.24.5.tar.xz -> gtksourceview-3.24.6.tar.xz ++
 7329 lines of diff (skipped)




commit python-zc.buildout for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package python-zc.buildout for 
openSUSE:Factory checked in at 2017-12-11 18:56:27

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


Package is "python-zc.buildout"

Mon Dec 11 18:56:27 2017 rev:3 rq:555307 version:2.9.6

Changes:

--- /work/SRC/openSUSE:Factory/python-zc.buildout/python-zc.buildout.changes
2017-10-13 14:16:38.534765483 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-zc.buildout.new/python-zc.buildout.changes   
2017-12-11 18:56:29.998570235 +0100
@@ -1,0 +2,6 @@
+Fri Dec  1 17:20:19 UTC 2017 - sebix+novell@sebix.at
+
+- update to 2.9.6:
+ * Fixed: could not install eggs when sdist file name and package name had 
different case.
+
+---

Old:

  zc.buildout-2.9.5.tar.gz

New:

  zc.buildout-2.9.6.tar.gz



Other differences:
--
++ python-zc.buildout.spec ++
--- /var/tmp/diff_new_pack.O4TUdB/_old  2017-12-11 18:56:30.690537276 +0100
+++ /var/tmp/diff_new_pack.O4TUdB/_new  2017-12-11 18:56:30.694537086 +0100
@@ -20,7 +20,7 @@
 %{!?license: %global license %doc}
 %bcond_without test
 Name:   python-zc.buildout
-Version:2.9.5
+Version:2.9.6
 Release:0
 Url:http://pypi.python.org/pypi/zc.buildout
 Summary:System for managing development buildouts

++ zc.buildout-2.9.5.tar.gz -> zc.buildout-2.9.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.9.5/CHANGES.rst 
new/zc.buildout-2.9.6/CHANGES.rst
--- old/zc.buildout-2.9.5/CHANGES.rst   2017-09-22 21:28:40.0 +0200
+++ new/zc.buildout-2.9.6/CHANGES.rst   2017-12-01 09:17:36.0 +0100
@@ -1,6 +1,13 @@
 Change History
 **
 
+2.9.6 (2017-12-01)
+==
+
+- Fixed: could not install eggs when sdist file name and package name had 
different
+  case.
+
+
 2.9.5 (2017-09-22)
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.9.5/PKG-INFO 
new/zc.buildout-2.9.6/PKG-INFO
--- old/zc.buildout-2.9.5/PKG-INFO  2017-09-22 21:28:41.0 +0200
+++ new/zc.buildout-2.9.6/PKG-INFO  2017-12-01 09:17:38.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: zc.buildout
-Version: 2.9.5
+Version: 2.9.6
 Summary: System for managing development buildouts
 Home-page: http://buildout.org
 Author: Jim Fulton
@@ -69,6 +69,13 @@
 Change History
 **
 
+2.9.6 (2017-12-01)
+==
+
+- Fixed: could not install eggs when sdist file name and package name 
had different
+  case.
+
+
 2.9.5 (2017-09-22)
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.9.5/setup.py 
new/zc.buildout-2.9.6/setup.py
--- old/zc.buildout-2.9.5/setup.py  2017-09-22 21:28:40.0 +0200
+++ new/zc.buildout-2.9.6/setup.py  2017-12-01 09:17:36.0 +0100
@@ -12,7 +12,7 @@
 #
 ##
 name = "zc.buildout"
-version = '2.9.5'
+version = '2.9.6'
 
 import os
 from setuptools import setup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.9.5/src/zc/buildout/downloadcache.txt 
new/zc.buildout-2.9.6/src/zc/buildout/downloadcache.txt
--- old/zc.buildout-2.9.5/src/zc/buildout/downloadcache.txt 2017-09-22 
21:28:40.0 +0200
+++ new/zc.buildout-2.9.6/src/zc/buildout/downloadcache.txt 2017-12-01 
09:17:36.0 +0100
@@ -44,6 +44,7 @@
 du_zipped-1.0-pyN.N.egg
 extdemo-1.4.zip
 index/
+mixedcase-0.5.zip
 other-1.0-py2.4.egg
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zc.buildout-2.9.5/src/zc/buildout/easy_install.py 
new/zc.buildout-2.9.6/src/zc/buildout/easy_install.py
--- old/zc.buildout-2.9.5/src/zc/buildout/easy_install.py   2017-09-22 
21:28:40.0 +0200
+++ new/zc.buildout-2.9.6/src/zc/buildout/easy_install.py   2017-12-01 
09:17:36.0 +0100
@@ -1655,8 +1655,8 @@
 # good enough.
 env = pkg_resources.Environment([location])
 dists = [ d for project_name in env for d in env[project_name] ]
-dist_infos = [ (d.project_name, d.version) for d in dists ]
-if dist_infos == [(dist.project_name, dist.version)]:
+dist_infos = [ (d.project_name.lower(), d.version) for d in dists ]
+if dist_infos == 

commit python-distro for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package python-distro for openSUSE:Factory 
checked in at 2017-12-11 18:56:25

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


Package is "python-distro"

Mon Dec 11 18:56:25 2017 rev:2 rq:555306 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-distro/python-distro.changes  
2017-08-24 18:41:59.817308321 +0200
+++ /work/SRC/openSUSE:Factory/.python-distro.new/python-distro.changes 
2017-12-11 18:56:26.238749318 +0100
@@ -1,0 +2,6 @@
+Fri Dec  1 17:14:55 UTC 2017 - sebix+novell@sebix.at
+
+- update to version 1.1.0 / 1.0.5:
+ * Include resources needed for tests and docs in source tarballs
+
+---

Old:

  distro-1.0.4.tar.gz

New:

  distro-1.1.0.tar.gz



Other differences:
--
++ python-distro.spec ++
--- /var/tmp/diff_new_pack.R3RWrQ/_old  2017-12-11 18:56:26.902717692 +0100
+++ /var/tmp/diff_new_pack.R3RWrQ/_new  2017-12-11 18:56:26.902717692 +0100
@@ -19,7 +19,7 @@
 %{!?license: %global license %doc}
 %bcond_without test
 Name:   python-distro
-Version:1.0.4
+Version:1.1.0
 Release:0
 License:Apache-2.0
 Summary:Linux Distribution - a Linux OS platform information API
@@ -29,7 +29,11 @@
 BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# SECTION test
+%if %{with test}
+BuildRequires:  %{python_module pytest}
+%endif
+# /SECTION
 BuildArch:  noarch
 
 %python_subpackages
@@ -49,9 +53,8 @@
 %python_install
 
 %if %{with test}
-# incomplete source tarball see https://github.com/nir0s/distro/pull/189
-#%%check
-#%%python_exec setup.py test
+%check
+%python_exec setup.py test
 %endif
 
 %files %{python_files}

++ distro-1.0.4.tar.gz -> distro-1.1.0.tar.gz ++
 2469 lines of diff (skipped)




commit sblim-indication_helper for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package sblim-indication_helper for 
openSUSE:Factory checked in at 2017-12-11 18:56:18

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


Package is "sblim-indication_helper"

Mon Dec 11 18:56:18 2017 rev:19 rq:554556 version:0.5.0

Changes:

--- 
/work/SRC/openSUSE:Factory/sblim-indication_helper/sblim-indication_helper.changes
  2011-09-23 12:45:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.sblim-indication_helper.new/sblim-indication_helper.changes
 2017-12-11 18:56:19.439073190 +0100
@@ -1,0 +2,21 @@
+Tue Dec  5 13:56:29 UTC 2017 - kkae...@suse.com
+
+- Update to 0.5.0
+  Bug fixes:
+  * 2865135: missing stdio.h in test case code
+  * 2865153  test case compiler warnings
+
+  New Features:
+  * 2864720 migrated to EPL
+
+- drop sblim-indication_helper-0.4.2-missing-includes.patch and
+  sblim-indication_helper-0.4.2_warnings.patch (both upstream)
+
+- Fix license tag to EPL-1.0
+
+---
+Tue Dec  5 09:02:36 UTC 2017 - kkae...@suse.com
+
+- spec cleanup
+
+---

Old:

  sblim-indication_helper-0.4.2-missing-includes.patch
  sblim-indication_helper-0.4.2.tar.bz2
  sblim-indication_helper-0.4.2_warnings.patch

New:

  sblim-indication_helper-0.5.0.tar.bz2



Other differences:
--
++ sblim-indication_helper.spec ++
--- /var/tmp/diff_new_pack.oXHAtz/_old  2017-12-11 18:56:20.123040612 +0100
+++ /var/tmp/diff_new_pack.oXHAtz/_new  2017-12-11 18:56:20.123040612 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package sblim-indication_helper (Version 0.4.2)
+# spec file for package sblim-indication_helper
 #
-# Copyright (c) 2009 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
@@ -15,23 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   sblim-indication_helper
-BuildRequires:  gcc-c++ sblim-cmpi-devel
-Version:0.4.2
-Release:155
-Group:  System/Management
-License:IPL-1.0
+BuildRequires:  gcc-c++
+BuildRequires:  sblim-cmpi-devel
+Version:0.5.0
+Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://sblim.wiki.sourceforge.net/
 Source: 
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
-Patch0: sblim-indication_helper-0.4.2_warnings.patch
-# PATCH-FIX-UPSTREAM sblim-indication_helper-0.4.2-missing-includes.patch 
[upstream bug 2685374] mhruse...@suse.cz -- adding missing include
-# 
https://sourceforge.net/tracker/index.php?func=detail=2685374_id=128809=712784
-Patch1: sblim-indication_helper-0.4.2-missing-includes.patch
 Summary:Toolkit for CMPI Indication Providers
+License:EPL-1.0
+Group:  System/Management
 
 %description 
 This package contains a developer library for helping out when writing
@@ -39,18 +34,12 @@
 and, if it changes, a CMPI indication is set with the values of the
 indication class properties (also set by the developer).
 
-
-
-Authors:
-
-SBLIM Project
-
 %package devel
-License:IPL-1.0
 Summary:Toolkit for CMPI indication providers (Development Files)
-Requires:   %{name} = %{version}
-Requires:   sblim-cmpi-devel glibc-devel
 Group:  Development/Libraries/C and C++
+Requires:   %{name} = %{version}
+Requires:   glibc-devel
+Requires:   sblim-cmpi-devel
 
 %description devel
 This package contain developer library for helping out when writing
@@ -60,16 +49,8 @@
 
 This package holds the development files for sblim-indication_helper.
 
-
-
-Authors:
-
-SBLIM Project
-
 %prep
 %setup -q
-%patch0
-%patch1 -p1
 
 %build
 %configure --disable-static --with-pic

++ sblim-indication_helper-0.4.2.tar.bz2 -> 
sblim-indication_helper-0.5.0.tar.bz2 ++
 34966 lines of diff (skipped)




commit gtk-doc for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package gtk-doc for openSUSE:Factory checked 
in at 2017-12-11 18:55:42

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


Package is "gtk-doc"

Mon Dec 11 18:55:42 2017 rev:39 rq:94 version:1.27

Changes:

--- /work/SRC/openSUSE:Factory/gtk-doc/gtk-doc.changes  2017-12-05 
01:28:29.621100944 +0100
+++ /work/SRC/openSUSE:Factory/.gtk-doc.new/gtk-doc.changes 2017-12-11 
18:55:44.256748945 +0100
@@ -1,0 +2,14 @@
+Sat Dec  9 18:26:11 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.27:
+  + Finetune the python port.
+  + Bugs fixed: bgo#773879, bgo#786174, bgo#787495, bgo#787768,
+bgo#787862, bgo#788473, bgo#789531, bgo#790022, bgo#791131.
+- Drop upstream fixed patches:
+  + gtk-doc-fixxref-logging.patch.
+  + gtk-doc-Generate-main-sgml.patch.
+  + gtk-doc-open-docs-as-utf8.patch.
+- Following the above, no longer pass autoreconf, not needed as we
+  do not carry any patches.
+
+---

Old:

  gtk-doc-1.26.tar.xz
  gtk-doc-Generate-main-sgml.patch
  gtk-doc-fixxref-logging.patch
  gtk-doc-open-docs-as-utf8.patch

New:

  gtk-doc-1.27.tar.xz



Other differences:
--
++ gtk-doc.spec ++
--- /var/tmp/diff_new_pack.0t2UnU/_old  2017-12-11 18:55:44.764724750 +0100
+++ /var/tmp/diff_new_pack.0t2UnU/_new  2017-12-11 18:55:44.768724559 +0100
@@ -17,20 +17,14 @@
 
 
 Name:   gtk-doc
-Version:1.26
+Version:1.27
 Release:0
 Summary:GTK+ DocBook Documentation Generator
 License:GPL-2.0+
 Group:  Productivity/Publishing/SGML
 Url:http://www.gtk.org/gtk-doc/
 # When updating this package, please don't forget to update the gtk-doc.m4 
Source in glib2.
-Source: 
https://download.gnome.org/sources/gtk-doc/1.26/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM gtk-doc-Generate-main-sgml.patch bgo#786174 -- Generate 
main sgml file by waiting on mkdb
-Patch0: gtk-doc-Generate-main-sgml.patch
-# PATCH-FIX-UPSTREAM gtk-doc-open-docs-as-utf8.patch dims...@opensuse.org -- 
Always open files using utf-8
-Patch1: gtk-doc-open-docs-as-utf8.patch
-# PATCH-FIX-UPSTREAM gtk-doc-fixxref-logging.patch bgo#791131 
dims...@opensuse.org -- Use logging infrastructure for LogWarning
-Patch2: gtk-doc-fixxref-logging.patch
+Source: 
http://download.gnome.org/sources/gtk-doc/1.27/%{name}-%{version}.tar.xz
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libtool
 BuildRequires:  libxml2-tools
@@ -63,12 +57,8 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
 
 %build
-autoreconf -fiv
 %configure PYTHON=%{_bindir}/python3
 make %{?_smp_mflags}
 

++ gtk-doc-1.26.tar.xz -> gtk-doc-1.27.tar.xz ++
 44651 lines of diff (skipped)




commit sblim-testsuite for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package sblim-testsuite for openSUSE:Factory 
checked in at 2017-12-11 18:56:16

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


Package is "sblim-testsuite"

Mon Dec 11 18:56:16 2017 rev:4 rq:548563 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/sblim-testsuite/sblim-testsuite.changes  
2013-08-06 12:41:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-testsuite.new/sblim-testsuite.changes 
2017-12-11 18:56:18.695108625 +0100
@@ -1,0 +2,6 @@
+Sat Nov 15 23:39:00 UTC 2014 - Led 
+
+- fix bashisms in run.sh script
+  sblim-testsuite-1.3.0-fix-bashisms.patch
+
+---

New:

  sblim-testsuite-1.3.0-fix-bashisms.patch



Other differences:
--
++ sblim-testsuite.spec ++
--- /var/tmp/diff_new_pack.FZnAvu/_old  2017-12-11 18:56:19.275081001 +0100
+++ /var/tmp/diff_new_pack.FZnAvu/_new  2017-12-11 18:56:19.279080810 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sblim-testsuite
 #
-# 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
@@ -26,6 +26,7 @@
 BuildArch:  noarch
 Url:http://sblim.wiki.sourceforge.net/
 Source0:
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
+Patch0: %{name}-1.3.0-fix-bashisms.patch
 Summary:SBLIM Testsuite
 License:EPL-1.0
 Group:  Development/Tools/Other
@@ -41,6 +42,7 @@
 
 %prep
 %setup
+%patch0 -p1
 
 %build
 %configure

++ sblim-testsuite-1.3.0-fix-bashisms.patch ++
diff -Ndur sblim-testsuite-1.3.0/run.sh 
sblim-testsuite-1.3.0-fix-bashisms/run.sh
--- sblim-testsuite-1.3.0/run.sh2009-06-19 03:27:08.0 +0300
+++ sblim-testsuite-1.3.0-fix-bashisms/run.sh   2014-11-16 01:37:15.038203402 
+0200
@@ -31,7 +31,7 @@
 
 # First run the createFiles script, if it exists 
 cd $SYSTEM_PATH;
-if [[ -a ./createKeyFiles.sh ]]; then
+if [ -e ./createKeyFiles.sh ]; then
   ./createKeyFiles.sh
 fi
 cd -;
@@ -54,8 +54,8 @@
   shift
 
   # specify the user
-  if [[ -n "$COMMAND" && "$COMMAND" == "-u" ]]; then
-  if [[ -n "$1" ]]; then 
+  if [ -n "$COMMAND" -a "$COMMAND" = "-u" ]; then
+  if [ -n "$1" ]; then 
  USERID=$1;
   else
  echo "run.sh : Please specify a UserID after -u"; 
@@ -63,26 +63,26 @@
   fi
 
   # specify the user's password
-  elif [[ -n "$COMMAND" && "$COMMAND" == "-p" ]]; then
-  if [[ -z "$1" ]]; then 
+  elif [ -n "$COMMAND" -a "$COMMAND" = "-p" ]; then
+  if [ -z "$1" ]; then 
  echo "run.sh : Please specify a password for UserID $USERID after 
-p"; exit 1;
   else 
  PASSWORD=$1;
   fi
 
   # specify the hostname
-  elif [[ -n "$COMMAND" && "$COMMAND" == "-host" ]]; then
+  elif [ -n "$COMMAND" -a "$COMMAND" = "-host" ]; then
   HOSTNAME=$1;
 
   # specify the port
-  elif [[ -n "$COMMAND" && "$COMMAND" == "-port" ]]; then
+  elif [ -n "$COMMAND" -a "$COMMAND" = "-port" ]; then
   PORT=$1;
 
   # specify the namespace
-  elif [[ -n "$COMMAND" && "$COMMAND" == "-n" ]]; then
+  elif [ -n "$COMMAND" -a "$COMMAND" = "-n" ]; then
   NAMESPACE=$1;
 
-  elif [[ -n "$COMMAND" && "$COMMAND" == "-verbose" ]]; then
+  elif [ -n "$COMMAND" -a "$COMMAND" = "-verbose" ]; then
   VERBOSE="yes";
 
   fi
@@ -103,26 +103,26 @@
 export PORT=5988
 fi
 
-if [[ -n $USERID && -z $PASSWORD ]]; then
+if [ -n $USERID -a -z $PASSWORD ]; then
 echo "run.sh : Please specify a password for UserID $USERID : option -p"; 
 exit 1;
-elif  [[ -n $USERID && -n $PASSWORD ]]; then
+elif  [ -n $USERID -a -n $PASSWORD ]; then
 export SBLIM_TESTSUITE_ACCESS="$USERID:$PASSWORD@";
 fi
 
-if [[ -n $HOSTNAME ]]; then
+if [ -n $HOSTNAME ]; then
 export SBLIM_TESTSUITE_HOSTNAME="$HOSTNAME";
 fi
 
-if [[ -n "$PORT" ]]; then
+if [ -n "$PORT" ]; then
 export SBLIM_TESTSUITE_PORT="$PORT";
 fi
 
-if [[ -n $NAMESPACE ]]; then
+if [ -n $NAMESPACE ]; then
 export SBLIM_TESTSUITE_NAMESPACE="$NAMESPACE";
 fi
 
-if [[ -n $VERBOSE ]]; then
+if [ -n $VERBOSE ]; then
 export SBLIM_TESTSUITE_VERBOSE=1;
 fi
 
@@ -136,12 +136,12 @@
 RC=
 WBEMCLI_ENV=`env | grep WBEMCLI_IND | sed -e s/WBEMCLI_IND=//`;
 
-if [[ -n $WBEMCLI_ENV ]]; then
+if [ -n $WBEMCLI_ENV ]; then
 WBEMCLI_ALIAS=`head -1 $WBEMCLI_ENV | sed -e s/.*:' '//`
 echo "check if CIMOM is running - wbemgc 
$WBEMCLI_ALIAS$NAMESPACE:cim_managedelement";
 RC=`wbemgc 

commit devhelp for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package devhelp for openSUSE:Factory checked 
in at 2017-12-11 18:55:36

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


Package is "devhelp"

Mon Dec 11 18:55:36 2017 rev:73 rq:93 version:3.26.1

Changes:

--- /work/SRC/openSUSE:Factory/devhelp/devhelp.changes  2017-09-13 
21:46:30.173708753 +0200
+++ /work/SRC/openSUSE:Factory/.devhelp.new/devhelp.changes 2017-12-11 
18:55:39.396980419 +0100
@@ -1,0 +2,10 @@
+Sat Dec  9 18:14:40 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.26.1:
+  + Move New Tab button on the right side of the headerbar.
+  + Updated translations.
+- Drop obsolete post(un) handling of:
+  glib2_gsettings_schema_post(un), desktop_database_post(un) and
+  icon_theme_cache_post(un), file-triggers takes care of this now.
+
+---

Old:

  devhelp-3.26.0.tar.xz

New:

  devhelp-3.26.1.tar.xz



Other differences:
--
++ devhelp.spec ++
--- /var/tmp/diff_new_pack.3NCg6q/_old  2017-12-11 18:55:39.904956224 +0100
+++ /var/tmp/diff_new_pack.3NCg6q/_new  2017-12-11 18:55:39.908956033 +0100
@@ -19,7 +19,7 @@
 %define vimplugin_dir %{_datadir}/vim/site
 
 Name:   devhelp
-Version:3.26.0
+Version:3.26.1
 Release:0
 Summary:Developer's Help Program for GNOME
 License:GPL-2.0+
@@ -107,24 +107,15 @@
 find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
 %fdupes %{buildroot}/%{_prefix}
 
-%post
-/sbin/ldconfig
-%glib2_gsettings_schema_post
-%desktop_database_post
-%icon_theme_cache_post
-
-%postun
-/sbin/ldconfig
-%glib2_gsettings_schema_post
-%desktop_database_postun
-%icon_theme_cache_postun
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
 
 %files
 %defattr(-, root, root)
 %doc AUTHORS COPYING NEWS README
 %{_bindir}/devhelp
-%dir %{_datadir}/appdata
-%{_datadir}/appdata/org.gnome.Devhelp.appdata.xml
+%dir %{_datadir}/metainfo
+%{_datadir}/metainfo/org.gnome.Devhelp.appdata.xml
 %{_datadir}/applications/org.gnome.Devhelp.desktop
 %{_datadir}/devhelp
 %{_datadir}/GConf/gsettings/devhelp.convert

++ devhelp-3.26.0.tar.xz -> devhelp-3.26.1.tar.xz ++
 4380 lines of diff (skipped)




commit virtualbox for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2017-12-11 18:55:26

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


Package is "virtualbox"

Mon Dec 11 18:55:26 2017 rev:150 rq:58 version:5.1.30

Changes:

--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2017-12-04 
10:00:01.285543572 +0100
+++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes   
2017-12-11 18:55:32.925288669 +0100
@@ -1,0 +2,7 @@
+Sat Dec  9 01:11:34 UTC 2017 - larry.fin...@lwfinger.net
+
+- Move location of kernel modules from /lib/modules/$(uname -r)/misc to
+  /lib/modules/$(uname -r)/extra. This change is supposed to force rebuild
+  of the modules when the kernel is updated.
+
+---



Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.klKZUf/_old  2017-12-11 18:55:35.489166550 +0100
+++ /var/tmp/diff_new_pack.klKZUf/_new  2017-12-11 18:55:35.493166360 +0100
@@ -550,7 +550,7 @@
 echo "entering virtualbox-kmp-guest and virtualbox-kmp-host install section"
 

 export INSTALL_MOD_PATH=%{buildroot}
-export INSTALL_MOD_DIR=misc
+export INSTALL_MOD_DIR=extra
 #Keep the install process from calling mkinitrd. The VB kernel modules are not 
in initrd. bsc#1052428
 export INITRD_IN_POSTTRANS=1
 export KMP_NEEDS_MKINITRD=0

++ vboxdrv.sh ++
--- /var/tmp/diff_new_pack.klKZUf/_old  2017-12-11 18:55:35.665158168 +0100
+++ /var/tmp/diff_new_pack.klKZUf/_new  2017-12-11 18:55:35.665158168 +0100
@@ -234,7 +234,7 @@
 if [ ! -z "$MAJOR" ]; then
 MINOR=0
 else
-MINOR=`sed -n 's;\([0-9]\+\) vboxdrv$;\1;p' /proc/misc`
+MINOR=`sed -n 's;\([0-9]\+\) vboxdrv$;\1;p' /proc/extra`
 if [ ! -z "$MINOR" ]; then
 MAJOR=10
 fi
@@ -349,16 +349,16 @@
 for i in /lib/modules/*; do
 # We could just do "rm -f", but we only want to try deleting folders if
 # we are sure they were ours, i.e. they had our modules in beforehand.
-iftest -e "${i}/misc/vboxdrv.ko" \
-   || test -e "${i}/misc/vboxnetadp.ko" \
-   || test -e "${i}/misc/vboxnetflt.ko" \
-   || test -e "${i}/misc/vboxpci.ko"; then
-rm -f "${i}/misc/vboxdrv.ko" "${i}/misc/vboxnetadp.ko" \
-  "${i}/misc/vboxnetflt.ko" "${i}/misc/vboxpci.ko"
+iftest -e "${i}/extra/vboxdrv.ko" \
+   || test -e "${i}/extra/vboxnetadp.ko" \
+   || test -e "${i}/extra/vboxnetflt.ko" \
+   || test -e "${i}/extra/vboxpci.ko"; then
+rm -f "${i}/extra/vboxdrv.ko" "${i}/extra/vboxnetadp.ko" \
+  "${i}/extra/vboxnetflt.ko" "${i}/extra/vboxpci.ko"
 # Remove the kernel version folder if it was empty except for us.
-test   "`echo ${i}/misc/* ${i}/misc/.?* ${i}/* ${i}/.?*`" \
- = "${i}/misc/* ${i}/misc/.. ${i}/misc ${i}/.." &&
-rmdir "${i}/misc" "${i}"  # We used to leave empty folders.
+test   "`echo ${i}/extra/* ${i}/extra/.?* ${i}/* ${i}/.?*`" \
+ = "${i}/extra/* ${i}/extra/.. ${i}/extra ${i}/.." &&
+rmdir "${i}/extra" "${i}"  # We used to leave empty folders.
 version=`expr "${i}" : "/lib/modules/\(.*\)"`
 depmod -a "${version}"
 fi


++ virtualbox-guest-kmp-files ++
--- /var/tmp/diff_new_pack.klKZUf/_old  2017-12-11 18:55:35.761153595 +0100
+++ /var/tmp/diff_new_pack.klKZUf/_new  2017-12-11 18:55:35.761153595 +0100
@@ -1,6 +1,6 @@
 %defattr (-,root,root) 
 %dir /lib/modules/%2-%1/
-%dir /lib/modules/%2-%1/misc
-/lib/modules/%2-%1/misc/vboxsf.ko
-/lib/modules/%2-%1/misc/vboxvideo.ko
-/lib/modules/%2-%1/misc/vboxguest.ko
+%dir /lib/modules/%2-%1/extra
+/lib/modules/%2-%1/extra/vboxsf.ko
+/lib/modules/%2-%1/extra/vboxvideo.ko
+/lib/modules/%2-%1/extra/vboxguest.ko

++ virtualbox-host-kmp-files ++
--- /var/tmp/diff_new_pack.klKZUf/_old  2017-12-11 18:55:35.809151310 +0100
+++ /var/tmp/diff_new_pack.klKZUf/_new  2017-12-11 18:55:35.809151310 +0100
@@ -1,7 +1,7 @@
 %defattr (-,root,root)
 %dir /lib/modules/%2-%1/
-%dir /lib/modules/%2-%1/misc
-/lib/modules/%2-%1/misc/vboxdrv.ko
-/lib/modules/%2-%1/misc/vboxnetadp.ko
-/lib/modules/%2-%1/misc/vboxnetflt.ko
-/lib/modules/%2-%1/misc/vboxpci.ko
+%dir /lib/modules/%2-%1/extra
+/lib/modules/%2-%1/extra/vboxdrv.ko
+/lib/modules/%2-%1/extra/vboxnetadp.ko
+/lib/modules/%2-%1/extra/vboxnetflt.ko
+/lib/modules/%2-%1/extra/vboxpci.ko




commit libXcursor for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package libXcursor for openSUSE:Factory 
checked in at 2017-12-11 18:54:50

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


Package is "libXcursor"

Mon Dec 11 18:54:50 2017 rev:11 rq:555663 version:1.1.15

Changes:

--- /work/SRC/openSUSE:Factory/libXcursor/libXcursor.changes2017-12-03 
10:08:57.328730912 +0100
+++ /work/SRC/openSUSE:Factory/.libXcursor.new/libXcursor.changes   
2017-12-11 18:55:00.978810299 +0100
@@ -1,0 +2,15 @@
+Thu Dec  7 17:26:32 UTC 2017 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 1.1.15:
+  * configure: Drop AM_MAINTAINER_MODE
+  * autogen.sh: Honor NOCONFIGURE=1
+  * Use strdup() instead of malloc(strlen())+strcpy()
+  * Fix some clang integer sign/size mismatch warnings
+  * autogen.sh: use quoted string variables
+  * autogen: add default patch prefix
+  * autogen.sh: use exec instead of waiting for configure to finish
+  * Fix heap overflows when parsing malicious files. (CVE-2017-16612)
+  * Insufficient memory for terminating null of string in _XcursorThemeInherits
+- Drop U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch
+
+---

Old:

  U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch
  libXcursor-1.1.14.tar.bz2

New:

  libXcursor-1.1.15.tar.bz2



Other differences:
--
++ libXcursor.spec ++
--- /var/tmp/diff_new_pack.oICqLV/_old  2017-12-11 18:55:01.778772196 +0100
+++ /var/tmp/diff_new_pack.oICqLV/_new  2017-12-11 18:55:01.778772196 +0100
@@ -18,7 +18,7 @@
 
 Name:   libXcursor
 %define lname  libXcursor1
-Version:1.1.14
+Version:1.1.15
 Release:0
 Summary:X Window System Cursor management library
 License:MIT
@@ -29,7 +29,6 @@
 #Git-Web:  http://cgit.freedesktop.org/xorg/lib/libXcursor/
 Source: 
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
 Source1:baselibs.conf
-Patch0: U_Avoid-heap-overflows-due-to-integer-overflow-signedn.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #git#BuildRequires:autoconf >= 2.60, automake, libtool
 BuildRequires:  fdupes
@@ -73,7 +72,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure --disable-static

++ libXcursor-1.1.14.tar.bz2 -> libXcursor-1.1.15.tar.bz2 ++
 40173 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXcursor-1.1.14/ChangeLog new/libXcursor-1.1.15/ChangeLog
--- old/libXcursor-1.1.14/ChangeLog 2013-05-30 08:24:50.0 +0200
+++ new/libXcursor-1.1.15/ChangeLog 2017-11-28 15:25:19.0 +0100
@@ -1,3 +1,113 @@
+commit 4828abe494df8fb4aa00dcaa22a03446ba418d01
+Author: Matthieu Herrb 
+Date:   Sat Nov 25 11:59:31 2017 +0100
+
+libXcursor 1.1.15
+
+Signed-off-by: Matthieu Herrb 
+
+commit 4794b5dd34688158fb51a2943032569d3780c4b8
+Author: Tobias Stoeckmann 
+Date:   Sat Oct 21 23:47:52 2017 +0200
+
+Fix heap overflows when parsing malicious files. (CVE-2017-16612)
+
+It is possible to trigger heap overflows due to an integer overflow
+while parsing images and a signedness issue while parsing comments.
+
+The integer overflow occurs because the chosen limit 0x1 for
+dimensions is too large for 32 bit systems, because each pixel takes
+4 bytes. Properly chosen values allow an overflow which in turn will
+lead to less allocated memory than needed for subsequent reads.
+
+The signedness bug is triggered by reading the length of a comment
+as unsigned int, but casting it to int when calling the function
+XcursorCommentCreate. Turning length into a negative value allows the
+check against XCURSOR_COMMENT_MAX_LEN to pass, and the following
+addition of sizeof (XcursorComment) + 1 makes it possible to allocate
+less memory than needed for subsequent reads.
+
+Signed-off-by: Tobias Stoeckmann 
+Reviewed-by: Matthieu Herrb 
+
+commit 75b10c972d15c036a692ef4590a81a6c54d384f6
+Author: Mihail Konev 
+Date:   Thu Jan 26 13:52:49 2017 +1000
+
+autogen: add default patch prefix
+
+Signed-off-by: Mihail Konev 
+
+commit 

commit kdelibs4 for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2017-12-11 18:55:01

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


Package is "kdelibs4"

Mon Dec 11 18:55:01 2017 rev:301 rq:555667 version:4.14.38

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2017-11-16 14:34:47.184218571 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2017-12-11 18:55:06.538545486 +0100
@@ -1,0 +2,13 @@
+Sun Dec 10 13:12:59 UTC 2017 - dims...@opensuse.org
+
+- Escape the usage of %{VERSION} when calling out to rpm.
+  RPM 4.14 has %{VERSION} defined as 'the main packages version'.
+
+---
+Sat Dec  2 16:46:52 UTC 2017 - fab...@ritter-vogt.de
+
+- Add patch to not build against Qt4 WebKit:
+  * Skip-qtwebkit-parts.patch
+  * Vade retro satana
+
+---
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2017-12-05 
01:25:35.855413826 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2017-12-11 
18:55:06.746535579 +0100
@@ -1,0 +2,6 @@
+Sun Dec 10 13:12:59 UTC 2017 - dims...@opensuse.org
+
+- Escape the usage of %{VERSION} when calling out to rpm.
+  RPM 4.14 has %{VERSION} defined as 'the main packages version'.
+
+---



Other differences:
--
++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.UB3ue3/_old  2017-12-11 18:55:07.902480521 +0100
+++ /var/tmp/diff_new_pack.UB3ue3/_new  2017-12-11 18:55:07.902480521 +0100
@@ -90,7 +90,7 @@
 # PATCH-FIX-OPENSUSE
 Patch18:Skip-qtwebkit-parts.patch
 PreReq: permissions
-Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
+Requires:   libattica0_4 >= %( echo `rpm -q --queryformat '%%{VERSION}' 
libattica-devel`)
 Recommends: media-player-info
 Requires:   kdelibs4-core = %{version}
 Requires:   libkde4 = %{version}




commit kdebase4-workspace for openSUSE:Factory

2017-12-11 Thread root
Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:Factory checked in at 2017-12-11 12:01:08

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


Package is "kdebase4-workspace"

Mon Dec 11 12:01:08 2017 rev:332 rq:555899 version:4.11.22

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-workspace/kdebase4-workspace.changes
2017-12-05 01:26:23.605679051 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes   
2017-12-11 12:01:12.398147884 +0100
@@ -1,0 +2,6 @@
+Mon Dec 11 09:13:59 UTC 2017 - tittiatc...@gmail.com
+
+- Drop the build of python-kdebase4 as that python-kde4 is no 
+  longer available
+  
+---



Other differences:
--
++ kdebase4-workspace.spec ++
--- /var/tmp/diff_new_pack.UiUyXe/_old  2017-12-11 12:01:17.205918887 +0100
+++ /var/tmp/diff_new_pack.UiUyXe/_new  2017-12-11 12:01:17.209918697 +0100
@@ -49,7 +49,6 @@
 BuildRequires:  libqjson-devel
 BuildRequires:  libxcb-devel
 BuildRequires:  libxml2-tools
-BuildRequires:  python-devel
 %if %{with_multiseat}
 BuildRequires:  systemd-devel
 %endif
@@ -183,7 +182,6 @@
 Recommends: kwin
 Recommends: plasma-addons
 Recommends: plasmoid-quickaccess
-Recommends: python-kdebase4
 Recommends: %{name}-plasma-calendar 
 # bnc#845592
 Recommends: kde-gtk-config
@@ -294,15 +292,6 @@
 %description liboxygenstyle
 This package contains the libraries of the oxygen style.
 
-%package -n python-kdebase4
-Summary:Python bindings for KDE 4 desktop shell
-Group:  System/GUI/KDE
-Requires:   python-kde4 => %{_kde_platform_version}
-
-%description -n python-kdebase4
-Python bindings for Plasma, the KDE 4 desktop shell.  These bindings
-allow Plasmoids written in Python
-
 %package -n krandr
 Summary:KDE Screen management tools
 Group:  System/GUI/KDE
@@ -431,13 +420,6 @@
 touch %{buildroot}%{_sysconfdir}/alternatives/default-displaymanager
 ln -s %{_sysconfdir}/alternatives/default-displaymanager 
%{buildroot}%{_dminitdir}/default-displaymanager
 
-  # Fix python-bytecode-inconsistent-mtime
-for path in "%{buildroot}%{python_sitearch}" 
"%{buildroot}%_kde_share_dir/apps/plasma_scriptengine_python"; do
-  pushd "$path"
-%py_compile .
-  popd
-done
-
 %fdupes -s %{buildroot}
 %kde_post_install
 
@@ -688,16 +670,6 @@
 %exclude %{_kde4_modulesdir}/kstyle_oxygen_config.so
 %exclude %{_kde4_appsdir}/kstyle/themes/oxygen.themerc
 
-%files -n python-kdebase4
-%defattr(-,root,root)
-%doc COPYING README
-%py_sitedir/PyKDE4
-%{_kde4_appsdir}/plasma_scriptengine_python
-%{_kde4_servicesdir}/plasma-scriptengine-applet-python.desktop
-%{_kde4_servicesdir}/plasma-scriptengine-dataengine-python.desktop
-%{_kde4_servicesdir}/plasma-scriptengine-runner-python.desktop
-%{_kde4_servicesdir}/plasma-scriptengine-wallpaper-python.desktop
-
 %files -n krandr
 %defattr(-,root,root)
 %doc COPYING README
@@ -749,7 +721,6 @@
 %exclude %{_kde4_appsdir}/kdm
 %exclude %{_kde4_appsdir}/kwin/cubecap.png
 %exclude %{_kde4_appsdir}/kwin/titlebar_decor.png
-%exclude %{_kde4_appsdir}/plasma_scriptengine_python
 %exclude %{_kde4_appsdir}/color-schemes/
 %exclude %{_kde4_appsdir}/kaccess/
 %exclude %{_kde4_appsdir}/kcmkeyboard/
@@ -844,10 +815,6 @@
 %exclude %{_kde4_modulesdir}/plugins/gui_platform/libkde.so
 %exclude %{_kde4_servicesdir}/kded/randrmonitor.desktop
 %exclude %{_kde4_servicesdir}/kwin
-%exclude %{_kde4_servicesdir}/plasma-scriptengine-applet-python.desktop
-%exclude %{_kde4_servicesdir}/plasma-scriptengine-dataengine-python.desktop
-%exclude %{_kde4_servicesdir}/plasma-scriptengine-runner-python.desktop
-%exclude %{_kde4_servicesdir}/plasma-scriptengine-wallpaper-python.desktop
 %exclude %{_kde4_servicesdir}/randr.desktop
 %exclude %{_kde4_servicesdir}/style.desktop
 %exclude %{_kde4_servicesdir}/screensaver.desktop