commit sysbench for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package sysbench for openSUSE:Factory 
checked in at 2016-09-30 15:35:12

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


Package is "sysbench"

Changes:

--- /work/SRC/openSUSE:Factory/sysbench/sysbench.changes2016-08-28 
12:18:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.sysbench.new/sysbench.changes   2016-09-30 
15:35:27.0 +0200
@@ -1,0 +2,16 @@
+Thu Sep 29 08:33:22 UTC 2016 - mplus...@suse.com
+
+- Update to version 0.5.0+git.20160922:
+  * Adjust test_mutex.t to pass on slow machines.
+  * Fix LOCK TABLES statements for multi-table MySQL/MyISAM benchmarks.
+  * Basic tests for oltp.lua against MySQL and PostgreSQL.
+  * Prevent script_oltp_*.t failures on slower machines.
+  * {common,bulkinsert}.lua missing from Makefile
+  * Load script from pkgdatadir if not local
+  * Change lua scripts to 'require common' if a testdir wasn't passed
+  * add libaio-dev to travis
+  * Some typo fixes in the docs.
+- Add sysbench_buffer_overflow.patch
+- Enable internal testsuite
+
+---

Old:

  sysbench-0.5.0+git.20160824.tar.xz

New:

  sysbench-0.5.0+git.20160922.tar.xz
  sysbench_buffer_overflow.patch



Other differences:
--
++ sysbench.spec ++
--- /var/tmp/diff_new_pack.WCZjfV/_old  2016-09-30 15:35:29.0 +0200
+++ /var/tmp/diff_new_pack.WCZjfV/_new  2016-09-30 15:35:29.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define version_unconverted 0.5.0+git.20160824
+%define version_unconverted 0.5.0+git.20160922
 Name:   sysbench
-Version:0.5.0+git.20160824
+Version:0.5.0+git.20160922
 Release:0
 Summary:A MySQL benchmarking tool
 License:GPL-2.0
@@ -26,8 +26,12 @@
 Url:https://github.com/akopytov/sysbench
 Source0:%{name}-%{version}.tar.xz
 Source1:%{name}-example-tests.tar.bz2
+Patch0: sysbench_buffer_overflow.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
+%if 0%{?is_opensuse}
+BuildRequires:  cram
+%endif
 BuildRequires:  docbook
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  help2man
@@ -48,6 +52,7 @@
 %prep
 %setup -q
 %setup -q -T -D -a 1
+%patch0 -p1
 
 %build
 autoreconf -fiv
@@ -66,6 +71,11 @@
   %{buildroot}%{_datadir}/sysbench/sysbench-example-all-tests
 rm -rf %{buildroot}%{_datadir}/doc/sysbench
 
+%if 0%{?is_opensuse}
+%check
+make check
+%endif
+
 %files
 %defattr(-,root,root)
 %doc COPYING ChangeLog README.md doc/manual.html

++ sysbench-0.5.0+git.20160824.tar.xz -> sysbench-0.5.0+git.20160922.tar.xz 
++
 1780 lines of diff (skipped)

++ sysbench_buffer_overflow.patch ++
>From e6fab3260481d03301f135dbfde57fa5db000aaf Mon Sep 17 00:00:00 2001
From: Martin Pluskal 
Date: Thu, 29 Sep 2016 10:39:47 +0200
Subject: [PATCH] Do not overflow buffer in strncat

---
 sysbench/scripting/script_lua.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sysbench/scripting/script_lua.c b/sysbench/scripting/script_lua.c
index 42f5106..7b71064 100644
--- a/sysbench/scripting/script_lua.c
+++ b/sysbench/scripting/script_lua.c
@@ -498,11 +498,11 @@ lua_State *sb_lua_new_state(const char *scriptname, int 
thread_id)
 /* first location failed - look in DATA_PATH */
 char p[PATH_MAX + 1];
 strncpy(p, DATA_PATH LUA_DIRSEP, sizeof(p));
-strncat(p, scriptname, sizeof(p));
+strncat(p, scriptname, sizeof(p)-strlen(p)-1);
 if (!strrchr(scriptname, '.'))
 {
   /* add .lua extension if there isn't one */
-  strncat(p, ".lua", sizeof(p));
+  strncat(p, ".lua", sizeof(p)-strlen(p)-1);
 }
 
 if (luaL_loadfile(state, p))



commit perl-App-Nopaste for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package perl-App-Nopaste for 
openSUSE:Factory checked in at 2016-09-30 15:31:16

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


Package is "perl-App-Nopaste"

Changes:

--- /work/SRC/openSUSE:Factory/perl-App-Nopaste/perl-App-Nopaste.changes
2016-05-30 09:57:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-App-Nopaste.new/perl-App-Nopaste.changes   
2016-09-30 15:31:17.0 +0200
@@ -1,0 +2,10 @@
+Sat Sep 17 05:02:27 UTC 2016 - co...@suse.com
+
+- updated to 1.007
+   see /usr/share/doc/packages/perl-App-Nopaste/Changes
+
+  1.007   2016-09-16 02:26:28Z
+  - fix handling of filename option in the Gist command (Zakariyya
+Mughal, PR#13)
+
+---

Old:

  App-Nopaste-1.006.tar.gz

New:

  App-Nopaste-1.007.tar.gz



Other differences:
--
++ perl-App-Nopaste.spec ++
--- /var/tmp/diff_new_pack.zfZaBK/_old  2016-09-30 15:31:19.0 +0200
+++ /var/tmp/diff_new_pack.zfZaBK/_new  2016-09-30 15:31:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-App-Nopaste
-Version:1.006
+Version:1.007
 Release:0
 %define cpan_name App-Nopaste
 Summary:Easy access to any pastebin
@@ -47,6 +47,7 @@
 BuildRequires:  perl(URI::Escape)
 BuildRequires:  perl(WWW::Mechanize)
 BuildRequires:  perl(namespace::clean) >= 0.19
+BuildRequires:  perl(parent)
 Requires:   perl(Browser::Open)
 Requires:   perl(Class::Load)
 Requires:   perl(Getopt::Long::Descriptive)
@@ -57,6 +58,7 @@
 Requires:   perl(URI::Escape)
 Requires:   perl(WWW::Mechanize)
 Requires:   perl(namespace::clean) >= 0.19
+Requires:   perl(parent)
 Recommends: perl(Browser::Open)
 Recommends: perl(Clipboard)
 Recommends: perl(WWW::Pastebin::PastebinCom::Create) >= 1.003

++ App-Nopaste-1.006.tar.gz -> App-Nopaste-1.007.tar.gz ++
 2415 lines of diff (skipped)




commit irssi for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package irssi for openSUSE:Factory checked 
in at 2016-09-30 15:35:29

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


Package is "irssi"

Changes:

--- /work/SRC/openSUSE:Factory/irssi/irssi.changes  2016-09-23 
11:40:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.irssi.new/irssi.changes 2016-09-30 
15:35:48.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 21 22:24:11 UTC 2016 - mrueck...@suse.de
+
+- disable PIE on sle11
+
+---
+Wed Sep 21 22:07:13 UTC 2016 - mrueck...@suse.de
+
+- add BR for xz to fix build on sle11
+- switch to %{?_smp_mflags}
+- pass --disable-silent-rules to get verbose makefiles again
+
+---



Other differences:
--
++ irssi.spec ++
--- /var/tmp/diff_new_pack.T6s7WM/_old  2016-09-30 15:35:51.0 +0200
+++ /var/tmp/diff_new_pack.T6s7WM/_new  2016-09-30 15:35:51.0 +0200
@@ -38,6 +38,7 @@
 BuildRequires:  perl-macros
 %endif
 BuildRequires:  perl
+BuildRequires:  xz
 Conflicts:  %{name}-snapshot
 #
 Url:http://www.irssi.org
@@ -108,9 +109,16 @@
 %if 0%{?sles_version} == 9
 export PKG_CONFIG_PATH="/opt/gnome/%{_lib}/pkgconfig:$PKG_CONFIG_PATH"
 %endif
-export CFLAGS="%{optflags} -fno-strict-aliasing 
-DGLIB_DISABLE_DEPRECATION_WARNINGS -fPIE"
+
+export CFLAGS="%{optflags} -fno-strict-aliasing 
-DGLIB_DISABLE_DEPRECATION_WARNINGS"
+
+%if 0%{?suse_version} > 1110
+export CFLAGS="$CFLAGS -fPIE"
 export LDFLAGS="-pie"
+%endif
+
 %configure  \
+--disable-silent-rules \
 --enable-ipv6   \
 --with-bot  \
 --with-proxy\
@@ -124,10 +132,10 @@
 --enable-true-color \
 --with-perl=yes \
 --with-perl-lib=vendor
-%__make %{?jobs:-j%{jobs}} all
+%__make %{?_smp_mflags} all V=1
 
 %install
-%makeinstall docdir=%{_docdir}/%{name}
+%makeinstall docdir=%{_docdir}/%{name} V=1
 %perl_process_packlist
 %__rm %{buildroot}%{_libdir}/irssi/modules/libirc_proxy.{a,la}
 







commit qwt6 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package qwt6 for openSUSE:Factory checked in 
at 2016-09-30 15:35:24

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


Package is "qwt6"

Changes:

--- /work/SRC/openSUSE:Factory/qwt6/qwt6.changes2015-02-11 
16:46:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.qwt6.new/qwt6.changes   2016-09-30 
15:35:38.0 +0200
@@ -1,0 +2,26 @@
+Thu Sep 29 06:03:11 UTC 2016 - aloi...@gmx.com
+
+- Update to version 6.1.3 
+  * QwtPlotMagnifier, QwtPlotZoomer: handling of non linear
+transformations ( f.e logarithmic )
+  * Date/Time scales fixed
+QwtDate::ceil(), QwtDate::weekNumber(), QwtDate::utcOffset()
+QwtDateScaleEngine fixed when aligning to months
+  * QwtPlotLayout: layout bug for legends witdh visisble
+scrollbars fixed
+  * Plot items
+hiding QwtPlotLegendItem without entries
+QwtPlotShapeItem render code fixed
+  * QwtPlotGLCanvas
+slightly improved, nevertheless better use Qwt 6.2 when being
+interested in OpenGL
+  * Other
+QwtGraphic boundingRect updates fixed
+QwtSyntheticPointData::x() fixed
+QwtLogScaleEngine::divideScale ignoring stepSize parameter
+for ranges below one "decade"
+QwtPlotAbstractBarChart::getCanvasMarginHint fixed
+
+- Fixed source URL
+
+---

Old:

  qwt-6.1.2.tar.bz2

New:

  qwt-6.1.3.tar.bz2



Other differences:
--
++ qwt6.spec ++
--- /var/tmp/diff_new_pack.0AiwXn/_old  2016-09-30 15:35:41.0 +0200
+++ /var/tmp/diff_new_pack.0AiwXn/_new  2016-09-30 15:35:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qwt6
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   qwt6
-Version:6.1.2
+Version:6.1.3
 Release:0
 Summary:Qt Widgets for Technical Applications
 License:SUSE-QWT-1.0
 Group:  Development/Libraries/C and C++
 Url:http://qwt.sourceforge.net/
-Source: 
http://switch.dl.sourceforge.net/sourceforge/qwt/qwt-%{version}.tar.bz2
+Source: 
https://sourceforge.net/projects/qwt/files/qwt/%{version}/qwt-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE to prevent 'ERROR: RPATH "/usr/local/qwt-6.1.0/lib" on
 # /usr/lib(64)/qt4/plugins/designer/libqwt_designer_plugin.so is not allowed'.
 Patch0: qwt-rpath.patch

++ qwt-6.1.2.tar.bz2 -> qwt-6.1.3.tar.bz2 ++
 190041 lines of diff (skipped)




commit espresso for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package espresso for openSUSE:Factory 
checked in at 2016-09-30 15:35:15

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


Package is "espresso"

Changes:

--- /work/SRC/openSUSE:Factory/espresso/espresso.changes2016-08-05 
18:18:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.espresso.new/espresso.changes   2016-09-30 
15:35:30.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 29 13:46:20 UTC 2016 - jeng...@inai.de
+
+- RPM group fixup
+
+---



Other differences:
--
++ espresso.spec ++
--- /var/tmp/diff_new_pack.PugKbK/_old  2016-09-30 15:35:32.0 +0200
+++ /var/tmp/diff_new_pack.PugKbK/_new  2016-09-30 15:35:32.0 +0200
@@ -56,13 +56,13 @@
 BuildRequires:  texlive-helvetic
 BuildRequires:  texlive-jknapltx
 BuildRequires:  texlive-latex-bin-bin
-BuildRequires:  texlive-mathtools
 BuildRequires:  texlive-makeindex-bin
+BuildRequires:  texlive-mathtools
 BuildRequires:  texlive-microtype
 BuildRequires:  texlive-natbib
-BuildRequires:  texlive-rsfs
 BuildRequires:  texlive-psnfss
 BuildRequires:  texlive-revtex
+BuildRequires:  texlive-rsfs
 BuildRequires:  texlive-siunitx
 BuildRequires:  texlive-stmaryrd
 BuildRequires:  texlive-subfigure
@@ -75,8 +75,8 @@
 Provides:   espresso-common = %{version}
 Obsoletes:  espresso-common < %{version}
 Provides:   espresso-openmpi = %{version}
-Obsoletes:  espresso-openmpi < %{version}
 Obsoletes:  espresso-devel < %{version}
+Obsoletes:  espresso-openmpi < %{version}
 Requires:   espresso-common-tcl = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -90,7 +90,7 @@
 
 %package doc
 Summary:Architecture independent documentation files for ESPResSo
-Group:  Productivity/Scientific/Chemistry
+Group:  Documentation/PDF
 BuildArch:  noarch
 
 %description doc




commit python-keystoneauth1 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-keystoneauth1 for 
openSUSE:Factory checked in at 2016-09-30 15:35:26

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


Package is "python-keystoneauth1"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-keystoneauth1/python-keystoneauth1.changes
2016-05-04 08:19:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-keystoneauth1.new/python-keystoneauth1.changes
   2016-09-30 15:35:45.0 +0200
@@ -1,0 +2,159 @@
+Wed Aug 31 13:10:19 UTC 2016 - tbecht...@suse.com
+
+update to version 2.12.1
+  * get_endpoint should return None when no version found
+
+---
+Tue Aug 30 15:41:49 UTC 2016 - tbecht...@suse.com
+
+update to version 2.12.0
+  * Allow identity plugins to discover relative version urls
+  * Disables TCP_KEEPCNT when using Windows Subsystem for Linux
+  * User-agent header shouldn't start with a space
+  * Add tests for user-agent with odd sys.argv
+  * add status code 308 to _REDIRECT_STATUSES
+  * Update the home-page in setup.cfg
+  * Updated from global requirements
+
+---
+Wed Aug 10 14:45:32 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.11.0
+  * Add tests for YamlJsonSerializer
+  * Add missing class name to tuple of public objects
+  * Fix arguments to _auth_required()
+  * Don't include openstack/common in flake8 exclude list
+  * Fix the doc error in "using-session"
+  * Improve authentication plugins documentation
+  * Use assertEqual() instead of assertDictEqual()
+  * Updated from global requirements
+  * Correctly report available for ADFS plugin
+
+---
+Sun Aug  7 12:26:55 UTC 2016 - dmuel...@suse.com
+
+- update to 2.10.0:
+  * Lazy load oauthlib for plugin loading
+  * oidc: add missing 'OidcAccessToken' to __all__
+  * oidc: implement client_credentials grant type
+  * Fix ECP doc link in Saml2 Password class doc
+  * Updated from global requirements
+  * Fix link for "extras dependencies" in extras doc
+  * Add pretty serializer for betamax fixture
+  * Update hacking to global-requirements value
+  * Use SAML2 requests plugin
+  * Updated from global requirements
+  * oidc: move the get_unscoped_auth_ref into the base class
+  * oidc: deprecate grant_type argument
+  * oidc: add discovery document support
+  * Add additional_headers to session and adapter
+  * Add Python 3.5 classifier and venv
+  * remove unused LOG
+  * Updated from global requirements
+  * Updated from global requirements
+  * Add prompt parameter to Opt
+  * Auth plugin for X.509 tokenless authentication
+  * oidc: fix OpenID scope management
+  * Add create_plugin to loader
+
+---
+Mon Jul 11 14:26:10 UTC 2016 - tbecht...@suse.com
+
+- update to 2.9.0:
+  * Updated from global requirements
+  * move release note to correct directory
+  * oidc: fix OpenID Connect scope option
+  * oidc: add tests for plugin loader
+  * Don't mock the session.request function
+  * oidc: refactor unit tests
+  * Fix code example for OAuth1 authentication
+  * Add entrypoint for Federated Kerberos
+  * Fix kerberos available property
+  * Document named kerberos plugin
+  * Support TOTP auth plugin
+  * Make the kerberos plugin loadable
+  * Add available flag to plugin loaders
+  * PEP257: Ignore D203 because it was deprecated
+  * Apply a heuristic for product name if a user_agent is not provided
+
+---
+Sun Jun 19 20:19:07 UTC 2016 - dmuel...@suse.com
+
+- update to 2.8.0:
+  * Updated from global requirements
+  * Let Oidc* auth plugins accept scope parameters as kwargs
+  * Update keystoneauth fixture to support v3
+  * Check that all defined entry points can be loaded
+  * Use betamax hooks to mask fixture results
+  * oidc: fix typo on class name
+  * oidc: fix option definition
+  * oidc: add OidcAccessToken class to authenticate reusing an access token
+  * oidc: fix typo in docstring
+  * oidc: DRY when obtaining an access token
+  * oidc: DRY when obtaining a keystone token
+  * oidc: Remove unused parameters in _OidcBase
+  * Add is_domain to keystoneauth token
+  * docstring: fix typo
+  * Add oauth plugin to keystoneauth
+  * Expose is_admin_project in AccessInfo
+  * Expose allow parameters for URL discovery
+  * Refactor variables for fixture and service
+  * Enable bandit
+  * Lazy import oslo_config as required
+  * Add 303 as redirect code for k2k plugin
+  * Updated from global requirements
+  * Fix H405, D105, D200, and D203 PEP257
+  * Updated from global 

commit python-oslo.concurrency for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.concurrency for 
openSUSE:Factory checked in at 2016-09-30 15:35:20

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


Package is "python-oslo.concurrency"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-oslo.concurrency/python-oslo.concurrency.changes
  2016-05-04 08:20:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.concurrency.new/python-oslo.concurrency.changes
 2016-09-30 15:35:36.0 +0200
@@ -1,0 +2,44 @@
+Tue Aug 30 16:22:27 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.14.0
+  * Fix external lock tests on Windows
+  * Updated from global requirements
+
+---
+Wed Aug 10 14:35:56 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.13.0
+  * Add Python 3.5 classifier and venv
+  * Imported Translations from Zanata
+  * Fix parameters of assertEqual are misplaced
+  * Updated from global requirements
+  * Add reno for releasenotes management
+
+---
+Fri Jun  3 13:17:59 UTC 2016 - tbecht...@suse.com
+
+- update to 3.9.0:
+  * Add doc/ to pep8 check
+  * Remove unused import statement
+  * Add timeout option to ssh_execute
+  * Fix wrong import example in docstring
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Updated from global requirements
+  * Imported Translations from Zanata
+  * processutils: add support for missing process limits
+  * Remove direct dependency on babel
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Add a few usage examples for lockutils
+  * Revert "Use tempfile.tempdir for lock_path if OSLO_LOCK_PATH is not set"
+  * Updated from global requirements
+  * Use tempfile.tempdir for lock_path if OSLO_LOCK_PATH is not set
+
+---
+Thu Jun  2 08:55:41 UTC 2016 - tbecht...@suse.com
+
+- use renderspec source service
+- update spec from upstream
+
+---

Old:

  oslo.concurrency-3.7.0.tar.gz

New:

  oslo.concurrency-3.14.0.tar.gz



Other differences:
--
++ python-oslo.concurrency.spec ++
--- /var/tmp/diff_new_pack.vEcZCL/_old  2016-09-30 15:35:38.0 +0200
+++ /var/tmp/diff_new_pack.vEcZCL/_new  2016-09-30 15:35:38.0 +0200
@@ -16,87 +16,87 @@
 #
 
 
-%define version_unconverted 3.7.0
-
+%global sname oslo.concurrency
 Name:   python-oslo.concurrency
-Version:3.7.0
+Version:3.14.0
 Release:0
-Summary:OpenStack Oslo concurrency library
+Summary:OpenStack oslo.concurrency library
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://launchpad.net/oslo
-Source: 
https://pypi.python.org/packages/source/o/oslo.concurrency/oslo.concurrency-%{version}.tar.gz
-BuildRequires:  openstack-suse-macros
+Url:https://launchpad.net/%{sname}
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
 BuildRequires:  python-devel
 BuildRequires:  python-enum34
-BuildRequires:  python-eventlet
-BuildRequires:  python-fasteners
-BuildRequires:  python-fixtures
-BuildRequires:  python-futures
-BuildRequires:  python-mock
-BuildRequires:  python-oslo.config
-BuildRequires:  python-oslo.utils
-BuildRequires:  python-oslosphinx
-BuildRequires:  python-oslotest
-BuildRequires:  python-pbr
-BuildRequires:  python-retrying
-BuildRequires:  python-setuptools
-BuildRequires:  python-sphinx
-BuildRequires:  python-testrepository
-Requires:   python-Babel >= 1.3
+BuildRequires:  python-eventlet >= 0.18.2
+BuildRequires:  python-fasteners >= 0.7
+BuildRequires:  python-fixtures >= 3.0.0
+BuildRequires:  python-futures >= 3.0
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-oslo.config >= 3.14.0
+BuildRequires:  python-oslo.i18n >= 2.1.0
+BuildRequires:  python-oslo.utils >= 3.16.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testscenarios >= 0.4
+BuildRequires:  python-testtools >= 1.4.0
 Requires:   python-enum34
 Requires:   python-fasteners >= 0.7
-Requires:   python-iso8601 >= 0.1.9
-Requires:   python-oslo.config >= 3.7.0
+Requires:   python-iso8601 >= 0.1.11
+Requires:   python-oslo.config >= 3.14.0
 Requires:   python-oslo.i18n >= 2.1.0
-Requires:   python-oslo.utils >= 3.5.0

commit the_silver_searcher for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2016-09-30 15:35:17

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2016-05-19 12:16:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2016-09-30 15:35:33.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 29 09:55:32 UTC 2016 - astie...@suse.com
+
+- update to 0.33.0:
+  * Fix --word-regexp not applying to alternates
+  * The preferred ignore file is .ignore, .agignore is deprecated
+
+---

Old:

  the_silver_searcher-0.32.0.tar.gz
  the_silver_searcher-0.32.0.tar.gz.asc

New:

  the_silver_searcher-0.33.0.tar.gz
  the_silver_searcher-0.33.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.nltduY/_old  2016-09-30 15:35:35.0 +0200
+++ /var/tmp/diff_new_pack.nltduY/_new  2016-09-30 15:35:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:0.32.0
+Version:0.33.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
@@ -27,7 +27,7 @@
 Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
 Source3:%{name}.keyring
 Source4:%{name}.changes
-BuildRequires:  pkg-config >= 0.9.0
+BuildRequires:  pkgconfig >= 0.9.0
 Requires:   bash-completion
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1110
@@ -51,7 +51,7 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
 mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 
@@ -59,7 +59,7 @@
 %defattr(-,root,root)
 %doc LICENSE NOTICE README.md
 %{_bindir}/ag
-%{_mandir}/man1/ag.1.gz
+%{_mandir}/man1/ag.1%{ext_man}
 %config %{_sysconfdir}/bash_completion.d/%{name}
 
 %changelog

++ the_silver_searcher-0.32.0.tar.gz -> the_silver_searcher-0.33.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/NOTICE 
new/the_silver_searcher-0.33.0/NOTICE
--- old/the_silver_searcher-0.32.0/NOTICE   2016-05-10 19:39:40.0 
+0200
+++ new/the_silver_searcher-0.33.0/NOTICE   2016-06-23 20:33:43.0 
+0200
@@ -1,2 +1,2 @@
 The Silver Searcher
-Copyright 2011-2014 Geoff Greer
+Copyright 2011-2016 Geoff Greer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/README.md 
new/the_silver_searcher-0.33.0/README.md
--- old/the_silver_searcher-0.32.0/README.md2016-05-10 19:39:39.0 
+0200
+++ new/the_silver_searcher-0.33.0/README.md2016-09-24 03:33:26.0 
+0200
@@ -15,7 +15,7 @@
 
 * It is an order of magnitude faster than `ack`.
 * It ignores file patterns from your `.gitignore` and `.hgignore`.
-* If there are files in your source repo you don't want to search, just add 
their patterns to a `.agignore` file. (\*cough\* extern \*cough\*)
+* If there are files in your source repo you don't want to search, just add 
their patterns to a `.ignore` file. (\*cough\* `*.min.js` \*cough\*)
 * The command name is 33% shorter than `ack`, and all keys are on the home row!
 
 Ag is quite stable now. Most changes are new features, minor bug fixes, or 
performance improvements. It's much faster than Ack in my benchmarks:
@@ -64,8 +64,7 @@
 dnf install the_silver_searcher
 * RHEL7+
 
-rpm -Uvh 
http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
-yum install the_silver_searcher
+yum install epel-release.noarch the_silver_searcher
 * Gentoo
 
 emerge the_silver_searcher
@@ -158,7 +157,7 @@
 
 ### Emacs
 
-You can use [ag.el][] as an Emacs fronted to Ag. See also: [helm-ag].
+You can use [ag.el][] as an Emacs front-end to Ag. See also: [helm-ag].
 
 [ag.el]: https://github.com/Wilfred/ag.el
 [helm-ag]: https://github.com/syohex/emacs-helm-ag
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/ag.bashcomp.sh 
new/the_silver_searcher-0.33.0/ag.bashcomp.sh
--- old/the_silver_searcher-0.32.0/ag.bashcomp.sh   2016-05-10 
19:39:40.0 +0200
+++ 

commit retro-gtk for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package retro-gtk for openSUSE:Factory 
checked in at 2016-09-30 15:34:37

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


Package is "retro-gtk"

Changes:

--- /work/SRC/openSUSE:Factory/retro-gtk/retro-gtk.changes  2016-09-23 
11:39:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.retro-gtk.new/retro-gtk.changes 2016-09-30 
15:34:52.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 23 06:32:43 UTC 2016 - jeng...@inai.de
+
+- Improve the description and summary.
+
+---



Other differences:
--
++ retro-gtk.spec ++
--- /var/tmp/diff_new_pack.wgqLiz/_old  2016-09-30 15:34:54.0 +0200
+++ /var/tmp/diff_new_pack.wgqLiz/_new  2016-09-30 15:34:54.0 +0200
@@ -19,7 +19,7 @@
 Name:   retro-gtk
 Version:0.8.1
 Release:0
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:Toolkit to write Gtk+3-based frontends to libretro
 License:GPL-3.0
 Group:  System/GUI/GNOME
 Url:https://git.gnome.org/browse/retro-gtk
@@ -41,38 +41,49 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications such as
+GNOME Games.
 
 %package -n libretro-gobject0
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:Toolkit to write Gtk+3-based frontends to libretro
 Group:  System/Libraries
 
 %description -n libretro-gobject0
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications such as
+GNOME Games.
+(libretro is an API specification implemented by some emulator
+libraries like libretro-bsnes.)
 
 %package -n libretro-gtk0
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:Toolkit to write Gtk+3-based frontends to libretro
 Group:  System/Libraries
 
 %description -n libretro-gtk0
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications such as
+GNOME Games.
+(libretro is an API specification implemented by some emulator
+libraries like libretro-bsnes.)
 
 %package -n typelib-1_0-Retro-0_8
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:GObject introspection bindings for libretro-gobject
 Group:  System/Libraries
 
 %description -n typelib-1_0-Retro-0_8
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications.
+This subpackage contains the gobject bindings for the
+libretro-gobject shared library.
 
 %package -n typelib-1_0-RetroGtk-0_8
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:GObject introspection bindings for libretro-gtk
 Group:  System/Libraries
 
 %description -n typelib-1_0-RetroGtk-0_8
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications.
+This subpackage contains the gobject bindings for the
+libretro-gtk shared library.
 
 %package devel
-Summary:Toolkit to write Gtk+ 3 based libretro frontends
+Summary:Development files for retro-gtk, a Gtk+3 wrapper for libretro
 Group:  Development/Languages/C and C++
 Requires:   libretro-gobject0 = %{version}
 Requires:   libretro-gtk0 = %{version}
@@ -80,7 +91,9 @@
 Requires:   typelib-1_0-RetroGtk-0_8 = %{version}
 
 %description devel
-Retro-gtk is a toolkit to write GTK+ 3 based Libretro frontends.
+retro-gtk wraps the libretro API for use in Gtk applications.
+This subpackage contains the headers to make use of the libretro-gtk
+and libretro-gobject libraries.
 
 %prep
 %setup -q




commit syncthing for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package syncthing for openSUSE:Factory 
checked in at 2016-09-30 15:35:06

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


Package is "syncthing"

Changes:

--- /work/SRC/openSUSE:Factory/syncthing/syncthing.changes  2016-09-12 
13:27:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing.new/syncthing.changes 2016-09-30 
15:35:22.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 29 07:01:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.14.7:
+  * Faster (i.e., less CPU intensive) hashing on some Intel and
+ARM64 CPUs.
+  * A more refined dark theme.
+  * CORS headers in the API.
+  * Updated set of default discovery servers.
+  * Fix deadlock on device removal (gh#syncthing/syncthing#3596).
+
+---

Old:

  syncthing-source-v0.14.6.tar.gz
  syncthing-source-v0.14.6.tar.gz.asc

New:

  syncthing-source-v0.14.7.tar.gz
  syncthing-source-v0.14.7.tar.gz.asc



Other differences:
--
++ syncthing.spec ++
--- /var/tmp/diff_new_pack.NxdSUa/_old  2016-09-30 15:35:24.0 +0200
+++ /var/tmp/diff_new_pack.NxdSUa/_new  2016-09-30 15:35:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syncthing
-Version:0.14.6
+Version:0.14.7
 Release:0
 Summary:FOSS Continuous File Synchronisation
 License:MPL-2.0

++ syncthing-source-v0.14.6.tar.gz -> syncthing-source-v0.14.7.tar.gz ++
/work/SRC/openSUSE:Factory/syncthing/syncthing-source-v0.14.6.tar.gz 
/work/SRC/openSUSE:Factory/.syncthing.new/syncthing-source-v0.14.7.tar.gz 
differ: char 5, line 1




commit conkeror for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package conkeror for openSUSE:Factory 
checked in at 2016-09-30 15:35:03

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


Package is "conkeror"

Changes:

--- /work/SRC/openSUSE:Factory/conkeror/conkeror.changes2016-06-11 
00:00:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.conkeror.new/conkeror.changes   2016-09-30 
15:35:19.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 29 07:36:30 UTC 2016 - sleep_wal...@opensuse.org
+
+- bump to 1.0.3 release
+- remove patches:
+   fix-for-old-make.patch
+- new patches:
+   0001-Use-new-nsIPermission-api.patch
+   0001-modules-download-manager.js-Fix-bug-preventing-compl.patch
+   0001-application.ini-Fix-Goanna-version-number.patch
+
+---

Old:

  conkeror-ab02f17.tar.gz
  fix-for-old-make.patch

New:

  0001-Use-new-nsIPermission-api.patch
  0001-application.ini-Fix-Goanna-version-number.patch
  0001-modules-download-manager.js-Fix-bug-preventing-compl.patch
  conkeror-1.0.3.tar.gz



Other differences:
--
++ conkeror.spec ++
--- /var/tmp/diff_new_pack.DD0EOu/_old  2016-09-30 15:35:21.0 +0200
+++ /var/tmp/diff_new_pack.DD0EOu/_new  2016-09-30 15:35:21.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package conkeror
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,19 +16,21 @@
 #
 
 
-%define revision   ab02f17
-
 Name:   conkeror
-Version:1.0
+Version:1.0.3
 Release:0
 Summary:Keyboard-oriented customizable and extensible web browser
 License:MPL-1.1 or GPL-2.0 or LGPL-2.1
 Group:  Productivity/Networking/Web/Browsers
 Url:http://conkeror.org
-# wget 'http://repo.or.cz/w/conkeror.git?a=snapshot;h=master;sf=tgz'
-Source0:%{name}-%{revision}.tar.gz
+Source0:%{name}-%{version}.tar.gz
 Source1:   %{name}.svg
-Patch0:fix-for-old-make.patch
+# PATCH-FIX-UPSTREAM
+Patch0: 0001-Use-new-nsIPermission-api.patch
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-modules-download-manager.js-Fix-bug-preventing-compl.patch
+# PATCH-FIX-UPSTREAM
+Patch2: 0001-application.ini-Fix-Goanna-version-number.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires: hicolor-icon-theme
 %if 0%{?suse_version}
@@ -47,8 +49,10 @@
 interactive help system.
 
 %prep
-%setup -q -n %{name}-%{revision}
+%setup -q
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 make

++ 0001-Use-new-nsIPermission-api.patch ++
>From dc67cae174477498b2f2c7f5d0bc63971a210df2 Mon Sep 17 00:00:00 2001
From: Matt Lundin 
Date: Mon, 27 Jun 2016 21:37:38 -0500
Subject: [PATCH] Use new nsIPermission api

* modules/permission-manager.js: Use new api for Mozilla/Firefox
  versions 42 and up. The new api uses protocol://domain instead of a
  simple domain (e.g., https://google.com instead of google.com).
---
 modules/permission-manager.js | 29 +++--
 1 file changed, 23 insertions(+), 6 deletions(-)

diff --git a/modules/permission-manager.js b/modules/permission-manager.js
index b2d54e1..803b329 100644
--- a/modules/permission-manager.js
+++ b/modules/permission-manager.js
@@ -96,7 +96,11 @@ interactive("permission-manager", "View or edit the 
host-specific "
 let max_type_len = 0;
 while (e.hasMoreElements()) {
 let p = e.getNext().QueryInterface(Ci.nsIPermission);
-let host = p.host;
+let host;
+if (version_compare(get_mozilla_version(), "42.0") >= 
0)
+host = p.principal.origin;
+else
+host = p.host;
 let type = p.type;
 let cap = p.capability;
 if (max_host_len < host.length)
@@ -128,9 +132,13 @@ interactive("permission-manager", "View or edit the 
host-specific "
 file_buf += "\n";
 }
 
+let example = (version_compare(get_mozilla_version(), "42.0") 
>= 0) ?
+"https://google.com; : "google.com";
+let url_type = (version_compare(get_mozilla_version(), "42.0") 
>= 0) ?
+"protocol://domain" : "domain";
 file_buf += "\n" +
-"# entry syntax 

commit steam for openSUSE:Factory:NonFree

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package steam for openSUSE:Factory:NonFree 
checked in at 2016-09-30 15:35:31

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


Package is "steam"

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/steam/steam.changes  2016-09-23 
13:36:42.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.steam.new/steam.changes 2016-09-30 
15:35:51.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 26 01:45:34 UTC 2016 - ji...@boombatower.com
+
+- correct replacement of 64bit openssl libraries in steamruntime.
+
+---



Other differences:
--
++ steamruntime-fix ++
--- /var/tmp/diff_new_pack.7NhUTD/_old  2016-09-30 15:35:54.0 +0200
+++ /var/tmp/diff_new_pack.7NhUTD/_new  2016-09-30 15:35:54.0 +0200
@@ -5,7 +5,7 @@
 
 echo "bringing in our fixed openssl libraries"
 for lib in libcrypto.so.1.0.0 libssl.so.1.0.0; do
-   find ~/.local/share/Steam/ubuntu12_32/ -name $lib | while read a
+   find ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386 -name $lib | 
while read a
do
if [ -f /usr/lib/steam/lib/$lib   ]; then
rm $a
@@ -13,7 +13,7 @@
fi
done
 
-   find ~/.local/share/Steam/ubuntu12_64/ -name $lib | while read a
+   find ~/.local/share/Steam/ubuntu12_32/steam-runtime/amd64 -name $lib | 
while read a
do
if [ -f /usr/lib/steam/lib64/$lib   ]; then
rm $a




commit nodejs4 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs4 for openSUSE:Factory checked 
in at 2016-09-30 15:34:53

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


Package is "nodejs4"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs4/nodejs4.changes  2016-09-23 
11:34:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs4.new/nodejs4.changes 2016-09-30 
15:35:10.0 +0200
@@ -1,0 +2,21 @@
+Wed Sep 28 08:37:49 UTC 2016 - adam.ma...@suse.de
+
+- enable usage of system certificate store on SLE11SP4 by 
+  requiring openssl1 (boo#136)
+- nodejs-libpath.patch:
+  * adapt patch from main nodejs project so it builds on SLE11
+- New upstream LTS version 4.6.0
+  * openssl update (not applicable for SLE12SP2, Leap 42.2 and later)
++ upgrade to 1.0.2j (CVE-2016-6304, CVE-2016-2183, CVE-2016-2178,
+  CVE-2016-6306, CVE-2016-7052)
++ remove support for dynamic 3rd party engine modules
+  * http: Properly validate for allowable characters in input
+  user data. This introduces a new case where throw may occur
+  when configuring HTTP responses, users should already
+  be adopting try/catch here. (CVE-2016-5325, bnc#985201)
+  * tls: properly validate wildcard certificates
+  (CVE-2016-7099, bnc#1001652)
+  * buffer: Zero-fill excess bytes in new Buffer objects created
+  with Buffer.concat()
+
+---

Old:

  node-v4.5.0.tar.xz

New:

  node-v4.6.0.tar.xz



Other differences:
--
++ nodejs4.spec ++
--- /var/tmp/diff_new_pack.wZlDxi/_old  2016-09-30 15:35:13.0 +0200
+++ /var/tmp/diff_new_pack.wZlDxi/_new  2016-09-30 15:35:13.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package nodejs
+# spec file for package nodejs4
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   nodejs4
-Version:4.5.0
+Version:4.6.0
 Release:0
 %define npm_version 2.15.9
 %define major_version 4
@@ -95,6 +96,13 @@
 #this corresponds to the "engine" requirement in package.json
 Provides:   nodejs(engine) = %{version}
 
+# For SLE11, to be able to use the certificate store we need to have properly
+# symlinked certificates. The compatability symlinks are provided by the
+# openssl1 library in the Security Module
+%if 0%{suse_version} == 1110
+Requires:   openssl1
+%endif
+
 #building nodejs makes sense only on v8 archs
 ExclusiveArch:  %{ix86} x86_64 armv7hl aarch64 ppc ppc64 ppc64le 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build


++ SHASUMS256.txt.asc ++
--- /var/tmp/diff_new_pack.wZlDxi/_old  2016-09-30 15:35:13.0 +0200
+++ /var/tmp/diff_new_pack.wZlDxi/_new  2016-09-30 15:35:13.0 +0200
@@ -1,52 +1,52 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
-d171f0c859e3895b2430c317001b817866c4de45211ad540c59658ee6a2f689f  
node-v4.5.0-darwin-x64.tar.gz
-61b570d0744bed2725a4d64ab28f641acb1206fee8760035df36f8ee63e54da3  
node-v4.5.0-darwin-x64.tar.xz
-12ee966eef2abc928f6d7fcf9cfcf2913ef0e59ae07e2dcc20726246ab174fd8  
node-v4.5.0-headers.tar.gz
-7a83d8e11089c16824dfcd82ca3f5cb9f727545a39f7138d034b67ed95fb922c  
node-v4.5.0-headers.tar.xz
-ecdbb3cb55d0a87aeb10334b47310f1823393abe6273f1ce7c97bcb509051e68  
node-v4.5.0-linux-arm64.tar.gz
-9034e67629e1912d6dc0632627528565d9e412c6eba410d171f9fd80f700f84f  
node-v4.5.0-linux-arm64.tar.xz
-87c6fb8269475d385a9b923c647890def45079f8e30b55c4737d70558fd36418  
node-v4.5.0-linux-armv6l.tar.gz
-bc3e33872b009e18f084efb9a595cc12cf8314df125ce80c2e8bde1c2213b5f1  
node-v4.5.0-linux-armv6l.tar.xz
-99d222ede2f38041c55a64da8e6a669e0128cfb40d40f968cae74d80e52ad566  
node-v4.5.0-linux-armv7l.tar.gz
-c01482d423b646542ba037cb5ce646cb26518aa2dc9f7728520e7ac1247932b3  
node-v4.5.0-linux-armv7l.tar.xz
-a517a56b5550567225c6820f99e44fc84ac9953e2fe9db67f3bab7a8d7661e9f  
node-v4.5.0-linux-ppc64le.tar.gz
-e01cb29c51f05dd56e15e0a25918fe4a2ad10cf4b83c4eee89fb0a3598728e50  
node-v4.5.0-linux-ppc64le.tar.xz
-46bebb806e4e8273e66e02faf5f25145f5351958bda75d9aa49bee9df7ccafec  
node-v4.5.0-linux-ppc64.tar.gz
-f910ffa6ff0dbe32d2e3dea7e73b4f83c37f8a7a0d4078d53f3d3b426e30a8cf  
node-v4.5.0-linux-ppc64.tar.xz
-5678ad94ee35e40fc3a2c545e136a0dc946ac4c039fca5898e1ea51ecf9e7c39  
node-v4.5.0-linux-x64.tar.gz
-c6ee1f4303353e3605ff70de180431417eb594fe08daf612e692216236750c55  
node-v4.5.0-linux-x64.tar.xz
-a11ef26fa700eff8ea7acfa491fd362dd362590da2967335d87932e7036a06fd  
node-v4.5.0-linux-x86.tar.gz
-0f5e51d913867eaf71332cd20fd9a98aeb3576b8a22a52e8e1cd97c89cf51feb  
node-v4.5.0-linux-x86.tar.xz

commit nodejs for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs for openSUSE:Factory checked 
in at 2016-09-30 15:34:44

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


Package is "nodejs"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs/nodejs.changes2016-09-20 
13:27:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs.new/nodejs.changes   2016-09-30 
15:34:57.0 +0200
@@ -1,0 +2,28 @@
+Thu Sep 29 02:22:42 UTC 2016 - qantas94he...@gmail.com
+
+- Fix incorrect SHASUMS256.txt.asc file that prevented package update
+  being accepted into Factory
+
+---
+Wed Sep 28 08:37:49 UTC 2016 - adam.ma...@suse.de
+
+- enable usage of system certificate store on SLE11SP4 by 
+  requiring openssl1 (boo#136)
+- new upstream version 6.7.0
+  * openssl update (not applicable for SLE12SP2, Leap 42.2 and later)
++ upgrade to 1.0.2j (CVE-2016-6304, CVE-2016-2183, CVE-2016-2178,
+  CVE-2016-6306, CVE-2016-7052)
++ remove support for dynamic 3rd party engine modules
+  * http: Properly validate for allowable characters in input
+  user data. This introduces a new case where throw may occur
+  when configuring HTTP responses, users should already
+  be adopting try/catch here. (CVE-2016-5325, bnc#985201)
+  * tls: properly validate wildcard certificates
+  (CVE-2016-7099, bnc#1001652)
+  * v8: Fix regression where a regex on a frozen object was broken
+  * buffer: Zero-fill excess bytes in new Buffer objects created
+  with Buffer.concat()
+  * src: Fix regression where passing an empty password and/or
+  salt to crypto.pbkdf2() would cause a fatal error
+
+---

Old:

  node-v6.6.0.tar.xz

New:

  node-v6.7.0.tar.xz



Other differences:
--
++ nodejs.spec ++
--- /var/tmp/diff_new_pack.inQMak/_old  2016-09-30 15:34:59.0 +0200
+++ /var/tmp/diff_new_pack.inQMak/_new  2016-09-30 15:34:59.0 +0200
@@ -18,7 +18,7 @@
 
 %define npm_version 3.10.3
 Name:   nodejs
-Version:6.6.0
+Version:6.7.0
 Release:0
 
 %if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
@@ -94,6 +94,13 @@
 #this corresponds to the "engine" requirement in package.json
 Provides:   nodejs(engine) = %{version}
 
+# For SLE11, to be able to use the certificate store we need to have properly
+# symlinked certificates. The compatability symlinks are provided by the
+# openssl1 library in the Security Module
+%if 0%{?suse_version} == 1110
+Requires:   openssl1
+%endif
+
 #building nodejs makes sense only on v8 archs
 ExclusiveArch:  %{ix86} x86_64 armv7hl aarch64 ppc ppc64 ppc64le s390x
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build


++ SHASUMS256.txt.asc ++
--- /var/tmp/diff_new_pack.inQMak/_old  2016-09-30 15:35:00.0 +0200
+++ /var/tmp/diff_new_pack.inQMak/_new  2016-09-30 15:35:00.0 +0200
@@ -1,61 +1,62 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
-c8d1fe38eb794ca46aacf6c8e90676eec7a8aeec83b4b09f57ce503509e7a19f  
node-v6.6.0-darwin-x64.tar.gz
-e5e6248714618a81595cc2c04d3420535cd8a26d74274013a0eb61e0b3d23f5f  
node-v6.6.0-darwin-x64.tar.xz
-60b81c7276105a51e71ad8bc7f59163105e7c5dd1d992b173b5b66449b6df3fc  
node-v6.6.0-headers.tar.gz
-b3b6989c12cdf3652253c1b87d4328d151576a2ff4b189e05ebcba99ed84896c  
node-v6.6.0-headers.tar.xz
-9abae64e411d8ea1541a4776e78d9cf53ad8e20e8b34cf77d9b3579e8edb6f65  
node-v6.6.0-linux-arm64.tar.gz
-fce02f2fc7bdc79899de4696395d02f3e7209e4ab4053336db790b8f58cce385  
node-v6.6.0-linux-arm64.tar.xz
-d311754cddc9b387a2798226ecb5487e515c555e050fdd08ef3d6665c3c0d336  
node-v6.6.0-linux-armv6l.tar.gz
-b6a5dce140b0795da61a9936454670887b431922e56326b53f1900e72e2ac48d  
node-v6.6.0-linux-armv6l.tar.xz
-e4dc3295f6602b0f4cd3433a6e520294743e2c342692b4fad388d33910cdd465  
node-v6.6.0-linux-armv7l.tar.gz
-a3a1aac41c21d216ef380269b80225c658188f9182fc087e1823afe66935e3e1  
node-v6.6.0-linux-armv7l.tar.xz
-b38ff6058f0213567d31a5d194d669ce75894336f6d0324426f01722c989d3c4  
node-v6.6.0-linux-ppc64le.tar.gz
-c25c106ee0540f13cd119e47b85191f8a362e48d636a9e8398f5db42ac30d755  
node-v6.6.0-linux-ppc64le.tar.xz
-90d483c63fdbc6594185b3e143bf8d5627812288a029f02f578363d6dd505285  
node-v6.6.0-linux-ppc64.tar.gz
-3a2cbd56384217df585ad81eff7ddb92cf3601374152b05eafe27a2c7ef02fa9  
node-v6.6.0-linux-ppc64.tar.xz
-a2f109eb0fec81d90206e9c0bca05327c706b244b5d7c5bd247ac140f811e54e  
node-v6.6.0-linux-s390x.tar.gz
-aa181bdba1a4f8d06e61fb5496be202c271dadc46a0ef6ecb4b7b4454f1909c4  
node-v6.6.0-linux-s390x.tar.xz
-c22ab0dfa9d0b8d9de02ef7c0d860298a5d1bf6cae7413fb18b99e8a3d25648a  

commit privoxy for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package privoxy for openSUSE:Factory checked 
in at 2016-09-30 15:34:40

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


Package is "privoxy"

Changes:

--- /work/SRC/openSUSE:Factory/privoxy/privoxy.changes  2016-01-28 
17:22:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.privoxy.new/privoxy.changes 2016-09-30 
15:34:54.0 +0200
@@ -1,0 +2,26 @@
+Wed Sep 28 17:55:49 UTC 2016 - kiel...@gmail.com
+
+- Update to version 3.0.26
+  * Bug fixes:
+- Fixed crashes with "listen-addr :8118" (SF Bug #902).
+  The regression was introduced in 3.0.25 beta and reported
+  by Marvin Renich in Debian bug #834941.
+  * General improvements:
+- Log when privoxy is toggled on or off via cgi interface.
+- Highlight the "Info: Now toggled " on/off log message
+  in the Windows log viewer.
+- Highlight the loading actions/filter file log message
+  in the Windows log viewer.
+- Mention client-specific tags on the toggle page as a
+  potentionally more appropriate alternative.
+  * Infrastructure improvements:
+- Add perl script to generate an RSS feed for the packages
+  Submitted by "Unknown".
+  * Build system improvements:
+- strptime.h: fix a compiler warning about ambiguous else.
+- configure.in: Check for Docbook goo on the BSDs as well.
+- GNUMakefile.in: Let the dok-user target remove 
+  temporary files.
+- BuildArch for docs: noarch
+
+---

Old:

  privoxy-3.0.24-stable-src.tar.gz

New:

  privoxy-3.0.26-stable-src.tar.gz



Other differences:
--
++ privoxy.spec ++
--- /var/tmp/diff_new_pack.5cE7Ec/_old  2016-09-30 15:34:56.0 +0200
+++ /var/tmp/diff_new_pack.5cE7Ec/_new  2016-09-30 15:34:56.0 +0200
@@ -30,7 +30,7 @@
 %endif
 %endif
 Name:   privoxy
-Version:3.0.24
+Version:3.0.26
 Release:0
 Summary:The Internet Junkbuster - HTTP Proxy Server
 License:GPL-2.0+
@@ -84,6 +84,7 @@
 Summary:The documentation of Privoxy
 Group:  Productivity/Networking/Web/Proxy
 Requires:   %{name} = %{version}
+BuildArch:  noarch
 
 %description doc
 Documentation files for the Privoxy: The Internet Junkbuster - HTTP

++ privoxy-3.0.24-stable-src.tar.gz -> privoxy-3.0.26-stable-src.tar.gz 
++
 57850 lines of diff (skipped)




commit libressl for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2016-09-30 15:35:09

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


Package is "libressl"

Changes:

--- /work/SRC/openSUSE:Factory/libressl/libressl.changes2016-08-10 
19:56:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2016-09-30 
15:35:24.0 +0200
@@ -1,0 +2,40 @@
+Thu Sep 29 06:10:02 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 2.5.0
+* libtls now supports ALPN and SNI
+* libtls adds a new callback interface for integrating custom IO
+  functions.
+* libtls now handles 4 cipher suite groups: "secure"
+  (TLSv1.2+AEAD+PFS), "compat" (HIGH:!aNULL), "legacy"
+  (HIGH:MEDIUM:!aNULL), "insecure" (ALL:!aNULL:!eNULL). This
+  allows for flexibility and finer grained control, rather than
+  having two extremes.
+* libtls now always loads CA, key and certificate files at the
+  time the configuration function is called.
+* Add support for OCSP intermediate certificates.
+* Added functions used by stunnel and exim from BoringSSL - this
+  brings in X509_check_host, X509_check_email, X509_check_ip, and
+  X509_check_ip_asc.
+* Improved behavior of arc4random on Windows when using memory
+  leak analysis software.
+* Correctly handle an EOF that occurs prior to the TLS handshake
+  completing.
+* Limit the support of the "backward compatible" ssl2 handshake
+  to only be used if TLS 1.0 is enabled.
+* Fix incorrect results in certain cases on 64-bit systems when
+  BN_mod_word() can return incorrect results. BN_mod_word() now
+  can return an error condition.
+* Added constant-time updates to address CVE-2016-0702
+* Fixed undefined behavior in BN_GF2m_mod_arr()
+* Removed unused Cryptographic Message Support (CMS)
+* More conversions of long long idioms to time_t
+* Reverted change that cleans up the EVP cipher context in
+  EVP_EncryptFinal() and EVP_DecryptFinal(). Some software relies
+  on the previous behaviour.
+* Avoid unbounded memory growth in libssl, which can be triggered
+  by a TLS client repeatedly renegotiating and sending OCSP
+  Status Request TLS extensions.
+* Avoid falling back to a weak digest for (EC)DH when using SNI
+  with libssl.
+
+---

Old:

  libressl-2.4.2.tar.gz
  libressl-2.4.2.tar.gz.asc

New:

  libressl-2.5.0.tar.gz
  libressl-2.5.0.tar.gz.asc



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.55bbn0/_old  2016-09-30 15:35:26.0 +0200
+++ /var/tmp/diff_new_pack.55bbn0/_new  2016-09-30 15:35:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.4.2
+Version:2.5.0
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL

++ libressl-2.4.2.tar.gz -> libressl-2.5.0.tar.gz ++
 29987 lines of diff (skipped)




commit flamerobin for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package flamerobin for openSUSE:Factory 
checked in at 2016-09-30 15:34:55

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


Package is "flamerobin"

Changes:

--- /work/SRC/openSUSE:Factory/flamerobin/flamerobin.changes2015-07-05 
18:03:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.flamerobin.new/flamerobin.changes   
2016-09-30 15:35:14.0 +0200
@@ -1,0 +2,32 @@
+Thu Sep 29 00:19:02 UTC 2016 - badshah...@gmail.com
+
+- Update to version 0.9.3.1:
+  + New templating system allows you to add you own SQL statement
+templates to the menu
+  + BLOB editor
+  + Extended dialog with SQL statement history makes it easier to
+search
+  + View dependencies are resolved properly for Firebird 2.5
+  + Fixed statistics for UPDATE OR INSERT statements
+  + DataGrid: implemented Copy as IN list
+  + DataGrid: Fixed keyboard navigation
+  + Added new context menu options
+  + Fixed error messages when different character set is used in
+statements
+  + Warn when closing SQL editor with active transactions
+  + Ability to refresh list of objects in the main tree
+  + Fixed bug with quoted identifier when altering column type
+  + Generate change script is now available for columns as well
+  + Fixed truncating of Unicode characters with Firebird 1.5
+- Update required version of wxwidgets to >= 3.0.
+- Drop flamerobin-0.9.2-wxWindowListNode.patch; fixed upstream.
+- Use github tagged tarball for source; update %setup accordingly.
+- Add flamerobin-desktop-file.patch to remove hardcoded reference
+  to location of icon file.
+- Extract hicolor icons of all possible sizes from bundled icns
+  file and install them to hicolor icon dir; adds BuildRequires
+  on icns-utils, hicolor-icon-theme; run
+  %icon_theme_cache_post(un) post(un) scriptlets.
+- Sed to fix a trailing ';' issue in .desktop file.
+
+---

Old:

  flamerobin-0.9.2-src.tar.gz
  flamerobin-0.9.2-wxWindowListNode.patch

New:

  0.9.3.1.tar.gz
  flamerobin-desktop-file.patch



Other differences:
--
++ flamerobin.spec ++
--- /var/tmp/diff_new_pack.iKGkgc/_old  2016-09-30 15:35:15.0 +0200
+++ /var/tmp/diff_new_pack.iKGkgc/_new  2016-09-30 15:35:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package flamerobin
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,22 @@
 %define _use_internal_dependency_generator 0
 %define __find_requires %wx_requires
 Name:   flamerobin
-Version:0.9.2
+Version:0.9.3.1
 Release:0
 Summary:Graphical client for Firebird
 License:MIT and LGPL-2.1+
 Group:  Productivity/Databases/Tools
 Url:http://www.flamerobin.org/
-Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.gz
-Patch0: flamerobin-0.9.2-wxWindowListNode.patch
+Source0:https://github.com/mariuz/flamerobin/archive/%{version}.tar.gz
+# PATCH-FIX-UPSTREAM flamerobin-desktop-file.patch gh#mariuz/flamerobin#5 
badshah...@gmail.com -- Unhardcode icon path in GNU/Linux laucher; patch taken 
from upstream git
+Patch0: flamerobin-desktop-file.patch
+BuildRequires:  boost-devel
 BuildRequires:  desktop-file-utils
 BuildRequires:  gcc-c++
+BuildRequires:  icns-utils
 BuildRequires:  libfbclient2-devel >= 2.0.0.12748
 BuildRequires:  update-desktop-files
-BuildRequires:  wxWidgets-devel >= 2.8
+BuildRequires:  wxWidgets-devel >= 3.0
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -41,10 +44,13 @@
 toolkit.
 
 %prep
-%setup -q -n %{name}-%{version}-src
-%patch0
+%setup -q
+%patch0 -p1
 
 %build
+# FIX A TRAILING SEMICOLON ISSUE FOR KEYWORDS TAG IN .desktop FILE
+sed -i "s/^Keywords=firebird/Keywords=firebird;/" res/%{name}.desktop
+
 export CFLAGS="%{optflags} -fpermissive"
 export CXXFLAGS="$CFLAGS"
 %configure
@@ -52,18 +58,26 @@
 
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
-rm -f %{buildroot}/%{_datadir}/pixmaps/%{name}.png
-cp -f ./res/%{name}.xpm %{buildroot}/%{_datadir}/%{name}/%{name}.xpm
-sed"s@Categories=Development;Database;GTK@Categories=System;Database;@"
-i  %{buildroot}/%{_datadir}/applications/%{name}.desktop
-sed
"s@Icon=%{_datadir}/pixmaps/flamerobin.png@Icon=%{_datadir}/%{name}/%{name}.xpm@"
   -i  

commit converseen for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package converseen for openSUSE:Factory 
checked in at 2016-09-30 15:34:58

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


Package is "converseen"

Changes:

--- /work/SRC/openSUSE:Factory/converseen/converseen.changes2016-09-01 
14:03:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.converseen.new/converseen.changes   
2016-09-30 15:35:16.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep 28 07:34:55 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 0.9.5.1.
+  * Updated French Translation.
+  * Updated Appdata file for Linux.
+
+---

Old:

  converseen-0.9.5.tar.bz2

New:

  converseen-0.9.5.1.tar.bz2



Other differences:
--
++ converseen.spec ++
--- /var/tmp/diff_new_pack.yE3cex/_old  2016-09-30 15:35:18.0 +0200
+++ /var/tmp/diff_new_pack.yE3cex/_new  2016-09-30 15:35:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   converseen
-Version:0.9.5
+Version:0.9.5.1
 Release:0
 Summary:Batch Image Conversion Tool
 License:GPL-3.0+
@@ -55,7 +55,7 @@
 %lang_package
 
 %prep
-%setup -q -n %{name}
+%setup -q
 cp -p README.md README
 chmod -x README COPYING
 

++ converseen-0.9.5.tar.bz2 -> converseen-0.9.5.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/converseen/converseen.appdata.xml 
new/converseen-0.9.5.1/converseen.appdata.xml
--- old/converseen/converseen.appdata.xml   2016-08-30 00:47:20.0 
+0200
+++ new/converseen-0.9.5.1/converseen.appdata.xml   2016-09-08 
00:13:50.0 +0200
@@ -1,35 +1,60 @@
 
 
-
- converseen.desktop
- CC0-1.0
- GPL-3.0
- Converseen
- A batch image processor
- 
-  
-   Converseen is a free cross-platform batch image processor that allows you 
to convert, 
-   resize, rotate and flip an infinite number of images with a mouse click.
-   Moreover, Converseen is able to transform an entire PDF file into a bunch 
of images 
-   with the characteristics you prefer: you can choose one of the 100+ 
formats, 
-   you can set the size, resolution and the filename.
-  
-  What can I do with Converseen.
-  
-   Carry out a single or a multiple conversion
-   Resize one or multiple images
-   Compress images for your web pages
-   Rotate and flip images
-   Rename a bunch of images using a progressive number or a 
prefix/suffix
-   Selecting a resampling filter to resize images
-   Convert an entire PDF to a bunch of images
-   Extract an image from a Windows icon file (*ico)
-  
- 
- 
-  http://fasterland.net/images/converseen_kde4_1.jpg
-  http://fasterland.net/images/converseen_kde4_2.jpg
- 
- http://converseen.fasterland.net/
- faster3ck_AT_gmail.com
-
+
+converseen.desktop
+CC0-1.0
+GPL-3.0
+Converseen
+A batch image processor
+
+
+Converseen is a free cross-platform batch image processor that allows 
you to convert, 
+resize, rotate and flip an infinite number of images with a mouse 
click.
+Moreover, Converseen is able to transform an entire PDF file into a 
bunch of images 
+with the characteristics you prefer: you can choose one of the 100+ 
formats, 
+you can set the size, resolution and the filename.
+
+What can I do with Converseen.
+
+  Carry out a single or a multiple conversion
+  Resize one or multiple images
+  Compress images for your web pages
+  Rotate and flip images
+  Rename a bunch of images using a progressive number or a 
prefix/suffix
+  Selecting a resampling filter to resize images
+  Convert an entire PDF to a bunch of images
+  Extract an image from a Windows icon file (*ico)
+
+
+
+
+
http://fasterland.net/images/converseen-appdata-1.png
+The main window showing the application in 
action
+
+
+
http://fasterland.net/images/converseen-appdata-2.png
+The program during the image processing
+
+
+
http://fasterland.net/images/converseen-appdata-3.png
+The image preferences window where you can change the 
settings
+
+
+
+graphic
+image
+batch
+processor
+converter
+resizer
+compressor
+picture
+qt
+
+http://converseen.fasterland.net/
+faster...@gmail.com
+Francesco Mondello
+https://github.com/Faster3ck/Converseen/issues
+http://converseen.fasterland.net/thank/
+http://converseen.fasterland.net/help/
+
diff -urN '--exclude=CVS' 

commit man-pages-fr for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package man-pages-fr for openSUSE:Factory 
checked in at 2016-09-30 15:34:50

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


Package is "man-pages-fr"

Changes:

--- /work/SRC/openSUSE:Factory/man-pages-fr/man-pages-fr.changes
2016-01-11 19:11:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.man-pages-fr.new/man-pages-fr.changes   
2016-09-30 15:35:07.0 +0200
@@ -2 +2,9 @@
-Thu Dec 25 00:01:23 UTC 2014 - antoine.belv...@laposte.net
+Thu Sep 29 07:36:53 UTC 2016 - antoine.belv...@opensuse.org
+
+- Add 'Provides: locale(man-pages:fr)' so that the package is
+  automatically installed when locale is French.
+- Add 'Suggests: man-pages-fr-extra'. It might be turned into
+  'Recommends' in the future.
+
+---
+Thu Dec 25 00:01:23 UTC 2014 - antoine.belv...@opensuse.org



Other differences:
--
++ man-pages-fr.spec ++
--- /var/tmp/diff_new_pack.gazDgc/_old  2016-09-30 15:35:09.0 +0200
+++ /var/tmp/diff_new_pack.gazDgc/_new  2016-09-30 15:35:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package man-pages-fr
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,8 @@
 Group:  Documentation/Man
 Url:http://traduc.org/
 Source: 
http://perkamon.alioth.debian.org/archives/%{version}/man-pages-fr-%{version}%{revision}.tar.xz
+Suggests:   man-pages-fr-extra
+Provides:   locale(man-pages:fr)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 




commit salt for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package salt for openSUSE:Factory checked in 
at 2016-09-30 15:34:47

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


Package is "salt"

Changes:

--- /work/SRC/openSUSE:Factory/salt/salt.changes2016-05-13 
09:24:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.salt.new/salt.changes   2016-09-30 
15:35:01.0 +0200
@@ -1,0 +2,288 @@
+Wed Sep 28 12:35:32 UTC 2016 - tampak...@opensuse.org
+
+- Rename susemanager plugin to zyppnotify, as it is not SUSE Manager specific
+- Remove the subpackage and put the plugin back to the main package
+  according to upstream
+  Add:
+  * 0007-Add-zypp-notify-plugin.patch
+  Remove:
+  * 0007-Add-SUSE-Manager-plugin.patch
+
+---
+Wed Sep 28 11:40:36 UTC 2016 - tampak...@opensuse.org
+
+- Add upstream patch to fix pkg.upgrade for zypper
+  Add:
+  * 0021-Fix-pkg.upgrade-for-zypper.patch
+
+---
+Tue Sep 27 23:55:03 UTC 2016 - mrueck...@suse.de
+
+- splitting out the susemanager integration plugins into their own
+  subpackages. ATM this only contains the zypp plugin to tell
+  susemanager about manually installed packages.
+
+---
+Tue Sep 13 15:07:44 UTC 2016 - pablo.suarezhernan...@suse.com
+
+- Unit and integration tests fixes for 2016.3.2
+  Add:
+  * 0018-Unit-tests-fixes-for-2016.3.2.patch
+  * 0019-Fix-snapper_test-for-python26.patch
+  * 0020-Integration-tests-fixes-for-2016.3.2.patch
+
+---
+Fri Sep  2 09:50:57 UTC 2016 - pablo.suarezhernan...@suse.com
+
+- Prevent pkg.install failure for expired keys (bsc#996455)
+  Add:
+  * 0017-Check-for-single-quote-before-splitting-on-single-qu.patch
+
+---
+Tue Aug 30 12:24:45 UTC 2016 - bmaryn...@suse.com
+
+- Required D-Bus and generating machine ID where it is missing
+
+---
+Fri Aug 26 13:11:58 UTC 2016 - bmaryn...@suse.com
+
+- Fix sphinx crashes when documentation is being generated
+  Add script for documentation update.
+
+  Add:
+  * 0016-Improve-Mock-to-be-flexible-and-able-to-mock-methods.patch
+  * update-documentation.sh
+
+---
+Tue Aug 16 12:01:59 UTC 2016 - bmaryn...@suse.com
+
+- Fix pkg.installed refresh repo failure (bsc#993549)
+  Fix salt.states.pkgrepo.management no change failure (bsc#990440)
+  Add:
+  * 0014-Add-ignore_repo_failure-option-to-suppress-zypper-s-.patch
+  * 0015-Remove-zypper-s-raise-exception-if-mod_repo-has-no-a.patch
+
+---
+Tue Aug  9 13:40:37 UTC 2016 - bmaryn...@suse.com
+
+- Deprecate status.uptime one version later
+  Add:
+  * 0013-Deprecate-status.uptime-one-version-later.patch
+
+---
+Mon Aug  8 16:25:04 UTC 2016 - pablo.suarezhernan...@suse.com
+
+- Fix for 0008-checksum-validation-when-zypper-pkg.download.patch
+  after upstream merging conflict. Prevent zypper test failure.
+  Update:
+  * 0008-checksum-validation-when-zypper-pkg.download.patch
+
+---
+Thu Aug  4 14:56:42 UTC 2016 - mihai.di...@suse.com
+
+- Update to v2016.3.2
+  see https://docs.saltstack.com/en/latest/topics/releases/2016.3.2.html
+- Removed Patches, applied upstream
+  * 0010-Getting-the-os-grain-from-CPE_NAME-inside-etc-os-rel.patch
+  * 0011-snapper-execution-module.patch
+  * 0012-Force-minion-exit-on-mis-configuration-read.patch
+  * 0013-fix-salt-summary-to-count-not-responding-minions-cor.patch
+  * 0014-Move-log-message-from-INFO-to-DEBUG.patch
+  * 0016-Run-salt-api-as-user-salt-bsc-990029.patch
+  * 0017-fix-beacon-list-to-include-all-beacons-being-process.patch
+- Added Patches back
+  * 0010-snapper-execution-module.patch
+  * 0011-fix-salt-summary-to-count-not-responding-minions-cor.patch
+  * 0012-Run-salt-api-as-user-salt-bsc-990029.patch
+
+---
+Wed Aug  3 14:50:35 UTC 2016 - pablo.suarezhernan...@suse.com
+
+- Fix beacon list to include all beacons being process
+  Add:
+  * 0017-fix-beacon-list-to-include-all-beacons-being-process.patch 
+
+---
+Fri Jul 29 11:48:37 UTC 2016 - kkae...@suse.com
+
+- Redo patches, sync with github.com/openSUSE/salt
+
+- Renamed patches
+  * 0016-Getting-the-os-grain-from-CPE_NAME-inside-etc-os-rel.patch
+-> 

commit u-boot for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2016-09-30 15:33:56

Comparing /work/SRC/openSUSE:Factory/u-boot (Old)
 and  /work/SRC/openSUSE:Factory/.u-boot.new (New)


Package is "u-boot"

Changes:

--- /work/SRC/openSUSE:Factory/u-boot/u-boot-a10-olinuxino-lime.changes 
2016-09-12 13:25:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.u-boot.new/u-boot-a10-olinuxino-lime.changes
2016-09-30 15:33:59.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep 28 15:18:17 UTC 2016 - afaer...@suse.de
+
+- Fix rpi332b installation path and enable %post scriplet
+
+---
+Sun Sep 11 03:44:15 UTC 2016 - afaer...@suse.de
+
+- Add hikey and rpi332b
+
+---
u-boot-a13-olinuxino.changes: same change
u-boot-a13-olinuxinom.changes: same change
u-boot-a20-olinuxino-lime.changes: same change
u-boot-a20-olinuxino-lime2.changes: same change
u-boot-a20-olinuxinomicro.changes: same change
u-boot-am335xboneblack.changes: same change
u-boot-am335xevm.changes: same change
u-boot-am57xxevm.changes: same change
u-boot-am57xxevmnodt.changes: same change
u-boot-arndale.changes: same change
u-boot-bananapi.changes: same change
u-boot-clearfog.changes: same change
u-boot-colibrit20.changes: same change
u-boot-cubieboard.changes: same change
u-boot-cubieboard2.changes: same change
u-boot-cubietruck.changes: same change
u-boot-dragonboard410c.changes: same change
u-boot-firefly-rk3288.changes: same change
u-boot-highbank.changes: same change
New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.u-boot.new/u-boot-hikey.changes 2016-09-30 
15:34:25.0 +0200
@@ -0,0 +1,1353 @@
+---
+Wed Sep 28 15:18:17 UTC 2016 - afaer...@suse.de
+
+- Fix rpi332b installation path and enable %post scriplet
+
+---
+Sun Sep 11 03:44:15 UTC 2016 - afaer...@suse.de
+
+- Add hikey and rpi332b
+
+---
+Wed Sep  7 09:02:59 UTC 2016 - guilla...@opensuse.org
+
+- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed
+* Patches added:
+  0019-common-env_nand-Ensure-that-we-have.patch
+
+---
+Fri Sep  2 23:25:44 UTC 2016 - afaer...@suse.de
+
+- Add post-install script for Raspberry Pi to install to /boot/efi
+  where needed. (bsc#996064)
+
+---
+Fri Aug 12 14:07:49 UTC 2016 - ag...@suse.com
+
+- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed
+- Update to v3 of the serial detect code (bsc#989511)
+* Patches added:
+  0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch
+* Patches rebased:
+  0010-serial-bcm283x_mu-Detect-disabled-s.patch -> 
0011-serial-bcm283x_mu-Detect-disabled-s.patch
+- Add SMBIOS table on ARM (bsc#989509)
+* Patches added:
+  0012-x86-Move-table-csum-into-separate-h.patch
+  0013-x86-Move-smbios-generation-into-arc.patch
+  0014-efi_loader-Expose-efi_install_confi.patch
+  0015-smbios-Allow-compilation-on-64bit-s.patch
+  0016-smbios-Expose-in-efi_loader-as-tabl.patch
+  0017-efi_loader-Fix-efi_install_configur.patch
+  0018-smbios-Provide-serial-number.patch
+
+---
+Mon Aug  1 18:42:36 UTC 2016 - stefan.bru...@rwth-aachen.de
+
+- Use deterministic build date by setting DATE_SOURCE_EPOCH
+
+---
+Fri Jul 29 21:52:37 UTC 2016 - ag...@suse.com
+
+- Add dynamic detection of rpi3 uart (bsc#989511)
+- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed
+* Patches added:
+  0010-serial-bcm283x_mu-Detect-disabled-s.patch
+
+---
+Sat Jul 16 18:49:35 UTC 2016 - afaer...@suse.de
+
+- Updated to v2016.07
+* Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed
+* Patches dropped (upstreamed):
+  0004-video-ipu-Fix-build-with-hard-float.patch
+  0005-efi_loader-Clean-up-system-table-on.patch
+  0006-efi_loader-gop-Don-t-expose-fb-addr.patch
+  0009-arm-Introduce-setjmp-longjmp.patch
+  0010-efi_loader-Add-exit-support.patch
+  0011-efi_loader-Add-DM_VIDEO-support.patch
+  0015-arm-Fix-setjmp.patch
+* Patches rebased:
+  0007-efi_loader-Allow-boards-to-implemen.patch -> 
0004-efi_loader-Allow-boards-to-implemen.patch
+  0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch -> 
0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch
+  0012-efi_loader-gop-Expose-fb-when-32bpp.patch -> 

commit armadillo for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2016-09-30 15:33:51

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


Package is "armadillo"

Changes:

--- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes  2016-08-31 
14:31:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2016-09-30 
15:33:52.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 28 11:44:58 UTC 2016 - badshah...@gmail.com
+
+- Update to version 7.400.3:
+  + Undocumented bug fixes.
+
+---

Old:

  armadillo-7.400.2.tar.xz

New:

  armadillo-7.400.3.tar.xz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.mPvQbT/_old  2016-09-30 15:33:54.0 +0200
+++ /var/tmp/diff_new_pack.mPvQbT/_new  2016-09-30 15:33:54.0 +0200
@@ -19,7 +19,7 @@
 %define soname libarmadillo7
 
 Name:   armadillo
-Version:7.400.2
+Version:7.400.3
 Release:0
 Summary:Fast C++ matrix library with interfaces to LAPACK and ATLAS
 License:MPL-2.0

++ armadillo-7.400.2.tar.xz -> armadillo-7.400.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-7.400.2/docs.html 
new/armadillo-7.400.3/docs.html
--- old/armadillo-7.400.2/docs.html 2016-06-16 18:16:03.0 +0200
+++ new/armadillo-7.400.3/docs.html 2016-06-16 18:16:04.0 +0200
@@ -185,21 +185,23 @@
 
 
 
-Please cite the following tech report if you use Armadillo in your research 
and/or software.
+Please cite the following article if you use Armadillo in your research and/or 
software.
 Citations are useful for the continued development and maintenance of the 
library.
 
 
 
 Conrad Sanderson and Ryan Curtin.
-Armadillo: a template-based C++ library 
for linear algebra.
-Journal of Open Source Software, Vol.1, pp.26, 2016.
+Armadillo: a template-based C++ 
library for linear algebra.
+Journal of Open Source Software, Vol.1, pp.26, 2016.
 
 
+
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/armadillo-7.400.2/include/armadillo_bits/arma_version.hpp 
new/armadillo-7.400.3/include/armadillo_bits/arma_version.hpp
--- old/armadillo-7.400.2/include/armadillo_bits/arma_version.hpp   
2016-06-16 18:16:03.0 +0200
+++ new/armadillo-7.400.3/include/armadillo_bits/arma_version.hpp   
2016-06-16 18:16:04.0 +0200
@@ -15,7 +15,7 @@
 
 #define ARMA_VERSION_MAJOR 7
 #define ARMA_VERSION_MINOR 400
-#define ARMA_VERSION_PATCH 2
+#define ARMA_VERSION_PATCH 3
 #define ARMA_VERSION_NAME  "Feral Winter Deluxe"
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/armadillo-7.400.2/include/armadillo_bits/diskio_meat.hpp 
new/armadillo-7.400.3/include/armadillo_bits/diskio_meat.hpp
--- old/armadillo-7.400.2/include/armadillo_bits/diskio_meat.hpp
2016-06-16 18:16:03.0 +0200
+++ new/armadillo-7.400.3/include/armadillo_bits/diskio_meat.hpp
2016-06-16 18:16:04.0 +0200
@@ -652,22 +652,17 @@
 bool
 diskio::safe_rename(const std::string& old_name, const std::string& new_name)
   {
-  std::fstream f(new_name.c_str(), std::fstream::out | std::fstream::app);
+  const char* new_name_c_str = new_name.c_str();
+  
+  std::fstream f(new_name_c_str, std::fstream::out | std::fstream::app);
   f.put(' ');
   
-  bool save_okay = f.good();
-  f.close();
+  if(f.good()) { f.close(); } else { return false; }
   
-  if(save_okay == true)
-{
-std::remove(new_name.c_str());
-
-const int mv_result = std::rename(old_name.c_str(), new_name.c_str());
-
-save_okay = (mv_result == 0);
-}
+  if(std::remove(  new_name_c_str) != 0)  { return false; }
+  if(std::rename(old_name.c_str(), new_name_c_str) != 0)  { return false; }
   
-  return save_okay;
+  return true;
   }
 
 
@@ -1894,7 +1889,7 @@
 f >> f_maxval;
 f.get();
 
-if( (f_maxval > 0) || (f_maxval <= 65535) )
+if( (f_maxval > 0) && (f_maxval <= 65535) )
   {
   x.set_size(f_n_rows,f_n_cols);
   
@@ -1945,7 +1940,7 @@
 else
   {
   load_okay = false;
-  err_msg = "currently no code available to handle loading ";
+  err_msg = "functionality unimplemented to handle loading ";
   }
 
 if(f.good() == false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-7.400.2/mex_interface/armaMex.hpp 
new/armadillo-7.400.3/mex_interface/armaMex.hpp
--- 

commit python-requests-mock for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-requests-mock for 
openSUSE:Factory checked in at 2016-09-30 15:33:48

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


Package is "python-requests-mock"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-requests-mock/python-requests-mock.changes
2016-07-14 09:46:29.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-requests-mock.new/python-requests-mock.changes
   2016-09-30 15:33:49.0 +0200
@@ -1,0 +2,11 @@
+Wed Sep 28 09:00:13 UTC 2016 - tbecht...@suse.com
+
+- update to 1.1.0:
+  * Add a called_once property to adapter
+  * Enable case sensitive matching
+  * Provide fixture extras for pip
+  * Allow doing real_http per mock via the mocker
+  * Return b'' when reading closed response
+  * Fixture documentation error
+
+---

Old:

  requests-mock-1.0.0.tar.gz

New:

  requests-mock-1.1.0.tar.gz



Other differences:
--
++ python-requests-mock.spec ++
--- /var/tmp/diff_new_pack.8ipqaQ/_old  2016-09-30 15:33:52.0 +0200
+++ /var/tmp/diff_new_pack.8ipqaQ/_new  2016-09-30 15:33:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-requests-mock
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:Mock out responses from the requests package
 License:Apache-2.0

++ requests-mock-1.0.0.tar.gz -> requests-mock-1.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/requests-mock-1.0.0/AUTHORS 
new/requests-mock-1.1.0/AUTHORS
--- old/requests-mock-1.0.0/AUTHORS 2016-05-09 07:14:35.0 +0200
+++ new/requests-mock-1.1.0/AUTHORS 2016-09-14 09:07:03.0 +0200
@@ -4,5 +4,7 @@
 Janonymous 
 Jeremy Stanley 
 Louis Taylor 
+Manuel Kaufmann 
 Monty Taylor 
 Sebastian Kalinowski 
+reedip 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/requests-mock-1.0.0/ChangeLog 
new/requests-mock-1.1.0/ChangeLog
--- old/requests-mock-1.0.0/ChangeLog   2016-05-09 07:14:35.0 +0200
+++ new/requests-mock-1.1.0/ChangeLog   2016-09-14 09:07:03.0 +0200
@@ -1,6 +1,16 @@
 CHANGES
 ===
 
+1.1.0
+-
+
+* Add a called_once property to adapter
+* Enable case sensitive matching
+* Provide fixture extras for pip
+* Allow doing real_http per mock via the mocker
+* Return b'' when reading closed response
+* Fixture documentation error
+
 1.0.0
 -
 
@@ -9,6 +19,7 @@
 * Doc fixups
 * Expose cert and proxies as attributes of the last request
 * Add timeout and allow_retries to RequestProxy
+* Add trove support for py34 and remove py33
 * Fix py34 DB issue and remove py33/py26
 * Remove pypip.in badge from readme
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/requests-mock-1.0.0/PKG-INFO 
new/requests-mock-1.1.0/PKG-INFO
--- old/requests-mock-1.0.0/PKG-INFO2016-05-09 07:14:35.0 +0200
+++ new/requests-mock-1.1.0/PKG-INFO2016-09-14 09:07:03.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: requests-mock
-Version: 1.0.0
+Version: 1.1.0
 Summary: Mock out responses from the requests package
 Home-page: https://requests-mock.readthedocs.org/
 Author: Jamie Lennox
@@ -105,5 +105,5 @@
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 2.6
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
 Classifier: Topic :: Software Development :: Testing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/requests-mock-1.0.0/docs/fixture.rst 
new/requests-mock-1.1.0/docs/fixture.rst
--- old/requests-mock-1.0.0/docs/fixture.rst2016-05-09 07:12:34.0 
+0200
+++ new/requests-mock-1.1.0/docs/fixture.rst2016-09-14 09:05:03.0 
+0200
@@ -4,8 +4,12 @@
 
 `Fixtures`_ provide a way to create reusable state and helper methods in test 
cases.
 
-To use the *requests-mock* fixture your tests need to have a dependency on the 
`fixtures`_ library and the `mock`_ library.
-These are not provided by *requests-mock*.
+To use the *requests-mock* fixture your tests need to have a dependency on the 
`fixtures`_ library.
+This can be optionally installed when you install *requests-mock* by doing:
+
+.. code:: shell
+
+pip install 

commit duperemove for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package duperemove for openSUSE:Factory 
checked in at 2016-09-30 15:33:42

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


Package is "duperemove"

Changes:

--- /work/SRC/openSUSE:Factory/duperemove/duperemove.changes2016-09-17 
14:41:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.duperemove.new/duperemove.changes   
2016-09-30 15:33:46.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep 27 20:41:37 UTC 2016 - mfas...@suse.com
+
+- Update to duperemove v0.11.beta4
+  - Many man page and FAQ updates
+  - Much lower memory usage (changed to use block-dedupe by default)
+  - removed unused sha256 module
+
+---

Old:

  duperemove-0.11.beta3.tar.gz

New:

  duperemove-0.11.beta4.tar.gz



Other differences:
--
++ duperemove.spec ++
--- /var/tmp/diff_new_pack.vjmTGT/_old  2016-09-30 15:33:47.0 +0200
+++ /var/tmp/diff_new_pack.vjmTGT/_new  2016-09-30 15:33:47.0 +0200
@@ -18,7 +18,7 @@
 
 %define samename btrfs-extent-same
 Name:   duperemove
-Version:0.11.beta3
+Version:0.11.beta4
 Release:0
 Summary:Software to find duplicate extents in files and remove them
 License:GPL-2.0
@@ -63,7 +63,7 @@
 
 %files
 %defattr(-, root, root)
-%doc LICENSE README.md FAQ.md
+%doc LICENSE README.md
 %{_sbindir}/duperemove
 %{_sbindir}/hashstats
 %{_sbindir}/show-shared-extents

++ duperemove-0.11.beta3.tar.gz -> duperemove-0.11.beta4.tar.gz ++
 4534 lines of diff (skipped)




commit python-Pylons for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-Pylons for openSUSE:Factory 
checked in at 2016-09-30 15:33:54

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


Package is "python-Pylons"

Changes:

--- /work/SRC/openSUSE:Factory/python-Pylons/python-Pylons.changes  
2014-11-13 09:18:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Pylons.new/python-Pylons.changes 
2016-09-30 15:33:56.0 +0200
@@ -1,0 +2,11 @@
+Wed Sep 28 15:01:40 UTC 2016 - mar...@gmx.de
+
+- Update to 1.0.2:
+  * In the event of a NilAccept for the language, request.languages() would
+throw an AttributeError exception. Fixes #24.
+  * Encode Location HTTP header in redirect responses in UTF-8. Per
+RFC 3987. Refers to #15.
+  * Remove "Post Traceback" as it was a possible XSS vector with prior versions
+of WebError, and the PylonsHQ site is no longer in existence to support 
them.
+
+---

Old:

  Pylons-1.0.1.tar.gz

New:

  Pylons-1.0.2.tar.gz



Other differences:
--
++ python-Pylons.spec ++
--- /var/tmp/diff_new_pack.WHpxlW/_old  2016-09-30 15:33:58.0 +0200
+++ /var/tmp/diff_new_pack.WHpxlW/_new  2016-09-30 15:33:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Pylons
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-Pylons
-Version:1.0.1
+Version:1.0.2
 Release:0
 Summary:Pylons Web Framework
 License:BSD-3-Clause
@@ -89,16 +89,16 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 rm -rf %{buildroot}%{python_sitelib}/test_files # Remove junk
-rm %{buildroot}%{python_sitelib}/pylons/docs/en/.gitignore
 %fdupes %{buildroot}%{_prefix}
 
 # Disable the tests; brocken
-#%check
+#%%check
 #nosetests -e test_network_failed_validation_non_ascii
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGELOG LICENSE README.txt UPGRADING
-%{python_sitelib}/*
+%doc CHANGELOG LICENSE README.rst UPGRADING
+%{python_sitelib}/pylons
+%{python_sitelib}/Pylons-%{version}-py%{py_ver}.egg-info
 
 %changelog

++ Pylons-1.0.1.tar.gz -> Pylons-1.0.2.tar.gz ++
 20628 lines of diff (skipped)




commit ntl for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package ntl for openSUSE:Factory checked in 
at 2016-09-30 15:33:28

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


Package is "ntl"

Changes:

--- /work/SRC/openSUSE:Factory/ntl/ntl.changes  2016-08-05 18:16:21.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ntl.new/ntl.changes 2016-09-30 
15:33:34.0 +0200
@@ -1,0 +2,11 @@
+Wed Sep 21 09:18:05 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 9.11.0
+* Improved the effectiveness of the new, faster ZZ to
+  zz_p conversion
+* Added new routines VectorConv for faster bulk conversion from ZZ
+  and long to zz_p
+* Added new routines VectorRandomBnd (see ZZ.txt) and VectorRandom
+  for faster bulk random number generation.
+
+---

Old:

  ntl-9.10.0.tar.gz

New:

  ntl-9.11.0.tar.gz



Other differences:
--
++ ntl.spec ++
--- /var/tmp/diff_new_pack.M4mJ2f/_old  2016-09-30 15:33:36.0 +0200
+++ /var/tmp/diff_new_pack.M4mJ2f/_new  2016-09-30 15:33:36.0 +0200
@@ -17,8 +17,8 @@
 
 
 Name:   ntl
-%define lname  libntl28
-Version:9.10.0
+%define lname  libntl29
+Version:9.11.0
 Release:0
 Summary:Library for Number Theory
 License:GPL-2.0+

++ ntl-9.10.0.tar.gz -> ntl-9.11.0.tar.gz ++
 1830 lines of diff (skipped)

++ ntl-automake.diff ++
--- /var/tmp/diff_new_pack.M4mJ2f/_old  2016-09-30 15:33:37.0 +0200
+++ /var/tmp/diff_new_pack.M4mJ2f/_new  2016-09-30 15:33:37.0 +0200
@@ -271,7 +271,7 @@
 +lib_LTLIBRARIES = libntl.la
 +
 +# cf. "VERSION_INFO" file
-+libntl_la_LDFLAGS = -version-info 28:0:0 -no-undefined
++libntl_la_LDFLAGS = -version-info 29:0:0 -no-undefined
 +libntl_la_LIBADD  = -lm -lpthread
 +if WITH_GMP
 +libntl_la_LIBADD += -lgmp




commit python-wsgi_intercept for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-wsgi_intercept for 
openSUSE:Factory checked in at 2016-09-30 15:33:45

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


Package is "python-wsgi_intercept"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-wsgi_intercept/python-wsgi_intercept.changes  
2016-09-28 15:04:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-wsgi_intercept.new/python-wsgi_intercept.changes
 2016-09-30 15:33:47.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 28 04:53:44 UTC 2016 - tbecht...@suse.com
+
+- Add missing BuildRequires for pyrthon-six
+
+---



Other differences:
--
++ python-wsgi_intercept.spec ++
--- /var/tmp/diff_new_pack.qID4Ps/_old  2016-09-30 15:33:49.0 +0200
+++ /var/tmp/diff_new_pack.qID4Ps/_new  2016-09-30 15:33:49.0 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  python-httplib2
 BuildRequires:  python-pytest >= 2.4
 BuildRequires:  python-requests >= 2.0.1
+BuildRequires:  python-six
 BuildRequires:  python-urllib3 >= 1.11.0
 Requires:   python-six
 Recommends: python-requests >= 2.0.1




commit argus-client for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package argus-client for openSUSE:Factory 
checked in at 2016-09-30 15:33:38

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


Package is "argus-client"

Changes:

--- /work/SRC/openSUSE:Factory/argus-client/argus-client.changes
2014-12-21 12:04:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.argus-client.new/argus-client.changes   
2016-09-30 15:33:42.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 28 09:17:22 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 3.0.8.2
+  * Please read the ChangeLog
+
+---

Old:

  argus-clients-3.0.8.tar.gz

New:

  argus-clients-3.0.8.2.tar.gz



Other differences:
--
++ argus-client.spec ++
--- /var/tmp/diff_new_pack.5cUJT9/_old  2016-09-30 15:33:45.0 +0200
+++ /var/tmp/diff_new_pack.5cUJT9/_new  2016-09-30 15:33:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package argus-client
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,61 +16,61 @@
 #
 
 
-Name:   argus-client
-BuildRequires:  bison
-BuildRequires:  flex
-BuildRequires:  libpcap
-BuildRequires:  ncurses-devel
-BuildRequires:  tcpd-devel
-BuildRequires:  tcsh
 %define name2 argus-clients
+Name:   argus-client
+Version:3.0.8.2
+Release:0
 Summary:Client for Network Monitoring Tool
 License:GPL-2.0+
 Group:  Productivity/Networking/Diagnostic
-Version:3.0.8
-Release:0
 Url:http://www.qosient.com/argus/
-
 Source: http://qosient.com/argus/src/%{name2}-%{version}.tar.gz
 Patch1: %{name2}-3.0.6-overflow.patch
 Patch2: %{name2}-3.0.8-fclose.patch
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  libpcap
+BuildRequires:  ncurses-devel
+BuildRequires:  tcpd-devel
+BuildRequires:  tcsh
+Requires:   argus
+Provides:   argus:%{_sbindir}/argus
 # PATCH-FIX-UPSTREAM fix mem leak (bnc#537485)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   argus
-Provides:   argus:/usr/sbin/argus
 
 %description
 Client for Argus network monitoring tool.
 
 %prep
-%setup -n %{name2}-%{version}
+%setup -q -n %{name2}-%{version}
 %patch1
 %patch2
 
 %build
 #autoreconf -fi
-export CFLAGS="$RPM_OPT_FLAGS -Wall"
+export CFLAGS="%{optflags} -Wall"
 %configure
 make %{?_smp_mflags}
 
 %install
-install -d -m 755 $RPM_BUILD_ROOT/{etc,usr/{bin,share/man}}
-install -m 700 bin/arg* $RPM_BUILD_ROOT/usr/bin/
-rm -f $RPM_BUILD_ROOT/usr/bin/argus_linux
-install -m 755 bin/ra* $RPM_BUILD_ROOT/usr/bin/
+install -d -m 755 %{buildroot}/{etc,usr/{bin,share/man}}
+install -m 700 bin/arg* %{buildroot}%{_bindir}/
+rm -f %{buildroot}%{_bindir}/argus_linux
+install -m 755 bin/ra* %{buildroot}%{_bindir}/
 ( cd man
-  cp -a man* $RPM_BUILD_ROOT%{_mandir} 
-  chmod a-x $RPM_BUILD_ROOT%{_mandir}/*/* )
-rm -f $RPM_BUILD_ROOT%{_mandir}/man1/tcpdump.1*
-install -m 600 support/Config/rarc $RPM_BUILD_ROOT/etc/ra.conf
+  cp -a man* %{buildroot}%{_mandir}
+  chmod a-x %{buildroot}%{_mandir}/*/* )
+rm -f %{buildroot}%{_mandir}/man1/tcpdump.1*
+install -m 600 support/Config/rarc %{buildroot}%{_sysconfdir}/ra.conf
 find support -type f -exec chmod 0644 {} \;
-rm -f $RPM_BUILD_ROOT/usr/bin/argus*
+rm -f %{buildroot}%{_bindir}/argus*
+rm -rf %{buildroot}%{_mandir}/man*/._*
 
 %files
 %defattr(-,root,root)
 %doc COPYING MANIFEST support
 %{_mandir}/man*/*
-%config /etc/ra.conf
-/usr/bin/ra*
+%config %{_sysconfdir}/ra.conf
+%{_bindir}/ra*
 
 %changelog

++ argus-clients-3.0.8.tar.gz -> argus-clients-3.0.8.2.tar.gz ++
 41036 lines of diff (skipped)




commit tilda for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2016-09-30 15:33:36

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


Package is "tilda"

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2015-12-23 
08:50:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new/tilda.changes 2016-09-30 
15:33:40.0 +0200
@@ -1,0 +2,27 @@
+Sun Sep 25 13:01:54 UTC 2016 - malcolmle...@opensuse.org
+
+- Update to version 1.3.3:
+  + Bumped GTK+ version to 3.10, we are already implicitly
+depending on it.
+  + Fixed the close-tab regression introduced in the last patch.
+  + Fixed CTRL+SHIFT+W closing two tabs.
+- Changes from version 1.3.2:
+  + Updated Hacking.md's instructions to reflect VTE 2.91 api bump.
+  + Added a widget name to the search widget for easier styling.
+  + Several code cleanups and a few deprecation warnings where
+removed.
+  + Added default styling to the tilda search bar.
+  + Cleanup code for CSS loading. It now reports an error if
+something went wrong.
+  + Fixed a problem that caused tilda to close two tabs when the
+close tab hotkey was used.
+  + The preference dialog is now also shown above the tilda window
+if the tilda window is in fullscreen mode.
+- Changes from version 1.3.1:
+  + Transparency regression for GNOME shell fixed.
+  + Images in the appdata file and Readme.md have been updated.
+  + Fixed an issue that would the background transparancy to be
+reset on a color palette change.
+- NOTE: No wayland support (yet?).
+
+---

Old:

  tilda-1.3.0.tar.gz

New:

  tilda-1.3.3.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.CL6zBL/_old  2016-09-30 15:33:42.0 +0200
+++ /var/tmp/diff_new_pack.CL6zBL/_new  2016-09-30 15:33:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tilda
-Version:1.3.0
+Version:1.3.3
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0+

++ tilda-1.3.0.tar.gz -> tilda-1.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tilda-tilda-1.3.0/ChangeLog 
new/tilda-tilda-1.3.3/ChangeLog
--- old/tilda-tilda-1.3.0/ChangeLog 2015-11-17 21:19:50.0 +0100
+++ new/tilda-tilda-1.3.3/ChangeLog 2016-04-18 14:09:55.0 +0200
@@ -1,3 +1,27 @@
+version 1.3.3 (2016-04-18):
+   * Bumped GTK+ version to 3.10, we are already implicitly depending on 
it.
+   * Fixed the close-tab regression introduced in the last patch.
+   * Fixed CTRL+SHIFT+W closing two tabs.
+
+version 1.3.2 (2016-02-14):
+   * Updated Hacking.md's instructions to reflect VTE 2.91 api bump 
(Thanks to HiTuX)
+   * Added a widget name to the search widget for easier styling 
(Sebastian Geiger)
+   * Several code cleanups and a few deprecation warnings where removed 
(Sebastian Geiger)
+   * Added default styling to the tilda search bar (Sebastian Geiger)
+   * Cleanup code for CSS loading. It now reports an error if something 
went wrong (Sebastian Geiger)
+   * Fixed a problem that caused tilda to close two tabs when the close 
tab hotkey
+ was used (Sebastian Geiger)
+   * The preference dialog is now also shown above the tilda window if the 
tilda
+ window is in fullscreen mode (Alexander Maznev)
+
+version 1.3.1 (2015-12-16):
+   * Despite the claim that the transparency was fixed for GNOME Shell
+ there was a regression that broke it again. With this version
+ it should finally be fixed (again).
+   * Images in the appdata file and Readme.md have been updated.
+   * Fixed an issue that would the background transparancy to be
+ reset on a color palette change (Sergey Zolotarev).
+
 version 1.3.0 (2015-11-17):
* Fixed an issue with transparency in GNOME Shell (Ingmar Olsson)
* Fixed wrong move-tab behaviour (Andrew Lin)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tilda-tilda-1.3.0/HACKING.md 
new/tilda-tilda-1.3.3/HACKING.md
--- old/tilda-tilda-1.3.0/HACKING.md2015-11-17 21:19:50.0 +0100
+++ new/tilda-tilda-1.3.3/HACKING.md2016-04-18 14:09:55.0 +0200
@@ -4,13 +4,13 @@
 
  * Glib >= 2.30 - http://developer.gnome.org/glib/2.30/
  * Gtk+3 >= 3.0 - http://developer.gnome.org/gtk3/3.0/
- * VTE >= 2.90 - http://developer.gnome.org/vte/0.30/
+ * VTE >= 2.91 - http://developer.gnome.org/vte/0.30/
  * libConfuse - http://www.nongnu.org/confuse/
  * libx11-dev - 

commit lynis for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package lynis for openSUSE:Factory checked 
in at 2016-09-30 15:33:32

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


Package is "lynis"

Changes:

--- /work/SRC/openSUSE:Factory/lynis/lynis.changes  2016-09-24 
15:29:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.lynis.new/lynis.changes 2016-09-30 
15:33:37.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep 28 11:45:44 UTC 2016 - astie...@suse.com
+
+- lynis 2.3.4 with various improvements, including:
+  * Several tests have extended log details
+  * Detection of nftables improved
+  * Replaced cut, sed, tr and others commands with binary variable
+(for forensics and future intrusion checking capabilities)
+  * OS detection improved
+
+---

Old:

  lynis-2.3.3.tar.gz
  lynis-2.3.3.tar.gz.asc

New:

  lynis-2.3.4.tar.gz
  lynis-2.3.4.tar.gz.asc



Other differences:
--
++ lynis.spec ++
--- /var/tmp/diff_new_pack.y6aCqF/_old  2016-09-30 15:33:39.0 +0200
+++ /var/tmp/diff_new_pack.y6aCqF/_new  2016-09-30 15:33:39.0 +0200
@@ -24,7 +24,7 @@
 %define _dbdir%{_datadir}/lynis/db
 %define _bindir   %{_prefix}/bin
 Name:   lynis
-Version:2.3.3
+Version:2.3.4
 Release:0
 Summary:Security and System auditing tool
 License:GPL-3.0

++ lynis-2.3.3.tar.gz -> lynis-2.3.4.tar.gz ++
 8538 lines of diff (skipped)


++ lynis_1.3.1_include_consts.diff ++
--- /var/tmp/diff_new_pack.y6aCqF/_old  2016-09-30 15:33:39.0 +0200
+++ /var/tmp/diff_new_pack.y6aCqF/_new  2016-09-30 15:33:39.0 +0200
@@ -1,10 +1,10 @@
 Index: include/consts
 ===
 include/consts.orig2016-08-23 02:00:00.0 +0200
-+++ include/consts 2016-09-15 15:04:08.947048290 +0200
-@@ -87,6 +87,7 @@ unset LANG
- ECHOCMD=""
+--- include/consts.orig2016-09-27 02:00:00.0 +0200
 include/consts 2016-09-28 13:45:00.011142735 +0200
+@@ -95,6 +95,7 @@ unset LANG
  ERROR_ON_WARNINGS=0
+ FILEBINARY=""
  FILEVALUE=""
 +FILE_NUM_TOTAL=0
  FIND=""

++ lynis_1.3.6_include-osdetection.diff ++
--- /var/tmp/diff_new_pack.y6aCqF/_old  2016-09-30 15:33:39.0 +0200
+++ /var/tmp/diff_new_pack.y6aCqF/_new  2016-09-30 15:33:39.0 +0200
@@ -1,13 +1,13 @@
 Index: include/osdetection
 ===
 include/osdetection.orig   2016-09-15 15:04:30.519264684 +0200
-+++ include/osdetection2016-09-15 15:05:13.115691924 +0200
-@@ -316,7 +316,7 @@
-   OS_NAME="${LINUX_VERSION}"
-   fi
-   # If Linux version (full name) is unknown, use uname value
--  if [ "${OS_FULLNAME}" = "" ]; then OS_FULLNAME=$(uname -s -r); fi
-+  #if [ "${OS_FULLNAME}" = "" ]; then OS_FULLNAME=$(uname -s -r); fi
-   SYSCTL_READKEY="sysctl -n"
- 
+--- include/osdetection.orig   2016-09-28 13:47:58.244742090 +0200
 include/osdetection2016-09-28 13:48:40.089118005 +0200
+@@ -321,7 +321,7 @@
+ OS_NAME="${LINUX_VERSION}"
+ fi
+ # If Linux version (full name) is unknown, use uname value
+-if [ "${OS_FULLNAME}" = "" ]; then OS_FULLNAME=$(uname -s -r); fi
++#if [ "${OS_FULLNAME}" = "" ]; then OS_FULLNAME=$(uname -s -r); fi
+ SYSCTL_READKEY="sysctl -n"
  ;;
+ 




commit ghc for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package ghc for openSUSE:Factory checked in 
at 2016-09-30 15:33:03

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


Package is "ghc"

Changes:

--- /work/SRC/openSUSE:Factory/ghc/ghc.changes  2016-08-22 10:07:18.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ghc.new/ghc.changes 2016-09-30 
15:33:10.0 +0200
@@ -1,0 +2,11 @@
+Tue Sep 27 11:53:54 UTC 2016 - peter.tromm...@ohm-hochschule.de
+
+- add D2495.patch
+* missing memory barrier on PowerPC, ARM
+- add 0001-StgCmmPrim-Add-missing-write-barrier.patch
+* another issing memory barrier on PowerPC, ARM
+- add 0001-PPC-CodeGen-fix-lwa-instruction-generation.patch
+* fix bug in code generator
+* fixes build of ghc-zeromq4-haskell on powerpc64[le] 
+
+---

New:

  0001-PPC-CodeGen-fix-lwa-instruction-generation.patch
  0001-StgCmmPrim-Add-missing-write-barrier.patch
  D2495.patch



Other differences:
--
++ ghc.spec ++
--- /var/tmp/diff_new_pack.PPPE4X/_old  2016-09-30 15:33:14.0 +0200
+++ /var/tmp/diff_new_pack.PPPE4X/_new  2016-09-30 15:33:14.0 +0200
@@ -88,6 +88,12 @@
 Patch25:D2214.patch
 # PATCH-FIX-UPSTREAM D2225.patch peter.tromm...@ohm-hochschule.de -- Fix SMP 
imlementation in Haskell runtime on PPC[64[le]]. Backport of upstreamed patch. 
See Haskell trac #12070 and https://phabricator.haskell.org/D2225 for details.
 Patch26:D2225.patch
+# PATCH-FIX-UPSTREAM D2495.patch peter.tromm...@ohm-hochschule.de -- Add 
missing memory barrier on mutable variables. See 
https://ghc.haskell.org/trac/ghc/ticket/12469 for details. Backport of upstream 
fix for ghc 8.0.2.
+Patch27:D2495.patch
+# PATCH-FIX_UPSTREAM 0001-StgCmmPrim-Add-missing-write-barrier.patch 
peter.tromm...@ohm-hochschule.de -- Add missing write barrier on mutable arrays.
+Patch28:0001-StgCmmPrim-Add-missing-write-barrier.patch
+# PATCH-FIX-UPSTREAM 0001-PPC-CodeGen-fix-lwa-instruction-generation.patch 
peter.tromm...@ohm-hochschule.de -- Fix PPC codegen: Fixes ghc-zeromq4-haskell 
build on 64-bit PowerPCs
+Patch30:0001-PPC-CodeGen-fix-lwa-instruction-generation.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -188,6 +194,9 @@
 %patch24 -p1
 %patch25 -p1
 %patch26 -p1
+%patch27 -p1
+%patch28 -p1
+%patch30 -p1
 
 %build
 # Patch 19 modifies build system

++ 0001-PPC-CodeGen-fix-lwa-instruction-generation.patch ++
>From ff48b3e3fd90e0328921f5e86460aba3ff217002 Mon Sep 17 00:00:00 2001
From: Peter Trommler 
Date: Mon, 25 Jan 2016 20:32:44 +0100
Subject: [PATCH] PPC/CodeGen: fix lwa instruction generation

---
 compiler/nativeGen/PPC/CodeGen.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: ghc-7.10.3/compiler/nativeGen/PPC/CodeGen.hs
===
--- ghc-7.10.3.orig/compiler/nativeGen/PPC/CodeGen.hs
+++ ghc-7.10.3/compiler/nativeGen/PPC/CodeGen.hs
@@ -464,7 +464,7 @@ getRegister' _ (CmmMachOp (MO_UU_Conv W3
 return (Any II64 (\dst -> addr_code `snocOL` LD II32 dst addr))
 
 getRegister' _ (CmmMachOp (MO_SS_Conv W32 W64) [CmmLoad mem _]) = do
-Amode addr addr_code <- getAmode D mem
+Amode addr addr_code <- getAmode DS mem -- lwa is DS-form
 return (Any II64 (\dst -> addr_code `snocOL` LA II32 dst addr))
 
 getRegister' dflags (CmmMachOp mop [x]) -- unary MachOps
++ 0001-StgCmmPrim-Add-missing-write-barrier.patch ++
>From ca2e649101f250e444b4ac7c5204d28f236660e6 Mon Sep 17 00:00:00 2001
From: Peter Trommler 
Date: Fri, 9 Sep 2016 10:55:58 +0200
Subject: [PATCH] StgCmmPrim: Add missing write barrier.

---
 compiler/codeGen/StgCmmPrim.hs | 1 +
 1 file changed, 1 insertion(+)

Index: ghc-7.10.3/compiler/codeGen/StgCmmPrim.hs
===
--- ghc-7.10.3.orig/compiler/codeGen/StgCmmPrim.hs
+++ ghc-7.10.3/compiler/codeGen/StgCmmPrim.hs
@@ -1324,6 +1324,7 @@ doWritePtrArrayOp addr idx val
emit (setInfo addr (CmmLit (CmmLabel mkMAP_DIRTY_infoLabel)))
   -- the write barrier.  We must write a byte into the mark table:
   -- bits8[a + header_size + StgMutArrPtrs_size(a) + x >> N]
+   emitPrimCall [] MO_WriteBarrier []
emit $ mkStore (
  cmmOffsetExpr dflags
   (cmmOffsetExprW dflags (cmmOffsetB dflags addr (arrPtrsHdrSize 
dflags))
++ D2495.patch ++
Index: ghc-8.0.1/compiler/codeGen/StgCmmPrim.hs
===
--- ghc-8.0.1.orig/compiler/codeGen/StgCmmPrim.hs
+++ ghc-8.0.1/compiler/codeGen/StgCmmPrim.hs
@@ -310,8 +310,11 

commit epymc for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package epymc for openSUSE:Factory checked 
in at 2016-09-30 15:33:17

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


Package is "epymc"

Changes:

--- /work/SRC/openSUSE:Factory/epymc/epymc.changes  2015-11-05 
11:35:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.epymc.new/epymc.changes 2016-09-30 
15:33:20.0 +0200
@@ -1,0 +2,74 @@
+Wed Sep 28 08:50:40 UTC 2016 - simonf.l...@suse.com
+
+- %lang_package is now not in description
+
+---
+Sun Sep 18 08:27:09 UTC 2016 - sfl...@suse.de
+
+- Add fix-desktop-file.patch
+
+---
+Sun Sep 18 07:28:11 UTC 2016 - sfl...@suse.de
+
+- 1.2.0 Release
+New features:
+ * New Photo module
+ * New PosterGrid/CoverGrid views
+ * New South Park Studios online video channel
+ * New themoviedb.org online video channel (with movie trailers)
+ * Added a new secret online channel
+ * Virtual keyboard is now also usable with the real keyboard
+ * Virtual keyboard now support multiple layouts
+ * Show the status of the downloads in progress (with ability to
+start/abort)
+ * Thumbnailing ability, using a custom Ethumb slave process
+ * Automatically (and manually) download and update youtube-dl
+ * New Watchdog module (sadly gstreamer1 sometimes hang the mainloop for me)
+ * Cache to file remote images for faster reloading
+ * Support remote urls also in the mediaplayer cover image
+ * Show current folders in the file-manager
+ * Option to hide the mouse cursor when not needed (not move or video
+playing)
+ * Support for subtitles embedded in the video files
+ * New check_po setup command, give translations stats with a nice bar
+
+Improvements:
+ * Initial music library scan is now 10 times faster (measured with the
+library
+   and the config folder on the same slow HDD) see Issue #2 for more info.
+ * Lots of improvements in the Music module and the AudioPlayer itself:
+   playlist is now visible and browsable, player/playlist controls are
+always
+   reachable in the UI, ability to set loop and shuffle.
+ * Better zapiks video schannel
+
+New Translations:
+ * Finnish
+
+Changes:
+ * Dropped python 2 support, you MUST use python 3 from now on
+ * Removed broken traileraddict channel (use the new tmdb instead)
+ * Use elm focus in place of the custom EmcFocusManager
+ * We now use ecore_con.Url for fetching data from the net (instead of
+   ecore.file_download + file read + file delete)
+
+Bug fixed:
+ * Fixed poster hiding (and console errors) for efl >= 1.16
+ * Fixed posters for the vimeo channel
+ * Fixed tmdb language selector in config
+ * Fixed (hopefully) subs decoding
+ * Fixed video download to work again
+ * Fixed a bug that was causing fileman buttons to be clickable also when
+hidden
+ * Removed usage of elm deprecated ObjectItem.data_get() function
+ * Removed edc warning about "fixed: 1 1"
+ * Fixed compatibility with python 3.5 (os.path.exists no more accept
+unicode)
+ * Updated yt scraper to latest web changes
+
+---
+Wed Feb  3 07:40:49 UTC 2016 - sleep_wal...@opensuse.org
+
+- use python3 sitelib
+
+---

Old:

  epymc-1.1.0.1.tar.gz

New:

  fix-desktop-file.patch
  v1.2.0.tar.gz



Other differences:
--
++ epymc.spec ++
--- /var/tmp/diff_new_pack.bafWzu/_old  2016-09-30 15:33:25.0 +0200
+++ /var/tmp/diff_new_pack.bafWzu/_new  2016-09-30 15:33:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package epymc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,52 +17,65 @@
 
 
 Name:   epymc
-Version:1.1.0.1
+Version:1.2.0
 Release:0
 Summary:A Media Center designed to run on a large number of devices
 License:GPL-3.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:https://github.com/DaveMDS/epymc
-Source0:%{name}-%{version}.tar.gz
+Source0:v%{version}.tar.gz
+Patch0: fix-desktop-file.patch
 BuildArch:  noarch
 BuildRequires:  efl-devel
 BuildRequires:  intltool
-BuildRequires:  python-distutils-extra
-BuildRequires:  python-efl
+BuildRequires:  python3-distutils-extra
+BuildRequires:  python3-efl
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 BuildRequires:  fdupes
 

commit enlightenment-theme-openSUSE-oliveleaf for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package 
enlightenment-theme-openSUSE-oliveleaf for openSUSE:Factory checked in at 
2016-09-30 15:33:25

Comparing /work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE-oliveleaf 
(Old)
 and  
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE-oliveleaf.new (New)


Package is "enlightenment-theme-openSUSE-oliveleaf"

Changes:

--- 
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE-oliveleaf/enlightenment-theme-openSUSE-oliveleaf.changes
2016-03-16 10:36:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE-oliveleaf.new/enlightenment-theme-openSUSE-oliveleaf.changes
   2016-09-30 15:33:29.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 28 08:59:54 UTC 2016 - sfl...@suse.de
+
+- Update to new building version 20160922
+
+---

Old:

  enlightenment-theme-openSUSE-oliveleaf-20160314.tar.xz

New:

  enlightenment-theme-openSUSE-oliveleaf-20160922.tar.xz



Other differences:
--
++ enlightenment-theme-openSUSE-oliveleaf.spec ++
--- /var/tmp/diff_new_pack.Da9yXS/_old  2016-09-30 15:33:33.0 +0200
+++ /var/tmp/diff_new_pack.Da9yXS/_new  2016-09-30 15:33:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   enlightenment-theme-openSUSE-oliveleaf
-Version:20160314
+Version:20160922
 Release:0
 Summary:Enlightenment theme from openSUSE 13.1
 License:BSD-2-Clause and LGPL-2.1 and CC-BY-SA-3.0

++ enlightenment-theme-openSUSE-oliveleaf-20160314.tar.xz -> 
enlightenment-theme-openSUSE-oliveleaf-20160922.tar.xz ++
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE-oliveleaf/enlightenment-theme-openSUSE-oliveleaf-20160314.tar.xz
 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE-oliveleaf.new/enlightenment-theme-openSUSE-oliveleaf-20160922.tar.xz
 differ: char 25, line 1




commit python-salt-testing for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-salt-testing for 
openSUSE:Factory checked in at 2016-09-30 15:33:14

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


Package is "python-salt-testing"

Changes:

--- /work/SRC/openSUSE:Factory/python-salt-testing/python-salt-testing.changes  
2015-10-17 16:39:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-salt-testing.new/python-salt-testing.changes 
2016-09-30 15:33:18.0 +0200
@@ -1,0 +2,12 @@
+Tue Sep 27 18:44:23 UTC 2016 - tampak...@opensuse.org
+
+- Update to 2016.9.7
+  - No changelog, see 
https://github.com/saltstack/salt-testing/compare/v2016.7.22...v2016.9.7
+
+---
+Sat Jul 30 08:13:49 UTC 2016 - tampak...@opensuse.org
+
+- Update to 2016.7.22
+  - No changelog, see 
https://github.com/saltstack/salt-testing/compare/v2015.7.10...v2016.7.22
+
+---

Old:

  SaltTesting-2015.7.10.tar.gz

New:

  SaltTesting-2016.9.7.tar.gz



Other differences:
--
++ python-salt-testing.spec ++
--- /var/tmp/diff_new_pack.tU2m9e/_old  2016-09-30 15:33:20.0 +0200
+++ /var/tmp/diff_new_pack.tU2m9e/_new  2016-09-30 15:33:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-salt-testing
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   python-salt-testing
-Version:2015.7.10
+Version:2016.9.7
 Release:0
 Summary:Testing tools needed in the several Salt Stack projects
 License:Apache-2.0
 Group:  Development/Libraries/Python
 Url:http://saltstack.org/
-Source0:
https://pypi.python.org/packages/source/S/SaltTesting/SaltTesting-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/S/SaltTesting/SaltTesting-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  fdupes

++ SaltTesting-2015.7.10.tar.gz -> SaltTesting-2016.9.7.tar.gz ++
 2061 lines of diff (skipped)




commit argus for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package argus for openSUSE:Factory checked 
in at 2016-09-30 15:33:21

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


Package is "argus"

Changes:

--- /work/SRC/openSUSE:Factory/argus/argus.changes  2015-09-08 
17:44:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.argus.new/argus.changes 2016-09-30 
15:33:25.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep 28 09:09:08 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 3.0.8.2
+  * Upstream doesn't publish a short changelog; please read the
+ChangeLog file
+
+---

Old:

  argus-3.0.8.1.tar.gz

New:

  argus-3.0.8.2.tar.gz



Other differences:
--
++ argus.spec ++
--- /var/tmp/diff_new_pack.BXN9o7/_old  2016-09-30 15:33:27.0 +0200
+++ /var/tmp/diff_new_pack.BXN9o7/_new  2016-09-30 15:33:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package argus
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,67 +17,67 @@
 
 
 Name:   argus
-BuildRequires:  bison
-BuildRequires:  flex
-BuildRequires:  libpcap-devel
-BuildRequires:  tcpd-devel
-BuildRequires:  tcsh
+Version:3.0.8.2
+Release:0
 Summary:Network Monitoring Tool
 License:GPL-2.0 and LGPL-2.1 and BSD-3-Clause and MIT
 Group:  Productivity/Networking/Diagnostic
-Version:3.0.8.1
-Release:0
 Url:http://www.qosient.com/argus/
 Source: http://qosient.com/argus/src/%{name}-%{version}.tar.gz
 Source3:README.SUSE
 Source4:argus_linux.8.gz
 Source5:argus.service
 Patch1: %{name}-3.0.6.1-libpcap.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  libpcap-devel
 BuildRequires:  systemd-rpm-macros
+BuildRequires:  tcpd-devel
+BuildRequires:  tcsh
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %package server
 Summary:Daemon for Network Monitoring Tool
 Group:  Productivity/Networking/Diagnostic
 Requires:   argus
+Provides:   argus:%{_sbindir}/argus
 %{?systemd_requires}
-Provides:   argus:/usr/sbin/argus
 
 %description
 Argus is a network monitoring tool.
 
-Documentation can be found in /usr/share/doc/packages/argus.
+Documentation can be found in %{_docdir}/argus.
 
 %description server
 Daemon for Argus network monitoring tool.
 
 %prep
-%setup -n argus-%{version}
+%setup -q -n argus-%{version}
 %patch1 -p1
-cp %{S:3} .
-cp %{S:4} man/man8/
+cp %{SOURCE3} .
+cp %{SOURCE4} man/man8/
 
 %build
 #autoreconf -fiv
-export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
+export CFLAGS="%{optflags} -fno-strict-aliasing"
 %configure --with-pic
 make %{?_smp_mflags}
 
 %install
-install -d -m 755 $RPM_BUILD_ROOT{/etc,/usr/{sbin,bin,share/man},%{_docdir}}
-install -m 700 bin/argus $RPM_BUILD_ROOT/usr/sbin/argus
-install -m 700 bin/arg* $RPM_BUILD_ROOT/usr/bin/
+install -d -m 755 
$RPM_BUILD_ROOT{/etc,%{_prefix}/{sbin,bin,share/man},%{_docdir}}
+install -m 700 bin/argus %{buildroot}%{_sbindir}/argus
+install -m 700 bin/arg* %{buildroot}%{_bindir}/
 install -D -m 0644 %{SOURCE5} %{buildroot}/%{_unitdir}/argus.service
 # alread in sbin
-rm -f $RPM_BUILD_ROOT/usr/bin/argus
-rm -f $RPM_BUILD_ROOT/usr/bin/argus_linux
+rm -f %{buildroot}%{_bindir}/argus
+rm -f %{buildroot}%{_bindir}/argus_linux
 ( cd man
-  cp -a man* $RPM_BUILD_ROOT%{_mandir} 
-  chmod a-x $RPM_BUILD_ROOT%{_mandir}/*/* )
-rm -f $RPM_BUILD_ROOT%{_mandir}/man1/tcpdump.1*
+  cp -a man* %{buildroot}%{_mandir}
+  chmod a-x %{buildroot}%{_mandir}/*/* )
+rm -f %{buildroot}%{_mandir}/man1/tcpdump.1*
 rm -rf `find -type f -name ._*`
-install -m 600 support/Config/argus.conf $RPM_BUILD_ROOT/etc/argus.conf
-install -m 755 support/Archive/argusarchive $RPM_BUILD_ROOT/usr/bin/
+install -m 600 support/Config/argus.conf %{buildroot}%{_sysconfdir}/argus.conf
+install -m 755 support/Archive/argusarchive %{buildroot}%{_bindir}/
 find support -type f -exec chmod 0644 {} \;
 #chmod a+x support/{Archive/argusarchive,Startup/argus,System/magic}
 chmod a+x support/{Archive/argusarchive,Startup/argus}
@@ -101,8 +101,8 @@
 %files server
 %defattr(-,root,root)
 %doc doc COPYING MANIFEST README.* support
-%doc %{_mandir}/man*/*
-%config /etc/argus.conf
+%{_mandir}/man*/*
+%config %{_sysconfdir}/argus.conf
 %{_unitdir}/argus.service
 %{_sbindir}/*
 

++ argus-3.0.8.1.tar.gz -> 

commit duply for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package duply for openSUSE:Factory checked 
in at 2016-09-30 15:33:10

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


Package is "duply"

Changes:

--- /work/SRC/openSUSE:Factory/duply/duply.changes  2015-10-02 
09:23:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.duply.new/duply.changes 2016-09-30 
15:33:15.0 +0200
@@ -1,0 +2,31 @@
+Mon Sep 26 01:42:40 UTC 2016 - malcolmle...@opensuse.org
+
+- Update to version 1.11.3:
+  + Fix wrong "WARNING: No running gpg-agent ..." when sign key was
+not set.
+- Changes from version 1.11.2:
+  + Fix "gpg: unsafe" version print out.
+  + Bugfix 91: v1.11 [r47] broke asymmetric encryption when using
+GPG_KEYS_ENC.
+  + Bugfix 90: S3: TARGET_USER/PASS have no effect, added
+additional documentation about needed env vars to template
+conf file.
+- Changes from version 1.11.1:
+  + Reverted duply's default PYTHON to 'python'.
+- Changes from version 1.11:
+  + Remove obsolete --ssh-askpass routine.
+  + Add PYTHON conf var to allow global override of used python
+interpreter.
+  + Enforced usage of "python2" in PATH as default interpreter for
+internal use _and_ to run duplicity (setup.py changed the 
+shebang to the fixed path /usr/bin/python until 0.7.05, which
+we circumvent this way).
+  + Feature 36: Support gpg-connect-agent as a means to detect if
+an agent is running, used gpg-agent for detection though.
+  + Quotewrapped run_cmd parameters to protect it from spaces eg.
+in TMP path.
+  + Key export routine respects gpg-agent usage now.
+- Update copyright year.
+- Add ChangeLog to package.
+
+---

Old:

  duply_1.10.1.tgz

New:

  duply_1.11.3.tgz



Other differences:
--
++ duply.spec ++
--- /var/tmp/diff_new_pack.Hpz7kC/_old  2016-09-30 15:33:17.0 +0200
+++ /var/tmp/diff_new_pack.Hpz7kC/_new  2016-09-30 15:33:17.0 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package duply
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2011-2015 Malcolm J Lewis 
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2011-2016 Malcolm J Lewis 
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 
 Name:   duply
-Version:1.10.1
+Version:1.11.3
 Release:0
 Summary:A frontend for the mighty duplicity magic
 License:GPL-2.0
 Group:  Productivity/Archiving/Compression
 Url:http://duply.net/
-Source0:
http://downloads.sourceforge.net/ftplicity/duply%20%28simple%20duplicity%29/1.10.x/%{name}_%{version}.tgz
+Source0:
http://downloads.sourceforge.net/ftplicity/duply%20%28simple%20duplicity%29/1.11.x/%{name}_%{version}.tgz
 # MANUAL BEGIN
 Requires:   duplicity
 # MANUAL END
@@ -47,7 +47,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc gpl-2.0.txt
+%doc CHANGELOG.txt gpl-2.0.txt
 %{_bindir}/%{name}
 
 %changelog

++ duply_1.10.1.tgz -> duply_1.11.3.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/duply_1.10.1/CHANGELOG.txt 
new/duply_1.11.3/CHANGELOG.txt
--- old/duply_1.10.1/CHANGELOG.txt  1970-01-01 01:00:00.0 +0100
+++ new/duply_1.11.3/CHANGELOG.txt  2016-05-29 13:16:04.0 +0200
@@ -0,0 +1,394 @@
+###
+TODO/IDEAS/KNOWN PROBLEMS:
+- possibility to restore time frames (incl. deleted files)
+  realizable by listing each backup and restore from 
+  oldest to the newest, problem: not performant
+- search file in all backups function and show available
+  versions with backups date (list old avail since 0.6.06)
+- edit profile opens conf file in vi 
+- implement log-fd interpretation
+- add a duplicity option check against the options pending 
+  deprecation since 0.5.10 namely --time-separator
+ --short-filenames
+--old-filenames
+- add 'exclude_' list usage eg. exclude_verify
+- featreq 25: a download/install duplicity option
+- hint on install software if a piece is missing
+- import/export profile from/to .tgz function !!!
+
+CHANGELOG:
+1.11.3 (29.5.2016)
+- fix wrong "WARNING: No running gpg-agent ..." when sign key was not set
+
+1.11.2 (11.2.2016)
+- fix "gpg: unsafe" version print out 
+- bugfix 91: v1.11 [r47] broke asymmetric encryption when using GPG_KEYS_ENC
+- 

commit unbound for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package unbound for openSUSE:Factory checked 
in at 2016-09-30 15:32:59

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


Package is "unbound"

Changes:

--- /work/SRC/openSUSE:Factory/unbound/libunbound-devel-mini.changes
2016-07-12 23:56:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.unbound.new/libunbound-devel-mini.changes   
2016-09-30 15:33:02.0 +0200
@@ -1,0 +2,107 @@
+Tue Sep 27 12:41:57 UTC 2016 - mich...@stroeder.com
+
+- update to 1.5.10
+
+Features
+  * Create a pkg-config file for libunbound in contrib.
+  * TCP Fast open patch from Sara Dickinson.
+  * Finegrained localzone control with define-tag, access-control-tag,
+access-control-tag-action, access-control-tag-data, local-zone-tag, and
+local-zone-override. And added types always_transparent, always_refuse,
+always_nxdomain with that.
+  * If more than half of tcp connections are in use, a shorter timeout
+is used (200 msec, vs 2 minutes) to pressure tcp for new connects.
+  * [bugzilla: 787 ] Fix #787: outgoing-interface netblock/64 ipv6
+option to use linux freebind to use 64bits of entropy for every query
+with random local part.
+  * For #787: prefer-ip6 option for unbound.conf prefers to send
+upstream queries to ipv6 servers.
+  * Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e.
+  * keep debug symbols in windows build.
+
+Bug Fixes
+  * [bugzilla: 778 ] Fix unbound 1.5.9: -h segfault (null deref).
+  * Fix unbound-anchor.exe file location defaults to Program Files with
+(x86) appended.
+  * Fix to not ignore return value of chown() in daemon startup.
+  * Better help text from -h (from Ray Griffith).
+  * [bugzilla: 773 ] Fix Non-standard Python location build failure with
+pyunbound.
+  * Improve threadsafety for openssl 0.9.8 ecdsa dnssec signatures.
+  * Revert fix for NetworkService account on windows due to breakage it
+causes.
+  * Fix that windows install will not overwrite existing service.conf
+file (and ignore gui config choices if it exists).
+  * And delete service.conf.shipped on uninstall.
+  * In unbound.conf directory: dir immediately changes to that
+directory, so that include: file below that is relative to that
+directory. With chroot, make the directory an absolute path inside chroot.
+  * do not delete service.conf on windows uninstall.
+  * document directory immediate fix and allow EXECUTABLE syntax in it
+on windows.
+  * Fix directory: fix for unbound-checkconf, it restores cwd.
+  * Use QTYPE=A for QNAME minimisation.
+  * Keep track of number of time-outs when performing QNAME
+minimisation. Stop minimising when number of time-outs for a QNAME/QTYPE
+pair is more than three.
+  * [bugzilla: 775 ] Fix unbound-host and unbound-anchor crash on
+windows, ignore null delete for wsaevent.
+  * Fix spelling in freebind option man page text.
+  * Fix windows link of ssl with crypt32.
+  * [bugzilla: 779 ] Fix Union casting is non-portable.
+  * [bugzilla: 780 ] Fix MAP_ANON not defined in HP-UX 11.31.
+  * [bugzilla: 781 ] Fix prealloc() is an HP-UX system library call.
+  * Decrease dp attempts at each QNAME minimisation iteration
+  * [bugzilla: 784 ] Fix Build configure assumess that having getpwnam
+means there is endpwent function available.
+  * Updated repository with newer flex and bison output.
+  * Fix static compile on windows missing gdi32.
+  * Fix dynamic link of anchor-update.exe on windows.
+  * Fix detect of mingw for MXE package build.
+  * Fixes for 64bit windows compile.
+  * [bugzilla: 788 ] Fix for nettle 3.0: Failed to build with Nettle >=
+3.0 and --with-libunbound-only --with-nettle.
+  * Fixed unbound.doxygen for 1.8.11.
+  * [bugzilla: 798 ] Fix Client-side TCP fast open fails (Linux).
+  * [bugzilla: 801 ] Fix missing error condition handling in
+daemon_create_workers().
+  * [bugzilla: 802 ] Fix workaround for function parameters that are
+"unused" without log_assert.
+  * [bugzilla: 803 ] Fix confusing (and incorrect) code comment in
+daemon_cleanup().
+  * [bugzilla: 806 ] Fix wrong comment removed.
+  * use sendmsg instead of sendto for TFO.
+  * [bugzilla: 807 ] Fix workaround for possible some "unused" function
+parameters in test code, from Jinmei Tatuya.
+  * Note that OPENPGPKEY type is RFC 7929.
+  * [bugzilla: 804 ] Fix #804: unbound stops responding after outage.
+Fixes queries that attempt to wait for an empty list of subqueries.
+  * Fix for #804: lower num_target_queries for iterator also for failed
+lookups.
+  * [bugzilla: 820 ] Fix set sldns_str2wire_rr_buf() dual meaning len
+parameter in each iteration in find_tag_datas().
+  * [bugzilla: 777 ] Fix OpenSSL 1.1.0 

commit nemo for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package nemo for openSUSE:Factory checked in 
at 2016-09-30 15:32:51

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


Package is "nemo"

Changes:

--- /work/SRC/openSUSE:Factory/nemo/nemo.changes2016-06-25 
02:24:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nemo.new/nemo.changes   2016-09-30 
15:32:54.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 27 12:38:17 UTC 2016 - sor.ale...@meowr.ru
+
+- Add nemo-fix-desktop-redraw.patch from upstream commit 4e5a103:
+  fix a GTK+ 3.21.3+ desktop (boo#1001431, gh#linuxmint/nemo#1231).
+
+---

New:

  nemo-fix-desktop-redraw.patch



Other differences:
--
++ nemo.spec ++
--- /var/tmp/diff_new_pack.4yWqhD/_old  2016-09-30 15:32:57.0 +0200
+++ /var/tmp/diff_new_pack.4yWqhD/_new  2016-09-30 15:32:57.0 +0200
@@ -31,6 +31,8 @@
 Patch1: %{name}-implicit-pointer-decl.patch
 # PATCH-FIX-UPSTREAM nemo-void-return-no-return.patch marguei...@opensuse.org 
-- Fix OBS gcc checks.
 Patch2: %{name}-void-return-no-return.patch
+# PATCH-FIX-UPSTREAM nemo-fix-desktop-redraw.patch boo#1001431 
gh#linuxmint/nemo#1231 -- Fix a GTK+ 3.21.3+ desktop redraw issue (commit 
4e5a103).
+Patch3: %{name}-fix-desktop-redraw.patch
 BuildRequires:  cinnamon-translations
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
@@ -109,6 +111,7 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 NOCONFIGURE=1 gnome-autogen.sh

++ nemo-fix-desktop-redraw.patch ++
--- a/libnemo-private/nemo-icon-container.c
+++ b/libnemo-private/nemo-icon-container.c
@@ -4249,11 +4249,13 @@ realize (GtkWidget *widget)
 
container = NEMO_ICON_CONTAINER (widget);
 
+#if !GTK_CHECK_VERSION(3, 21, 0)
/* Ensure that the desktop window is native so the background
   set on it is drawn by X. */
if (container->details->is_desktop) {
gdk_x11_window_get_xid (gtk_layout_get_bin_window (GTK_LAYOUT 
(widget)));
}
+#endif
 
/* Set up DnD.  */
nemo_icon_dnd_init (container);
--- a/src/nemo-desktop-icon-view.c
+++ b/src/nemo-desktop-icon-view.c
@@ -155,6 +155,10 @@ nemo_desktop_icon_view_class_init (NemoD
vclass->update_menus = real_update_menus;
vclass->get_view_id = real_get_id;
 
+#if GTK_CHECK_VERSION(3, 21, 0)
+   GtkWidgetClass *wclass = GTK_WIDGET_CLASS (class);
+   gtk_widget_class_set_css_name (wclass, "nemo-desktop-icon-view");
+#endif
g_type_class_add_private (class, sizeof (NemoDesktopIconViewDetails));
 }
 
--- a/src/nemo-style-application.css
+++ b/src/nemo-style-application.css
@@ -1,5 +1,10 @@
 /* Desktop text stuff */
 
+.nemo-window.nemo-desktop-window notebook,
+.nemo-window.nemo-desktop-window paned {
+   background-color: transparent;
+}
+
 .nemo-canvas-item {
 border-radius: 3px;
 }



commit emacs-auctex for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package emacs-auctex for openSUSE:Factory 
checked in at 2016-09-30 15:32:56

Comparing /work/SRC/openSUSE:Factory/emacs-auctex (Old)
 and  /work/SRC/openSUSE:Factory/.emacs-auctex.new (New)


Package is "emacs-auctex"

Changes:

--- /work/SRC/openSUSE:Factory/emacs-auctex/emacs-auctex.changes
2015-12-09 22:15:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.emacs-auctex.new/emacs-auctex.changes   
2016-09-30 15:33:00.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 20 14:20:47 UTC 2016 - wer...@suse.de
+
+- Add patch 0001-Fix_bug_in_subfigure_style_filee.patch
+  to fix build with GNU Emacs 25.1 
+
+---

New:

  0001-Fix_bug_in_subfigure_style_filee.patch



Other differences:
--
++ emacs-auctex.spec ++
--- /var/tmp/diff_new_pack.zlSTqN/_old  2016-09-30 15:33:02.0 +0200
+++ /var/tmp/diff_new_pack.zlSTqN/_new  2016-09-30 15:33:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package emacs-auctex
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -45,6 +45,8 @@
 # Allows to select printer instance
 # PATCH-FEATURE-UPSTREAM dvips.patch
 Patch0: dvips.patch
+# PATCH-FIX-UPSTREAM
+Patch1: 0001-Fix_bug_in_subfigure_style_filee.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -68,6 +70,7 @@
 %prep
 %setup -n auctex-%{version}
 %patch0
+%patch1 -p1
 
 %build
 unset ${!LC_*}
@@ -121,6 +124,11 @@
;;
(load "preview-latex.el" nil t t)
EOF
+for el in auctex.el preview-latex.el
+do
+   test -e %{buildroot}%{_sitedir}/$el || continue
+   mv %{buildroot}%{_sitedir}/$el %{buildroot}%{_sitedir}/site-start.d/
+done
 #
 # Preview is part of te_latex
 #

++ 0001-Fix_bug_in_subfigure_style_filee.patch ++
>From d2c7bb3aa56930c45722482fd64174b2504bb9a8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mos=C3=A8=20Giordano?= 
Date: Wed, 20 Jan 2016 23:00:03 +0100
Subject: Fix bug in subfigure style file

* style/subfigure.el ("subfigure"): Move `TeX-complete-list' inside
  append argument.  Fixes bug#22417.
---
 style/subfigure.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/style/subfigure.el b/style/subfigure.el
index e129e62..5d7525b 100644
--- a/style/subfigure.el
+++ b/style/subfigure.el
@@ -47,8 +47,8 @@
;; Install completion for labels:
(setq TeX-complete-list
 (append
- '(("[Ss]ubref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")))
- TeX-complete-list)
+ '(("[Ss]ubref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}"))
+ TeX-complete-list))
 
;; Fontification
(when (and (featurep 'font-latex)
-- 
cgit v1.0




commit xfce4-vala for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package xfce4-vala for openSUSE:Factory 
checked in at 2016-09-30 15:32:54

Comparing /work/SRC/openSUSE:Factory/xfce4-vala (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-vala.new (New)


Package is "xfce4-vala"

Changes:

--- /work/SRC/openSUSE:Factory/xfce4-vala/xfce4-vala.changes2016-04-05 
10:43:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.xfce4-vala.new/xfce4-vala.changes   
2016-09-30 15:32:57.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 23 18:32:25 UTC 2016 - zai...@opensuse.org
+
+- Add support for vala 0.34 in Factory, replacing vala 0.32.
+
+---



Other differences:
--
++ xfce4-vala.spec ++
--- /var/tmp/diff_new_pack.aLD3hR/_old  2016-09-30 15:32:59.0 +0200
+++ /var/tmp/diff_new_pack.aLD3hR/_new  2016-09-30 15:32:59.0 +0200
@@ -35,7 +35,7 @@
 %define vala_version 0.26
 %endif
 %if 0%{?suse_version} > 1320
-%define vala_version 0.32
+%define vala_version 0.34
 %endif
 %define vala_libname libvala-%{vala_version}
 




commit trytond_account_product for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package trytond_account_product for 
openSUSE:Factory checked in at 2016-09-30 15:32:09

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


Package is "trytond_account_product"

Changes:

--- 
/work/SRC/openSUSE:Factory/trytond_account_product/trytond_account_product.changes
  2016-09-23 11:29:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.trytond_account_product.new/trytond_account_product.changes
 2016-09-30 15:32:10.0 +0200
@@ -0,0 +1,5 @@
+---
+Sun Sep 25 10:10:29 UTC 2016 - jeng...@inai.de
+
+- Summary update
+



Other differences:
--
++ trytond_account_product.spec ++
--- /var/tmp/diff_new_pack.7y50wC/_old  2016-09-30 15:32:11.0 +0200
+++ /var/tmp/diff_new_pack.7y50wC/_new  2016-09-30 15:32:11.0 +0200
@@ -21,7 +21,7 @@
 Name:   trytond_account_product
 Version:%{majorver}.0
 Release:0
-Summary:Tryton is an OpenSource ERP system
+Summary:The "account_product" module of the Tryton ERP system
 License:GPL-3.0
 Group:  Productivity/Office/Management
 Url:http://www.tryton.org/
@@ -47,7 +47,6 @@
 %build
 python setup.py build
 
-
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 %fdupes -s %{buildroot}




commit trytond_stock for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package trytond_stock for openSUSE:Factory 
checked in at 2016-09-30 15:32:07

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


Package is "trytond_stock"

Changes:

--- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes  
2016-09-23 11:32:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.trytond_stock.new/trytond_stock.changes 
2016-09-30 15:32:08.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep 25 09:48:05 UTC 2016 - jeng...@inai.de
+
+- Update summary/description
+
+---



Other differences:
--
++ trytond_stock.spec ++
--- /var/tmp/diff_new_pack.hdoxy4/_old  2016-09-30 15:32:09.0 +0200
+++ /var/tmp/diff_new_pack.hdoxy4/_new  2016-09-30 15:32:09.0 +0200
@@ -21,7 +21,7 @@
 Name:   trytond_stock
 Version:%{majorver}.3
 Release:0
-Summary:Tryton is an OpenSource ERP system
+Summary:The "stock" module for the Tryton ERP system
 License:GPL-3.0
 Group:  Productivity/Office/Management
 Url:http://www.tryton.org/
@@ -40,7 +40,10 @@
 %py_requires
 
 %description
-The stock module of the Tryton application platform.
+The stock module defines fundamentals for all stock management
+situations: Locations where product are stored, moves between these
+locations, shipments for product arrivals and departures and
+inventory to control and update stock levels.
 
 %prep
 %setup -q
@@ -48,7 +51,6 @@
 %build
 python setup.py build
 
-
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 %fdupes -s %{buildroot}




commit xtables-geoip for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package xtables-geoip for openSUSE:Factory 
checked in at 2016-09-30 15:32:38

Comparing /work/SRC/openSUSE:Factory/xtables-geoip (Old)
 and  /work/SRC/openSUSE:Factory/.xtables-geoip.new (New)


Package is "xtables-geoip"

Changes:

--- /work/SRC/openSUSE:Factory/xtables-geoip/xtables-geoip.changes  
2016-05-17 17:16:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.xtables-geoip.new/xtables-geoip.changes 
2016-09-30 15:32:39.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 27 07:47:28 UTC 2016 - jeng...@inai.de
+
+- Update database files to 2016.09.07
+
+---



Other differences:
--
++ xtables-geoip.spec ++
--- /var/tmp/diff_new_pack.fq6ohB/_old  2016-09-30 15:32:42.0 +0200
+++ /var/tmp/diff_new_pack.fq6ohB/_new  2016-09-30 15:32:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xtables-geoip
-Version:2016.05
+Version:2016.09
 Release:0
 Summary:Geolocation database files for xt_geoip
 License:CC-BY-SA-3.0

++ GeoIPCountryWhois.csv.xz ++
 85850 lines (skipped)
 between GeoIPCountryWhois.csv.xz
 and /work/SRC/openSUSE:Factory/.xtables-geoip.new/GeoIPCountryWhois.csv.xz

++ GeoIPv6.csv.xz ++
 6397 lines (skipped)
 between GeoIPv6.csv.xz
 and /work/SRC/openSUSE:Factory/.xtables-geoip.new/GeoIPv6.csv.xz




commit lightdm-gtk-greeter for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package lightdm-gtk-greeter for 
openSUSE:Factory checked in at 2016-09-30 15:32:20

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


Package is "lightdm-gtk-greeter"

Changes:

--- /work/SRC/openSUSE:Factory/lightdm-gtk-greeter/lightdm-gtk-greeter.changes  
2015-10-25 19:12:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.lightdm-gtk-greeter.new/lightdm-gtk-greeter.changes 
2016-09-30 15:32:24.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 25 10:00:10 UTC 2016 - sor.ale...@meowr.ru
+
+- Add lightdm-gtk-greeter-lightdm-1.19.2-api.patch: Use new API
+  introduced in LightDM 1.19.2.
+
+---

New:

  lightdm-gtk-greeter-lightdm-1.19.2-api.patch



Other differences:
--
++ lightdm-gtk-greeter.spec ++
--- /var/tmp/diff_new_pack.iJdeKP/_old  2016-09-30 15:32:26.0 +0200
+++ /var/tmp/diff_new_pack.iJdeKP/_new  2016-09-30 15:32:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lightdm-gtk-greeter
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Guido Berhoerster.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,6 @@
 
 
 %define _version 2.0
-
 Name:   lightdm-gtk-greeter
 Version:2.0.1
 Release:0
@@ -27,25 +26,27 @@
 Group:  System/X11/Displaymanagers
 Url:https://launchpad.net/lightdm-gtk-greeter
 Source: 
https://launchpad.net/%{name}/%{_version}/%{version}/+download/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-lightdm-1.19.2-api.patch 
sor.ale...@meowr.ru -- Use new API introduced in LightDM 1.19.2.
+Patch0: lightdm-gtk-greeter-lightdm-1.19.2-api.patch
 BuildRequires:  autoconf
 BuildRequires:  automake >= 1.7
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  libtool
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 0.9.5
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(liblightdm-gobject-1) >= 1.3.5
+BuildRequires:  pkgconfig(liblightdm-gobject-1) >= 1.19.2
 BuildRequires:  pkgconfig(x11)
-Provides:   lightdm-greeter
 Requires:   %{name}-branding >= %{version}
 Requires:   lightdm
 Requires(post): update-alternatives
 Requires(postun):   update-alternatives
 Recommends: %{name}-lang
 Recommends: gnome-themes-accessibility
+Provides:   lightdm-greeter
 
 %description
 A LightDM greeter that uses the GTK+ toolkit.
@@ -57,9 +58,9 @@
 Group:  System/X11/Displaymanagers
 Requires:   %{name} = %{version}
 Supplements:packageand(%{name}:branding-upstream)
+Conflicts:  otherproviders(%{name}-branding)
 Provides:   %{name}-branding = %{version}
 BuildArch:  noarch
-Conflicts:  otherproviders(%{name}-branding)
 #BRAND: /etc/lightdm/lightdm-gtk-greeter.conf: Determines a number of greeter
 #BRAND: settings, in particular the background image.
 
@@ -70,13 +71,14 @@
 
 %prep
 %setup -q
+%patch0 -p1
 sed -i 's|$(datadir)/doc|%{_docdir}|g' data/Makefile.am
 
-# Remove __DATE__ and __TIME__
-modified="$(sed -n '/^/n;s/ - .*$//;p;q' "%{_sourcedir}/%{name}.changes")"
-DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\""
-TIME="\"$(date -d "${modified}" "+%%R")\""
-find .  -name '*.[ch]' | xargs sed -i 
"s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g"
+# Remove __DATE__ and __TIME__.
+BUILD_TIME=$(LC_ALL=C date -ur %{_sourcedir}/%{name}.changes +'%{H}:%{M}')
+BUILD_DATE=$(LC_ALL=C date -ur %{_sourcedir}/%{name}.changes +'%{b} %{d} %{Y}')
+sed -i "s/__TIME__/\"$BUILD_TIME\"/" $(grep -rl '__TIME__')
+sed -i "s/__DATE__/\"$BUILD_DATE\"/" $(grep -rl '__DATE__')
 
 %build
 NOCONFIGURE=1 gnome-autogen.sh
@@ -87,9 +89,9 @@
 %make_install
 
 %if 0%{?suse_version} >= 1320
-install -d -m 755 %{buildroot}%{_sysconfdir}/alternatives/
-touch 
%{buildroot}%{_sysconfdir}/alternatives/lightdm-default-greeter.desktop
-ln -s %{_sysconfdir}/alternatives/lightdm-default-greeter.desktop \
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives/
+touch %{buildroot}%{_sysconfdir}/alternatives/lightdm-default-greeter.desktop
+ln -s %{_sysconfdir}/alternatives/lightdm-default-greeter.desktop \
 %{buildroot}%{_datadir}/xgreeters/lightdm-default-greeter.desktop
 %endif
 
@@ -114,15 +116,15 @@
 %defattr(-,root,root)
 %doc AUTHORS ChangeLog COPYING README
 %{_sbindir}/%{name}
-%{_datadir}/icons/hicolor/

commit python-docker-py for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-docker-py for 
openSUSE:Factory checked in at 2016-09-30 15:32:40

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


Package is "python-docker-py"

Changes:

--- /work/SRC/openSUSE:Factory/python-docker-py/python-docker-py.changes
2016-08-12 15:43:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-docker-py.new/python-docker-py.changes   
2016-09-30 15:32:44.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep 27 07:04:59 UTC 2016 - tbecht...@suse.com
+
+- Remove useless python-flake8 and python-coverage BuildRequires.
+
+---



Other differences:
--
++ python-docker-py.spec ++
--- /var/tmp/diff_new_pack.I7nUWo/_old  2016-09-30 15:32:46.0 +0200
+++ /var/tmp/diff_new_pack.I7nUWo/_new  2016-09-30 15:32:46.0 +0200
@@ -34,8 +34,6 @@
 Requires:   python-six >= 1.4.0
 Requires:   python-websocket-client >= 0.32.0
 BuildRequires:  fdupes
-BuildRequires:  python-coverage
-BuildRequires:  python-flake8
 BuildRequires:  python-mock
 BuildRequires:  python-pytest
 BuildRequires:  python-pytest-cov




commit lightdm for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package lightdm for openSUSE:Factory checked 
in at 2016-09-30 15:32:15

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


Package is "lightdm"

Changes:

--- /work/SRC/openSUSE:Factory/lightdm/lightdm.changes  2016-08-05 
18:15:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightdm.new/lightdm.changes 2016-09-30 
15:32:18.0 +0200
@@ -1,0 +2,42 @@
+Sun Sep 25 10:00:10 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.19.4 (changes since 1.19.0):
+  * Rename "xlocal" seat type to "local". Using "xlocal" will
+continue to work but will report a warning.
+  * Fix memory leaks.
+  * Fix uninitialised memory errors.
+  * Use MIR_SERVER_HOST_SOCKET instead of MIR_SOCKET to report
+compositor socket to sessions. This used to work but no longer
+works in Mir 0.21
+  * Allow XMir to run on the xlocal seat using the new
+x-server-backend=mir option.
+  * Use only a single compositor on local seats.
+  * Fix Mir greeter log filename having "(null)" in the name.
+  * Copy fcitx/mozc rules so session works when these aren't
+installed.
+  * Revert lxsession change - it caused the AppArmor to fail to
+compile.
+  * Add support for greeters running inside sessions. This is
+enabled by setting X-LightDM-Allow-Greeter inside the session
+.desktop file.
+The session can then use liblightdm to connect one greeter to
+the daemon. The communication is done using a socket
+(/var/run/lightdm//greeter-socket) that is accessible to
+any process ran by that user. Consider controlling access to
+this socket using a MAC system such as AppArmor.
+  * Report errors for all liblightdm methods. This will require
+existing greeters to update their API usage. The ABI is
+unchanged.
+  * Handle EAGAIN correctly when daemons communicate with the
+daemon.
+  * Drop support for mir-container sessions - no-one ever used these.
+  * Fix in-session greeters not working for greeter logins.
+  * Fix various issues in new in-session greeter code.
+  * Fix user list memory management exposed by use of in-session
+greeters.
+  * Fix some spurious warnings in the log.
+- Rebase lightdm-sysconfig-support.patch,
+  lightdm-xauthlocalhostname-support.patch.
+- Use tarball signing.
+
+---

Old:

  lightdm-1.19.0.tar.xz

New:

  lightdm-1.19.4.tar.xz
  lightdm-1.19.4.tar.xz.asc
  lightdm.keyring



Other differences:
--
++ lightdm.spec ++
--- /var/tmp/diff_new_pack.mMFl7h/_old  2016-09-30 15:32:21.0 +0200
+++ /var/tmp/diff_new_pack.mMFl7h/_new  2016-09-30 15:32:21.0 +0200
@@ -27,22 +27,24 @@
 %define typelibname typelib-1_0-LightDM-1
 %define rundir  /run
 Name:   lightdm
-Version:1.19.0
+Version:1.19.4
 Release:0
 Summary:Lightweight, Cross-desktop Display Manager
 License:GPL-3.0+
 Group:  System/X11/Displaymanagers
 Url:https://freedesktop.org/wiki/Software/LightDM
-Source0:
https://launchpad.net/lightdm/%{ver_master}/%{version}/+download/%{name}-%{version}.tar.xz
-Source1:%{name}-greeter.pamd
-Source2:X11-displaymanagers-%{name}
-Source3:gdmflexiserver
-Source4:50-suse-defaults.conf
-Source5:users.conf
+Source: 
https://launchpad.net/lightdm/%{ver_master}/%{version}/+download/%{name}-%{version}.tar.xz
+Source1:
https://launchpad.net/lightdm/%{ver_master}/%{version}/+download/%{name}-%{version}.tar.xz.asc
+Source2:%{name}.keyring
+Source3:%{name}-greeter.pamd
+Source4:X11-displaymanagers-%{name}
+Source5:gdmflexiserver
+Source6:50-suse-defaults.conf
+Source7:users.conf
 Source100:  %{name}-rpmlintrc
 # PATCH-FEATURE-OPENSUSE lightdm-sysconfig-support.patch g...@opensuse.org -- 
Adds support for reading configuration options from 
/etc/sysconfig/displaymanager and /etc/sysconfig/windowmanager
 Patch0: lightdm-sysconfig-support.patch
-# PATCH-FEATURE-OPENSUSE lightdm-xauthlocalhostname-support.patch bnc#796230 
g...@opensuse.org -- Set XAUTHLOCALHOSTNAME to the hostname for local logins to 
avoid issues in the session in case the hostname changes
+# PATCH-FEATURE-OPENSUSE lightdm-xauthlocalhostname-support.patch boo#796230 
g...@opensuse.org -- Set XAUTHLOCALHOSTNAME to the hostname for local logins to 
avoid issues in the session in case the hostname changes
 Patch1: lightdm-xauthlocalhostname-support.patch
 # PATCH-FEATURE-OPENSUSE lightdm-set-gdmflexiserver-envvar.patch 
g...@opensuse.org -- Sets the GDMFLEXISERVER 

commit netcdf-cxx4 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package netcdf-cxx4 for openSUSE:Factory 
checked in at 2016-09-30 15:32:47

Comparing /work/SRC/openSUSE:Factory/netcdf-cxx4 (Old)
 and  /work/SRC/openSUSE:Factory/.netcdf-cxx4.new (New)


Package is "netcdf-cxx4"

Changes:

--- /work/SRC/openSUSE:Factory/netcdf-cxx4/netcdf-cxx4.changes  2016-09-20 
13:25:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.netcdf-cxx4.new/netcdf-cxx4.changes 
2016-09-30 15:32:52.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul 25 13:10:20 UTC 2016 - jeng...@inai.de
+
+- Summary/RPM group update.
+- Rename soname macro because it really just contains the version.
+
+---



Other differences:
--
++ netcdf-cxx4.spec ++
--- /var/tmp/diff_new_pack.fOSEGA/_old  2016-09-30 15:32:54.0 +0200
+++ /var/tmp/diff_new_pack.fOSEGA/_new  2016-09-30 15:32:54.0 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define soname 1
+%define sover 1
 
 Name:   netcdf-cxx4
 Version:4.3.0
 Release:0
 Summary:C++ library for the Unidata network Common Data Form version 4
 License:NetCDF
-Group:  System/Libraries
+Group:  Productivity/Scientific/Other
 Url:http://www.unidata.ucar.edu/software/netcdf/
 Source0:
http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-cxx4-%{version}.tar.gz
 BuildRequires:  gcc-c++
@@ -50,12 +50,12 @@
 This package provides tools for working with the C++ API.
 
 
-%package -n libnetcdf_c++4-%{soname}
-Summary:C++ library for for the Unidata network Common Data Form 
version 4
+%package -n libnetcdf_c++4-%{sover}
+Summary:C++ library for the Unidata network Common Data Form version 4
 Group:  System/Libraries
-Provides:   libnetcdf%{soname}:%{_libdir}/libnetcdf_c++.so.%{soname}
+Provides:   libnetcdf%{sover}:%{_libdir}/libnetcdf_c++.so.%{sover}
 
-%description -n libnetcdf_c++4-%{soname}
+%description -n libnetcdf_c++4-%{sover}
 NetCDF4 (network Common Data Form) is a set of software libraries and
 machine-independent data formats that support the creation, access, and sharing
 of array-oriented scientific data.
@@ -65,7 +65,7 @@
 %package -n libnetcdf_c++4-devel
 Summary:Development files for netcdf_c++
 Group:  Development/Libraries/C and C++
-Requires:   libnetcdf_c++4-%{soname} = %{version}
+Requires:   libnetcdf_c++4-%{sover} = %{version}
 Provides:   libnetcdf-devel:%{_libdir}/libnetcdf_c++.so
 
 %description -n libnetcdf_c++4-devel
@@ -85,20 +85,20 @@
 %check
 make check
 
-%post -n libnetcdf_c++4-%{soname} -p /sbin/ldconfig
+%post -n libnetcdf_c++4-%{sover} -p /sbin/ldconfig
 
-%postun -n libnetcdf_c++4-%{soname} -p /sbin/ldconfig
+%postun -n libnetcdf_c++4-%{sover} -p /sbin/ldconfig
 
 %files tools
 %defattr(-,root,root)
 %doc COPYRIGHT
 %{_bindir}/ncxx4-config
 
-%files -n libnetcdf_c++4-%{soname}
+%files -n libnetcdf_c++4-%{sover}
 %defattr(-,root,root)
 %doc COPYRIGHT
-%{_libdir}/libnetcdf_c++4.so.%{soname}
-%{_libdir}/libnetcdf_c++4.so.%{soname}.*
+%{_libdir}/libnetcdf_c++4.so.%{sover}
+%{_libdir}/libnetcdf_c++4.so.%{sover}.*
 
 %files -n libnetcdf_c++4-devel
 %defattr(-,root,root)




commit raspberrypi-firmware for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2016-09-30 15:32:42

Comparing /work/SRC/openSUSE:Factory/raspberrypi-firmware (Old)
 and  /work/SRC/openSUSE:Factory/.raspberrypi-firmware.new (New)


Package is "raspberrypi-firmware"

Changes:

--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-config-rpi.changes
 2016-09-16 11:02:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-config-rpi.changes
2016-09-30 15:32:46.0 +0200
@@ -1,0 +2,11 @@
+Tue Sep 27 09:09:10 UTC 2016 - guilla...@opensuse.org
+
+- Increase from 64 MB to 96 MB of RAM for GPU for RPi with 256 or 
+  512 MB of RAM to be able to decode a 1080p h264 video in kodi
+
+---
+Tue Sep 27 08:53:46 UTC 2016 - guilla...@opensuse.org
+
+- Update to ad8608c (2016-09-21)
+
+---
raspberrypi-firmware-config-rpi2.changes: same change
raspberrypi-firmware-config-rpi3.changes: same change
raspberrypi-firmware.changes: same change

Old:

  raspberrypi-firmware-2016.09.02.tar.bz2

New:

  raspberrypi-firmware-2016.09.21.tar.bz2



Other differences:
--
++ raspberrypi-firmware-config-rpi.spec ++
--- /var/tmp/diff_new_pack.RYreS7/_old  2016-09-30 15:32:51.0 +0200
+++ /var/tmp/diff_new_pack.RYreS7/_new  2016-09-30 15:32:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   raspberrypi-firmware-config-rpi
-Version:2016.09.02
+Version:2016.09.21
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT

raspberrypi-firmware-config-rpi2.spec: same change
raspberrypi-firmware-config-rpi3.spec: same change
++ raspberrypi-firmware.spec ++
--- /var/tmp/diff_new_pack.RYreS7/_old  2016-09-30 15:32:51.0 +0200
+++ /var/tmp/diff_new_pack.RYreS7/_new  2016-09-30 15:32:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   raspberrypi-firmware
-Version:2016.09.02
+Version:2016.09.21
 Release:0
 Summary:Binary bootloader and firmware files for Raspberry Pi
 License:SUSE-Firmware

++ config-rpi.txt ++
--- /var/tmp/diff_new_pack.RYreS7/_old  2016-09-30 15:32:52.0 +0200
+++ /var/tmp/diff_new_pack.RYreS7/_new  2016-09-30 15:32:52.0 +0200
@@ -2,10 +2,10 @@
 # or on https://www.raspberrypi.org/documentation/configuration/config-txt.md
 # Our kernels are located on a Linux partition. Chainload U-Boot to load them.
 kernel=u-boot.bin
-# Use 64 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
-gpu_mem_256=64
-# Use 64 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
-gpu_mem_512=64
+# Use 96 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
+gpu_mem_256=96
+# Use 96 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
+gpu_mem_512=96
 # Use 128 MB for GPU for RPi with 1024 MB (Min 16 - Max 944 MB)
 gpu_mem_1024=128
 # Turbo mode: 0 = enable dynamic freq/voltage - 1 = always max

++ config-rpi2.txt ++
--- /var/tmp/diff_new_pack.RYreS7/_old  2016-09-30 15:32:52.0 +0200
+++ /var/tmp/diff_new_pack.RYreS7/_new  2016-09-30 15:32:52.0 +0200
@@ -2,10 +2,10 @@
 # or on https://www.raspberrypi.org/documentation/configuration/config-txt.md
 # Our kernels are located on a Linux partition. Chainload U-Boot to load them.
 kernel=u-boot.bin
-# Use 64 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
-gpu_mem_256=64
-# Use 64 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
-gpu_mem_512=64
+# Use 96 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
+gpu_mem_256=96
+# Use 96 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
+gpu_mem_512=96
 # Use 128 MB for GPU for RPi with 1024 MB (Min 16 - Max 944 MB)
 gpu_mem_1024=128
 # Turbo mode: 0 = enable dynamic freq/voltage - 1 = always max

++ config-rpi3.txt ++
--- /var/tmp/diff_new_pack.RYreS7/_old  2016-09-30 15:32:52.0 +0200
+++ /var/tmp/diff_new_pack.RYreS7/_new  2016-09-30 15:32:52.0 +0200
@@ -2,10 +2,10 @@
 # or on https://www.raspberrypi.org/documentation/configuration/config-txt.md
 # Our kernels are located on a Linux partition. Chainload U-Boot to load them.
 kernel=u-boot.bin
-# Use 64 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
-gpu_mem_256=64
-# Use 64 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
-gpu_mem_512=64
+# Use 96 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
+gpu_mem_256=96
+# Use 96 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
+gpu_mem_512=96
 # Use 128 MB for GPU for RPi with 1024 MB (Min 16 - Max 944 MB)
 gpu_mem_1024=128
 # Turbo 

commit kdevplatform for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package kdevplatform for openSUSE:Factory 
checked in at 2016-09-30 15:32:28

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


Package is "kdevplatform"

Changes:

--- /work/SRC/openSUSE:Factory/kdevplatform/kdevplatform.changes
2016-06-26 23:52:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevplatform.new/kdevplatform.changes   
2016-09-30 15:32:30.0 +0200
@@ -2 +2 @@
-Thu Jun 23 15:32:09 UTC 2016 - buschman...@opensuse.org
+Mon Sep 26 12:25:55 UTC 2016 - lbeltr...@kde.org
@@ -4,2 +4 @@
-- add fix-for-null-pointer-dereference-with-gcc6.patch to fix bug
-  kde#360707 on openSUSE Tumbleweed / GCC6 
+- Conflicts on lang-package to work around Factory bot bug
@@ -8 +7 @@
-Tue Jan 26 14:32:28 UTC 2016 - wba...@tmo.at
+Wed Aug 24 10:09:17 UTC 2016 - cgiboude...@gmx.com
@@ -10,3 +9 @@
-- Update to 1.7.3
-  * No upstream changelog provided
-  * Bugfix release 
+- Update to 5.0.0
@@ -15 +12 @@
-Tue Dec  1 19:23:10 UTC 2015 - wba...@tmo.at
+Thu Jul 21 19:18:24 UTC 2016 - wba...@tmo.at
@@ -17,5 +14,2 @@
-- Update to 1.7.2
-  * No upstream changelog provided
-  * Bugfix release 
-- Drop make-subversion-plugin-compile-with-subversion-1.9.patch,
-  included upstream
+- Remove libQt5Declarative/QtQuick1 build requirement to fix build
+  with Qt 5.7, it's not needed/used anyway
@@ -24 +18 @@
-Tue Nov 17 14:34:52 UTC 2015 - tittiatc...@gmail.com
+Thu Jan 28 10:38:37 UTC 2016 - tittiatc...@gmail.com
@@ -26,404 +20,2 @@
-- Drop obsolete requirement on commoncpp2
-

-Sun Aug 23 16:34:52 UTC 2015 - hrvoje.sen...@gmail.com
-
-- Added make-subversion-plugin-compile-with-subversion-1.9.patch
-

-Tue Feb 10 22:51:23 UTC 2015 - lbeltr...@kde.org
-
-- Update to 1.7.1
-  * No upstream changelog provided
-  * Bugfix release 
-

-Wed Aug 27 18:21:56 UTC 2014 - hrvoje.sen...@gmail.com
-
-- Update to 1.7.0
-  * No upstream changelog provided
-  * Last feature release based on kdelibs4 and Qt4
-- Bump kdevelop_version to 4.7.0
-- Bump libkdev_major to 8
-- Use kde4 macros for includes, kdevplatform respects kdelibs4 includes
-

-Sat Dec  7 23:06:48 UTC 2013 - cgiboude...@gmx.com
-
-- Update to 1.6.0
-  No changelog provided
-

-Thu Oct 31 16:53:39 UTC 2013 - dmitr...@opensuse.org
-
-- Update to version 1.5.2
-  * Disable color output for git-pull call
-  * Make sure delayedModificationWarningOn() is always called as a slot
-  * Use relativePath instead of relativeUrl to properly display spaces.
-  * Cleanup and fixup ProjectUtils to not leak and not trigger crashes.
-  * Add "--force" to git-rm call
-  * Fix crash / odd behavior in project tree view
-  * Fix uninitialized value found by valgrind
-  * Fix crash when re-loading the file manager plugin
-  * Fix licensing mistake in output view
-

-Sun Oct 27 23:23:10 UTC 2013 - hrvoje.sen...@gmail.com
-
-- Adjust filelists, so it builds on 12.2
-

-Thu May 30 13:46:04 UTC 2013 - dmitr...@opensuse.org
-
-- Update to version 1.5.1
-  * Fix possible crash in IBreakPointController
-  * Fixup "Fetch Project" dialog
-  * Rename some methods
-  * Check for QtWebKit.
-  * Use macro_log_feature for Grantlee.
-  * Minor: Strip whitespace
-  * Make "Create new class" preview aware of C++ specific variables.
-  * Raise kdelibs dependency to 4.7
-  * Fix crash in OutputExecutejob
-  * RunController: Fix dialog stacking
-  * Fix codeutils plugin, restoring Document/Rename Declaration.
-  * Fix another implicit conversion to QString
-  * React on errors of VcsJob
-  * GitPlugin: Do basic check if remote-url is valid
-  * Be more careful when accessing QList
-  * Avoid crash in VcsEventModel for Git
-  * Minor: Remove debugging output
-  * Enforce picking up of the right plugin, otherwise we got two 
-(plasmoid launcher and application) and the first one was used
-(plasmoid launcher) for native apps as well. That resulted in
-broken build & execution of the project.
-  * i18n: fix singular
-  * Add missing Messages.sh files
-

-Mon May 13 10:52:29 UTC 2013 - hrvoje.sen...@gmail.com
-
-- Obsolete libkdevplatform0 with libkdevplatform7
-

-Fri Apr 26 16:16:27 UTC 2013 - dmitr...@opensuse.org
-
-- Update 

commit perl-AnyEvent for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package perl-AnyEvent for openSUSE:Factory 
checked in at 2016-09-30 15:32:32

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


Package is "perl-AnyEvent"

Changes:

--- /work/SRC/openSUSE:Factory/perl-AnyEvent/perl-AnyEvent.changes  
2016-04-28 16:52:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-AnyEvent.new/perl-AnyEvent.changes 
2016-09-30 15:32:34.0 +0200
@@ -1,0 +2,33 @@
+Mon Sep 19 05:00:57 UTC 2016 - co...@suse.com
+
+- updated to 7.13
+   see /usr/share/doc/packages/perl-AnyEvent/Changes
+
+---
+Sun Sep 18 05:01:01 UTC 2016 - co...@suse.com
+
+- updated to 7.13
+   see /usr/share/doc/packages/perl-AnyEvent/Changes
+
+  7.13 Sat Sep 17 04:31:49 CEST 2016
+   - Only call tlsext_host_name for non-empty common names (reported
+by Maxime Soulé).
+  - log a (single) notice message if SNI is not supported.
+  - upgrade to UTS-46:9.0.0 draft and switch to non-transitional
+behaviour, beating thunderbird, ie, edge, chrome and safari to it 
:)
+(see also https://bugzilla.mozilla.org/show_bug.cgi?id=1218179)
+  - turns out the UTS-46 IDNA testcase failures were indeed bugs in the
+testcases and the specification and not in the code - the 
post-9.0.0
+unicode files have all known problems fixed, so finally the 
AnyEvent
+IDNA implementation can pass the full IDNA testsuite - without 
needing
+a single fix :)
+  - guarantee (and document) that condvar callbacks will be removed
+on invocation - important to avoid circular references.
+
+---
+Sun Feb  7 09:33:07 UTC 2016 - co...@suse.com
+
+- updated to 7.12
+   see /usr/share/doc/packages/perl-AnyEvent/Changes
+
+---

Old:

  AnyEvent-7.11.tar.gz

New:

  AnyEvent-7.13.tar.gz



Other differences:
--
++ perl-AnyEvent.spec ++
--- /var/tmp/diff_new_pack.KQqXsP/_old  2016-09-30 15:32:36.0 +0200
+++ /var/tmp/diff_new_pack.KQqXsP/_new  2016-09-30 15:32:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-AnyEvent
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-AnyEvent
-Version:7.11
+Version:7.13
 Release:0
 #Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
 %define cpan_name AnyEvent
@@ -43,23 +43,21 @@
 %{perl_requires}
 
 %description
-the AnyEvent manpage provides a uniform interface to various event loops.
-This allows module authors to use event loop functionality without forcing
-module users to use a specific event loop implementation (since more than
-one event loop cannot coexist peacefully).
+AnyEvent provides a uniform interface to various event loops. This allows
+module authors to use event loop functionality without forcing module users
+to use a specific event loop implementation (since more than one event loop
+cannot coexist peacefully).
 
-The interface itself is vaguely similar, but not identical to the the Event
-manpage module.
+The interface itself is vaguely similar, but not identical to the Event
+module.
 
 During the first call of any watcher-creation method, the module tries to
 detect the currently loaded event loop by probing whether one of the
-following modules is already loaded: the EV manpage, the AnyEvent::Loop
-manpage, the Event manpage, the Glib manpage, the Tk manpage, the
-Event::Lib manpage, the Qt manpage, the POE manpage. The first one found is
-used. If none are detected, the module tries to load the first four modules
-in the order given; but note that if the EV manpage is not available, the
-pure-perl the AnyEvent::Loop manpage should always work, so the other two
-are not normally tried.
+following modules is already loaded: EV, AnyEvent::Loop, Event, Glib, Tk,
+Event::Lib, Qt, POE. The first one found is used. If none are detected, the
+module tries to load the first four modules in the order given; but note
+that if EV is not available, the pure-perl AnyEvent::Loop should always
+work, so the other two are not normally tried.
 
 Because AnyEvent first checks for modules that are already loaded, loading
 an event model explicitly before first using AnyEvent will likely make that
@@ -80,7 +78,7 @@
 
 

commit cinnamon-branding-openSUSE for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package cinnamon-branding-openSUSE for 
openSUSE:Factory checked in at 2016-09-30 15:32:35

Comparing /work/SRC/openSUSE:Factory/cinnamon-branding-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.cinnamon-branding-openSUSE.new (New)


Package is "cinnamon-branding-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/cinnamon-branding-openSUSE/cinnamon-branding-openSUSE.changes
2016-03-29 10:39:51.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.cinnamon-branding-openSUSE.new/cinnamon-branding-openSUSE.changes
   2016-09-30 15:32:36.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 27 08:24:38 UTC 2016 - sor.ale...@meowr.ru
+
+- Bump version to 42.2.
+- Add sound effects from Mint Cinnamon artwork 5.2 (boo#989267).
+
+---

New:

  mint-artwork-cinnamon_5.2.tar.gz



Other differences:
--
++ cinnamon-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.OL8kp7/_old  2016-09-30 15:32:38.0 +0200
+++ /var/tmp/diff_new_pack.OL8kp7/_new  2016-09-30 15:32:38.0 +0200
@@ -16,18 +16,21 @@
 #
 
 
+%define mint_artwork_ver 5.2
 %define cinnamon_version %(rpm -q --queryformat '%%{VERSION}' cinnamon)
 Name:   cinnamon-branding-openSUSE
-Version:42.1
+Version:42.2
 Release:0
 Summary:openSUSE Branding of the Cinnamon Desktop Environment
 License:GPL-3.0+
 Group:  System/GUI/Other
 Url:https://en.opensuse.org/Portal:Cinnamon
 Source1:cinnamon-branding.gschema.override.in
+Source2:
http://packages.linuxmint.com/pool/main/m/mint-artwork-cinnamon/mint-artwork-cinnamon_%{mint_artwork_ver}.tar.gz
 BuildRequires:  cinnamon-branding-upstream
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme-branding-openSUSE
+BuildRequires:  pkgconfig
 BuildRequires:  wallpaper-branding-openSUSE
 BuildRequires:  pkgconfig(glib-2.0)
 Requires:   adwaita-icon-theme
@@ -47,7 +50,9 @@
 desktop environment.
 
 %prep
+%setup -q -c -T
 cp -f %{SOURCE1} cinnamon-branding.gschema.override.in
+%setup -q -T -D -a 2
 
 %build
 [ -f %{_datadir}/wallpapers/openSUSE-default.xml ]
@@ -55,12 +60,17 @@
   cinnamon-branding.gschema.override.in > cinnamon-branding.gschema.override
 
 %install
-install -Dm 0644 cinnamon-branding.gschema.override \
+install -Dpm 0644 cinnamon-branding.gschema.override \
   %{buildroot}%{_datadir}/glib-2.0/schemas/cinnamon-branding.gschema.override
 
-install -Dm 0644 %{_datadir}/icons/hicolor/scalable/apps/distributor.svg \
+install -Dpm 0644 %{_datadir}/icons/hicolor/scalable/apps/distributor.svg \
   %{buildroot}%{_datadir}/cinnamon/theme/menu.svg
 
+mkdir -p %{buildroot}%{_datadir}/sounds/cinnamon/opensuse/
+install -pm 0644 \
+  
mint-artwork-cinnamon-%{mint_artwork_ver}%{_datadir}/mint-artwork-cinnamon/sounds/*
 \
+  %{buildroot}%{_datadir}/sounds/cinnamon/opensuse/
+
 %fdupes %{buildroot}%{_datadir}/
 
 %post
@@ -73,5 +83,7 @@
 %defattr(-,root,root)
 %{_datadir}/glib-2.0/schemas/cinnamon-branding.gschema.override
 %{_datadir}/cinnamon/theme/menu.svg
+%dir %{_datadir}/sounds/cinnamon/
+%{_datadir}/sounds/cinnamon/opensuse/
 
 %changelog

++ cinnamon-branding.gschema.override.in ++
--- /var/tmp/diff_new_pack.OL8kp7/_old  2016-09-30 15:32:38.0 +0200
+++ /var/tmp/diff_new_pack.OL8kp7/_new  2016-09-30 15:32:38.0 +0200
@@ -23,6 +23,37 @@
 icon-theme = 'Adwaita'
 gtk-theme = 'Menta'
 
+[org.cinnamon.desktop.sound]
+theme-name='freedesktop'
+event-sounds=false
+input-feedback-sounds=false
+volume-sound-enabled=true
+volume-sound-file='/usr/share/sounds/cinnamon/opensuse/volume.oga'
+
 [org.cinnamon.desktop.wm.preferences]
 button-layout = 'menu:minimize,maximize,close'
 theme = 'Menta'
+
+[org.cinnamon.sounds]
+login-enabled=true
+login-file='/usr/share/sounds/cinnamon/opensuse/login.oga'
+logout-enabled=true
+logout-file='/usr/share/sounds/cinnamon/opensuse/logout.ogg'
+switch-enabled=true
+switch-file='/usr/share/sounds/cinnamon/opensuse/switch.oga'
+close-enabled=false
+close-file='/usr/share/sounds/cinnamon/opensuse/close.oga'
+map-enabled=false
+map-file='/usr/share/sounds/cinnamon/opensuse/map.oga'
+minimize-enabled=false
+minimize-file='/usr/share/sounds/cinnamon/opensuse/minimize.oga'
+maximize-enabled=false
+maximize-file='/usr/share/sounds/cinnamon/opensuse/maximize.oga'
+unmaximize-enabled=false
+unmaximize-file='/usr/share/sounds/cinnamon/opensuse/unmaximize.oga'
+tile-enabled=true
+tile-file='/usr/share/sounds/cinnamon/opensuse/tile.oga'
+plug-enabled=true
+plug-file='/usr/share/sounds/cinnamon/opensuse/plug.oga'
+unplug-enabled=true
+unplug-file='/usr/share/sounds/cinnamon/opensuse/unplug.oga'




commit mumble for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package mumble for openSUSE:Factory checked 
in at 2016-09-30 15:32:12

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


Package is "mumble"

Changes:

--- /work/SRC/openSUSE:Factory/mumble/mumble.changes2016-05-16 
12:04:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.mumble.new/mumble.changes   2016-09-30 
15:32:13.0 +0200
@@ -1,0 +2,14 @@
+Sun Sep 25 06:52:08 UTC 2016 - mailaen...@opensuse.org
+
+- Update to version 1.2.17
+  * Fixed a bug that could cause the Mumble log view to be
+inacessible after receiving a specially crafted text message.
+  * The PulseAudio backend will now fall back to default device
+if the chosen device is no longer present.
+  * Mumble now explicitly sends plain text notifications to KDE
+and Freedesktop.org notification endpoints.
+  * Xbox button/controller names as shown by Mumble should now be
+correct for controllers other than the first controller.
+- Add appdata.patch for https://en.opensuse.org/openSUSE:AppStore
+
+---

Old:

  mumble-1.2.16.tar.gz
  mumble-1.2.16.tar.gz.sig

New:

  appdata.patch
  mumble-1.2.17.tar.gz
  mumble-1.2.17.tar.gz.sig



Other differences:
--
++ mumble.spec ++
--- /var/tmp/diff_new_pack.X2EjCa/_old  2016-09-30 15:32:17.0 +0200
+++ /var/tmp/diff_new_pack.X2EjCa/_new  2016-09-30 15:32:17.0 +0200
@@ -49,7 +49,7 @@
 %bcond_with system_celt
 %bcond_without  system_speex
 Name:   mumble
-Version:1.2.16%{?snapshot:_%{snapshot}}
+Version:1.2.17%{?snapshot:_%{snapshot}}
 Release:0
 Summary:Voice Communication Client for Gamers
 License:BSD-3-Clause
@@ -65,6 +65,8 @@
 Patch0: mumble-1.2.2-buildcompare.diff
 # PATCH-FIX-UPSTREAM mumble-1.2.11-desktop_fix.diff -- 
https://github.com/mumble-voip/mumble/pull/1960
 Patch1: mumble-1.2.11-desktop_fix.diff
+# PATCH-FEATURE-UPSTREAM https://github.com/mumble-voip/mumble/pull/2564
+Patch2: appdata.patch
 BuildRequires:  boost-devel
 BuildRequires:  gcc-c++
 BuildRequires:  libcap-devel
@@ -182,6 +184,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 %if !%{with system_celt}
 %if 0%{?snapshot:1}
 tar -xzf %{SOURCE50}
@@ -379,6 +382,9 @@
 mkdir -p %{buildroot}%{_docdir}/%{name}
 cp -a scripts LICENSE README README.Linux %{buildroot}%{_docdir}/%{name}
 #
+mkdir -p %{buildroot}%{_datadir}/appdata/
+install -m 644 scripts/mumble.appdata.xml 
%{buildroot}%{_datadir}/appdata/mumble.appdata.xml
+#
 
 %pre server
 getent group mumble-server >/dev/null || groupadd -r mumble-server || :
@@ -456,5 +462,7 @@
 %if 0%{?suse_version} > 1310
 %ghost %{_rundir}/mumble-server
 %endif
+%dir %{_datadir}/appdata/
+%{_datadir}/appdata/mumble.appdata.xml
 
 %changelog

++ appdata.patch ++
>From 857341dd2d24c9da6dfc733ae2bb62c606ee1c12 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= 
Date: Sun, 25 Sep 2016 09:08:18 +0200
Subject: [PATCH] Add an appdata.xml file.

---
 scripts/mumble.appdata.xml | 16 
 1 file changed, 16 insertions(+)
 create mode 100644 scripts/mumble.appdata.xml

diff --git a/scripts/mumble.appdata.xml b/scripts/mumble.appdata.xml
new file mode 100644
index 000..a3ac459
--- /dev/null
+++ b/scripts/mumble.appdata.xml
@@ -0,0 +1,16 @@
+
+
+  mumble.desktop
+  CC0-1.0
+  BSD-3-Clause
+  Voice Chat Software
+  
+Mumble is an open source, low-latency, high quality voice chat software 
primarily intended for use while gaming.
+  
+  https://wiki.mumble.info
+  
+
+  
https://screenshots.debian.net/screenshots/000/001/906/large.png
+
+  
+
++ mumble-1.2.16.tar.gz -> mumble-1.2.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mumble-1.2.16/3rdparty/xinputcheck-src/xinputcheck.cpp 
new/mumble-1.2.17/3rdparty/xinputcheck-src/xinputcheck.cpp
--- old/mumble-1.2.16/3rdparty/xinputcheck-src/xinputcheck.cpp  2016-05-05 
16:56:03.0 +0200
+++ new/mumble-1.2.17/3rdparty/xinputcheck-src/xinputcheck.cpp  2016-09-24 
14:37:47.0 +0200
@@ -76,11 +76,23 @@
 static GUID IID_ValveStreamingGamepad = { MAKELONG(0x28DE, 0x11FF), 
0x, 0x, { 0x00, 0x00, 0x50, 0x49, 0x44, 0x56, 0x49, 0x44 } };
 static GUID IID_X360WiredGamepad = { MAKELONG(0x045E, 0x02A1), 0x, 
0x, { 0x00, 0x00, 0x50, 0x49, 0x44, 0x56, 0x49, 0x44 } };
 static GUID IID_X360WirelessGamepad = { MAKELONG(0x045E, 0x028E), 0x, 
0x, { 0x00, 0x00, 0x50, 0x49, 0x44, 0x56, 0x49, 0x44 } };
+static GUID IID_XOneWiredGamepad = { 

commit xorriso for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package xorriso for openSUSE:Factory checked 
in at 2016-09-30 15:32:18

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


Package is "xorriso"

Changes:

--- /work/SRC/openSUSE:Factory/xorriso/xorriso.changes  2016-09-21 
18:49:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.xorriso.new/xorriso.changes 2016-09-30 
15:32:22.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 25 10:16:46 UTC 2016 - mplus...@suse.com
+
+- Small spec file clenup
+- Recommend bwidget for tcl fronted
+
+---



Other differences:
--
++ xorriso.spec ++
--- /var/tmp/diff_new_pack.8b3wPi/_old  2016-09-30 15:32:24.0 +0200
+++ /var/tmp/diff_new_pack.8b3wPi/_new  2016-09-30 15:32:24.0 +0200
@@ -53,6 +53,7 @@
 Summary:GUI Frontend for xorriso
 Group:  Productivity/Multimedia/CD/Record
 Requires:   %{name} = %{version}
+Recommends: bwidget
 Requires:   tcl
 Requires:   tk
 
@@ -62,13 +63,6 @@
 %prep
 %setup -q
 
-%if 0%{?suse_version} > 0 && 0%{?suse_version} < 1000
-sed -i 's/-Werror//g' configure
-%endif
-%if 0%{?suse_version} > 0 && 0%{?suse_version} < 930
-sed -i 's/-Wextra//g' configure
-%endif
-
 %build
 %configure
 make %{?_smp_mflags}






commit zeal for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package zeal for openSUSE:Factory checked in 
at 2016-09-30 15:31:58

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


Package is "zeal"

Changes:

--- /work/SRC/openSUSE:Factory/zeal/zeal.changes2016-05-23 
16:39:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.zeal.new/zeal.changes   2016-09-30 
15:31:58.0 +0200
@@ -1,0 +2,8 @@
+Sun Sep 25 10:51:38 UTC 2016 - dap.darkn...@gmail.com
+
+- Update to 0.3.0
+  * no upstream changes log.
+- Deleted zeal-no-date-and-time.diff (can't find file to patch).
+- Added man page via `help2man`.
+
+---

Old:

  zeal-0.2.1.tar.gz
  zeal-no-date-and-time.diff

New:

  zeal-0.3.0.tar.gz
  zeal.1



Other differences:
--
++ zeal.spec ++
--- /var/tmp/diff_new_pack.SsJ5X1/_old  2016-09-30 15:32:00.0 +0200
+++ /var/tmp/diff_new_pack.SsJ5X1/_new  2016-09-30 15:32:00.0 +0200
@@ -17,15 +17,16 @@
 
 
 Name:   zeal
-Version:0.2.1
+Version:0.3.0
 Release:0
 Summary:Offline API documentation browser
 License:GPL-3.0
 Group:  Development/Tools/Other
 Url:http://zealdocs.org
 Source0:
https://github.com/zealdocs/zeal/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-OPENSUSE vs. file-contains-current-date WARNING:
-Patch0: zeal-no-date-and-time.diff
+# `help2man zeal > zeal.1` can't be run without X started.
+Source9:zeal.1
+
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libQt5Gui-private-headers-devel >= 5.2.0
@@ -55,7 +56,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %qmake5 
@@ -66,6 +66,10 @@
 %suse_update_desktop_file -r %{name} Office Viewer
 %fdupes -s %{buildroot}%{_datadir}
 
+# Man pages:
+mkdir -p %{buildroot}%{_mandir}/man1
+cp %{SOURCE9} %{buildroot}%{_mandir}/man1
+
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -78,6 +82,7 @@
 %defattr(-,root,root,-)
 %doc COPYING README.md
 %{_bindir}/%{name}
+%{_mandir}/man1/%{name}.1.*
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/icons/hicolor/*/apps/%{name}*
 

++ zeal-0.2.1.tar.gz -> zeal-0.3.0.tar.gz ++
 21463 lines of diff (skipped)

++ zeal-0.2.1.tar.gz -> zeal.1 ++
Files /work/SRC/openSUSE:Factory/zeal/zeal-0.2.1.tar.gz and 
/work/SRC/openSUSE:Factory/.zeal.new/zeal.1 differ




commit trytond_account_invoice for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package trytond_account_invoice for 
openSUSE:Factory checked in at 2016-09-30 15:32:04

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


Package is "trytond_account_invoice"

Changes:

--- 
/work/SRC/openSUSE:Factory/trytond_account_invoice/trytond_account_invoice.changes
  2016-09-23 11:29:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.trytond_account_invoice.new/trytond_account_invoice.changes
 2016-09-30 15:32:05.0 +0200
@@ -0,0 +1,5 @@
+---
+Fri Sep 23 10:48:23 UTC 2016 - jeng...@inai.de
+
+- Correct summary
+



Other differences:
--
++ trytond_account_invoice.spec ++
--- /var/tmp/diff_new_pack.FdfCBB/_old  2016-09-30 15:32:06.0 +0200
+++ /var/tmp/diff_new_pack.FdfCBB/_new  2016-09-30 15:32:06.0 +0200
@@ -21,16 +21,16 @@
 Name:   trytond_account_invoice
 Version:%{majorver}.3
 Release:0
-Summary:Tryton is an OpenSource ERP system
+Summary:The "account_invoice" module for the Tryton ERP system
 License:GPL-3.0
 Group:  Productivity/Office/Management
 Url:http://www.tryton.org/
 Source: 
http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 # List of additional build dependencies
+BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-BuildRequires:  fdupes
 Requires:   python-dateutil
 Requires:   trytond
 Requires:   trytond_account
@@ -43,7 +43,7 @@
 BuildArch:  noarch
 
 %description
-The account_invoice module of the Tryton application platform.
+The account_invoice module add invoices and payment terms.
 
 %prep
 %setup -q
@@ -51,7 +51,6 @@
 %build
 python setup.py build
 
-
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 %fdupes -s %{buildroot}




commit trytond_account_invoice_stock for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package trytond_account_invoice_stock for 
openSUSE:Factory checked in at 2016-09-30 15:32:01

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


Package is "trytond_account_invoice_stock"

Changes:

--- 
/work/SRC/openSUSE:Factory/trytond_account_invoice_stock/trytond_account_invoice_stock.changes
  2016-09-23 11:29:22.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.trytond_account_invoice_stock.new/trytond_account_invoice_stock.changes
 2016-09-30 15:32:02.0 +0200
@@ -0,0 +1,5 @@
+---
+Fri Sep 23 10:49:34 UTC 2016 - jeng...@inai.de
+
+- Correct summary
+



Other differences:
--
++ trytond_account_invoice_stock.spec ++
--- /var/tmp/diff_new_pack.uqyiKw/_old  2016-09-30 15:32:03.0 +0200
+++ /var/tmp/diff_new_pack.uqyiKw/_new  2016-09-30 15:32:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package trytond_account_invoice_stock
 #
-# Copyright (c) 2014 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2014-2016 Dr. Axel Braun
 #
 # All modifications and additions to the file contributed by third parties
@@ -14,6 +14,8 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 %define majorver 3.8
 
@@ -23,16 +25,16 @@
 BuildRequires: python-setuptools 
 Version:%{majorver}.0
 Release:0
-License:GPL-3.0
 Url:http://www.tryton.org/
 Source: 
http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
+Summary:The "account_invoice_stock" module for the Tryton ERP system
+License:GPL-3.0
 Group:  Productivity/Office/Management
-Summary:Tryton is an OpenSource ERP system
 %py_requires
 Requires:   trytond
 Requires:   trytond_account_invoice 
-Requires:   trytond_stock
 Requires:   trytond_product
+Requires:   trytond_stock
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
@@ -50,10 +52,11 @@
 %build
 python setup.py build

-
 %install
 python setup.py install --prefix=%_prefix --root=%buildroot 
 
 %files 
 %defattr(-,root,root)
 %{python_sitelib}/*
+
+%changelog




commit runc for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package runc for openSUSE:Factory checked in 
at 2016-09-30 15:31:55

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


Package is "runc"

Changes:

--- /work/SRC/openSUSE:Factory/runc/runc.changes2016-09-21 
18:49:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.runc.new/runc.changes   2016-09-30 
15:31:56.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 21 05:13:26 UTC 2016 - jeng...@inai.de
+
+- Run fdupes.
+
+---



Other differences:
--
++ runc.spec ++
--- /var/tmp/diff_new_pack.4YDaeV/_old  2016-09-30 15:31:58.0 +0200
+++ /var/tmp/diff_new_pack.4YDaeV/_new  2016-09-30 15:31:58.0 +0200
@@ -47,6 +47,7 @@
 Group:  System/Management
 Url:https://github.com/opencontainers/runc
 Source: %{name}-git.%{git_version}.tar.xz
+BuildRequires:  fdupes
 %ifarch %go_arches
 BuildRequires:  go >= 1.5
 BuildRequires:  go-go-md2man
@@ -144,6 +145,8 @@
 %{__install} -m644 man/man8/runc*.8 %{buildroot}%{_mandir}/man8
 %endif
 
+%fdupes %{buildroot}/%{_prefix}
+
 %files
 %defattr(-,root,root)
 %doc README.md LICENSE




commit libgsignon-glib for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package libgsignon-glib for openSUSE:Factory 
checked in at 2016-09-30 15:31:52

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


Package is "libgsignon-glib"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.libgsignon-glib.new/libgsignon-glib.changes 
2016-09-30 15:31:53.0 +0200
@@ -0,0 +1,28 @@
+---
+Sun Sep 18 15:05:54 UTC 2016 - avvi...@yandex.by
+
+- Use _typelibdir and _girdir macros
+- Use gsignond instead of signond
+- Use the session bus instead of p2p
+
+---
+Thu Feb 11 16:26:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 2.4.1:
+  * Add Vala support.
+  * Fix GObject introspection.
+  * Replace GSimpleAsyncResult with GTask.
+- Add libgsignon-glib-disable-werror.patch: disable -Werror.
+
+---
+Mon Oct 19 17:54:06 UTC 2015 - sor.ale...@meowr.ru
+
+- Use signond daemon.
+- Spec redesign.
+- Fix licence.
+- Add baselibs.conf.
+
+---
+Wed Sep  2 13:55:35 UTC 2015 - and.novem...@opensuse.org
+
+- initial package for openSUSE

New:

  baselibs.conf
  libgsignon-glib-2.4.1.tar.gz
  libgsignon-glib-disable-werror.patch
  libgsignon-glib.changes
  libgsignon-glib.spec



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

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


%define dbus_type session
%define typelib typelib-1_0-gSignon-1_0
%define sover   1
%define _typelibdir %(pkg-config --variable=typelibdir 
gobject-introspection-1.0)
%define _girdir %(pkg-config --variable=girdir gobject-introspection-1.0)
%define _version a10da2694106fe6de4587278e09dc85e72b33ae2
Name:   libgsignon-glib
Version:2.4.1
Release:0
Summary:Single signon authentication library for GLib applications
License:LGPL-2.1
Group:  System/Libraries
Url:https://gitlab.com/accounts-sso/libgsignon-glib
Source: 
https://gitlab.com/accounts-sso/%{name}/repository/archive.tar.gz?ref=%{_version}#/%{name}-%{version}.tar.gz
Source1:baselibs.conf
# PATCH-FIX-OPENSUSE libgsignon-glib-gtk2-disable-werror.patch 
sor.ale...@meowr.ru -- Disable -Werror.
Patch0: %{name}-disable-werror.patch
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  fdupes
BuildRequires:  gtk-doc
BuildRequires:  libtool
BuildRequires:  pkgconfig
BuildRequires:  pkgconfig(check)
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(gobject-introspection-1.0)
BuildRequires:  pkgconfig(pygobject-3.0)
BuildRequires:  pkgconfig(python2)
BuildRequires:  pkgconfig(python3)
Requires:   dbus-1
Requires:   gsignond
Recommends: gsignond-plugin-oauth
Recommends: gsignond-plugin-sasl
%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200 || (0%{?sle_version} 
>= 120100 && 0%{?is_opensuse})
BuildRequires:  vala >= 0.28.0
%endif

%description
This project is a library for managing single signon credentilas
which can be used from GLib applications. It is effectively a GLib
binding for the D-Bus API provided by signond.

%package -n %{name}%{sover}
Summary:Single signon authentication library for GLib Applications
Group:  System/Libraries

%description -n %{name}%{sover}
This package contains the shared libraries for use by applications.

%package -n python-libgsignon
Summary:Python bindings for the single signon authentication library
Group:  Development/Languages/Python

%description -n python-libgsignon
This package contains the python bindings for the single signon
authentication library.

%package -n python3-libgsignon
Summary:Python bindings for the Single signon authentication 

commit python-openstacksdk for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-openstacksdk for 
openSUSE:Factory checked in at 2016-09-30 15:31:48

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


Package is "python-openstacksdk"

Changes:

--- /work/SRC/openSUSE:Factory/python-openstacksdk/python-openstacksdk.changes  
2016-05-23 16:40:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openstacksdk.new/python-openstacksdk.changes 
2016-09-30 15:31:50.0 +0200
@@ -1,0 +2,98 @@
+Fri Sep 23 08:04:49 UTC 2016 - mj...@suse.com
+
+update to version 0.9.7
+  * Revert "Event list can not display "timestamp"
+  * Event list can not display "timestamp"
+  * Add project_id field to cluster's policy and profile
+  * Fix the issue non-admin user failed to list trusts
+  * Fix error in node action
+  * compute/v2/server: add ?all_tenants=bool to list
+
+update to version 0.9.6
+  * Add extended Glance Image properties
+  * Fix connection init when session is provided
+  * Rebase keystone v3 proxy to proxy2
+  * Fix 'config_drive' and 'networks' for compute server
+  * Fix cluster query mapping
+  * Rebase keystone resources onto resource2
+  * Add new function for router-gateway
+  * Obtain Image checksum via additional GET
+  * Adjust router add/remove interface method names
+  * Add 'dependents' property to Node and Cluster class
+  * Add QoS rule type object and CRUD commands
+  * Add QoS bandwidth limit rule object and CRUD commands
+  * Add QoS DSCP marking rule object and CRUD commands
+  * Add QoS minimum bandwidth rule object and CRUD commands
+  * Add network segment create, delete and update support
+  * Rebase telemetry resources to resource2/proxy2
+  * Fix telemetry/metering service version
+  * Fix the issue that 'type' field is missing in profile list
+
+---
+Fri Sep  2 19:06:15 UTC 2016 - tbecht...@suse.com
+
+update to version 0.9.5
+  * Updated from global requirements
+  * Fix issue "SDKException: Connection failure that may be retried."
+
+---
+Tue Aug 30 15:24:12 UTC 2016 - tbecht...@suse.com
+
+update to version 0.9.4
+  * Add SoftwareDeployment resource to orchestration
+  * Add policy validation for senlin
+  * Fix cluster resource in cluster service
+  * Add API microversion support
+  * Add collect_cluster_attrs API to cluster service
+  * Remove update_flavor method from compute
+  * Fix problems about location header in resource2
+  * Add SoftwareConfig resource to orchestration
+  * _alternate_id should return a server-side name
+  * Add support for message resource of Zaqar v2 API
+  * Relocate alarm service into a submodule
+  * Add support for claim for Zaqar V2 API
+  * Add QoS policy object and CRUD commands.
+  * Replace _transpose_component with _filter_component
+  * Tweak endpoint discovery for apache-style services
+  * Improve docstring for some resource2 methods
+  * Add services operations into compute service
+  * Add 'check_stack' operation to proxy
+  * Fix test_limits functional test failure
+  * Add profile validation for senlin
+  * Add force-delete into compute service
+  * Make end-user modules accessible from top level
+  * Fix orchestration service initialization
+  * HAProxy uses milliseconds for its timeout values.
+  * Rebase cluster service to resource2/proxy2
+  * Rebase orchestration to resource2/proxy2
+  * Support fetching network project default quota
+  * Add support for Zaqar V2 queue resource
+  * Fix nova server image and flavor
+  * Add 'to_dict()' method to resource2.Resource
+  * Minor network RBAC policy updates
+  * Add template validation support to orchestration
+  * Refactor Key Manager for resource2
+  * Get endpoints directly from services
+  * Refactor image v2 to use resource2/proxy2
+  * Updated from global requirements
+  * Add support for subscription for Zaqar V2 API
+  * Expose 'requires_id' to get_xxx proxy functions
+
+---
+Fri Jul 22 15:02:54 UTC 2016 - tbecht...@suse.com
+
+- update to version 0.9.0:
+  * Refactor compute for new resource/proxy
+  * Allow alternate_id to be accessed directly
+  * Add neutron rbac support
+  * Updated from global requirements
+  * Add temporary test_proxy_base2
+  * Add segment_id property to subnet resource
+  * Allow resources to check their equality
+  * Remove type=timestamp usages
+  * Cluster user guide - part 2
+  * Move version definition
+  * Fix clustering event properties
+- update _service and switch to upstream .spec file
+
+---

Old:

  openstacksdk-0.8.5.tar.gz

New:

  

commit perl-Net-Domain-TLD for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Net-Domain-TLD for 
openSUSE:Factory checked in at 2016-09-30 15:31:22

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


Package is "perl-Net-Domain-TLD"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-Domain-TLD/perl-Net-Domain-TLD.changes  
2016-02-26 00:39:17.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-Domain-TLD.new/perl-Net-Domain-TLD.changes 
2016-09-30 15:31:22.0 +0200
@@ -1,0 +2,9 @@
+Sun Sep 18 05:45:59 UTC 2016 - co...@suse.com
+
+- updated to 1.75
+   see /usr/share/doc/packages/perl-Net-Domain-TLD/Changes
+
+  1.75  Sat Sep 17 20:00 2016
+  - gtld_new update as per latest IANA db entries
+
+---

Old:

  Net-Domain-TLD-1.74.tar.gz

New:

  Net-Domain-TLD-1.75.tar.gz



Other differences:
--
++ perl-Net-Domain-TLD.spec ++
--- /var/tmp/diff_new_pack.XWSLrM/_old  2016-09-30 15:31:23.0 +0200
+++ /var/tmp/diff_new_pack.XWSLrM/_new  2016-09-30 15:31:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Net-Domain-TLD
-Version:1.74
+Version:1.75
 Release:0
 %define cpan_name Net-Domain-TLD
 Summary:Work with TLD names

++ Net-Domain-TLD-1.74.tar.gz -> Net-Domain-TLD-1.75.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Domain-TLD-1.74/Changes 
new/Net-Domain-TLD-1.75/Changes
--- old/Net-Domain-TLD-1.74/Changes 2016-02-16 01:12:35.0 +0100
+++ new/Net-Domain-TLD-1.75/Changes 2016-09-18 05:02:17.0 +0200
@@ -277,3 +277,5 @@
 
 1.74  Mon Feb 15 16:00 2016
 - gtld_new update as per latest IANA db entries
+1.75  Sat Sep 17 20:00 2016
+- gtld_new update as per latest IANA db entries
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Domain-TLD-1.74/META.json 
new/Net-Domain-TLD-1.75/META.json
--- old/Net-Domain-TLD-1.74/META.json   2016-02-16 01:20:16.0 +0100
+++ new/Net-Domain-TLD-1.75/META.json   2016-09-18 05:03:59.0 +0200
@@ -38,6 +38,6 @@
   }
},
"release_status" : "stable",
-   "version" : "1.74",
+   "version" : "1.75",
"x_serialization_backend" : "JSON::PP version 2.27203"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Domain-TLD-1.74/META.yml 
new/Net-Domain-TLD-1.75/META.yml
--- old/Net-Domain-TLD-1.74/META.yml2016-02-16 01:20:16.0 +0100
+++ new/Net-Domain-TLD-1.75/META.yml2016-09-18 05:03:59.0 +0200
@@ -20,5 +20,5 @@
 requires:
   Carp: '0'
   Storable: '0'
-version: '1.74'
+version: '1.75'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.012'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Domain-TLD-1.74/lib/Net/Domain/TLD.pm 
new/Net-Domain-TLD-1.75/lib/Net/Domain/TLD.pm
--- old/Net-Domain-TLD-1.74/lib/Net/Domain/TLD.pm   2016-02-16 
01:18:11.0 +0100
+++ new/Net-Domain-TLD-1.75/lib/Net/Domain/TLD.pm   2016-09-18 
05:01:23.0 +0200
@@ -3,7 +3,7 @@
 use base qw( Exporter );
 use 5.006;
 our @EXPORT_OK = qw( tlds tld_exists %tld_profile );
-our $VERSION = '1.74';
+our $VERSION = '1.75';
 
 use warnings;
 use Carp;
@@ -433,13 +433,16 @@
 'קום' => q{VeriSign Sarl},
 'آزمایشی' => q{Internet Assigned Numbers Authority},
 'إختبار' => q{Internet Assigned Numbers Authority},
+'ابوظبي' => q{Abu Dhabi Systems and Information Centre},
 'ارامكو' => q{Aramco Services Company},
 'الاردن' => q{National Information Technology Center 
(NITC)},
 'الجزائر' => q{CERIST},
 'السعودية' => q{Communications and Information Technology 
Commission},
+'العليان' => q{Crescent Holding GmbH},
 'المغرب' => q{Agence Nationale de Réglementation des 
Télécommunications (ANRT)},
 'امارات' => q{Telecommunications Regulatory Authority 
(TRA)},
 'ایران' => q{Institute for Research in Fundamental 
Sciences (IPM)},
+'بارت' => q{Not assigned},
 'بازار' => q{CORE Association},
 'بيتك' => q{Kuwait Finance House},
 'بھارت' => q{National Internet Exchange of India},
@@ -458,11 +461,17 @@
 'موقع' => q{Suhub Electronic Establishment},
 'همراه' => q{Asia Green IT System Bilgisayar San. ve Tic. 
Ltd. Sti.},
 'پاکستان' => q{Not assigned},
+'ڀارت' => q{Not assigned},
 'aaa' => q{American Automobile Association, Inc.},
 'aarp' => q{AARP},
+'abarth' => q{Fiat Chrysler Automobiles N.V.},
 'abb' => q{ABB Ltd},
 'abbott' => q{Abbott Laboratories, 

commit libfvde for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package libfvde for openSUSE:Factory checked 
in at 2016-09-30 15:31:33

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


Package is "libfvde"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.libfvde.new/libfvde.changes 2016-09-30 
15:31:34.0 +0200
@@ -0,0 +1,5 @@
+---
+Thu Sep  1 02:25:08 UTC 2016 - greg.freem...@gmail.com
+
+- initial package 0~20160918
+

New:

  libfvde-experimental-20160918.tar.gz
  libfvde.changes
  libfvde.spec



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

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


%define lname   libfvde1
%define timestamp 20160918
Name:   libfvde
Version:0~%{timestamp}
Release:0
Summary:Library to access the File Vault Drive Encryption format
License:LGPL-3.0+ and GFDL-1.3+
Group:  Productivity/File utilities
Url:https://github.com/libyal/libfvde/
Source: 
https://github.com/libyal/libfvde/releases/download/%{timestamp}/libfvde-experimental-%{timestamp}.tar.gz
BuildRequires:  pkg-config
BuildRequires:  pkgconfig(fuse)
BuildRequires:  pkgconfig(zlib)
BuildRequires:  pkgconfig(openssl)

BuildRequires:  pkgconfig(libbfio) >= 20130721
BuildRequires:  pkgconfig(libcdata) >= 20140105
BuildRequires:  pkgconfig(libcfile) >= 20130609
BuildRequires:  pkgconfig(libclocale) >= 20130609
BuildRequires:  pkgconfig(libcnotify) >= 20120425
BuildRequires:  pkgconfig(libcpath) >= 20130609
BuildRequires:  pkgconfig(libcsplit) >= 20130609
BuildRequires:  pkgconfig(libcsystem) >= 20120425
BuildRequires:  pkgconfig(libcthreads) >= 20150101
BuildRequires:  pkgconfig(libfcache) >= 20120405
BuildRequires:  pkgconfig(libfdata) >= 20120405
BuildRequires:  pkgconfig(libfvalue) >= 20150101
BuildRequires:  pkgconfig(libuna) >= 20150101
BuildRequires:  pkgconfig(libcaes) 
BuildRequires:  pkgconfig(libfguid) 
BuildRequires:  pkgconfig(libhmac) 
#BuildRequires:  pkgconfig(libtool) 
#BuildRequires:  pkgconfig(libcerror) >= 20140105
#BuildRequires:  pkgconfig(libcstring) >= 20120425

BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
libfvde is a library to access the File Vault Drive Encryption format.

%package -n %{lname}
Summary:Library to access the File Vault Drive Encryption format
License:LGPL-3.0+
Group:  System/Libraries

%description -n %{lname}
The libfvde library is a library to access the File Vault Drive Encryption 
format

%package tools
Summary:Several tools for reading the File Vault Drive Encryption format
License:LGPL-3.0+
Group:  Productivity/File utilities
Requires:   %{lname} = %{version}

%description tools
Several tools for reading the File Vault Drive Encryption format

See libfvde for additional details.

%package devel
Summary:Header files and libraries for developing applications for 
libfvde
License:LGPL-3.0+ and GFDL-1.3+
Group:  Development/Libraries/C and C++
Requires:   %{lname} = %{version}

%description devel
Header files and libraries for developing applications for libfvde

See libfvde for additional details.

This package contains libraries and header files for developing
applications that want to make use of libfvde.

%package -n python-%{name}
Summary:Python 2 bindings for libfvde
License:LGPL-3.0+
Group:  Development/Libraries/Python
Requires:   %{lname} = %{version}
Requires:   python
BuildRequires:  pkgconfig(python2)
Provides:   pyfvde

%description -n python-%{name}
This packinge provides Python 2 bindings for libfvde

%package -n python3-%{name}
Summary:Python 3 bindings for libfvde
License:LGPL-3.0+
Group:  Development/Libraries/Python
Requires:   %{lname} = %{version}
Requires:   python3
BuildRequires:  pkgconfig(python3)
Provides:   pyfvde

%description -n 

commit python-congressclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-congressclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:49

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


Package is "python-congressclient"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-congressclient.new/python-congressclient.changes
 2016-09-30 15:30:51.0 +0200
@@ -0,0 +1,17 @@
+---
+Thu Sep  8 12:25:34 UTC 2016 - tbecht...@suse.com
+
+update to version 1.5.0
+  * Remove discover from test-requirements
+  * Remove python-keystoneclient dependency
+  * Add __ne__ built-in function
+  * Add missing makefile so HTML docs can be generated
+  * Add release notes
+  * Updated from global requirements
+  * Support push rows to datasources
+
+---
+Fri Aug 26 10:45:21 UTC 2016 - tbecht...@suse.com
+
+- Initial packaging (version 1.4.0)
+

New:

  _service
  python-congressclient-1.5.0.tar.gz
  python-congressclient.changes
  python-congressclient.spec



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

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


%global sname python-congressclient
Name:   python-congressclient
Version:1.5.0
Release:0
Summary:Client library for Congress
License:Apache-2.0
Group:  Documentation
Url:http://launchpad.net/%{name}
Source0:
https://pypi.io/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
BuildRequires:  openstack-macros
BuildRequires:  python-devel
BuildRequires:  python-fixtures >= 3.0.0
BuildRequires:  python-jsonpatch >= 1.1
BuildRequires:  python-mock >= 2.0
BuildRequires:  python-osc-lib >= 0.4.0
BuildRequires:  python-oslo.log >= 1.14.0
BuildRequires:  python-oslo.serialization >= 1.10.0
BuildRequires:  python-oslo.utils >= 3.16.0
BuildRequires:  python-oslotest >= 1.10.0
BuildRequires:  python-pbr >= 1.6
BuildRequires:  python-python-subunit >= 0.0.18
BuildRequires:  python-requests-mock >= 1.0
BuildRequires:  python-setuptools >= 16.0
BuildRequires:  python-testrepository >= 0.0.18
BuildRequires:  python-testscenarios >= 0.4
BuildRequires:  python-testtools >= 1.4.0
Requires:   python-Babel >= 2.3.4
Requires:   python-cliff >= 1.15.0
Requires:   python-keystoneauth1 >= 2.10.0
Requires:   python-oslo.i18n >= 2.1.0
Requires:   python-oslo.log >= 1.14.0
Requires:   python-oslo.serialization >= 1.10.0
Requires:   python-oslo.utils >= 3.16.0
Requires:   python-pbr >= 1.6
Requires:   python-requests >= 2.10.0
Requires:   python-six >= 1.9.0
BuildArch:  noarch

%description
This package is client for Congress component.
Congress is an open policy framework for the cloud.
Congress fetches information about VMs from Nova,
and network state from Neutron, etc. Congress then
feeds input data from those services into its policy
engine where Congress verifies that the cloud's actual
state abides by the cloud operator's policies. Congress
is designed to work with any policy and any cloud service.

%package doc
Summary:Documentation for OpenStack Congress API client libary
Group:  Documentation
BuildRequires:  python-Sphinx
BuildRequires:  python-oslosphinx >= 2.5.0
BuildRequires:  python-reno >= 1.8.0

%description doc
This package is client for Congress component.
Congress is an open policy framework for the cloud.
Congress fetches information about VMs from Nova,
and network state from Neutron, etc. Congress then
feeds input data from those services into its policy
engine where Congress verifies that the cloud's actual
state abides by the cloud operator's policies. Congress
is designed to work with any policy and any cloud service.
This package contains the documentation.

%prep
%setup -q -n %{name}-%{version}

%build
%{py2_build}

# Build HTML docs and 

commit perl-Module-ScanDeps for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Module-ScanDeps for 
openSUSE:Factory checked in at 2016-09-30 15:31:24

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


Package is "perl-Module-ScanDeps"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Module-ScanDeps/perl-Module-ScanDeps.changes
2016-04-12 19:35:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-ScanDeps.new/perl-Module-ScanDeps.changes
   2016-09-30 15:31:25.0 +0200
@@ -1,0 +2,13 @@
+Sun Sep 18 05:41:16 UTC 2016 - co...@suse.com
+
+- updated to 1.22
+   see /usr/share/doc/packages/perl-Module-ScanDeps/Changes
+
+  1.22  2016-09-17
+  
+  - Fix RT#117887: Not parsing new release of Net::DNS::Resolver
+add %Preload rule for Net/DNS/Resolver.pm
+  
+  - Move to GitHub. Thanks, OpenFoundry, for years of service.
+
+---

Old:

  Module-ScanDeps-1.21.tar.gz

New:

  Module-ScanDeps-1.22.tar.gz



Other differences:
--
++ perl-Module-ScanDeps.spec ++
--- /var/tmp/diff_new_pack.xe7Vu5/_old  2016-09-30 15:31:26.0 +0200
+++ /var/tmp/diff_new_pack.xe7Vu5/_new  2016-09-30 15:31:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Module-ScanDeps
-Version:1.21
+Version:1.22
 Release:0
 %define cpan_name Module-ScanDeps
 Summary:Recursively scan Perl code for dependencies
@@ -81,6 +81,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc AUTHORS Changes README
+%doc AUTHORS Changes LICENSE README
 
 %changelog

++ Module-ScanDeps-1.21.tar.gz -> Module-ScanDeps-1.22.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-ScanDeps-1.21/Changes 
new/Module-ScanDeps-1.22/Changes
--- old/Module-ScanDeps-1.21/Changes2016-04-05 12:07:12.0 +0200
+++ new/Module-ScanDeps-1.22/Changes2016-09-17 22:52:37.0 +0200
@@ -1,3 +1,10 @@
+1.22  2016-09-17
+
+- Fix RT#117887: Not parsing new release of Net::DNS::Resolver
+  add %Preload rule for Net/DNS/Resolver.pm
+
+- Move to GitHub. Thanks, OpenFoundry, for years of service.
+
 1.21  2016-04-05
 
 - %Preload: add rules for List::MoreUtils and Log::Dispatch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-ScanDeps-1.21/LICENSE 
new/Module-ScanDeps-1.22/LICENSE
--- old/Module-ScanDeps-1.21/LICENSE1970-01-01 01:00:00.0 +0100
+++ new/Module-ScanDeps-1.22/LICENSE2016-09-17 22:28:45.0 +0200
@@ -0,0 +1,201 @@
+  The Artistic License 2.0
+
+   Copyright (c) 2000-2006, The Perl Foundation.
+
+ Everyone is permitted to copy and distribute verbatim copies
+  of this license document, but changing it is not allowed.
+
+Preamble
+
+This license establishes the terms under which a given free software
+Package may be copied, modified, distributed, and/or redistributed.
+The intent is that the Copyright Holder maintains some artistic
+control over the development of that Package while still keeping the
+Package available as open source and free software.
+
+You are always permitted to make arrangements wholly outside of this
+license directly with the Copyright Holder of a given Package.  If the
+terms of this license do not permit the full use that you propose to
+make of the Package, you should contact the Copyright Holder and seek
+a different licensing arrangement. 
+
+Definitions
+
+"Copyright Holder" means the individual(s) or organization(s)
+named in the copyright notice for the entire Package.
+
+"Contributor" means any party that has contributed code or other
+material to the Package, in accordance with the Copyright Holder's
+procedures.
+
+"You" and "your" means any person who would like to copy,
+distribute, or modify the Package.
+
+"Package" means the collection of files distributed by the
+Copyright Holder, and derivatives of that collection and/or of
+those files. A given Package may consist of either the Standard
+Version, or a Modified Version.
+
+"Distribute" means providing a copy of the Package or making it
+accessible to anyone else, or in the case of a company or
+organization, to others outside of your company or organization.
+
+"Distributor Fee" means any fee that you charge for Distributing
+this Package or providing support for this Package to another
+party.  It does not mean licensing fees.
+
+"Standard Version" refers to the Package if it has not been
+modified, or has been modified only in ways explicitly requested
+by 

commit perl-Unicode-String for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Unicode-String for 
openSUSE:Factory checked in at 2016-09-30 15:31:19

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


Package is "perl-Unicode-String"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Unicode-String/perl-Unicode-String.changes  
2015-08-29 20:04:49.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Unicode-String.new/perl-Unicode-String.changes 
2016-09-30 15:31:19.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep  9 06:17:46 UTC 2016 - co...@suse.com
+
+- updated to 2.10
+  * Applied patch from Michael Joyce that is required to make the
+test pass for perl-5.24 (perl522.patch)
+
+---

Old:

  Unicode-String-2.09.tar.gz
  perl522.patch

New:

  Unicode-String-2.10.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Unicode-String.spec ++
--- /var/tmp/diff_new_pack.LR081a/_old  2016-09-30 15:31:21.0 +0200
+++ /var/tmp/diff_new_pack.LR081a/_new  2016-09-30 15:31:21.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Unicode-String
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,52 +17,56 @@
 
 
 Name:   perl-Unicode-String
-Version:2.09
+Version:2.10
 Release:0
-Summary:String of Unicode characters (UCS2/UTF16)
-License:Artistic-1.0
+%define cpan_name Unicode-String
+Summary:String of Unicode characters (UTF-16BE)
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
-Url:http://cpan.org/modules/by-module/Unicode/
-Source: 
http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Unicode-String-%version.tar.gz
-Patch0: perl522.patch
+Url:http://search.cpan.org/dist/Unicode-String/
+Source0:
http://www.cpan.org/authors/id/G/GA/GAAS/GAAS/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
+%{perl_requires}
 
 %description
-A Unicode::String object represents a sequence of Unicode characters.
-The Unicode Standard is a fixed-width, uniform encoding scheme for
-written characters and text. This encoding treats alphabetic
-characters, ideographic characters, and symbols identically, which
-means that they can be used in any mixture and with equal facility. 
-Unicode is modeled on the ASCII character set, but uses a 16-bit
-encoding to support full multilingual text.
-
-
-
-Authors:
-
-Gisle Aas 
+A 'Unicode::String' object represents a sequence of Unicode characters.
+Methods are provided to convert between various external formats
+(encodings) and 'Unicode::String' objects, and methods are provided for
+common string manipulations.
+
+The functions utf32be(), utf32le(), utf16be(), utf16le(), utf8(), utf7(),
+latin1(), uhex(), uchr() can be imported from the 'Unicode::String' module
+and will work as constructors initializing strings of the corresponding
+encoding.
+
+The 'Unicode::String' objects overload various operators, which means that
+they in most cases can be treated like plain strings.
+
+Internally a 'Unicode::String' object is represented by a string of 2 byte
+numbers in network byte order (big-endian). This representation is not
+visible by the API provided, but it might be useful to know in order to
+predict the efficiency of the provided methods.
 
 %prep
-%setup -n Unicode-String-%{version}
-%patch0 -p2
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
-make %{?_smp_mflags}
-make test
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+%{__make} %{?_smp_mflags}
+
+%check
+%{__make} test
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install_vendor
+%perl_make_install
 %perl_process_packlist
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
-%doc README Changes
-%doc %{_mandir}/man?/*
-%{perl_vendorarch}/Unicode
-%{perl_vendorarch}/auto/Unicode
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes README
 
 %changelog

++ Unicode-String-2.09.tar.gz -> Unicode-String-2.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Unicode-String-2.09/Changes 
new/Unicode-String-2.10/Changes
--- old/Unicode-String-2.09/Changes 2005-10-26 

commit pdns-recursor for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package pdns-recursor for openSUSE:Factory 
checked in at 2016-09-30 15:31:10

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


Package is "pdns-recursor"

Changes:

--- /work/SRC/openSUSE:Factory/pdns-recursor/pdns-recursor.changes  
2015-08-01 11:37:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.pdns-recursor.new/pdns-recursor.changes 
2016-09-30 15:31:11.0 +0200
@@ -1,0 +2,104 @@
+Tue Sep 13 13:42:33 UTC 2016 - adam.ma...@suse.de
+
+- 4462.patch:
+  Disable fcontext usage with Boost 1.61+ and revert back to
+  slower SystemV ucontext. This fixes failure to build with
+  newer Boost version. (boo#998408)
+
+---
+Tue Sep  6 21:54:15 UTC 2016 - mrueck...@suse.de
+
+- update to 4.0.3
+  A new release for the PowerDNS Recursor with version 4.0.3 is
+  available. This release has many fixes and improvements in the
+  Policy Engine (RPZ) and the Lua bindings to it. Therefore, we
+  recommend users of RPZ to upgrade to this release. We would like
+  to thank Wim (42wim on github) for testing and reporting on the
+  RPZ module.
+
+  Bug fixes
+  - #4350: Call gettag() for TCP queries
+  - #4376: Fix the use of an uninitialized filtering policy
+  - #4381: Parse query-local-address before lua-config-file
+  - #4383: Fix accessing an empty policyCustom, policyName from Lua
+  - #4387: ComboAddress: don’t allow invalid ports
+  - #4388: Fix RPZ default policy not being applied over IXFR
+  - #4391: DNSSEC: Actually follow RFC 7646 §2.1
+  - #4396: Add boost context ldflags so freebsd builds can find the
+libs
+  - #4402: Ignore NS records in a RPZ zone received over IXFR
+  - #4403: Fix build with OpenSSL 1.1.0 final
+  - #4404: Don’t validate when a Lua hook took the query
+  - #4425: Fix a protobuf regression (requestor/responder mix-up)
+  Additions and Enhancements
+  - #4394: Support Boost 1.61+ fcontext
+  - #4402: Add Lua binding for DNSRecord::d_place
+
+---
+Sun Sep  4 11:41:48 UTC 2016 - mich...@stroeder.com
+
+- update to 4.0.2
+  Bug fixes
+  - #4264: Set dq.rcode before calling postresolve
+  - #4294: Honor PIE flags.
+  - #4310: Fix build with LibreSSL, for which
+OPENSSL_VERSION_NUMBER is irrelevant
+  - #4340: Don't shuffle CNAME records. (thanks to Gert van Dijk
+for the extensive bug report!)
+  - #4354: Fix delegation-only
+  Additions and enhancements
+  - #4288: Respect the timeout when connecting to a protobuf server
+  - #4300: allow newDN to take a DNSName in; document missing
+methods
+  - #4301: expose SMN toString to lua
+  - #4318: Anonymize the protobuf ECS value as well (thanks to Kai
+Storbeck of XS4All for finding this)
+  - #4324: Allow Lua access to the result of the Policy Engine
+decision, skip RPZ, finish RPZ implementation
+  - #4349: Remove unused DNSPacket::d_qlen
+  - #4351: RPZ: Use query-local-address(6) by default (thanks to
+Oli Schacher of switch.ch for the bug report)
+  - #4357: Move the root DNSSEC data to a header file
+
+---
+Sat Jul 30 12:38:43 UTC 2016 - mich...@stroeder.com
+
+- update to 4.0.1
+  Bug fixes
+  - #4119 Improve DNSSEC record skipping for non dnssec queries
+(Kees Monshouwer)
+  - #4162 Don't validate zones from the local auth store, go one
+level down while validating when there is a CNAME
+  - #4187:
+- Don't go bogus on islands of security
+- Check all possible chains for Insecures
+- Don't go Bogus on a CNAME at the apex
+  - #4215 RPZ: default policy should also override local data RRs
+  - #4243 Fix a crash when the next name in a chained query is
+empty and rec_control current-queries is invoked
+  Improvements
+  - #4056 OpenSSL 1.1.0 support (Christian Hofstaedtler)
+  - #4140 Fix warnings with gcc on musl-libc (James Taylor)
+  - #4160 Also validate on +DO
+  - #4164 Fail to start when the lua-dns-script does not exist
+  - #4168 Add more Netmask methods for Lua (Aki Tuomi)
+  - #4210 Validate DNSSEC for security polling
+  - #4217 Turn on root-nx-trust by default and
+log-common-errors=off
+  - #4207 Allow for multiple trust anchors per zone
+  - #4242 Fix compilation warning when building without Protobuf
+  - #4133 Add limits to the size of received {A,I}XFR
+(CVE-2016-6172)
+
+---
+Mon Jul 11 15:22:49 UTC 2016 - mrueck...@suse.de
+
+- update to 4.0.0
+  https://blog.powerdns.com/2016/07/11/powerdns-recursor-4-0-0-released/
+  https://blog.powerdns.com/2016/07/11/welcome-to-powerdns-4-0-0/
+- packaging changes:
+  - enabled protobuf 

commit python-troveclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-troveclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:45

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


Package is "python-troveclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-troveclient/python-troveclient.changes
2016-05-19 12:14:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-troveclient.new/python-troveclient.changes   
2016-09-30 15:30:46.0 +0200
@@ -1,0 +2,50 @@
+Fri Sep  9 07:48:13 UTC 2016 - tbecht...@suse.com
+
+update to version 2.5.0
+  * Add support for module ordering on apply
+  * module-update with --all_datastores doesn't work
+  * Add command to delete BUILD instances and clusters
+  * Implement scheduled backups
+  * Expose Quota.update API
+  * Add --incremental flag to backup-create
+
+---
+Wed Aug 31 13:18:01 UTC 2016 - tbecht...@suse.com
+
+update to version 2.4.0
+  * Implement Instance Upgrade
+  * Update README.rst with lastest usage
+  * Remove Rackspace auth references from troveclient
+  * Support flavor ids with leading '0'
+  * Allow use of backup name in trove create
+  * Fix module-list failing with AccessInfoV2 error
+  * Remove discover from test-requirements
+  * Replace assertDictEqual
+  * Make username and password non-required params
+  * Remove times.dbm file for each tox run
+  * Locality support for clusters
+  * Add support for modules in cluster-grow
+  * Display more flavor information in trove flavor-list command
+  * Fixed output of cluster-create in CLI
+  * Persist error messages and display on 'show'
+  * Replace OpenStack LLC with OpenStack Foundation
+  * configuration-* cli allow name of configuration group entered
+  * Fix CLI output of datastore-show
+  * Fix inadvertent generation of file during tox test
+  * Fix troveclient to support Mistral
+  * Make dict.keys() PY3 compatible
+  * Keep py3.X compatibility for urllib
+  * Add reno for release notes management
+  * Update example usage
+  * switch to keystoneauth
+  * Display min/max correctly from config-param-list
+  * Graduate to oslo.i18n, cleanup incubator usage
+  * Use "# noqa" instead of "#flake8: noqa"
+  * Update the home-page with developer documentation
+  * Add vCPUs to flavor-list
+  * Added check to prevent adding argument without help string
+  * Updated from global requirements
+  * Locality support for replication
+- update _service and switch to upstream spec template
+
+---

Old:

  python-troveclient-2.2.0.tar.gz
  python-troveclient-rpmlintrc

New:

  python-troveclient-2.5.0.tar.gz



Other differences:
--
++ python-troveclient.spec ++
--- /var/tmp/diff_new_pack.h0dJX0/_old  2016-09-30 15:30:47.0 +0200
+++ /var/tmp/diff_new_pack.h0dJX0/_new  2016-09-30 15:30:47.0 +0200
@@ -16,99 +16,88 @@
 #
 
 
-%define component troveclient
-
 Name:   python-troveclient
-Version:2.2.0
+Version:2.5.0
 Release:0
-Summary:Openstack Object DbaaS (Trove) API Client
+Summary:Client library for OpenStack DBaaS API
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://launchpad.net/python-troveclient
-Source: 
https://pypi.python.org/packages/source/p/python-troveclient/python-troveclient-%{version}.tar.gz
-Source99:   %name-rpmlintrc
-BuildRequires:  openstack-suse-macros
-BuildRequires:  python-pbr >= 0.5.21
-# Documentation requirements:
+Url:http://launchpad.net/%{name}
+Source0:
https://pypi.io/packages/source/p/%{name}/%{name}-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-PrettyTable >= 0.7
 BuildRequires:  python-Sphinx
-# Test requirements:
-BuildRequires:  python-Babel
-BuildRequires:  python-PrettyTable >= 0.6
-BuildRequires:  python-httplib2
-BuildRequires:  python-keystoneclient
-BuildRequires:  python-mock >= 1.0
-BuildRequires:  python-pycrypto
-BuildRequires:  python-requests >= 1.1
-BuildRequires:  python-requests-mock
-BuildRequires:  python-simplejson >= 2.0.9
-BuildRequires:  python-six
-BuildRequires:  python-swiftclient
-BuildRequires:  python-testrepository >= 0.0.17
-BuildRequires:  python-testscenarios
-BuildRequires:  python-testtools >= 0.9.32
-#NOTE(saschpe): Compat client code, not used in production:
-BuildRequires:  python-httplib2
-BuildRequires:  python-lxml
-#NOTE(saschpe): End Compat client code, not used in production:
-Requires:   python >= 2.6.8
+BuildRequires:  python-devel
+BuildRequires:  python-httplib2 >= 0.7.5

commit gsignond for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package gsignond for openSUSE:Factory 
checked in at 2016-09-30 15:31:28

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


Package is "gsignond"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.gsignond.new/gsignond.changes   2016-09-30 
15:31:30.0 +0200
@@ -0,0 +1,18 @@
+---
+Mon Sep 19 09:12:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Avoid using _service.
+- Correct licence: LGPL-2.1+.
+- Fix building on SLE 12 SP1 and older.
+- Add baselibs.conf.
+
+---
+Tue Sep 13 03:50:57 UTC 2016 - avvi...@yandex.by
+
+- Change the database path to don't use suid
+
+---
+Thu Aug  4 07:27:14 UTC 2016 - avvi...@yandex.by
+
+- Initial package
+

New:

  baselibs.conf
  gsignond-1.0.5+git20160714.tar.gz
  gsignond-1.0.5_storagedir.patch
  gsignond.changes
  gsignond.spec



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

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


%define typelib typelib-1_0-gSignond-1_0
%define soname libgsignond-common
%define sover 0
Name:   gsignond
Version:1.0.5+git20160714
Release:0
Summary:Online Accounts Sign-on glib daemon
License:LGPL-2.1+
Group:  Productivity/Networking/Other
Url:https://gitlab.com/accounts-sso/gsignond
Source: %{name}-%{version}.tar.gz
Source1:baselibs.conf
# PATCH-FIX-OPENSUSE gsignond-1.0.5_storagedir.patch avvi...@yandex.by -- 
Change the database path to not use SUID.
Patch0: gsignond-1.0.5_storagedir.patch
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  gtk-doc
BuildRequires:  libtool
BuildRequires:  pkgconfig
BuildRequires:  pkgconfig(dbus-1)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gobject-introspection-1.0)
BuildRequires:  pkgconfig(sqlite3)
%if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200 || (0%{?sle_version} 
>= 120100 && 0%{?is_opensuse})
BuildRequires:  pkgconfig(vapigen) >= 0.28.0
%endif

%description
The GSignOn daemon is a D-Bus service which performs user
authentication on behalf of its clients.

%package -n %{soname}%{sover}
Summary:The core library for gsignond
Group:  System/Libraries
Provides:   lib%{name}%{sover} = %{version}

%description -n %{soname}%{sover}
Online Accounts Sign-on glib daemon.

This package contains the shared library.

%package -n %{typelib}
Summary:Library for GLib applications -- Introspection Bindings
Group:  System/Libraries

%description -n %{typelib}
This package contains the GObject Introspection bindings for the
gsignond.

%package devel
Summary:Development files for gsignond
Group:  Development/Libraries/C and C++
Requires:   %{soname}%{sover} = %{version}

%description devel
Online Accounts Sign-on glib daemon.

This package contains header files and libraries needed to develop
application that use gsignond.

%package doc
Summary:Documentation for gsignond
Group:  Documentation/HTML
BuildArch:  noarch

%description doc
Online Accounts Sign-on glib daemon.

Developer documentation for developing plugins and extensions.

%lang_package

%prep
%setup -q
%patch0 -p1

%build
NOCONFIGURE=1 ./autogen.sh
%configure \
  --enable-introspection=yes \
  --enable-dbus-type=session \
  --enable-storagedir="" \
  --enable-gtk-doc
make %{?_smp_mflags}

%install
%make_install

if [ -u %{buildroot}%{_bindir}/%{name} ]; then
chmod u-s %{buildroot}%{_bindir}/%{name}
fi

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

%post -n %{soname}%{sover} -p /sbin/ldconfig

%postun -n %{soname}%{sover} -p /sbin/ldconfig

%files
%defattr(-,root,root)
%doc AUTHORS COPYING*
%config(noreplace) %{_sysconfdir}/%{name}.conf
%{_bindir}/%{name}
%{_libdir}/%{name}/

commit python-gnocchiclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-gnocchiclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:33

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


Package is "python-gnocchiclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-gnocchiclient/python-gnocchiclient.changes
2016-05-04 08:19:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-gnocchiclient.new/python-gnocchiclient.changes
   2016-09-30 15:30:36.0 +0200
@@ -1,0 +2,88 @@
+Mon Sep  5 11:28:22 UTC 2016 - tbecht...@suse.com
+
+update to version 2.5.0
+  * Use osc-lib instead of openstackclient
+  * Remove redundant parentheses
+  * Fix bad entry points in setup.cfg
+  * [Trivial] Remove executable privilege of doc/source/conf.py
+  * noauth: fix endpoint envvar
+  * doc: use pbr to auto-generate doc
+  * Translate resource_id to UUID5 format.
+  * Add mailmap entry for sileht
+  * exceptions: use lower case everywhere
+  * Use pifpaf instead of overtest to run tests
+  * Fix gate failures
+  * Remove testscenarios dependency
+  * doc: some improvements
+  * Add granularity argument to measures aggregation
+  * Use overtest to run Gnocchi
+  * Raise the correct exception on archive policy rule not found
+  * Bump hacking to 0.11.0
+  * Switch from deprecated tempest-lib to tempest
+  * Quote query string when POST is used
+  * utils: allow to encode params with list/tuple
+  * Remove refernces to queues in the osc client
+  * Use extras in setup.cfg for deps
+  * fix typos in comment & help string
+  * Raise an error when metric name doesn't exists
+  * Make the wheel universal
+  * Allow to start Gnocchi command with OSC
+  * Prepare compatibility with OSC
+  * fix test debug
+  * Remove i18n support
+  * Supported resources list cli support
+  * Ensure description exists for HTTP error.
+  * Fix a spell typos
+  * exceptions: use url from Reponse object
+  * Show original_resource_id in resource list cmd
+  * Support newer version of MySQL
+  * Allow create resource type
+  * utils: allow UUID to not have any dash
+  * shell: document query parameters
+  * Allow to list resource-types
+  * utils: switch format function to functional
+  * Remove discover test-dependency
+  * Allow to show a resource type
+  * show and add unit for metric list and create
+  * doc: fix typo in shell
+  * Use tox to install Gnocchi
+  * Trival: Remove unused logging import
+  * utils: include 0 values
+  * cli: use type kwarg from argparse to parse queries
+  * Add granularity argument to measures show
+  * resource: show all attributes when requesting detailed history
+  * Make utils.dict_to_querystring result predictible
+  * [resource] fix custom formatting of metrics
+  * shell: disallow abbrev in argparse
+  * Clean flake8 ignore
+  * search: Ensure we didn't ignore extra chars
+  * Fix gnocchi new install deps and func test
+  * supplement the type of marker explaination
+  * benchmark: allow to wait for all measures to be processed
+  * Corrected docstring for create metric
+  * Fix delete metric on resource create/update
+  * resource: move --delete-metric to update only
+  * Add doc building for gnocchi.xyz
+  * exceptions: fix typo in class name
+  * Delete openstack/common from the exclude list of flake8 in tox
+  * Allow to delete a resource type
+  * benchmark: minimize client computed time
+  * metric: add support for groupby in aggregation
+  * Fix docstring in from_response
+  * Use overtest to run MySQL
+  * remove MANIFEST.in
+  * minimise report
+  * fix custom formatting of archive policy
+  * Add batching to client
+  * add support for update archive policy
+  * Update the home-page with developer documentation
+  * fix benchmark entry points
+  * tests: do not use "low" as archive policy name
+  * Add support for Python 3.5
+  * The search query is mandatory
+  * one type error in resource.py
+  * tests: Fix option names
+  * shell: remove "resource list-types"
+- Update _service and switch to upstream spec template
+
+---

Old:

  gnocchiclient-2.1.0.tar.gz

New:

  gnocchiclient-2.5.0.tar.gz



Other differences:
--
++ python-gnocchiclient.spec ++
--- /var/tmp/diff_new_pack.YsE8MO/_old  2016-09-30 15:30:38.0 +0200
+++ /var/tmp/diff_new_pack.YsE8MO/_new  2016-09-30 15:30:38.0 +0200
@@ -16,104 +16,81 @@
 #
 
 
-%define component gnocchiclient
-
-%define version_unconverted 2.1.0
-
-Name:   python-%{component}
-Version:2.1.0
+%global sname gnocchiclient
+Name:   python-gnocchiclient
+Version:2.5.0
 Release:0
-Summary:

commit python-ceilometerclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-ceilometerclient for 
openSUSE:Factory checked in at 2016-09-30 15:31:02

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


Package is "python-ceilometerclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-ceilometerclient/python-ceilometerclient.changes
  2016-05-04 08:19:18.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ceilometerclient.new/python-ceilometerclient.changes
 2016-09-30 15:31:03.0 +0200
@@ -1,0 +2,34 @@
+Wed Aug 10 12:02:19 UTC 2016 - tbecht...@suse.com
+
+- update to 2.5.0:
+  * tools: remove unused scripts
+  * base.Resource not define __ne__() built-in function
+  * Ignore aodh_endpoint argument
+  * Switch to keystoneauth
+  * Correct the usage of the method assertEqual()
+  * Update the home-page with developer documentation
+  * Update to hacking 0.11.0
+  * Only install hacking in pep8
+  * Updated from global requirements
+  * Enable releasenotes documentation
+  * Switch from deprecated tempest-lib to tempest
+  * Fix the disorder of items of Traits in the output of event-list
+  * remove default value of repeat-actions
+  * Decouple ceilometerclient without aodh services running
+  * Trivial: remove `None` as a redundant argument to dict.get()
+  * Enhances client to support unique meter retrieval
+  * Fixing a word spelling
+  * make aggregation-method argument as a mandatory field
+
+---
+Mon Aug  1 18:42:02 UTC 2016 - tbecht...@suse.com
+
+- update to 2.4.0:
+  * Updated from global requirements
+  * Decouple ceilometerclient without aodh services running
+  * Enhances client to support unique meter retrieval
+  * make aggregation-method argument as a mandatory field
+  * Update .gitreview for stable/mitaka
+- update _service and switch to upstream spec file
+
+---

Old:

  python-ceilometerclient-2.3.0.tar.gz

New:

  python-ceilometerclient-2.5.0.tar.gz



Other differences:
--
++ python-ceilometerclient.spec ++
--- /var/tmp/diff_new_pack.LjLFBk/_old  2016-09-30 15:31:05.0 +0200
+++ /var/tmp/diff_new_pack.LjLFBk/_new  2016-09-30 15:31:05.0 +0200
@@ -2,7 +2,6 @@
 # spec file for package python-ceilometerclient
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2013 B1 Systems GmbH.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,77 +16,88 @@
 #
 
 
-%define component ceilometerclient
-Name:   python-%{component}
-Version:2.3.0
+%global sname python-ceilometerclient
+Name:   python-ceilometerclient
+Version:2.5.0
 Release:0
-Url:https://github.com/openstack/python-ceilometerclient
-Summary:OpenStack Metering (Ceilometer) API Client
+Summary:Python API and CLI for OpenStack Ceilometer
 License:Apache-2.0
-Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/p/python-ceilometerclient/python-ceilometerclient-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  openstack-suse-macros
+Group:  Development/Languages
+Url:https://github.com/openstack/%{name}
+Source0:
https://pypi.io/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-PrettyTable >= 0.7
 BuildRequires:  python-devel
-BuildRequires:  python-pbr
+BuildRequires:  python-keystoneclient >= 1.7.0
+BuildRequires:  python-mock >= 1.2
+BuildRequires:  python-oslo.i18n >= 2.1.0
+BuildRequires:  python-oslo.serialization >= 1.10.0
+BuildRequires:  python-oslo.utils >= 3.5.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-requests >= 2.10.0
+BuildRequires:  python-requests-mock >= 0.7.0
+BuildRequires:  python-setuptools >= 16.0
+BuildRequires:  python-six >= 1.9.0
+BuildRequires:  python-stevedore >= 1.10.0
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testscenarios >= 0.4
+BuildRequires:  python-testtools >= 1.4.0
 Requires:   python-PrettyTable >= 0.7
-Requires:   python-iso8601 >= 0.1.9
+Requires:   python-iso8601 >= 0.1.11
 Requires:   python-keystoneauth1 >= 2.1.0
-Requires:   python-keystoneclient >= 1.6.0
-Requires:   python-oslo.i18n >= 1.5.0
+Requires:   python-keystoneclient >= 1.7.0
+Requires:   python-oslo.i18n >= 2.1.0
 Requires:   python-oslo.serialization >= 1.10.0
-Requires:   

commit python-openstackdocstheme for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-openstackdocstheme for 
openSUSE:Factory checked in at 2016-09-30 15:30:59

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


Package is "python-openstackdocstheme"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-openstackdocstheme/python-openstackdocstheme.changes
  2016-09-05 21:19:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openstackdocstheme.new/python-openstackdocstheme.changes
 2016-09-30 15:31:00.0 +0200
@@ -1,0 +2,31 @@
+Wed Sep  7 11:58:01 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.5.0
+  * API References dropdown menu
+  * Allow automatic toc to be disabled
+
+---
+Wed Aug 10 14:41:34 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.4.0
+  * Use HTTPS for external deps
+  * Increase indent level of doc top contents
+  * Create empty folder for custom font files
+  * Change summit video URL
+  * Actually include custom JS files
+  * Broken Link
+  * Allow the bug title to be customisable
+  * Fix text font-family of admonitions.
+  * Update the Administrator Guide link
+  * Add appropriate order list styles
+  * Make ``something`` more highlighted
+  * Allow for inclusion of custom JS files
+  * Release note for new sidebar feature
+  * Clarify uses for this theme
+  * Update Release Notes
+  * Updated from global requirements
+  * Set side bar content to be configurable
+  * Adds release notes items for next release
+  * Allow cssfiles added by sphinx extensions
+
+---

Old:

  openstackdocstheme-1.3.0.tar.gz

New:

  openstackdocstheme-1.5.0.tar.gz



Other differences:
--
++ python-openstackdocstheme.spec ++
--- /var/tmp/diff_new_pack.bPEW8p/_old  2016-09-30 15:31:01.0 +0200
+++ /var/tmp/diff_new_pack.bPEW8p/_new  2016-09-30 15:31:01.0 +0200
@@ -18,13 +18,13 @@
 
 %global sname openstackdocstheme
 Name:   python-openstackdocstheme
-Version:1.3.0
+Version:1.5.0
 Release:0
 Summary:OpenStack Docs Theme
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:https://launchpad.net/%{sname}
-Source: 
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
@@ -55,7 +55,7 @@
 
 %files
 %license LICENSE
-%doc RELEASENOTES.rst README.rst
+%doc README.rst
 %{python2_sitelib}/%{sname}
 %{python2_sitelib}/*.egg-info
 

++ openstackdocstheme-1.3.0.tar.gz -> openstackdocstheme-1.5.0.tar.gz ++
 1659 lines of diff (skipped)




commit python-oslotest for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslotest for openSUSE:Factory 
checked in at 2016-09-30 15:30:53

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


Package is "python-oslotest"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslotest/python-oslotest.changes  
2016-09-01 14:02:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslotest.new/python-oslotest.changes 
2016-09-30 15:30:53.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug 30 16:15:25 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.10.0
+  * A DisableModules fixture that removes modules from path
+  * Updated from global requirements
+
+---

Old:

  oslotest-2.8.0.tar.gz

New:

  oslotest-2.10.0.tar.gz



Other differences:
--
++ python-oslotest.spec ++
--- /var/tmp/diff_new_pack.MNBLzy/_old  2016-09-30 15:30:54.0 +0200
+++ /var/tmp/diff_new_pack.MNBLzy/_new  2016-09-30 15:30:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-oslotest
-Version:2.8.0
+Version:2.10.0
 Release:0
 Summary:OpenStack test framework
 License:Apache-2.0
@@ -27,8 +27,8 @@
 BuildRequires:  openstack-macros
 BuildRequires:  python-debtcollector >= 1.2.0
 BuildRequires:  python-devel
-BuildRequires:  python-fixtures >= 1.3.1
-BuildRequires:  python-mock >= 1.2
+BuildRequires:  python-fixtures >= 3.0.0
+BuildRequires:  python-mock >= 2.0
 BuildRequires:  python-mox3 >= 0.7.0
 BuildRequires:  python-pbr >= 1.6
 BuildRequires:  python-python-subunit >= 0.0.18
@@ -36,10 +36,11 @@
 BuildRequires:  python-testrepository >= 0.0.18
 BuildRequires:  python-testscenarios >= 0.4
 BuildRequires:  python-testtools >= 1.4.0
-Requires:   python-fixtures >= 1.3.1
-Requires:   python-mock >= 1.2
+Requires:   python-fixtures >= 3.0.0
+Requires:   python-mock >= 2.0
 Requires:   python-mox3 >= 0.7.0
-Requires:   python-os-client-config >= 1.13.1
+# NOTE: python-os-client-config is only needed for functional testing
+#Requires:   python-os-client-config >= 1.13.1
 Requires:   python-python-subunit >= 0.0.18
 Requires:   python-six >= 1.9.0
 Requires:   python-testrepository >= 0.0.18

++ oslotest-2.8.0.tar.gz -> oslotest-2.10.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslotest-2.8.0/AUTHORS new/oslotest-2.10.0/AUTHORS
--- old/oslotest-2.8.0/AUTHORS  2016-08-02 20:21:09.0 +0200
+++ new/oslotest-2.10.0/AUTHORS 2016-08-25 14:02:57.0 +0200
@@ -18,6 +18,7 @@
 Ihar Hrachyshka 
 Ilya Pekelny 
 James Carey 
+Jamie Lennox 
 Jason Kölker 
 Jay Pipes 
 Jeremy Stanley 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslotest-2.8.0/ChangeLog 
new/oslotest-2.10.0/ChangeLog
--- old/oslotest-2.8.0/ChangeLog2016-08-02 20:21:08.0 +0200
+++ new/oslotest-2.10.0/ChangeLog   2016-08-25 14:02:57.0 +0200
@@ -1,6 +1,16 @@
 CHANGES
 ===
 
+2.10.0
+--
+
+* Updated from global requirements
+
+2.9.0
+-
+
+* Updated from global requirements
+
 2.8.0
 -
 
@@ -8,6 +18,7 @@
 * Fix parameters of assertEqual are misplaced
 * Updated from global requirements
 * Add Python 3.5 classifier and venv
+* A DisableModules fixture that removes modules from path
 
 2.7.0
 -
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslotest-2.8.0/PKG-INFO new/oslotest-2.10.0/PKG-INFO
--- old/oslotest-2.8.0/PKG-INFO 2016-08-02 20:21:09.0 +0200
+++ new/oslotest-2.10.0/PKG-INFO2016-08-25 14:02:57.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: oslotest
-Version: 2.8.0
+Version: 2.10.0
 Summary: Oslo test framework
 Home-page: http://wiki.openstack.org/wiki/Oslo#oslotest
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslotest-2.8.0/oslotest/modules.py 
new/oslotest-2.10.0/oslotest/modules.py
--- old/oslotest-2.8.0/oslotest/modules.py  1970-01-01 01:00:00.0 
+0100
+++ new/oslotest-2.10.0/oslotest/modules.py 2016-08-25 14:01:26.0 
+0200
@@ -0,0 +1,50 @@
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in 

commit python-openstackclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-openstackclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:41

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


Package is "python-openstackclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-openstackclient/python-openstackclient.changes
2016-05-04 08:19:24.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openstackclient.new/python-openstackclient.changes
   2016-09-30 15:30:42.0 +0200
@@ -1,0 +2,268 @@
+Fri Sep  9 07:50:02 UTC 2016 - tbecht...@suse.com
+
+- Remove some BuildRequires only needed for documentation.
+
+---
+Fri Sep  2 12:33:49 UTC 2016 - tbecht...@suse.com
+
+update to version 3.2.0
+  * [docs] fix incorrect rst markups
+  * Cleanup after install
+  * Provide fallback prompt function for current osc-lib
+  * Clean imports in code
+  * Fix six typos
+  * Fix auth prompt brokenness
+  * Updated from global requirements
+
+---
+Thu Sep  1 12:25:39 UTC 2016 - tbecht...@suse.com
+
+update to version 3.1.0
+  * Add create_one_image_member() in FakeImage class and update test
+  * Fix error for find_service() in identity
+  * fix one spelling mistake and two help messages
+  * Add "--project" option to "volume type create" command
+  * Remove discover from test-requirements
+  * Standardize import format
+  * Update Fakes.py and unit tests for commands in identity V2.0
+  * Add support of setting volume's state
+  * Remove execute permission on a few files
+  * Add a document for required options
+  * Add python-neutronclient to OSC plugins
+  * Add notes, modify notes in fakes docstring
+  * Rework clientmanager
+  * Fix doc issue for "compute agent list" command
+  * Pass security group id to novaclient
+  * Remove useless dest of option in "snapshot create" command
+  * Add port security option to network commands
+  * skip image tag tests
+  * Add "--marker" and "--limit" options to "snapshot list"
+  * Add --ip-version filtering option to subnet.rst
+  * Add support for domain specific roles
+  * Add command to unset information from ports
+  * Add Python3.5 to setup.cfg tox.ini
+  * Implement network agents functionality
+  * Updated from global requirements
+  * Pass security group id to novaclient while adding security
+  * Allow format selection in get_opts
+  * Add '--dhcp' and '--no-dhcp' options to os subnet list cmd
+  * Transfer "ip fixed add/remove" to "server add/remove fixed ip"
+  * Integ test cleanup
+  * arguments are not locale decoded into Unicode
+  * Support bulk deletion for delete commands in identityv3
+  * Fix OSC identity v3 functional tests
+  * "server list": "Image Name", "Image ID" columns
+  * skip failing tests due to bug 1599333 is fixed
+  * Add command to unset information from Subnet-pools
+  * remove unused LOG
+  * Add "--snapshot" option to "backup create" command in volumev2
+  * OS_DEFAULT_DOMAIN must be an ID
+  * Follow upper constraints for all tox targets
+  * Implement "network rbac set" command
+  * Modify some help and error messages in ec2creds identityv2
+  * Restore default auth-type for token/endpoint
+  * update requirements and test requirements
+  * Fix errors in volume set/unset image properties unit tests
+  * Support bulk deletion for delete commands in computev2
+  * Fix post and periodic jobs
+  * Support multi REST API calls error handling for "volume set" command
+  * Add support for deleting volumes with associated snapshots
+  * Implement rbac list and show command
+  * Support error handling for delete commands in volumev2
+  * Add unit tests for group commands in identity v3
+  * Add missing "Volume version 2 only" message in backup.rst
+  * Remove FakeService.get_services
+  * update plugin documentation
+  * Remove useless dest of option in volume v1
+  * Use identity fake classes instead of old unit tests data
+  * Unskip tests caused by bug 1599333
+  * Fix up last-minute imports to use osc-lib
+  * Implement network rbac create and delete commands
+  * osc-lib: shell
+  * Rename backup commands in volume v1 and v2
+  * Added a note on how to test changes
+  * Make set/unset command in volume pass normally when nothing specified
+  * image list: Add Checksum column
+  * Update the description of project in releasenotes.
+  * Temp work around for missing select_auth_plugin()
+  * Add '--force' option to 'backup delete' command in volumev2
+  * Modify some unusual help messages in computev2
+  * Exchange the check order for the dhcp and no-dhcp
+  * modify notes in the FakeHypervisorStats docstring
+  * Add command to unset information from Routers
+  * 

commit python-glanceclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-glanceclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:09

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


Package is "python-glanceclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-glanceclient/python-glanceclient.changes  
2016-05-04 08:19:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-glanceclient.new/python-glanceclient.changes 
2016-09-30 15:30:11.0 +0200
@@ -1,0 +2,69 @@
+Wed Aug 31 13:13:15 UTC 2016 - tbecht...@suse.com
+
+update to version 2.5.0
+  * Don't update tags every time
+  * Remove unused openstack/common/apiclient/client
+  * Revert "Don't update tags every time"
+  * Update doc URL
+  * Fix warlock model creation
+  * Updated from global requirements
+
+---
+Wed Aug 10 14:47:29 UTC 2016 - tbecht...@suse.com
+
+update to version 2.3.0
+  * Remove discover from test-requirements
+  * Log request-id before exceptions raised
+  * Properly build releasenotes
+  * Fix string interpolation to delayed to be handled by the logging code
+  * Add comment about workaround for py3
+  * py3: Fix encoding and use sys.stdin.buffer
+  * Replace OpenStack LLC with OpenStack Foundation
+  * Updated from global requirements
+
+---
+Wed Aug 10 12:00:46 UTC 2016 - tbecht...@suse.com
+
+- update to 2.2.0:
+  * Update docs URL
+  * Add Python 3.5 classifier and venv
+  * Updated from global requirements
+  * image-download: tests to catch stray output
+  * Use correct order of arguments to assertEqual
+  * Update outdated image shema
+  * Replace tempest_lib with tempest.lib
+  * Log request-id for each api call
+
+---
+Mon Aug  1 18:51:32 UTC 2016 - tbecht...@suse.com
+
+- update to 2.1.0:
+  * Updated from global requirements
+  * Remove deprecated construct method from session init
+  * Add upper constraints to glanceclient
+  * Fixed grammar in image-download command description
+  * [Trivial] Remove unnecessary executable privilege
+  * Fix "Codec can't encode characters"
+  * Update the home-page with developer documentation
+  * Get endpoint if os_image_url is not set
+  * Corrected wrong parameter in docstring
+  * Enable hacking checks
+  * Fix typos in docstrings and comments
+  * Re-enable stacktracing when --debug is used
+  * Add last_request_id member to HTTPClient and SessionClient
+  * Fix v2 so that you can see the default help info
+  * Update auth_token before sending request
+  * Fix missing of debug info after we use session
+  * Ship the default metadata schema in the client
+  * Docs are generated incorrectly
+  * Fix location update
+  * Catch InUseByStore case in do_image_delete
+  * Update reno for stable/mitaka
+- update _service and switch to upstream spec file
+
+---
+Fri May  6 08:56:36 UTC 2016 - dmuel...@suse.com
+
+- run tests
+
+---

Old:

  openstack-glance.sh
  python-glanceclient-2.0.0.tar.gz
  python-glanceclient-rpmlintrc

New:

  python-glanceclient-2.5.0.tar.gz



Other differences:
--
++ python-glanceclient.spec ++
--- /var/tmp/diff_new_pack.5zlb7m/_old  2016-09-30 15:30:12.0 +0200
+++ /var/tmp/diff_new_pack.5zlb7m/_new  2016-09-30 15:30:12.0 +0200
@@ -16,96 +16,87 @@
 #
 
 
-%define component glanceclient
-
+%global sname python-glanceclient
 Name:   python-glanceclient
-Version:2.0.0
+Version:2.5.0
 Release:0
-Summary:Openstack Image (Glance) API Client
+Summary:Python API and CLI for OpenStack Glance
 License:Apache-2.0
-Group:  Development/Languages/Python
-Url:http://launchpad.net/python-glanceclient
-Source: 
https://pypi.python.org/packages/source/p/python-glanceclient/python-glanceclient-%{version}.tar.gz
-Source2:openstack-glance.sh
-Source99:   %{name}-rpmlintrc
-BuildRequires:  openstack-suse-macros
-BuildRequires:  python-base
-# Documentation build requirements:
-BuildRequires:  python-PrettyTable
-BuildRequires:  python-Sphinx
-BuildRequires:  python-iso8601
-BuildRequires:  python-keystoneclient
-BuildRequires:  python-oslosphinx
-BuildRequires:  python-pbr
-BuildRequires:  python-warlock
-Requires:   python >= 2.6.8
-Requires:   python-Babel >= 1.3
-Requires:   python-argparse
-# /usr/bin/glance uses pkg_resources, thus:
+Group:  Development/Languages
+Url:

commit python-swiftclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-swiftclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:27

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


Package is "python-swiftclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-swiftclient/python-swiftclient.changes
2016-05-19 12:14:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-swiftclient.new/python-swiftclient.changes   
2016-09-30 15:30:29.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug  1 18:54:54 UTC 2016 - tbecht...@suse.com
+
+- update _service and switch to upstream spec file
+
+---

Old:

  python-swiftclient-rpmlintrc



Other differences:
--
++ python-swiftclient.spec ++
--- /var/tmp/diff_new_pack.E65giX/_old  2016-09-30 15:30:32.0 +0200
+++ /var/tmp/diff_new_pack.E65giX/_new  2016-09-30 15:30:32.0 +0200
@@ -16,97 +16,70 @@
 #
 
 
-%define component swiftclient
-%define version_unconverted 3.0.0
-
-Name:   python-%{component}
+%global sname python-swiftclient
+Name:   python-swiftclient
 Version:3.0.0
 Release:0
-Summary:Openstack Object Storage (Swift) API Client
+Summary:OpenStack Object Storage API Client Library
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://launchpad.net/python-swiftclient
-Source: 
https://pypi.python.org/packages/source/p/python-swiftclient/python-swiftclient-%{version}.tar.gz
-Source99:   %{name}-rpmlintrc
-BuildRequires:  openstack-suse-macros
-BuildRequires:  python
-BuildRequires:  python-pbr
-BuildRequires:  python-requests
-BuildRequires:  python-setuptools
-BuildRequires:  python-six
-# Packages below are only needed for documentation build
-BuildRequires:  python-Sphinx
-BuildRequires:  python-oslosphinx
-Requires:   python >= 2.6.8
-Requires:   python-futures >= 2.1.3
-Requires:   python-requests >= 1.1
-Requires:   python-six >= 1.5.2
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%py_requires
-%else
+Url:https://launchpad.net/%{sname}
+Source: 
https://pypi.io/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-devel
+BuildRequires:  python-keystoneclient >= 1.7.0
+BuildRequires:  python-mock >= 1.2
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-setuptools >= 16.0
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testscenarios >= 0.4
+Requires:   python-futures >= 3.0
+Requires:   python-requests >= 2.10.0
+Requires:   python-six >= 1.9.0
 BuildArch:  noarch
-%endif
 
 %description
 This is a python client for the Swift API. There's a Python API (the
 swiftclient module), and a command-line script (swift).
 
-This code is based on original the client previously included with
-OpenStack's swift.
-
 %package doc
-Summary:Openstack Object Storage (Swift) API Client - Documentation
+Summary:%{summary} - Documentation
 Group:  Documentation/HTML
+BuildRequires:  python-Sphinx
+BuildRequires:  python-futures >= 3.0
+BuildRequires:  python-oslosphinx >= 2.5.0
 Requires:   %{name} = %{version}
 
 %description doc
-This package contains documentation files for %{name}.
-
-%package test
-Summary:Openstack Object Storage (Swift) API Client - Testsuite
-Group:  System/Management
-Requires:   %{name} = %{version}
-Requires:   python-keystoneclient >= 0.7.0
-Requires:   python-mock >= 1.2
-Requires:   python-testrepository >= 0.0.18
+This is a python client for the Swift API. There's a Python API (the
+swiftclient module), and a command-line script (swift).
 
-%description test
-This package contains testsuite files for %{name}.
+This package contains documentation files for %{name}.
 
 %prep
-%setup -q
-%openstack_cleanup_prep
+%setup -q -n %{sname}-%{version}
 
 %build
-python setup.py build
-python setup.py build_sphinx
-rm doc/build/html/.buildinfo
+%py2_build
+%{__python2} setup.py build_sphinx
+rm -rf doc/build/html/.{doctrees,buildinfo}
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-
-install -d %{buildroot}%{_mandir}/man1
-install -m 644 doc/manpages/swift.1 %{buildroot}%{_mandir}/man1
+%py2_install
 
-# test package
-%openstack_test_package_install
+%check
+%{__python2} setup.py testr
 
 %files
-%defattr(-,root,root,-)
-%doc 

commit python-tempest-lib for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-tempest-lib for 
openSUSE:Factory checked in at 2016-09-30 15:30:02

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


Package is "python-tempest-lib"

Changes:

--- /work/SRC/openSUSE:Factory/python-tempest-lib/python-tempest-lib.changes
2016-05-04 08:19:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-tempest-lib.new/python-tempest-lib.changes   
2016-09-30 15:30:02.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep  1 05:37:27 UTC 2016 - tbecht...@suse.com
+
+- Update _service and switch to upstream spec template
+
+---



Other differences:
--
++ python-tempest-lib.spec ++
--- /var/tmp/diff_new_pack.sNJigK/_old  2016-09-30 15:30:05.0 +0200
+++ /var/tmp/diff_new_pack.sNJigK/_new  2016-09-30 15:30:05.0 +0200
@@ -23,40 +23,32 @@
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:http://www.openstack.org/
-Source: 
https://pypi.python.org/packages/source/t/tempest-lib/tempest-lib-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/t/tempest-lib/tempest-lib-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-ddt >= 1.0.1
 BuildRequires:  python-devel
-BuildRequires:  python-pbr
-BuildRequires:  python-setuptools
-# test requirements
-BuildRequires:  python-coverage
-BuildRequires:  python-ddt
-BuildRequires:  python-discover
-BuildRequires:  python-httplib2
-BuildRequires:  python-jsonschema
-BuildRequires:  python-mock
-BuildRequires:  python-oslo.log
-BuildRequires:  python-oslosphinx
-BuildRequires:  python-oslotest
-BuildRequires:  python-paramiko
-BuildRequires:  python-python-subunit
-BuildRequires:  python-sphinx
-BuildRequires:  python-testrepository
-BuildRequires:  python-testscenarios
-BuildRequires:  python-testtools
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   python-Babel >= 1.3
-Requires:   python-fixtures >= 1.3.1
+BuildRequires:  python-httplib2 >= 0.7.5
+BuildRequires:  python-jsonschema >= 2.0.0
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-oslo.log >= 1.14.0
+BuildRequires:  python-oslosphinx >= 2.5.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-paramiko >= 2.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-python-subunit >= 0.0.18
+BuildRequires:  python-sphinx >= 1.2.1
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testscenarios >= 0.4
+BuildRequires:  python-testtools >= 1.4.0
+Requires:   python-Babel >= 2.3.4
+Requires:   python-fixtures >= 3.0.0
 Requires:   python-httplib2 >= 0.7.5
-Requires:   python-iso8601 >= 0.1.9
+Requires:   python-iso8601 >= 0.1.11
 Requires:   python-jsonschema >= 2.0.0
-Requires:   python-os-testr >= 0.4.1
+Requires:   python-os-testr >= 0.7.0
 Requires:   python-oslo.log >= 1.14.0
 Requires:   python-six >= 1.9.0
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
 
 %description
 OpenStack Functional Testing Library
@@ -65,21 +57,23 @@
 %setup -q -n tempest-lib-%{version}
 
 %build
-python setup.py build
+%{__python2} setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%{__python2} setup.py install --skip-build --prefix=%{_prefix} 
--root=%{buildroot}
 # both files are provided by openstack-tempest (because tempest-lib is
 # now deprecated and the code was copied to tempest)
 rm %{buildroot}/%{_bindir}/skip-tracker
 rm %{buildroot}/%{_bindir}/check-uuid
 
 %check
-testr init && testr run --parallel
+%{__python2} setup.py testr
 
 %files
 %defattr(-,root,root,-)
-%doc README.rst ChangeLog LICENSE AUTHORS
-%{python_sitelib}/*
+%license LICENSE
+%doc README.rst ChangeLog AUTHORS
+%{python2_sitelib}/tempest_lib
+%{python2_sitelib}/*.egg-info
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.sNJigK/_old  2016-09-30 15:30:05.0 +0200
+++ /var/tmp/diff_new_pack.sNJigK/_new  2016-09-30 15:30:05.0 +0200
@@ -1,14 +1,13 @@
 
+  
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/openstack/tempest-lib/tempest-lib.spec.j2
+python-tempest-lib.spec
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/global-requirements.txt
+  
   
 enable
   
-  
-tempest-lib
-  
   
 enable
   
-  
-  
 
-




commit python-saharaclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-saharaclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:24

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


Package is "python-saharaclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-saharaclient/python-saharaclient.changes  
2016-05-19 12:15:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-saharaclient.new/python-saharaclient.changes 
2016-09-30 15:30:26.0 +0200
@@ -1,0 +2,27 @@
+Mon Sep  5 11:29:52 UTC 2016 - tbecht...@suse.com
+
+update to version 0.18.0
+  * Remove discover from test-requirements
+  * plugin's api update support
+  * Replace tempest_lib with tempest.lib
+  * Update reno for stable/mitaka
+  * avoid additional requirement for building docs
+  * Remove unused functional tests
+  * Add openstackclient dependency back
+  * Remove integration tests from saharaclient
+  * Designate integration
+  * Add pagination ability to Python-saharaclient
+  * Migrate functional tests to openstack-client
+  * Remove unused pngmath Sphinx extension
+  * Use osc_lib instead of cliff
+  * Add sorting ability to Python-saharaclient
+  * Remove incorrectly used "# flake8: noqa"
+  * include storm.pyleus in job types
+  * Change plugin version 'version' parameter to 'plugin-version'
+  * print statment has become a function in py3
+  * Updated from global requirements
+  * Use osc-lib instead of openstackclient
+  * support event logs for CLI
+- update _service and switch to upstream spec template
+
+---

Old:

  python-saharaclient-0.13.0.tar.gz
  python-saharaclient-rpmlintrc

New:

  python-saharaclient-0.18.0.tar.gz



Other differences:
--
++ python-saharaclient.spec ++
--- /var/tmp/diff_new_pack.jH4no9/_old  2016-09-30 15:30:29.0 +0200
+++ /var/tmp/diff_new_pack.jH4no9/_new  2016-09-30 15:30:29.0 +0200
@@ -16,96 +16,85 @@
 #
 
 
-%define component saharaclient
-
-Name:   python-%{component}
-Version:0.13.0
+%global sname saharaclient
+Name:   python-saharaclient
+Version:0.18.0
 Release:0
-Summary:Openstack Data Processing (Savanna) API Client
+Summary:Client library for OpenStack Sahara API
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://launchpad.net/python-saharaclient
-Source: 
https://pypi.python.org/packages/source/p/python-saharaclient/python-saharaclient-%{version}.tar.gz
-Source99:   %name-rpmlintrc
-BuildRequires:  openstack-suse-macros
+Url:https://launchpad.net/%{name}
+Source0:
https://pypi.io/packages/source/p/%{name}/%{name}-%{version}.tar.gz
+BuildRequires:  openstack-macros
 BuildRequires:  python-devel
-# Documentation build requirements:
-BuildRequires:  python-Sphinx
-BuildRequires:  python-keystoneclient
-BuildRequires:  python-pbr
-Provides:   python-savannaclient = %{version}
-Obsoletes:  python-savannaclient <= %{version}
-Requires:   python >= 2.7
-Requires:   python-Babel >= 1.3
+BuildRequires:  python-keystoneclient >= 2.0.0
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-os-testr >= 0.7.0
+BuildRequires:  python-osc-lib >= 0.4.0
+BuildRequires:  python-oslo.i18n >= 2.1.0
+BuildRequires:  python-oslo.log >= 1.14.0
+BuildRequires:  python-oslo.serialization >= 1.10.0
+BuildRequires:  python-oslo.utils >= 3.16.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-requests >= 2.10.0
+BuildRequires:  python-requests-mock >= 1.0
+BuildRequires:  python-setuptools >= 16.0
+BuildRequires:  python-testrepository >= 0.0.18
+Requires:   python-Babel >= 2.3.4
 Requires:   python-PrettyTable >= 0.7
-Requires:   python-cliff >= 1.15.0
-Requires:   python-keystoneauth1 >= 2.1.0
-Requires:   python-keystoneclient >= 1.6.0
-Requires:   python-neutronclient >= 2.6.0
-Requires:   python-novaclient >= 2.29.0
+Requires:   python-keystoneauth1 >= 2.10.0
+Requires:   python-keystoneclient >= 2.0.0
 Requires:   python-openstackclient >= 2.1.0
-Requires:   python-oslo.config >= 3.7.0
+Requires:   python-osc-lib >= 0.4.0
 Requires:   python-oslo.i18n >= 2.1.0
 Requires:   python-oslo.log >= 1.14.0
 Requires:   python-oslo.serialization >= 1.10.0
-Requires:   python-oslo.utils >= 3.5.0
-Requires:   python-pbr >= 1.6
-Requires:   python-requests >= 2.8.1
+Requires:   python-oslo.utils >= 3.16.0
+Requires:   python-requests >= 2.10.0
 Requires:   python-six >= 1.9.0
-Requires:   

commit python-novaclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-novaclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:30

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


Package is "python-novaclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-novaclient/python-novaclient.changes  
2016-05-04 08:19:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-novaclient.new/python-novaclient.changes 
2016-09-30 15:30:32.0 +0200
@@ -1,0 +2,139 @@
+Fri Sep  2 12:32:42 UTC 2016 - tbecht...@suse.com
+
+update to version 6.0.0
+  * Cap baremetal python APIs at 2.35
+  * Store api_version object in one place
+  * Replace functions 'Dict.get' and 'del' with 'Dict.pop'
+  * Fixes TypeError on Client instantiation
+  * Deprecate all the nova-network functions in the python API
+  * Fix test_trigger_crash_dump_in_locked_state_nonadmin test
+  * Removed unused 'install_venv' module
+  * Add eggs to gitignore list
+  * Add support for v2.37 and auto-allocated networking
+  * [functional] Skip tests if API doesn't support microversion
+  * [functional] Do not discover same resources for every test
+  * Cap image API deprecated methods at 2.35
+  * Pick first image if can't find the specific image
+  * Updated from global requirements
+  * Deprecate network-* commands and clamp to microversion 2.35
+  * functional tests fail if cirros image not exist
+
+---
+Tue Aug 30 16:08:07 UTC 2016 - tbecht...@suse.com
+
+update to version 5.1.0
+  * Change all test URLs to use example.com
+  * base.Resource not define __ne__() built-in function
+  * Use neutron for network name -> id resolution
+  * Add a missing i18n support
+  * Add support for microversion 2.31
+  * Correctly handle NOVACLIENT_INESCURE
+  * Added support for microversion 2.34
+  * Fix boot --nic error message for v2.32 boundary
+  * Add support for microversion 2.33
+  * Remove discover from test-requirements
+  * Added smaller flavors for novaclient functional tests to use
+  * [functional] Fix wrong message in server description test
+  * Make novaclient functional tests use pretty tox
+  * Skip nova-network-only tests if using Neutron
+  * Add support for microversion 2.30
+  * Split nic parsing out of _boot method
+  * Clean up deprecated CLI options
+  * Refactor test_servers APIVersion setup
+  * Move other-requirements.txt to bindep.txt
+  * Fix the help message for 'get-mks-console'
+  * Fix deprecation message for --volume-service-name
+  * Update README to comply with Identity v3
+  * Update clouds.yaml.sample
+  * [functional] make tests work with only keystone v3
+  * Look up image names directly in glance
+  * Fix python35 job failures
+  * remove start_version arg for keypairs v2.10 shell
+  * Add support for microversion 2.29
+  * Modify flatten method to display an empty dict
+  * functional: fix a deprecation warning in test_auth.TestAuthentication
+  * make string.letters python3 compatible
+  * Microversion 2.35 adds keypairs pagination support
+  * Extend microversion stuff to support resource classes
+  * Deprecated the `--volume-service-name` option
+  * Remove white space between print and ()
+  * Make wait_for_server_os_boot wait longer
+  * Handle successful response in console functional tests
+  * List system dependencies for running common tests
+  * Make it possible to list quotas with details
+  * Raise an exception in v2.client for direct_use
+  * Use glanceclient for functional tests
+  * Deprecate baremetal API and CLI interfaces
+  * Virtual device tagging client support
+  * Updated from global requirements
+  * functional: skip test_auth_via_keystone_vX if X is not available
+
+---
+Thu Aug 11 13:02:59 UTC 2016 - tbecht...@suse.com
+
+update to version 4.1.0
+  * Update to microversion 2.27
+  * Fix funtional test gate failure caused by keystone client change.
+  * Enhance descriptions for get and clear password
+  * Use novaclient/utils directly and remove openstack/common (4/4)
+  * Added Support of microverison 2.26
+  * Remove unused code in tests/unit/v2/fakes.py
+  * Remove busted baremetal CLIs and API bindings
+  * Adding tox support for bandit
+  * Make functional tests work with v3 keystone
+  * Return a less dramatic message for public flavors.
+  * Functional tests for server's description
+  * Make it clear that host-servers-migrate is a cold migration
+  * Add a note message for reboot
+  * Fix host-evacuate-live for 2.25 microversion
+  * Use keystoneclient python bindings for testing
+  * Use novaclient/utils directly and remove openstack/common (2/4)
+  * Name and AZ should as be optional param on aggregate-update
+  * Prepare 

commit python-oslo.rootwrap for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.rootwrap for 
openSUSE:Factory checked in at 2016-09-30 15:30:21

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


Package is "python-oslo.rootwrap"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.rootwrap.new/python-oslo.rootwrap.changes
   2016-09-30 15:30:24.0 +0200
@@ -0,0 +1,192 @@
+---
+Fri Sep  2 19:09:05 UTC 2016 - tbecht...@suse.com
+
+- update to version 5.1.0
+  * Fix parameters of assertEqual are misplaced
+
+---
+Wed Aug 10 12:20:29 UTC 2016 - tbecht...@suse.com
+
+- update to 5.0.0:
+  * always allow privsep-helper as a command
+  * Add Python 3.5 classifier and venv
+  * Updated from global requirements
+- Update _service and switch to upstream spec template
+
+---
+Thu Mar  3 14:51:07 UTC 2016 - tbecht...@suse.com
+
+- update to 4.1.0:
+  * Updated from global requirements
+  * Updated from global requirements
+  * Remove unused use-syslog-rfc-format option
+  * Updated from global requirements
+  * Updated from global requirements
+  * Removes MANIFEST.in as it is not needed explicitely by PBR
+  * Drop python 2.6 support
+  * Updated from global requirements
+  * Remove python 2.6 classifier
+  * Remove python 2.6 and cleanup tox.ini
+  * Python 3: encode or decode i/o data of Popen.communicate()
+  * Fix Python 3 support for eventlet monkey-patching
+  * Fix Python 3 issues in tests
+  * No need for Oslo Incubator Sync
+  * move usage instructions into main docs
+  * docs - Set pbr 'warnerrors' option for doc build
+  * Add shields.io version/downloads links/badges into README.rst
+  * add pbr-generated release history to the documentation
+  * Fix some spelling typo in manual
+  * Updated from global requirements
+  * Python 3: Don't use BaseException.message attribute
+  * Handle renamed executables with KillFilter
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Remove test-requirements-py3.txt
+  * Add tox target to find missing requirements
+  * daemon: avoid raising UnboundLocalError to callers
+  * Updated from global requirements
+  * Updated from global requirements
+  * Log that rootwrap was spawned after check
+- Adjust Requires according to requirements.txt
+
+---
+Fri Jun 12 08:04:28 UTC 2015 - dmuel...@suse.com
+
+- update to 2.0.0:
+  * Remove oslo namespace package
+
+---
+Mon Jun  8 14:05:29 UTC 2015 - tbecht...@suse.com
+
+- update to 1.8.0:
+  * Remove run_cross_tests.sh
+  * Updated from global requirements
+  * Remove mentions of root "tests" package from test_funcional_*
+  * Uncap library requirements for liberty
+  * Speed up non-daemon rootwrap command line invocation
+  * Correct RST syntax errors in README.rst
+  * Update to latest hacking
+  * Avoid calling sudo just to change users
+  * Updated from global requirements
+- Adjust Requires according to requirements.txt
+
+---
+Tue Mar 10 15:12:16 UTC 2015 - tbecht...@suse.com
+
+- update to 1.6.0:
+  * Remove env changing support in daemon mode
+  * Updated from global requirements
+  * Updated from global requirements
+  * Add bug link to README
+- update Requires
+
+---
+Thu Jan 29 14:46:05 UTC 2015 - tbecht...@suse.com
+
+- update to version 1.5.0:
+  * Add cross-testing script
+  * Updated from global requirements
+  * Move files out of the namespace package
+  * Activate pep8 check that _ is imported
+  * Workflow documentation is now in infra-manual
+
+---
+Thu Jan 15 09:13:06 UTC 2015 - tbecht...@suse.com
+
+- update to version 1.4.0:
+  * Updated from global requirements
+  * Updated from global requirements
+  * Correct filters examples in README.rst
+  * Updated from global requirements
+  * Fix exit of subprocess in case it was terminated by signal
+  * Updated from global requirements
+  * Support building wheels (PEP-427)
+  * Updated from global requirements
+- Add python_requires to _service
+
+---
+Mon Sep 22 17:02:16 UTC 

commit python-neutronclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-neutronclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:18

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


Package is "python-neutronclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-neutronclient/python-neutronclient.changes
2016-05-04 08:19:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-neutronclient.new/python-neutronclient.changes
   2016-09-30 15:30:18.0 +0200
@@ -1,0 +2,212 @@
+Mon Sep  5 10:43:46 UTC 2016 - tbecht...@suse.com
+
+update to version 6.0.0
+  * Fix the problem of "qos-bandwidth-limit-rule-show"
+  * Improve Help message of VPN Update CLI
+  * Drop LBaaS v1 functional tests
+  * Add segment as an attribute to subnet in client
+  * Move advanced service functional tests to functional-adv-svcs
+  * Fix prompt message for qos-bandwidth-limit-rule-create
+  * Add flavor argument to router
+  * Add quota support for LB and Listeners
+  * Add possible updatable options to net-update CLI
+  * Use upper constraints for all jobs in tox.ini
+  * Devref: Newton mid-cycle updates for transition to OSC
+  * Remove discover from test-requirements
+  * Add 'shared' option to neutron address-scope-update
+  * Trivial correction in variable name
+  * Add client exception for HostNotCompatibleWithFixedIps
+  * Add support to expose default quotas for tenants
+  * quota-update to return an error msg for 0 args
+  * Add trunk commands to openstackclient
+  * Update OSC transition status
+  * Add Python 3.5 classifier and venv
+  * Provide client bindings for DELETE method of auto-allocated-topology 
extension
+  * Add QoS egress minimum bandwidth rule to neutronclient
+  * Remove admin-state-down from lbaas-member-update
+  * Fix the problem of "qos-dscp-marking-rule-show"
+  * Add long option to network trunk list command
+  * Make trunk commands handle description for trunk resources
+  * Add documentation for OSC plugin commands
+  * Do not check stderr output from shell
+  * Remove case dependancy for user inputs
+  * Make trunk commands handle timestamps for trunk resources
+  * Enable DeprecationWarning in test environments
+  * Remove environment defaults
+  * Sync tools/tox_install.sh
+  * Update docs to use Identity v3
+  * Log request-id for each api call
+  * Add support for Bulk Delete in NeutronClient
+  * Move find_resource family to API binding layer
+  * Make find_resourceid_by_id public in python binding class
+  * Improve help messages for NeutronClient
+  * Updated from global requirements
+  * Fix problem of RBAC command arguments
+
+---
+Tue Aug  9 17:24:48 UTC 2016 - tbecht...@suse.com
+
+- update to 5.0.0:
+  * Fix string interpolation at logging call
+  * Updated from global requirements
+  * Add functional test hook for fwaas command
+  * HAProxy uses milliseconds for its timeout values
+  * Base OSC plugin support
+  * Make USER_AGENT variable global
+  * Trivial: missing comma in the docs
+  * Fixed --insecure not taking effect when specified
+  * Fix the problem of mox in test_shell.py
+  * Trivial Fix: Fix typo
+  * improve readme contents
+  * Add no-shared option to qos-policy-update command
+  * Add in missing translations
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Update for API bindings
+  * Remove unnecessary executable permissions
+  * Update tempest_lib to tempest.lib
+  * Constraint tox targets with upper-constraints.txt
+  * Make purge supports dvr router's interface
+  * Switched from fixtures.MonkeyPatch to mock.patch
+  * tests: removed mocking for Client.get_attr_metadata
+  * Update the home-page with developer documentation
+  * Address pairs help missing space
+  * Devref: Add dynamic routing to OSC transition
+  * Support sha256 for vpn-ikepolicy and vpn-ipsecpolicy
+  * Fixes unclear error when no --pool-prefix given
+  * Added missing help text for 'purge' command
+  * Fix random failure of security group unit test
+  * Remove the last remaining vendor code
+
+---
+Mon Aug  1 18:36:19 UTC 2016 - tbecht...@suse.com
+
+- update to 4.2.0:
+  * Change try..except to assertRaises in UT
+  * Updated from global requirements
+  * Change --no-gateway help text
+  * Log SHA1 hash of X-Auth-Token value
+  * Remove APIParamsCall decorator
+  * Fix assertNotEqual parameters
+  * organize the release notes consistently
+  * Update reno for stable/mitaka
+  * Add parser options for description on resources
+  * Add release note of critial TypeError fix
+  * Fix TypeError with error message
+  * Adding DSCP marking changes to neutronclient
+  * Update relnote on fix of bug 

commit python-keystoneclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-keystoneclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:14

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


Package is "python-keystoneclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-keystoneclient/python-keystoneclient.changes  
2016-05-04 08:19:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-keystoneclient.new/python-keystoneclient.changes
 2016-09-30 15:30:15.0 +0200
@@ -1,0 +2,102 @@
+Wed Aug 31 13:15:31 UTC 2016 - tbecht...@suse.com
+
+update to version 3.5.0
+  * Add policy functional tests
+  * Follow up patch for Improve docs for v3 roles
+  * Improve docs for v3 roles
+  * Follow up patch for Improve docs for v3 domains
+  * Add project functional tests
+  * Fix no content return type doc
+  * Improve docs for v3 auth
+  * Follow up patch for Add ec2 functional tests
+  * Reuse Domain and Project resouce definitions
+  * Follow up patch for Improve docs for v3 ec2
+  * Do not send user ids as payload
+  * Add auth functional tests
+  * Improve docs for v3 endpoints
+  * Follow up patch for Improve docs for v3 services
+  * Add Python 3.5 classifier
+  * Add role functional tests
+  * Add endpoint functional tests
+  * Use assertEqual() instead of assertDictEqual()
+  * Correct test_implied_roles
+  * Add service functional tests
+  * Improve docs for v3 policies
+  * Move other-requirements.txt to bindep.txt
+  * Follow up patch for Improve docs for v3 policies
+  * Improve docs for v3 ec2
+  * Remove unused LOG
+  * Remove print in tests.functional.v3.test_implied_roles
+  * Add region functional tests
+  * Use the adapter instead of the client in tests
+  * Add ec2 functional tests
+  * Add credential functional tests
+  * Improve implied-role functional tests
+  * Improve docs for v3 tokens
+  * Improve docs for v3 credentials
+  * Improve docs for v3 regions
+  * Fix other-requirements.txt for deb based distros
+  * Add __ne__ built-in function
+  * Updated from global requirements
+  * Improve docs for v3 services
+
+---
+Mon Jul 11 14:09:27 UTC 2016 - tbecht...@suse.com
+
+- update to 3.2.0:
+  * Updated from global requirements
+  * Update other-requirements.txt for Xenial
+  * Update README to comply with Identity V3
+  * List system dependencies for running common tests
+  * Follow up patch for Improve docs for v3 projects
+  * Improve docs for v3 projects
+  * Add group functional tests
+  * Improve docs for v3 groups
+  * Follow up patch for add domain functional tests
+  * Add domain functional tests
+  * Improve docs for v3 domains
+  * Use /v3/auth/projects and /v3/auth/domains
+  * Handle EmptyCatalog exception in list federated projects
+  * PEP257: Ignore D203 because it was deprecated
+  * import warnings in doc/source/conf.py
+  * Remove unused iso8601 requirement
+  * map fixtures to keystoneauth
+  * Update the home-page with developer documentation
+  * Add users functional tests
+  * Improve docs for v3 users
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Fixing D105 PEP257
+  * Fixing D200 PEP257 violation
+  * Fixing D202 and D203 PEP257 violation
+  * Fixing D204, D205, and D207 PEP257 violation
+  * Fixing D208 PEP257 violation
+  * httpclient: remove unused debug kwargs
+  * Fixing D211 PEP257 violation
+  * Fixing D301 PEP257 violation
+  * Add federation related tests
+  * [Trivial] Remove unnecessary executable privilge of unit test file
+  * Replace tempest-lib with tempest.lib
+  * Fix identity_providers docstring
+  * Fallback if Git repository is absent
+  * Fix D400 PEP257 violation
+  * Fix D401 PEP257 violation
+  * Updated example in README
+  * Removing bandit.yaml in favor of defaults
+  * Allow seeing full token response when debug enabled
+  * Enhance functional class to provide default info
+  * Remove keystone bash completion scripts for Keystone
+  * Remove doc references to the keystone CLI
+  * remove CLI from keystoneclient
+  * remove oslo-incubator apiclient
+  * Update reno for stable/mitaka
+  * Fix reference to ClientException
+  * Update Client examples to use sessions
+  * Change tests to pass session to Client
+  * Update developer docs for keystoneauth session
+  * Correct test running instructions
+  * Document session as an argument to v3.Client
+  * Link to AccessInfoV3 returned from get_raw_token_from_identity_service
+  * Tests stop using deprecated HTTPClient.get()
+- update _service and switch to upstream .spec file
+
+---

Old:

  openstack-keystone.sh
  python-keystoneclient-2.3.1.tar.gz
  python-keystoneclient-rpmlintrc

New:

  

commit python-cinderclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-cinderclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:07

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


Package is "python-cinderclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-cinderclient/python-cinderclient.changes  
2016-05-04 08:19:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cinderclient.new/python-cinderclient.changes 
2016-09-30 15:30:08.0 +0200
@@ -1,0 +2,75 @@
+Mon Sep  5 08:25:20 UTC 2016 - tbecht...@suse.com
+
+update to version 1.9.0
+  * Fix Unicode error printing extra-specs
+  * Fix batch deleting issue in volume_type.unset_keys()
+  * List manageable volumes and snapshots
+  * base.Resource not define __ne__() built-in function
+  * Make Resource class's function can be wraped by api_version
+  * Add group types and group specs
+  * Fix Service.__repr__ to remove the undefined attribute
+  * Wrap group type and group spec with api_version
+  * Wrap volume_backup's update function with api_version
+  * Fix _get_rate_limit when resp is None
+  * Make __repr__ print encryption_id for VolumeEncryptionType class
+  * Fixing parsing problem of cascade in client
+  * Fix useless api_version of Manager class
+  * Add cluster related commands
+  * Add Negative tests for cinder volume extend command
+  * Fix python 2,3 compatibility issue with six
+  * Use 'six' instead of oslo_utils.strutils.six
+  * Add generic volume groups
+  * Support for snapshot force delete
+  * Add backup-update
+  * Add Python3.5 classifier and venv
+  * OS_TENANT_NAME is not required when we have OS_PROJECT_NAME
+  * Wrap cluster related function with api_version
+  * Fix argument order for assertEqual to (expected, observed)
+  * Make APIVersion's null check more pythonic
+  * Switch to keystoneauth
+  * Fix output error for type-show command
+  * Support name option for volume restore
+  * Replace OpenStack LLC with OpenStack Foundation
+  * Changed backup-restore to accept backup name
+  * Deleting volume metadata keys with a single request
+  * Add "start_version" and "end_version" support to  argparse
+  * Add tenant_id parameter to limits.
+  * deprecate command `cinder endpoints`
+  * Log request-id for each api call
+  * Fix NoneType error for cinderclient v1
+  * Fix authentication issue
+  * Fix Capabilities.__repr__ to remove the undefined attribute
+  * Add support for group snapshots
+  * Fix the incorrect alignment
+  * Make dict.keys() PY3 compatible
+  * Add strict Boolean checking
+  * Tests for testing volume-create command
+  * Add api-version to get server versions
+  * Enhance help message of upload_to_image
+  * Replace functions 'Dict.get' and 'del' with 'Dict.pop'
+  * Cinder client should retry with Retry-After value
+  * Use self.ks_logger instead of ks_logger
+  * Change api-version help to indicate server API
+  * Delete mox in cinderclient
+  * Fix string interpolation to delayed to be handled by the logging code
+  * Add Negative tests for cinder volume create command
+  * print endpoints using new keystoneauth catalog object
+  * Update the home-page with developer documentation
+  * Replace assertTrue(isinstance()) by optimal assert
+  * Remove self.__dict__ for formatting strings
+  * Make sure --bypass-url honored if specified
+  * Updated from global requirements
+  * Add v3 user messages with pagination
+  * Wrap GroupType class's function with api_version
+
+---
+Mon Aug  1 18:44:56 UTC 2016 - tbecht...@suse.com
+
+- update to 1.8.0:
+  * Don't enable lazy translation when loading client
+  * Support for cinder backup force delete
+  * Fix upload_to_image method
+  * Remove deprecated tempest_lib and use tempest.lib
+- update _service and switch to upstream spec file
+
+---

Old:

  python-cinderclient-1.6.0.tar.gz
  python-cinderclient-rpmlintrc

New:

  python-cinderclient-1.9.0.tar.gz



Other differences:
--
++ python-cinderclient.spec ++
--- /var/tmp/diff_new_pack.bpSIhm/_old  2016-09-30 15:30:10.0 +0200
+++ /var/tmp/diff_new_pack.bpSIhm/_new  2016-09-30 15:30:10.0 +0200
@@ -16,100 +16,90 @@
 #
 
 
-%define component cinderclient
-
-Name:   python-%{component}
-Version:1.6.0
+%global sname python-cinderclient
+Name:   python-cinderclient
+Version:1.9.0
 Release:0
-Summary:Openstack Block Storage (Cinder) API Client
+Summary:Python API and CLI for OpenStack Cinder
 License:Apache-2.0
 Group:  

commit python-heatclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-heatclient for 
openSUSE:Factory checked in at 2016-09-30 15:30:12

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


Package is "python-heatclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-heatclient/python-heatclient.changes  
2015-10-30 13:42:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-heatclient.new/python-heatclient.changes 
2016-09-30 15:30:13.0 +0200
@@ -1,0 +2,191 @@
+Tue Aug 30 15:39:01 UTC 2016 - tbecht...@suse.com
+
+- update to 1.4.0:
+  * Updated from global requirements
+  * Add a nested_depth argument to poll_for_events
+  * Update the home-page in setup.cfg
+  * Standardize import format
+  * Remove unused function
+  * Change usage of _auth_url private attribute
+  * Remove discover from test-requirements
+  * Add support for stack file list
+  * Trivial: Remove out-of-date and useless example
+  * Add Python 3.5 classifier and venv
+  * Fix doc build if git is absent
+  * Fix deprecation message for stack-preview
+  * Remove unused LOG
+  * Remove white space between print and ()
+  * base.Resource not define __ne__() built-in function
+  * Fix typo
+  * Pass correct arguments in osc plugin
+  * Use osc_lib instead of cliff
+  * Use osc-lib instead of openstackclient
+  * Imported Translations from Zanata
+  * Enhance error message
+  * Replace dict.iteritems with six.iteritems to make PY3 compatible
+  * Show 'deletion_time' of stacks
+  * Implement client side of event list --nested-depth
+  * Refactor test_shell
+  * Serialize files when using SessionClient
+  * Show 'parameter_defaults' for environment-show
+  * A resource list formatter for graphviz dot diagrams
+  * Implement "openstack stack failures list"
+  * Clean up osc fakes and mocks
+  * osc resource-type-show description option
+  * osc resource-type-list description option
+  * Remove redundant auth discovery
+  * switch to keystoneauth
+  * Allow redirects to use location from response
+  * Fix obscure error message when no template given to OSC
+  * Replace tempest-lib with tempest.lib
+  * Moved required parameter for visibility
+  * use thread safe fnmatch
+  * OpenStack client plugin for environment show
+  * Add client library support for retrieving a stack's environment
+  * Support "--pre-delete" argument for hook-clear
+  * Fixed fragile assertion in test_template_utils
+  * Fix logging issue in heatclient tests
+  * Add basic read-only function test for template validate
+  * Support OS_KEY/OS_CERT environment variables
+  * Replace assertRegexpMatches with assertRegex
+  * Moved -t parameter for visibility
+  * Move OpenStack client to test-requirements
+  * OSC plugin for orchestration template validate
+  * Use stack.get for resolving outputs for old API
+- update _service and switch to upstream spec template
+
+---
+Wed Jul 13 14:58:50 UTC 2016 - tbecht...@suse.com
+
+- update to 1.1.0:
+  * Updated from global requirements
+  * Fix regression handling relative paths in environment
+  * Update .gitreview for stable/mitaka
+  * Use poll_for_events for "openstack stack delete"
+  * Add OSC plugin for openstack orchestation service list
+  * Add OSC plugin for openstack orchestation build info
+  * Strip any whitespace before checking for json
+  * Add OSC plugin for stack resource mark unhealthy
+  * Implement stack event list --follow
+  * Replace assertEqual(None, *) with assertIsNone
+  * Prompt user before deleting stack if tty
+  * Add more readonly openstack client funcitonal tests
+  * Use poll_for_events for "openstack stack "
+  * Use poll_for_events for "openstack stack adopt"
+  * Use poll_for_events for "openstack stack update"
+  * Use poll_for_events for "openstack stack create"
+  * poll_for_events fall back to stack get
+  * Fix collision with update and update cancel
+  * Update OSC metavars
+  * OpenstackClient plugin for software deployment output show
+  * Move poll_for_events to event_utils
+  * Adds --filter to search for resources
+  * Stack resource search
+  * OpenstackClient plugin for software deployment metadata show
+  * Add stack hook poll and clear to openstack client
+  * OpenstackClient plugin for deployment create
+  * Remove the only-value flag of output-show
+  * Changes to support server-side environment resolution
+  * OSC plugin for stack snapshot delete
+  * OSC plugin for stack snapshot create
+  * Use yaml.safe_load() instead of yaml.load()
+  * Use oslo.utils.reflection to extract class name
+  * Add OpenstackClient plugin for software deployment show
+  * Add openstack client stack snapshot restore
+  * Add openstack client stack resource signal
+  * OSC plugin for stack 

commit python-osprofiler for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-osprofiler for 
openSUSE:Factory checked in at 2016-09-30 15:29:47

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


Package is "python-osprofiler"

Changes:

--- /work/SRC/openSUSE:Factory/python-osprofiler/python-osprofiler.changes  
2016-05-23 16:40:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-osprofiler.new/python-osprofiler.changes 
2016-09-30 15:29:53.0 +0200
@@ -1,0 +2,26 @@
+Tue Aug 30 15:22:08 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.4.0
+  * Remove discover from test-requirements
+  * Don't set html_last_updated_fmt without git
+  * Add exception type to stop trace info
+  * OSprofiler initialization method
+  * Fix title of index page
+  * Add Ceilometer driver
+  * Expose osprofiler middleware as entrypoint
+  * Add MongoDB driver
+  * Improve unit test coverage
+  * Add connection string usage to osprofiler-cli
+  * Add tests for mongodb driver
+  * doc: Log warning when can't get informaiton from git
+  * Fix typos on spec directory
+  * Fix typo: 'Olso' to 'Oslo'
+  * Add backward compatible drivers structure
+  * Add overall profiler stats by operation
+
+---
+Mon Aug  1 18:56:59 UTC 2016 - tbecht...@suse.com
+
+- Add _service and switch to upstream spec file
+
+---

Old:

  osprofiler-1.3.0.tar.gz

New:

  _service
  osprofiler-1.4.0.tar.gz



Other differences:
--
++ python-osprofiler.spec ++
--- /var/tmp/diff_new_pack.3xU5sa/_old  2016-09-30 15:29:55.0 +0200
+++ /var/tmp/diff_new_pack.3xU5sa/_new  2016-09-30 15:29:55.0 +0200
@@ -16,72 +16,76 @@
 #
 
 
+%global sname osprofiler
 Name:   python-osprofiler
-Version:1.3.0
+Version:1.4.0
 Release:0
 Summary:OpenStack Profiler Library
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:https://git.openstack.org/cgit/openstack/osprofiler
-# The link used earlier: https://pypi.python.org/packages/source/o/osprofiler/ 
is now broken. 
-# Pypi now provides the lengthy download link as below. 
-Source: 
https://pypi.python.org/packages/7a/73/209ff20d871c8d5d25f2d6af0f82808bc5246c6033bf16ea3db03c19f4ef/osprofiler-%{version}.tar.gz
-BuildRequires:  python-WebOb
+Url:https://launchpad.net/osprofiler
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-WebOb >= 1.2.3
+BuildRequires:  python-ceilometerclient >= 2.5.0
 BuildRequires:  python-devel
-BuildRequires:  python-mock
-BuildRequires:  python-nose
-BuildRequires:  python-oslo.config >= 3.2.0
-BuildRequires:  python-oslo.utils >= 3.4.0
-BuildRequires:  python-oslosphinx
-BuildRequires:  python-pbr
-BuildRequires:  python-python-subunit
-BuildRequires:  python-six
-BuildRequires:  python-sphinx
-BuildRequires:  python-testrepository
-BuildRequires:  python-testtools
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-oslo.config >= 3.14.0
+BuildRequires:  python-oslo.utils >= 3.16.0
+BuildRequires:  python-pymongo >= 3.0.2
+BuildRequires:  python-python-subunit >= 0.0.18
+BuildRequires:  python-six >= 1.9.0
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testtools >= 1.4.0
 Requires:   python-WebOb >= 1.2.3
-Requires:   python-oslo.config >= 3.2.0
-Requires:   python-oslo.utils >= 3.4.0
+Requires:   python-oslo.config >= 3.14.0
+Requires:   python-oslo.utils >= 3.16.0
 Requires:   python-six >= 1.9.0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
 
 %description
-OSProfiler is an OpenStack cross-project profiling library.
+OSProfiler provides a tiny but powerful library that is used by
+most (soon to be all) OpenStack projects and their python clients. It
+provides functionality to be able to generate 1 trace per request, that goes
+through all involved services. This trace can then be extracted and used
+to build a tree of calls which can be quite handy for a variety of
+reasons (for example in isolating cross-project performance issues).
 
-Background
---
+%package doc
+Summary:Documentation for OSProfiler
+Group:  Development/Languages/Python
+BuildRequires:  python-Sphinx
+BuildRequires:  python-oslosphinx >= 2.5.0
 

commit python-oslo.serialization for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.serialization for 
openSUSE:Factory checked in at 2016-09-30 15:29:42

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


Package is "python-oslo.serialization"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-oslo.serialization/python-oslo.serialization.changes
  2016-05-19 12:14:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.serialization.new/python-oslo.serialization.changes
 2016-09-30 15:29:43.0 +0200
@@ -1,0 +2,36 @@
+Fri Sep  2 19:10:06 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.13.0
+  * Fix serialization of binary strings in Python3
+  * Drop H803 in flake8 ignore list
+
+---
+Wed Aug 10 12:17:07 UTC 2016 - tbecht...@suse.com
+
+- update to 2.12.0:
+  * Updated from global requirements
+  * Fix parameters of assertEqual are misplaced
+  * Add Python 3.5 classifier and venv
+  * Use {} instead of dict()
+  * Replace TypeError by ValueError in msgpackutils
+  * Support serializing ipaddress objs with jsonutils
+
+---
+Sun Jun 19 20:21:39 UTC 2016 - dmuel...@suse.com
+
+- update to 2.7.0:
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * [Trivial] Remove executable privilege of doc/source/conf.py 
+  * Drop babel as requirement since its not used
+  * Updated from global requirements
+  * Unified and simplified API for all serializers
+  * Make msgpack registries copyable (and add __contains__)
+  * msgpack: fix datetime serialization
+
+---
+Thu Jun  2 09:21:42 UTC 2016 - tbecht...@suse.com
+
+- use renderspec source service
+- update spec from upstream
+
+---

Old:

  oslo.serialization-2.4.0.tar.gz

New:

  oslo.serialization-2.13.0.tar.gz



Other differences:
--
++ python-oslo.serialization.spec ++
--- /var/tmp/diff_new_pack.GDIlhi/_old  2016-09-30 15:29:44.0 +0200
+++ /var/tmp/diff_new_pack.GDIlhi/_new  2016-09-30 15:29:44.0 +0200
@@ -17,27 +17,26 @@
 
 
 %global sname oslo.serialization
-
 Name:   python-oslo.serialization
-Version:2.4.0
+Version:2.13.0
 Release:0
 Summary:OpenStack serialization library
 License:Apache-2.0
 Group:  Development/Languages
 Url:https://launchpad.net/%{sname}
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-devel
-BuildRequires:  python-mock
+BuildRequires:  python-ipaddress >= 1.0.7
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-msgpack-python >= 0.4.0
 BuildRequires:  python-netaddr >= 0.7.12
-BuildRequires:  python-oslo.i18n
-BuildRequires:  python-oslo.utils >= 3.5.0
-BuildRequires:  python-oslotest
-BuildRequires:  python-pbr
-BuildRequires:  python-setuptools
-Requires:   python-Babel >= 1.3
+BuildRequires:  python-oslo.i18n >= 2.1.0
+BuildRequires:  python-oslo.utils >= 3.16.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-pbr >= 1.6
 Requires:   python-msgpack-python >= 0.4.0
-Requires:   python-oslo.utils >= 3.5.0
+Requires:   python-oslo.utils >= 3.16.0
 Requires:   python-pytz >= 2013.6
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
@@ -50,7 +49,7 @@
 Summary:Documentation for OpenStack serialization library
 Group:  Development/Languages
 BuildRequires:  python-Sphinx
-BuildRequires:  python-oslosphinx >= 2.3.0
+BuildRequires:  python-oslosphinx >= 2.5.0
 
 %description doc
 The oslo.serialization library provides support for representing objects
@@ -61,7 +60,7 @@
 %setup -q -n %{sname}-%{version}
 
 %build
-%{__python2} setup.py build
+%{py2_build}
 
 # generate html docs
 %{__python2} setup.py build_sphinx
@@ -69,10 +68,10 @@
 rm -rf doc/build/html/.{doctrees,buildinfo}
 
 %install
-%{__python2} setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%{py2_install}
 
 %check
-testr init && testr run
+%{__python2} setup.py test
 
 %files
 %license LICENSE

++ _service ++
--- /var/tmp/diff_new_pack.GDIlhi/_old  2016-09-30 15:29:44.0 +0200
+++ /var/tmp/diff_new_pack.GDIlhi/_new  2016-09-30 15:29:44.0 +0200
@@ -1,13 +1,13 @@
 
+  
+

commit python-oslosphinx for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslosphinx for 
openSUSE:Factory checked in at 2016-09-30 15:29:45

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


Package is "python-oslosphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslosphinx/python-oslosphinx.changes  
2016-05-19 12:14:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslosphinx.new/python-oslosphinx.changes 
2016-09-30 15:29:46.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 10 12:10:57 UTC 2016 - tbecht...@suse.com
+
+- update to 4.7.0:
+  * Allow "Other Versions" section to be configurable
+  * Updated from global requirements
+  * fix other versions sidebar links
+  * Subprocess returns bytes in py3
+  * Updated from global requirements
+  * add recent versions links to sidebar
+- Update _service and switch to upstream spec template
+
+---

Old:

  oslosphinx-4.3.0.tar.gz

New:

  oslosphinx-4.7.0.tar.gz



Other differences:
--
++ python-oslosphinx.spec ++
--- /var/tmp/diff_new_pack.3b5WA5/_old  2016-09-30 15:29:47.0 +0200
+++ /var/tmp/diff_new_pack.3b5WA5/_new  2016-09-30 15:29:47.0 +0200
@@ -16,19 +16,21 @@
 #
 
 
+%global sname oslosphinx
 Name:   python-oslosphinx
-Version:4.3.0
+Version:4.7.0
 Release:0
-Url:https://launchpad.net/oslosphinx
 Summary:OpenStack Sphinx
 License:Apache-2.0
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/o/oslosphinx/oslosphinx-%{version}.tar.gz
+Url:https://launchpad.net/oslosphinx
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-devel
-BuildRequires:  python-pbr
-Requires:   python-pbr >= 1.8
-Requires:   python-requests >= 2.8.1
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-setuptools >= 16.0
+Requires:   python-pbr >= 1.6
+Requires:   python-requests >= 2.10.0
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
 
@@ -37,19 +39,18 @@
 layer of Sphinx plugins.
 
 %prep
-%setup -q -n oslosphinx-%{version}
+%setup -q -n %{sname}-%{version}
 
 %build
-%{__python2} setup.py build
+%{py2_build}
 
 %install
-%{__python2} setup.py install --skip-build --root=%{buildroot} 
--prefix=%{_prefix} --install-data=%{python2_sitelib}
+%{py2_install}
 
 %files
-%defattr(-,root,root,-)
 %doc README.rst AUTHORS
 %license LICENSE
-%{python2_sitelib}/oslosphinx
+%{python2_sitelib}/%{sname}
 %{python2_sitelib}/*.egg-info
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.3b5WA5/_old  2016-09-30 15:29:47.0 +0200
+++ /var/tmp/diff_new_pack.3b5WA5/_new  2016-09-30 15:29:47.0 +0200
@@ -1,13 +1,13 @@
 
-   
-enable
-  
-  
-oslosphinx
+  
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/openstack/oslosphinx/oslosphinx.spec.j2
+python-oslosphinx.spec
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/global-requirements.txt
   
-  
+  
+enable
   
   
 enable
   
-
+
\ No newline at end of file

++ oslosphinx-4.3.0.tar.gz -> oslosphinx-4.7.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslosphinx-4.3.0/AUTHORS new/oslosphinx-4.7.0/AUTHORS
--- old/oslosphinx-4.3.0/AUTHORS2016-02-10 00:18:24.0 +0100
+++ new/oslosphinx-4.7.0/AUTHORS2016-08-02 20:14:38.0 +0200
@@ -6,6 +6,7 @@
 Cyril Roelandt 
 Davanum Srinivas 
 Davanum Srinivas 
+David Stanek 
 Dirk Mueller 
 Doug Hellmann 
 Doug Hellmann 
@@ -15,6 +16,8 @@
 Javier Pena 
 Jeremy Stanley 
 Joe Gordon 
+John Dickinson 
+Joshua Harlow 
 Julien Danjou 
 Mark McLoughlin 
 Monty Taylor 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslosphinx-4.3.0/ChangeLog 
new/oslosphinx-4.7.0/ChangeLog
--- old/oslosphinx-4.3.0/ChangeLog  2016-02-10 00:18:24.0 +0100
+++ new/oslosphinx-4.7.0/ChangeLog  2016-08-02 20:14:38.0 +0200
@@ -1,6 +1,28 @@
 CHANGES
 ===
 
+4.7.0
+-
+
+* Allow "Other Versions" section to be configurable
+
+4.6.0
+-
+
+* Updated from global requirements
+* fix other versions sidebar links
+
+4.5.0
+-

commit python-oslo.reports for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.reports for 
openSUSE:Factory checked in at 2016-09-30 15:29:37

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


Package is "python-oslo.reports"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.reports.new/python-oslo.reports.changes 
2016-09-30 15:29:39.0 +0200
@@ -0,0 +1,97 @@
+---
+Wed Aug 31 13:12:29 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.14.0
+  * Updated from global requirements
+
+---
+Wed Aug 10 12:26:13 UTC 2016 - tbecht...@suse.com
+
+- update to 1.13.0:
+  * Updated from global requirements
+  * Add Python 3.5 classifier and venv
+  * Use file modification events instead of signal handler
+  * Imported Translations from Zanata
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Remove direct dependency on babel
+- Update _service and switch to upstream spec template
+
+---
+Mon Apr  4 11:45:19 UTC 2016 - tbecht...@suse.com
+
+- update to 1.7.0:
+  * Updated from global requirements
+  * Update .gitreview for stable/mitaka
+
+---
+Thu Mar  3 16:21:07 UTC 2016 - tbecht...@suse.com
+
+- update to 1.6.0:
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Update translation setup
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Print the traceback if there was an exception in run(
+  * Rename signal handler argument to 'frame'
+  * Updated from global requirements
+  * Updated from global requirements
+  * Trival: Remove 'MANIFEST.in'
+  * Drop python 2.6 support
+  * Updated from global requirements
+  * Remove Python 2.6 classifier
+  * Updated from global requirements
+  * Remove python 2.6 and cleanup tox.ini
+  * Fix Transition to SIGUSR2 in oslo.reports breaks upgrade
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Fix a typo in process.py
+  * remove extraneous coverage omit instruction
+- Adjust Requires
+
+---
+Wed Oct 21 06:39:12 UTC 2015 - dmuel...@suse.com
+
+- update to 0.7.0:
+  * No need for Oslo Incubator Sync
+  * Fix coverage configuration and execution
+  * How to use oslo.reports documentation
+  * add auto-generated api documentation
+  * clean up release notes in toctree
+  * add auto-generated docs for config options
+  * Add shields.io version/downloads links/badges into README.rst
+  * Updated from global requirements
+  * guru_meditation_report: Use SIGUSR2 instead of SIGUSR1
+
+---
+Wed Sep  9 07:09:23 UTC 2015 - tbecht...@suse.com
+
+- update to 0.5.0:
+  * Updated from global requirements
+  * Add a configuration for the directory to generate gmr
+  * Fill README from information in the wiki
+  * Setup translations
+- Adjust Requires
+
+---
+Mon Aug  3 10:02:51 UTC 2015 - tbecht...@suse.com
+
+- update to 0.3.0:
+  * Updated from global requirements
+  * Fix mock of open(
+  * Fix GMR break with new psutil versions
+  * Add oslo.utils dependency
+  * Add tox target to find missing requirements
+- Adjust Requires
+
+---
+Mon Jul  6 11:40:06 UTC 2015 - rsalev...@suse.com
+
+- initial package creation
+

New:

  _service
  oslo.reports-1.14.0.tar.gz
  python-oslo.reports.changes
  python-oslo.reports.spec



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

commit python-oslo.context for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.context for 
openSUSE:Factory checked in at 2016-09-30 15:29:17

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


Package is "python-oslo.context"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.context/python-oslo.context.changes  
2016-05-19 12:14:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.context.new/python-oslo.context.changes 
2016-09-30 15:29:18.0 +0200
@@ -1,0 +2,54 @@
+Thu Sep  1 12:24:45 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.9.0
+  * Emit deprecation warnings when positional args passed
+  * Fix parameters of assertEqual are misplaced
+  * Updated from global requirements
+  * Manually specify from_dict parameters
+
+---
+Tue Aug 30 16:24:01 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.8.0
+  * Delete H803 in flake8 ignore list
+
+---
+Wed Aug 10 14:37:15 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.7.0
+  * Add Python 3.5 classifier and venv
+  * Allow deprecated X-Tenant-Name in from_environ
+
+---
+Fri Jul 29 15:52:06 UTC 2016 - dmuel...@suse.com
+
+- update to 2.6.0:
+  * Handle openstack.request_id in from_environ
+  * Add is_admin_project to context
+  * Updated from global requirements
+  * Add reno for releasenotes management
+  * Add oslo.context name attributes matching ids
+
+---
+Mon Jul  4 15:44:31 UTC 2016 - tbecht...@suse.com
+
+- Update .spec from upstream via renderspec source service
+
+---
+Tue Jun 14 06:15:21 UTC 2016 - dmuel...@suse.com
+
+- update to 2.4.0:
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Strip roles in from_environ
+  * Allow deprecated headers in from_environ
+  * Drop babel as requirement since its not used
+  * Updated from global requirements
+  * Ensure to_dict() supports unicode
+
+---
+Thu Jun  2 09:01:38 UTC 2016 - tbecht...@suse.com
+
+- use renderspec source service
+- update spec from upstream
+
+---

Old:

  oslo.context-2.2.0.tar.gz

New:

  oslo.context-2.9.0.tar.gz



Other differences:
--
++ python-oslo.context.spec ++
--- /var/tmp/diff_new_pack.UwNUBS/_old  2016-09-30 15:29:19.0 +0200
+++ /var/tmp/diff_new_pack.UwNUBS/_new  2016-09-30 15:29:19.0 +0200
@@ -17,29 +17,23 @@
 
 
 %global sname oslo.context
-%bcond_with test
+%bcond_without test
 Name:   python-oslo.context
-Version:2.2.0
+Version:2.9.0
 Release:0
 Summary:OpenStack Oslo context library
 License:Apache-2.0
 Group:  Development/Languages
 Url:https://launchpad.net/%{sname}
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
-BuildRequires:  python-Babel
-BuildRequires:  python-pbr
-BuildRequires:  python-setuptools
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-positional >= 1.0.1
+Requires:   python-positional >= 1.0.1
+BuildArch:  noarch
 %if %{with test}
-BuildRequires:  python-hacking
 BuildRequires:  python-oslotest >= 1.10.0
-BuildRequires:  python-testrepository >= 0.0.18
-BuildRequires:  python-testscenarios >= 0.4
-BuildRequires:  python-testtools >= 0.9.34
 %endif
-Requires:   python-Babel >= 1.3
-Requires:   python-pbr
-BuildArch:  noarch
 
 %description
 The Oslo context library has helpers to maintain useful information
@@ -50,34 +44,28 @@
 %package doc
 Summary:Documentation for OpenStack common configuration library
 Group:  Documentation
-
 BuildRequires:  python-Sphinx
-BuildRequires:  python-fixtures
-BuildRequires:  python-oslosphinx
+BuildRequires:  python-oslosphinx >= 2.5.0
 
 %description doc
 Documentation for the oslo-context library.
 
 %prep
 %setup -q -n %{sname}-%{version}
-# Remove bundled egg-info
-rm -rf %{sname}.egg-info
 
 %build
-%{__python2} setup.py build
+%{py2_build}
 # generate html docs
 %{__python2} setup.py build_sphinx
 # remove the sphinx-build leftovers
 rm -rf doc/build/html/.{doctrees,buildinfo}
 
 %install
-%{__python2} setup.py install --skip-build --root %{buildroot}
+%{py2_install}
 
 %if %{with test}

commit python-oslo.i18n for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.i18n for 
openSUSE:Factory checked in at 2016-09-30 15:29:20

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


Package is "python-oslo.i18n"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.i18n/python-oslo.i18n.changes
2015-10-30 13:42:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-oslo.i18n.new/python-oslo.i18n.changes   
2016-09-30 15:29:21.0 +0200
@@ -1,0 +2,62 @@
+Fri Sep  2 19:09:31 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.9.0
+  * Fix parameters of assertEqual are misplaced
+  * Updated from global requirements
+
+---
+Wed Aug 10 13:55:18 UTC 2016 - tbecht...@suse.com
+
+- - update to version 3.8.0
+  * Imported Translations from Zanata
+  * Updated from global requirements
+  * Don't include openstack/common in flake8 exclude list
+
+---
+Thu Jun  2 09:10:19 UTC 2016 - tbecht...@suse.com
+
+- use renderspec source service
+- update spec from upstream
+
+---
+Tue Apr 26 15:20:12 UTC 2016 - rha...@suse.de
+
+- update to 3.6.0
+  * Updated from global requirements
+  * Better isolate tests and fixtures from environment
+  * Imported Translations from Zanata
+
+---
+Thu Mar  3 07:11:51 UTC 2016 - tbecht...@suse.com
+
+- update to 3.3.0:
+  * Update translation setup
+  * Updated from global requirements
+  * Imported Translations from Zanata
+  * Updated from global requirements
+  * Updated from global requirements
+  * add versionadded designations to newer functions
+  * doc: contextual/plural translation requires oslo.i18n >=2.1.0
+  * Trival: Remove 'MANIFEST.in'
+  * [doc] Update _i18n.py example to pass pep8
+  * Add missing blank in usage.rst
+  * Remove Python 2.6 workround for logging
+  * Drop python 2.6 support
+  * Updated from global requirements
+  * Remove python 2.6 classifier
+  * Remove python 2.6 and cleanup tox.ini
+  * Improved integration module documentation
+  * Updated from global requirements
+  * Imported Translations from Zanata
+  * Fix coverage configuration and execution
+  * No need for Oslo Incubator Sync
+  * Enhance the formatting error robustness patch
+  * Imported Translations from Zanata
+  * Move 'history' -> release notes section
+  * Add shields.io version/downloads links/badges into README.rst
+  * Change ignore-errors to ignore_errors
+  * Added the home-page value with Oslo wiki
+  * Updated from global requirements
+- Switch to .spec file from rpm-packaging upstream project
+
+---

Old:

  oslo.i18n-2.6.0.tar.gz

New:

  oslo.i18n-3.9.0.tar.gz



Other differences:
--
++ python-oslo.i18n.spec ++
--- /var/tmp/diff_new_pack.uB16lQ/_old  2016-09-30 15:29:22.0 +0200
+++ /var/tmp/diff_new_pack.uB16lQ/_new  2016-09-30 15:29:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-oslo.i18n
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,20 @@
 
 
 %global sname oslo.i18n
-
 Name:   python-oslo.i18n
-Version:2.6.0
+Version:3.9.0
 Release:0
 Summary:OpenStack i18n library
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:https://launchpad.net/%{sname}
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
-BuildRequires:  python-Babel
-BuildRequires:  python-oslotest
-BuildRequires:  python-pbr
-BuildRequires:  python-setuptools
-Requires:   python-Babel >= 1.3
+BuildRequires:  python-Babel >= 2.3.4
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-pbr >= 1.6
+Requires:   python-Babel >= 2.3.4
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
 
@@ -44,7 +43,7 @@
 Summary:Documentation for OpenStack i18n library
 Group:  Development/Languages/Python
 BuildRequires:  python-Sphinx
-BuildRequires:  python-oslosphinx
+BuildRequires:  python-oslosphinx >= 2.5.0
 
 %description doc
 Documentation for the oslo.i18n library.
@@ 

commit python-oslo.policy for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.policy for 
openSUSE:Factory checked in at 2016-09-30 15:29:26

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


Package is "python-oslo.policy"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.policy/python-oslo.policy.changes
2016-05-19 12:14:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.policy.new/python-oslo.policy.changes   
2016-09-30 15:29:26.0 +0200
@@ -1,0 +2,58 @@
+Wed Aug 31 16:24:48 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.14.0
+  * Revert "Adds debug logging for policy file validation"
+  * Delete H803 in flake8 ignore
+  * Allow policy file to not exist
+  * Updated from global requirements
+
+---
+Wed Aug 10 14:42:42 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.13.0
+  * Fix mispelled method name in setup.cfg
+  * Add note about not all APIs support policy enforcement by user_id
+  * Imported Translations from Zanata
+  * Fixed unit tests running on Windows
+  * Add Python 3.5 classifier and venv
+  * Adds debug logging for policy file validation
+  * Updated from global requirements
+
+---
+Mon Jul  4 15:52:41 UTC 2016 - tbecht...@suse.com
+
+- update to 1.11.0:
+  * Updated from global requirements
+  * Imported Translations from Zanata
+  * Improve policy sample generation testing
+  * Add helper scripts for generating policy info
+
+---
+Mon Jul  4 10:10:41 UTC 2016 - tbecht...@suse.com
+
+- update to 1.9.0:
+  * Add sample file generation script and helper methods
+  * Add equality operator to policy.RuleDefault
+  * Imported Translations from Zanata
+  * Updated from global requirements
+  * Fix typo: 'olso' to 'oslo'
+  * Updated from global requirements
+  * Updated from global requirements
+  * Add reno for release notes management
+  * Add policy registration and authorize method
+  * Updated from global requirements
+  * doc: Fix wrong import statement in usage
+
+---
+Sat Jun  4 06:13:56 UTC 2016 - tbecht...@suse.com
+
+- update to 1.8.0:
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Updated from global requirements
+  * Imported Translations from Zanata
+  * Deprecate load_json() in favor of load()
+  * Support policy file in YAML
+- use renderspec source service
+- update spec from upstream
+
+---

Old:

  oslo.policy-1.5.0.tar.gz

New:

  oslo.policy-1.14.0.tar.gz



Other differences:
--
++ python-oslo.policy.spec ++
--- /var/tmp/diff_new_pack.SUNsSX/_old  2016-09-30 15:29:28.0 +0200
+++ /var/tmp/diff_new_pack.SUNsSX/_new  2016-09-30 15:29:28.0 +0200
@@ -17,30 +17,31 @@
 
 
 %global sname oslo.policy
-
 Name:   python-oslo.policy
-Version:1.5.0
+Version:1.14.0
 Release:0
 Summary:OpenStack Oslo Policy library
 License:Apache-2.0
 Group:  Documentation
 Url:https://launchpad.net/%sname
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
+BuildRequires:  python-PyYAML >= 3.1.0
 BuildRequires:  python-devel
-BuildRequires:  python-oslo.config >= 3.4.0
+BuildRequires:  python-oslo.config >= 3.14.0
 BuildRequires:  python-oslo.i18n >= 2.1.0
 BuildRequires:  python-oslo.serialization >= 1.10.0
-BuildRequires:  python-oslo.utils >= 3.5.0
+BuildRequires:  python-oslo.utils >= 3.16.0
 BuildRequires:  python-oslotest >= 1.10.0
-BuildRequires:  python-pbr
-BuildRequires:  python-requests >= 2.8.1
-BuildRequires:  python-requests-mock >= 0.7.0
-Requires:   python-oslo.config >= 3.4.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-requests >= 2.10.0
+BuildRequires:  python-requests-mock >= 1.0
+Requires:   python-PyYAML >= 3.1.0
+Requires:   python-oslo.config >= 3.14.0
 Requires:   python-oslo.i18n >= 2.1.0
 Requires:   python-oslo.serialization >= 1.10.0
-Requires:   python-oslo.utils >= 3.5.0
-Requires:   python-requests >= 2.8.1
+Requires:   python-oslo.utils >= 3.16.0
+Requires:   python-requests >= 2.10.0
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
 
@@ -51,7 +52,7 @@
 %package doc
 Summary:Documentation for the Oslo Policy library
 Group:  Documentation

commit python-oslo.log for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.log for openSUSE:Factory 
checked in at 2016-09-30 15:29:23

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


Package is "python-oslo.log"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.log/python-oslo.log.changes  
2016-05-04 08:19:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslo.log.new/python-oslo.log.changes 
2016-09-30 15:29:25.0 +0200
@@ -1,0 +2,55 @@
+Tue Aug 30 16:18:31 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.16.0
+  * Remove discover from test-requirements
+  * Fixes unit tests on Windows
+  * Fix parameters of assertEqual are misplaced
+  * Updated from global requirements
+  * Add Python 3.5 classifier and venv
+
+---
+Wed Aug 10 14:40:34 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.12.0
+  * log: don't create foo.log
+  * Improve olso.log test coverage for edge cases
+  * log: Introduce _iter_loggers
+  * Replace "LOG.exception(_" with "LOG.exception(_LE"
+  * Make available to log encoded strings as arguments
+  * Revert "Remove 'verbose' option"
+  * Imported Translations from Zanata
+  * Convert unicode data to utf-8 before calling syslog.syslog()
+  * Provide a normal method for deprecation warnings.
+  * Fix regression causing the default log level to become WARNING
+  * Use new logging specific method for context info
+  * Fix typo: 'Olso' to 'Oslo'
+  * Reload log_config_append config on SIGHUP
+  * Updated from global requirements
+  * Remove 'verbose' option
+  * Reduce READ_FREQ and TIMEOUT for watch-file
+
+---
+Tue May 31 05:44:29 UTC 2016 - tbecht...@suse.com
+
+- update to 3.7.0:
+  * Fix example issue
+  * Updated from global requirements
+  * Allow reload of 'debug' option
+  * Imported Translations from Zanata
+  * Remove direct dependency on babel
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Remove outdated comment in ContextFormatter
+  * Enable log_method_call to work on static method
+  * Explicitly exclude tests from bandit scan
+  * Improve test code coverage of _options
+  * Update reno for stable/mitaka
+  * Unit test cleanup and validation improvements
+  * Added +2 release names for versionutils
+  * Fix broken links in docs usage page
+  * Enable bandit in gate
+  * Updated from global requirements
+- Use renderspec service to update .spec file
+
+---

Old:

  oslo.log-3.2.0.tar.gz

New:

  oslo.log-3.16.0.tar.gz



Other differences:
--
++ python-oslo.log.spec ++
--- /var/tmp/diff_new_pack.xc8ecv/_old  2016-09-30 15:29:26.0 +0200
+++ /var/tmp/diff_new_pack.xc8ecv/_new  2016-09-30 15:29:26.0 +0200
@@ -16,76 +16,81 @@
 #
 
 
-%define version_unconverted 3.2.0
-
+%global sname oslo.log
 Name:   python-oslo.log
-Version:3.2.0
+Version:3.16.0
 Release:0
-Summary:OpenStack logging API
+Summary:OpenStack log library
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:https://launchpad.net/oslo/
-Source: 
https://pypi.python.org/packages/source/o/oslo.log/oslo.log-%{version}.tar.gz
-BuildRequires:  openstack-suse-macros
+Url:https://launchpad.net/%{sname}
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
 BuildRequires:  python-devel
-BuildRequires:  python-pbr
-# Test requirements
-BuildRequires:  python-coverage
-BuildRequires:  python-debtcollector
-BuildRequires:  python-fixtures
-BuildRequires:  python-mock
-BuildRequires:  python-oslo.config
-BuildRequires:  python-oslo.context
-BuildRequires:  python-oslo.i18n
-BuildRequires:  python-oslo.serialization
-BuildRequires:  python-oslo.utils
-BuildRequires:  python-oslosphinx
-BuildRequires:  python-oslotest
-BuildRequires:  python-pyinotify
-BuildRequires:  python-python-dateutil
-BuildRequires:  python-python-subunit
-BuildRequires:  python-sphinx
-BuildRequires:  python-testrepository
-BuildRequires:  python-testscenarios
-BuildRequires:  python-testtools
-
-Requires:   python-Babel >= 1.3
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-oslo.config >= 3.14.0
+BuildRequires:  python-oslo.context >= 2.6.0
+BuildRequires:  python-oslo.i18n >= 2.1.0
+BuildRequires:  python-oslo.serialization >= 1.10.0
+BuildRequires:  python-oslo.utils >= 3.16.0
+BuildRequires:  python-oslotest >= 1.10.0

commit python-oslo.config for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.config for 
openSUSE:Factory checked in at 2016-09-30 15:29:14

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


Package is "python-oslo.config"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.config/python-oslo.config.changes
2016-05-04 08:19:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.config.new/python-oslo.config.changes   
2016-09-30 15:29:15.0 +0200
@@ -1,0 +2,62 @@
+Tue Aug 30 16:22:59 UTC 2016 - tbecht...@suse.com
+
+- update to version 3.17.0
+  * Add set_override method test with ListOpt
+  * Fix: default value of prog should remove extension
+  * Updated from global requirements
+  * Add Port type to allow configuration of a list of tcp/ip ports
+  * Advanced Option
+
+---
+Mon Aug  8 09:26:42 UTC 2016 - dmuel...@suse.com
+
+- update to 3.14.0:
+  * disable lazy translation in sphinx extension
+  * Trivial: adjust import order to fit the import order guideline
+  * Make error message more clear
+  * Add min and max values to Float type and Opt
+  * Fix parameters of assertEqual are misplaced
+  * Updated from global requirements
+  * Add max_length to URIOpt
+  * Remove discover from test-requirements
+  * update docs for sphinxconfiggen
+  * Add URIOpt to doced option types
+
+---
+Fri Jul 29 15:42:13 UTC 2016 - dmuel...@suse.com
+
+- update to 3.13.0:
+  * Add Python 3.5 classifier and venv
+  * Enabling your project for mutable-config
+  * Add namespace to _list_opts() in test
+  * decode subprocess output so doc build works on python3
+  * Updated from global requirements
+
+---
+Mon Jul  4 15:41:56 UTC 2016 - tbecht...@suse.com
+
+- update to 3.12.0:
+  * Add URIOpt
+  * Add support for a deprecated version
+  * Updated from global requirements
+  * Support template substitution of DictOpt
+  * fixture: Provide parameter enforce_type for method config
+  * Fix typo: 'olso' to 'oslo'
+  * Return [] for .config_dirs when config files are not parsed
+  * generator: format string default value for List type properly
+  * Updated from global requirements
+  * Required Option
+  * Updated from global requirements
+  * Make sure ConfigType is an abstract class
+  * Added i18n formatting to log messages
+  * Remove duplicated code in method test_equal of HostnameTypeTests
+  * Incorrect group name when deprecated_group is not specified
+  * Handle some native python types in config generation
+
+---
+Thu Jun  2 08:59:14 UTC 2016 - tbecht...@suse.com
+
+- use renderspec source service
+- update spec from upstream
+
+---

Old:

  oslo.config-3.9.0.tar.gz

New:

  oslo.config-3.17.0.tar.gz



Other differences:
--
++ python-oslo.config.spec ++
--- /var/tmp/diff_new_pack.i2BjKA/_old  2016-09-30 15:29:16.0 +0200
+++ /var/tmp/diff_new_pack.i2BjKA/_new  2016-09-30 15:29:16.0 +0200
@@ -17,33 +17,36 @@
 
 
 %global sname oslo.config
-
 Name:   python-oslo.config
-Version:3.9.0
+Version:3.17.0
 Release:0
 Summary:OpenStack common configuration library
 License:Apache-2.0
 Group:  Development/Languages
 Url:https://launchpad.net/%{sname}
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-debtcollector >= 1.2.0
 BuildRequires:  python-devel
-BuildRequires:  python-discover
-BuildRequires:  python-fixtures >= 1.3.1
-BuildRequires:  python-mock >= 1.2
+BuildRequires:  python-fixtures >= 3.0.0
+BuildRequires:  python-mock >= 2.0
+BuildRequires:  python-netaddr >= 0.7.12
 BuildRequires:  python-oslo.i18n >= 2.1.0
 BuildRequires:  python-oslotest >= 1.10.0
 BuildRequires:  python-pbr >= 1.6
 BuildRequires:  python-python-subunit >= 0.0.18
-BuildRequires:  python-setuptools
+BuildRequires:  python-rfc3986 >= 0.2.0
+BuildRequires:  python-six >= 1.9.0
+BuildRequires:  python-stevedore >= 1.16.0
 BuildRequires:  python-testrepository >= 0.0.18
 BuildRequires:  python-testscenarios >= 0.4
 BuildRequires:  python-testtools >= 1.4.0
 Requires:   python-debtcollector >= 1.2.0
 Requires:   python-netaddr >= 0.7.12
+Requires:   python-oslo.i18n >= 2.1.0
+Requires:   python-rfc3986 

commit python-os-client-config for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-os-client-config for 
openSUSE:Factory checked in at 2016-09-30 15:29:12

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


Package is "python-os-client-config"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-os-client-config/python-os-client-config.changes
  2016-05-04 08:19:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-os-client-config.new/python-os-client-config.changes
 2016-09-30 15:29:13.0 +0200
@@ -1,0 +2,71 @@
+Fri Sep  2 12:35:01 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.21.1
+  * Go ahead and handle YAML list in region_name
+
+---
+Wed Aug 31 13:09:16 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.21.0
+  * Add prompting for KSA options
+  * Clean up vendor support list
+
+---
+Tue Aug 30 15:47:15 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.20.1
+  * Precedence final solution
+  * Refactor fix magic in get_one_cloud()
+  * Fix precedence for pass-in options
+  * Add the new DreamCompute cloud
+  * Add release notes for 1.19.0 release
+  * Add test for precedence rules
+  * Pass the argparse data into to validate_auth
+  * Add support for deprecating cloud profiles
+  * Update Internap information
+  * Revert "Fix precedence for pass-in options"
+  * Add support for listing a cloud as shut down
+  * Add support for configuring split-stack networks
+  * Update citycloud to list new regions
+  * Pop domain-id from the config if we infer values
+
+---
+Mon Jul  4 15:33:30 UTC 2016 - tbecht...@suse.com
+
+- update to 1.18.0:
+  * Reword the entries in the README a bit
+  * Add shade constructor helper method
+  * Rename session_client to make_rest_client
+  * Add helper method for OpenStack SDK constructor
+  * Add missing "cloud" argument to _validate_auth_ksc
+  * Workaround bad required params in troveclient
+  * Trivial: Remove 'MANIFEST.in'
+  * Trivial: remove openstack/common from flake8 exclude list
+  * drop python3.3 support in classifier
+  * Fix formatting in readme file
+  * Remove discover from test-requirements.txt
+  * Add version string
+  * Pull the network settings from the actual dict
+  * Clarify one-per-cloud network values
+  * Flesh out netowrk config list
+  * Change network info indication to a generic list
+  * Update reno for stable/mitaka
+  * Add osic vendor profile
+  * Update the README a bit
+  * Allow session_client to take the same args as make_client
+  * Fix formulation
+  * Add release notes
+  * Send swiftclient username/password and token
+  * Remove HP and RunAbove from vendor profiles
+  * Added SSL support for VEXXHOST
+  * Add support for zetta.io
+  * Stop ignoring v2password plugin
+  * Go ahead and remove final excludes
+  * Don't set project_domain if not project scoped
+  * Clean up removed hacking rule from [flake8] ignore lists
+  * set up release notes build
+- Switch to upstream .spec file
+- Use renderspec source service to render .spec.j2 upstream
+  template
+
+---

Old:

  os-client-config-1.14.0.tar.gz

New:

  os-client-config-1.21.1.tar.gz



Other differences:
--
++ python-os-client-config.spec ++
--- /var/tmp/diff_new_pack.m2oqZZ/_old  2016-09-30 15:29:15.0 +0200
+++ /var/tmp/diff_new_pack.m2oqZZ/_new  2016-09-30 15:29:15.0 +0200
@@ -20,36 +20,35 @@
 %bcond_with test
 %bcond_with docs
 Name:   python-os-client-config
-Version:1.14.0
+Version:1.21.1
 Release:0
 Summary:OpenStack Client Configuration Library
 License:Apache-2.0
 Group:  Development/Libraries
 Url:https://launchpad.net/%{sname}
-Source0:
https://pypi.python.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
-BuildArch:  noarch
+Source0:
https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
 BuildRequires:  openstack-macros
 BuildRequires:  python-devel
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-setuptools >= 16.0
+Requires:   python-PyYAML >= 3.1.0
+Requires:   python-appdirs >= 1.3.0
+Requires:   python-keystoneauth1 >= 2.10.0
+Requires:   python-requestsexceptions >= 1.1.1
+BuildArch:  noarch
 %if %{with test}
-BuildRequires:  python-coverage >= 3.6
-BuildRequires:  python-discover
 BuildRequires:  python-extras
-BuildRequires:  python-fixtures >= 0.3.14
-BuildRequires:  python-glanceclient >= 

commit python-barbicanclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-barbicanclient for 
openSUSE:Factory checked in at 2016-09-30 15:28:34

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


Package is "python-barbicanclient"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-barbicanclient.new/python-barbicanclient.changes
 2016-09-30 15:28:36.0 +0200
@@ -0,0 +1,335 @@
+---
+Fri Sep  2 19:11:31 UTC 2016 - tbecht...@suse.com
+
+update to version 4.1.0
+  * Updated from global requirements
+  * Fix jenkins failing on coverage report
+  * Fixed python-barbicanclient functional tests
+  * Remove unused import
+  * Update mailmap for Douglas Mendizábal
+  * Update the home-page with developer documentation link
+  * Issue deprecation message for the barbican CLI
+  * Censoring secrets payload value from debug log
+  * Fix argument order for assertEqual to (exp, obs)
+  * Fixed barbican client order list
+  * Display error description
+
+---
+Mon Aug  1 18:34:41 UTC 2016 - tbecht...@suse.com
+
+- Update _service and switch to upstream spec file
+
+---
+Thu May 26 12:13:55 UTC 2016 - johannes.grass...@suse.com
+
+- Update to 4.0.1
+  4.0.1
+  * Updated from global requirements
+  * Update .gitreview for stable/mitaka
+  4.0.0
+  * Replace assertEqual(None, *
+  * Updated from global requirements
+  * Use six.moves.urllib.parse to replace urlparse
+  * Updated from global requirements
+  * Remove argparse from requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Replace deprecated keystoneclient...exceptions
+  * Update typos
+  * Removes MANIFEST.in as it is not needed explicitely by PBR
+  * Deprecated tox -downloadcache option removed
+  * Remove py26 support
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Update Readme to include new/updated CLI commands
+  * Allow tox to be able to run independent functional tests
+  * Make CLI Order's type field a required argument
+  * Remove invalid skipping of tests
+  * Fix Secrets Filter
+  * Updated from global requirements
+  * Updated from global requirements
+  * README.rst devstack link not properly displayed
+  * improve readme contents
+  * Updated from global requirements
+  * Add to_dict method to EntityFormatter
+  * Updated from global requirements
+  * Part 3: Adding ACL functional tests
+  * Updated from global requirements
+  * Initialize optional attributes in CA object
+  * Fix keystone version selection
+  * Part 2: Adding ACL support for CLI commands and docs
+  * Fix incorrect error when performing Barbican Secret Update
+  * Part 1: Adding ACL support for Client API
+  * Fix error where barbican order create returns invalid error
+  * Create Openstack CLI plugin for Barbican
+  * Fix OS_PROJECT_ID not getting read by client
+  * Remove Client V1 Behaviors
+  * enable barbican help without authentication
+  * Fix barbican-client README.rst
+  * Add functional test for updating a Secret
+  * Remove test behaviors abstraction for containers smoke tests
+  * Remove test behaviors abstraction for orders smoke tests
+  * Remove test behaviors abstraction for secrets smoke tests
+  * Remove test behaviors abstraction for containers
+  * Remove test behaviors abstraction for orders
+  * Remove test behaviors abstraction for secrets
+  * Create Common functions used for cleaning up items used for testing
+  * Add epilog to parser
+  * Add Unit Tests for Store and Update Payload when Payload is zero
+  * Allow Barbican Client Secret Update Functionality
+
+---
+Wed Sep 16 14:15:25 UTC 2015 - tbecht...@suse.com
+
+- update to 3.3.0:
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Add ability to add and list CAs
+  * Remove unneeded dependency in tox.ini
+  * Adding Documentation for running Functional Tests on the Python-Barbican 
Client
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Updated from global requirements
+  * Added secret type command line option
+  * Updated from global requirements
+  * New mock release(1.1.0) broke unit/function tests
+  * Enable endpoint filter parameters for the CLI
+  * Updated from global requirements
+  * Use keystone discovery instead of endpoint_override
+  * Updated from 

commit python-automaton for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-automaton for 
openSUSE:Factory checked in at 2016-09-30 15:28:28

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


Package is "python-automaton"

Changes:

--- /work/SRC/openSUSE:Factory/python-automaton/python-automaton.changes
2016-05-19 12:14:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-automaton.new/python-automaton.changes   
2016-09-30 15:28:29.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 26 20:48:47 UTC 2016 - tbecht...@suse.com
+
+- update to version 1.4.0:
+  * Remove discover from test-requirements
+  * Add Python 3.5 classifier and venv
+  * Updated from global requirements
+- Update _service and switch to upstream spec template
+
+---

Old:

  automaton-1.2.0.tar.gz

New:

  automaton-1.4.0.tar.gz



Other differences:
--
++ python-automaton.spec ++
--- /var/tmp/diff_new_pack.Cnm1cl/_old  2016-09-30 15:28:30.0 +0200
+++ /var/tmp/diff_new_pack.Cnm1cl/_new  2016-09-30 15:28:30.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package python-automaton
+# spec file for package python
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -16,40 +16,68 @@
 #
 
 
-Name:   python-automaton
-Version:1.2.0
+%global sname automaton
+Name:   python-%{sname}
+Version:1.4.0
 Release:0
 Summary:Friendly state machines for python
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://www.openstack.org/
-Source: 
https://pypi.python.org/packages/source/a/automaton/automaton-%{version}.tar.gz
-BuildRequires:  openstack-suse-macros
+Url:https://launchpad/%{sname}
+Source0:
https://pypi.io/packages/source/a/%{sname}/%{sname}-%{version}.tar.gz
+BuildRequires:  openstack-macros
+BuildRequires:  python-PrettyTable >= 0.7
+BuildRequires:  python-debtcollector >= 1.2.0
 BuildRequires:  python-devel
-BuildRequires:  python-oslotest
-BuildRequires:  python-pbr
-BuildRequires:  python-setuptools
-BuildRequires:  python-six
+BuildRequires:  python-oslosphinx >= 2.5.0
+BuildRequires:  python-oslotest >= 1.10.0
+BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-testrepository >= 0.0.18
+BuildRequires:  python-testscenarios >= 0.4
+BuildRequires:  python-testtools >= 1.4.0
 Requires:   python-PrettyTable >= 0.7
 Requires:   python-debtcollector >= 1.2.0
+Requires:   python-pbr >= 1.6
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
 
 %description
 Friendly state machines for python.
 
+%package doc
+Summary:Documentation for the Automaton Library
+Group:  Development/Languages/Python
+BuildRequires:  python-Sphinx
+BuildRequires:  python-oslosphinx >= 2.5.0
+
+%description doc
+Documentation for the Automaton library.
+
 %prep
-%setup -q -n automaton-%{version}
+%setup -q -n %{sname}-%{version}
 
 %build
-%{__python2} setup.py build
+%py2_build
+
+# generate html docs
+%{__python2} setup.py build_sphinx
+# remove the Sphinx-build leftovers
+rm -rf html/.{doctrees,buildinfo}
 
 %install
-%{__python2} setup.py install --skip-build --root=%{buildroot}
+%py2_install
+
+%check
+PYTHONPATH=. %{__python2} setup.py testr
 
 %files
-%defattr(-,root,root,-)
-%doc ChangeLog AUTHORS README.rst LICENSE
-%{python2_sitelib}/*
+%doc README.rst
+%license LICENSE
+%{python2_sitelib}/%{sname}
+%{python2_sitelib}/*.egg-info
+
+%files doc
+%license LICENSE
+%doc doc/build/html
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.Cnm1cl/_old  2016-09-30 15:28:31.0 +0200
+++ /var/tmp/diff_new_pack.Cnm1cl/_new  2016-09-30 15:28:31.0 +0200
@@ -1,12 +1,12 @@
 
+  
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/openstack/automaton/automaton.spec.j2
+python-automaton.spec
+https://raw.githubusercontent.com/openstack/rpm-packaging/master/global-requirements.txt
+  
   
 enable
   
-  
-automaton
-  
-  
-  
   
 enable
   

++ automaton-1.2.0.tar.gz -> automaton-1.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/automaton-1.2.0/AUTHORS new/automaton-1.4.0/AUTHORS
--- old/automaton-1.2.0/AUTHORS 2016-02-10 00:15:15.0 +0100
+++ new/automaton-1.4.0/AUTHORS 2016-08-02 19:59:11.0 +0200
@@ -1,3 +1,4 @@
+ChangBo Guo(gcb) 
 Davanum Srinivas 
 Janonymous 
 Joshua Harlow 
@@ -5,6 +6,7 @@
 Ondřej Nový 
 Ronald Bradford 

commit python-designateclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-designateclient for 
openSUSE:Factory checked in at 2016-09-30 15:28:41

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


Package is "python-designateclient"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-designateclient/python-designateclient.changes
2015-10-30 13:42:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-designateclient.new/python-designateclient.changes
   2016-09-30 15:28:43.0 +0200
@@ -1,0 +2,88 @@
+Mon Aug  1 18:48:36 UTC 2016 - tbecht...@suse.com
+
+- update to version 2.2.0:
+  * Updated from global requirements
+  * Use osc_lib instead of cliff
+  * Add quota set / list / reset commands
+  * Mark the v1 API Client as deprecated
+  * Add global flags to cli
+  * Use osc-lib instead of openstackclient
+  * Revert "Add Global Flags for filtering results"
+  * Add pool listing to python designate client
+  * Add `openstack zone transfer accept list` cli to designateclient
+  * Allow cli to query "v2/recordsets"
+  * Add Global Flags for filtering results
+  * Use the correct capitalization of OpenStack
+  * Update the home-page with developer documentation
+  * Add reno support for release notes
+  * Switch to keystoneauth
+  * Added CONTRIBUTING.rst file
+  * Docs Update
+  * Don't use the 'keystone' client (functional tests)
+  * Update doc examples to use keystoneauth
+  * Update designate cli page with more examples Closes-Bug: #1578207
+  * Add python-openstackclient to test-requirements
+  * Improve python-designateclient docs
+  * Add support for service status
+  * Fix a race condition in one of the zone import tests
+  * Run the functional tests in a more verbose mode
+  * Show responses on zone and recordset deletes
+  * Implement zone import
+  * Doc changes for installation webpage
+  * Fix an issue causing a blacklist test to fail
+  * Add filtering to recordsets CLI
+  * Show "status" and "action" for recordsets
+  * Move all V2 Controllers to inherit from the v2
+  * Fixes 'openstack tld list' command's exception
+  * Implement zone export
+  * Improved TestRecordsetNegative
+  * Add a service catalog override to the functional tests
+  * Stop using non-existent method of Mock
+  * Log stacktraces of MultipleExceptions in functionaltests
+  * Python3: Add support for urlparse
+  * Allow the OSC CLI Plugin to walk pages
+  * Improvement in zone transfer request command description
+  * Fixed grammar mistake in shell.rst
+  * Update typos
+  * Show output on transfer accept
+  * Change to ShowOne to display output upon update
+  * Put py34 first in the env order of tox
+  * Replace assertEqual(None, *) with assertIsNone in tests
+  * Add a missing whitespace
+  * Deprecated tox -downloadcache option removed
+  * Indicate py34 support
+  * Removes MANIFEST.in as it is not needed explicitely by PBR
+  * Pass environment variables of proxy to tox
+  * Remove py26 support from designateclient
+  * Improve logging in designateclient
+  * Support OS_INTERFACE and set V2 API as default
+  * Pass OS_ENDPOINT_TYPE from shell to client
+  * Adds changes related to py3 compatibility
+  * Clearing out .pyc file before a tox run
+  * Fix support for --os-endpoint
+  * Updates shell doc of v1 client
+  * Fixes doc for v2 cli
+  * Add functional tests for blacklists
+  * Add functional tests for tlds
+  * Adds different filter option for zone listing
+  * Resolve TLD's by name
+  * improve readme contents
+  * Removes --name argument from zone set command
+  * Fixes error over quota update
+  * Fixes order of argument in assertEqual
+  * Fixes typos in zone transfer request show command description
+  * Add functional tests for recordsets
+  * Flesh out zone-related test cases
+  * Fixes exception message for zone creation command
+  * Fixes target-project-id argument in zone transfer command
+  * Removes name argument from openstack recordset set command
+  * Fixes openstack zone blacklist set command
+  * Added test cases for v2 client
+  * Adds test cases for servers in designateclient
+  * Adds test cases for domain in designate v1 client
+  * Makes error msg more helpful
+  * Add period in help message
+  * Layout some functional tests for the V2 CLI
+- update _service and switch to upstream spec file
+
+---

Old:

  python-designateclient-1.5.0.tar.gz

New:

  python-designateclient-2.2.0.tar.gz



Other differences:
--
++ python-designateclient.spec ++
--- /var/tmp/diff_new_pack.ty8D0p/_old  2016-09-30 15:28:46.0 +0200
+++ /var/tmp/diff_new_pack.ty8D0p/_new  2016-09-30 

commit python-ironicclient for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package python-ironicclient for 
openSUSE:Factory checked in at 2016-09-30 15:28:44

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


Package is "python-ironicclient"

Changes:

--- /work/SRC/openSUSE:Factory/python-ironicclient/python-ironicclient.changes  
2016-05-19 12:14:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ironicclient.new/python-ironicclient.changes 
2016-09-30 15:28:47.0 +0200
@@ -1,0 +2,102 @@
+Mon Sep  5 07:31:44 UTC 2016 - tbecht...@suse.com
+
+update to version 1.7.0
+  * Use osc-lib instead of openstackclient
+  * Deprecate -l option for port creation in OSC plugin
+  * Set/unset node's target RAID config via OSC command
+  * Clean up release notes for 1.7
+  * Add openstack baremetal driver commands
+  * Add baremetal port set command to OSC plugin
+  * Fail with more meaningful error while creating client
+  * Update hacking test-requirement
+  * Correct a couple small grammar things in release notes
+  * Verify JSON response of driver commands
+  * Add key_value_pairs_to_dict() method
+  * Trivial: Fix doc string for class DeleteBaremetalNode
+  * Fix i18n problems in shell.py
+  * Remove discover from test-requirements
+  * Add 'openstack baremetal node adopt' command
+  * Add baremetal port list command to OSC plugin
+  * Adds node boot device & passthru OSC commands
+  * Using assertIsNone() is preferred over assertEqual()
+  * Trivial: remove redundant parentheses
+  * Add node validate OSC command
+  * Use constraints for all the things
+  * Add baremetal port unset command to OSC plugin
+  * Fix uuid to UUID in expected error messages
+  * Add --node to 'openstack baremetal port list'
+  * Add --wait flag for provision actions and wait_for_provision_state function
+  * Add create command to ironic client
+  * Remove unused LONG_FIELDS
+  * Update help shown for node-delete
+  * Add internal_info field to port
+  * Change 'P' to 'Queens' and add deprecation date
+  * Remove unused variables assignments in OSC plugin unit tests
+  * Add openstack baremetal chassis commands
+  * Sync tools/tox_install.sh
+  * Trivial: Remove useless spaces
+  * Add docs target to tox.ini
+  * Adds 'openstack baremetal node console' commands
+  * Use osc_lib instead of cliff
+  * Add --chassis to 'openstack baremetal node list'
+  * Make shell main() specify return value in exit code
+  * Updated from global requirements
+  * Add baremetal port delete command to OSC plugin
+
+---
+Thu Sep  1 12:21:31 UTC 2016 - tbecht...@suse.com
+
+update to version 1.6.0
+  * Fix coverage target
+  * Add test for 'port-show --field' command
+  * Negative tests for testing chassis-create command
+  * Add provision state commands
+  * Fix typo in docstring of assertTableHeaders method
+  * Fix pep8 stderr warning regarding __all__ defined as list
+  * Use name randomizer from tempest
+  * Trivial: ignore openstack/common in flake8 exclude list
+  * Fix quotation mark in docstring
+  * Add support for node.resource_class
+  * Fix Quick-start example syntax.
+  * Add test for chassis-node-list
+  * Fix for tox 'testenv:cover' command
+  * Add env var for version cache timeout
+  * Add invalid attribute names to exception
+  * Code style fix according to flake8
+  * Improve output of --json option
+  * Update reno for stable/mitaka
+  * Change position in assert arguments
+  * Trivial: Fix incorrect comments in test_baremetal.py
+  * Add Python 3.5 classifier and venv
+  * Add sanity tests for testing actions with Port
+  * Bring OSC plugin inline with approved spec
+  * Replace deprecated tempest-lib with tempest
+  * Grammatical fixes for cache expiry feature
+  * Remove httplib2
+  * Fix typos in docstrings and comments
+  * Catch RetriableConnectionFailures from KAuth and retry
+  * Add baremetal port show command to OSC plugin
+  * Add test for 'chassis-show --field' command
+  * Implementation of baremetal power state commands
+  * Add test for ironic node-list command
+  * Updates supporting ironic-neutron integration
+  * Tests for CLI help message
+  * Add test for ironic driver-list command
+  * Fix py35 unit tests
+  * Simplify use of config_drive arg in osc
+  * Fix error returned by ironic --json node-validate
+  * Negative tests for testing actions with Chassis
+  * Move methods to utils.py
+  * Set endpoint_override while doing session.request
+  * Update the home-page with developer documentation
+  * Add maintenance mode commands
+  * Client addition for Active Node Creation verb adopt
+  * Trivial: Fix wrong comment in power state test
+  * Implementation of baremetal port create
+  * Add CLI tests to check JSON response body
+ 

commit kdevelop4 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-09-30 15:27:58

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


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2016-06-26 
23:52:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-09-30 
15:28:12.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 10:37:13 UTC 2016 - cgiboude...@gmx.com
+
+- BuildRequire libkdevplatform4-devel instead of the Qt5 based one.
+
+---



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.rlWTMo/_old  2016-09-30 15:28:14.0 +0200
+++ /var/tmp/diff_new_pack.rlWTMo/_new  2016-09-30 15:28:14.0 +0200
@@ -34,7 +34,7 @@
 %else
 BuildRequires:  libkde4-devel
 %endif
-BuildRequires:  libkdevplatform-devel >= 1.7.3
+BuildRequires:  libkdevplatform4-devel >= 1.7.3
 BuildRequires:  libqjson-devel
 # Catch 13.2, but not Leap nor SLE12
 %if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315




commit devilspie2 for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package devilspie2 for openSUSE:Factory 
checked in at 2016-09-30 15:28:20

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


Package is "devilspie2"

Changes:

--- /work/SRC/openSUSE:Factory/devilspie2/devilspie2.changes2016-05-23 
16:39:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.devilspie2.new/devilspie2.changes   
2016-09-30 15:28:22.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep  7 00:49:47 UTC 2016 - yfji...@suse.com
+
+- Change license to GPL-3.0+
+
+---



Other differences:
--
++ devilspie2.spec ++
--- /var/tmp/diff_new_pack.HRoT8x/_old  2016-09-30 15:28:24.0 +0200
+++ /var/tmp/diff_new_pack.HRoT8x/_new  2016-09-30 15:28:24.0 +0200
@@ -20,7 +20,7 @@
 Version:0.41
 Release:0
 Summary:A window matching utility
-License:GPL-3.0
+License:GPL-3.0+
 Group:  System/X11/Utilities
 Url:http://www.gusnan.se/devilspie2
 Source0:
http://download.savannah.gnu.org/releases/devilspie2/%{name}_%{version}-src.tar.gz






commit kdevelop4-plugin-python for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4-plugin-python for 
openSUSE:Factory checked in at 2016-09-30 15:28:05

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


Package is "kdevelop4-plugin-python"

Changes:

--- 
/work/SRC/openSUSE:Factory/kdevelop4-plugin-python/kdevelop4-plugin-python.changes
  2016-04-11 09:14:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop4-plugin-python.new/kdevelop4-plugin-python.changes
 2016-09-30 15:28:18.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 10:38:21 UTC 2016 - cgiboude...@gmx.com
+
+- BuildRequire libkdevplatform4-devel instead of the Qt5 based one.
+
+---



Other differences:
--
++ kdevelop4-plugin-python.spec ++
--- /var/tmp/diff_new_pack.q6xu8l/_old  2016-09-30 15:28:20.0 +0200
+++ /var/tmp/diff_new_pack.q6xu8l/_new  2016-09-30 15:28:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4-plugin-python
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,9 +18,9 @@
 
 Name:   kdevelop4-plugin-python
 Version:1.7.3
+Release:0
 %define kdevver 4.7.3
 %define platver 1.7.3
-Release:0
 Summary:Python support for KDevelop
 License:GPL-2.0+
 Group:  Development/Tools/IDE
@@ -30,7 +30,7 @@
 BuildRequires:  kdevelop4-devel >= %{kdevver}
 BuildRequires:  kdevelop4-pg-qt
 BuildRequires:  libkde4-devel
-BuildRequires:  libkdevplatform-devel >= %{platver}
+BuildRequires:  libkdevplatform4-devel >= %{platver}
 BuildRequires:  python-kde4-devel
 Requires:   kdevelop4
 Requires:   python-kde4
@@ -55,6 +55,7 @@
 
 %package lang
 Summary:Languages for package %{name}
+Group:  Development/Tools/IDE
 Requires:   %{name} = %{version}
 Conflicts:  kdevelop4-plugin-python3-lang
 




commit kdevelop4-plugins for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4-plugins for 
openSUSE:Factory checked in at 2016-09-30 15:28:02

Comparing /work/SRC/openSUSE:Factory/kdevelop4-plugins (Old)
 and  /work/SRC/openSUSE:Factory/.kdevelop4-plugins.new (New)


Package is "kdevelop4-plugins"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4-plugins/kdevelop4-plugins.changes  
2016-02-22 08:57:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4-plugins.new/kdevelop4-plugins.changes 
2016-09-30 15:28:14.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 10:42:34 UTC 2016 - cgiboude...@gmx.com
+
+- BuildRequire libkdevplatform4-devel instead of the Qt5 based one.
+
+---



Other differences:
--
++ kdevelop4-plugins.spec ++
--- /var/tmp/diff_new_pack.J1W4Xe/_old  2016-09-30 15:28:17.0 +0200
+++ /var/tmp/diff_new_pack.J1W4Xe/_new  2016-09-30 15:28:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdevelop4-plugins
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -37,7 +37,7 @@
 BuildRequires:  kdevelop4-devel
 BuildRequires:  kdevelop4-pg-qt
 BuildRequires:  libkde4-devel
-BuildRequires:  libkdevplatform-devel >= 1.7.3
+BuildRequires:  libkdevplatform4-devel >= 1.7.3
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 
@@ -65,7 +65,7 @@
 
 %install
   cd build
-%make_install
+  %make_install
   %kde_post_install
   cd ..
   %find_lang kdevphp kdevphp.lang
@@ -75,9 +75,6 @@
 
 %postun -p /sbin/ldconfig
 
-%clean
-  rm -rf %{buildroot}
-
 %package php
 Summary:PHP Plugin for Kdevelop4 Integrated Development Environment
 Group:  Development/Tools/IDE




  1   2   >