commit python-happybase for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2020-04-01 19:08:57

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


Package is "python-happybase"

Wed Apr  1 19:08:57 2020 rev:15 rq:790163 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2019-09-27 14:45:57.253153911 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-happybase.new.3248/python-happybase.changes  
2020-04-01 19:11:23.383343537 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 12:03:26 UTC 2020 - Paolo Stivanin 
+
+- Switch from nose to pytest
+- Add use_pytest.patch
+
+---

New:

  use_pytest.patch



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.lVvAXC/_old  2020-04-01 19:11:27.667345464 +0200
+++ /var/tmp/diff_new_pack.lVvAXC/_new  2020-04-01 19:11:27.671345466 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,9 @@
 Group:  Development/Languages/Python
 URL:https://github.com/wbolster/happybase
 Source: https://github.com/wbolster/happybase/archive/%{version}.tar.gz
-BuildRequires:  %{python_module nose}
+# https://github.com/python-happybase/happybase/pull/238
+Patch0: use_pytest.patch
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module thriftpy2}
 BuildRequires:  fdupes
@@ -51,6 +53,7 @@
 
 %prep
 %setup -q -n happybase-%{version}
+%patch0 -p1
 
 %build
 %python_build
@@ -63,7 +66,7 @@
 
 %check
 # the api tests need running thrift server
-%python_expand nosetests-%{$python_bin_suffix} -v tests/test_util.py
+%pytest tests/test_util.py
 
 %files %{python_files}
 %license LICENSE.rst

++ use_pytest.patch ++
Only in happybase: .idea
diff -ru happybase-orig/Makefile happybase/Makefile
--- happybase-orig/Makefile 2020-03-31 14:01:25.374555626 +0200
+++ happybase/Makefile  2020-03-31 14:00:45.834479691 +0200
@@ -10,7 +10,7 @@
 
 test:
-find coverage/ -mindepth 1 -delete
-   python $$(which nosetests) $${TESTS}
+   pytest $${TESTS}
 
 clean:
find . -name '*.py[co]' -delete
diff -ru happybase-orig/setup.cfg happybase/setup.cfg
--- happybase-orig/setup.cfg2020-03-31 14:01:25.374555626 +0200
+++ happybase/setup.cfg 2020-03-31 14:00:15.882422171 +0200
@@ -1,16 +1,6 @@
-[nosetests]
-stop = 1
-verbosity = 2
-with-coverage = 1
-cover-erase = 1
-cover-package=happybase.connection,happybase.table,happybase.batch,happybase.pool,happybase.util,tests
-cover-tests = 1
-cover-html = 1
-cover-html-dir = coverage/
-
 [build_sphinx]
 source-dir = doc/
 build-dir = doc/build/
 
 [wheel]
-universal = 1
\ No newline at end of file
+universal = 1
diff -ru happybase-orig/tests/test_api.py happybase/tests/test_api.py
--- happybase-orig/tests/test_api.py2020-03-31 14:01:25.374555626 +0200
+++ happybase/tests/test_api.py 2020-03-31 14:05:45.535055247 +0200
@@ -10,19 +10,6 @@
 import six
 from six.moves import range
 
-from nose.tools import (
-assert_dict_equal,
-assert_equal,
-assert_false,
-assert_in,
-assert_is_instance,
-assert_is_not_none,
-assert_list_equal,
-assert_not_in,
-assert_raises,
-assert_true,
-)
-
 from happybase import Connection, ConnectionPool, NoConnectionsAvailable
 
 HAPPYBASE_HOST = os.environ.get('HAPPYBASE_HOST')
@@ -60,7 +47,7 @@
 global connection, table
 connection = Connection(**connection_kwargs)
 
-assert_is_not_none(connection)
+assert connection is not None
 
 maybe_delete_table()
 cfs = {
@@ -71,7 +58,7 @@
 connection.create_table(TEST_TABLE_NAME, families=cfs)
 
 table = connection.table(TEST_TABLE_NAME)
-assert_is_not_none(table)
+assert table is not None
 
 
 def teardown_module():
@@ -92,11 +79,11 @@
 
 
 def test_enabling():
-assert_true(connection.is_table_enabled(TEST_TABLE_NAME))
+assert connection.is_table_enabled(TEST_TABLE_NAME)
 connection.disable_table(TEST_TABLE_NAME)
-assert_false(connection.is_table_enabled(TEST_TABLE_NAME))
+assert not connection.is_table_enabled(TEST_TABLE_NAME)
 connection.enable_table(TEST_TABLE_NAME)
-assert_true(connection.is_table_enabled(TEST_TABLE_NAME))
+assert connection.is_table_enabled(TEST_TABLE_NAME)
 
 
 def test_compaction():
@@ 

commit python-dash for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-dash for openSUSE:Factory 
checked in at 2020-04-01 19:08:38

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


Package is "python-dash"

Wed Apr  1 19:08:38 2020 rev:7 rq:790028 version:1.9.1

Changes:

--- /work/SRC/openSUSE:Factory/python-dash/python-dash.changes  2020-03-16 
10:20:10.375632072 +0100
+++ /work/SRC/openSUSE:Factory/.python-dash.new.3248/python-dash.changes
2020-04-01 19:10:11.987311414 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 07:22:22 UTC 2020 - Tomáš Chvátal 
+
+- Fix all the runtime dependencies
+
+---



Other differences:
--
++ python-dash.spec ++
--- /var/tmp/diff_new_pack.iBe8FX/_old  2020-04-01 19:10:15.679313076 +0200
+++ /var/tmp/diff_new_pack.iBe8FX/_new  2020-04-01 19:10:15.679313076 +0200
@@ -23,19 +23,34 @@
 Release:0
 Summary:Python framework for building reactive web-apps
 License:MIT
-Group:  Development/Languages/Python
 URL:https://github.com/plotly/dash
 Source: 
https://files.pythonhosted.org/packages/source/d/dash/dash-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-Flask >= 0.12
+Requires:   python-Flask >= 1.0.2
 Requires:   python-Flask-Compress
+# dash/testing/dash_page.py
+Requires:   python-beautifulsoup4
+Requires:   python-dash-core-components >= 1.8.1
+Requires:   python-dash-html-components >= 1.0.2
+Requires:   python-dash-renderer >= 1.2.4
+Requires:   python-dash-table >= 4.6.1
+Requires:   python-future
+# needed for dash/testing/browser.py
+Requires:   python-percy
 Requires:   python-plotly
 BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module Flask >= 0.12}
+BuildRequires:  %{python_module Flask >= 1.0.2}
 BuildRequires:  %{python_module Flask-Compress}
+BuildRequires:  %{python_module beautifulsoup4}
+BuildRequires:  %{python_module dash-core-components >= 1.8.1}
+BuildRequires:  %{python_module dash-html-components >= 1.0.2}
+BuildRequires:  %{python_module dash-renderer >= 1.2.4}
+BuildRequires:  %{python_module dash-table >= 4.6.1}
+BuildRequires:  %{python_module future}
+BuildRequires:  %{python_module percy}
 BuildRequires:  %{python_module plotly}
 # /SECTION
 %python_subpackages
@@ -51,6 +66,8 @@
 %prep
 %setup -q -n dash-%{version}
 sed -i -e '/^#!\//, 1d' dash/extract-meta.js
+# no hardcoded versions
+sed -i -e 's:==:>=:g' requires-*txt
 
 %build
 %python_build




commit perl-Template-Toolkit for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package perl-Template-Toolkit for 
openSUSE:Factory checked in at 2020-04-01 19:19:37

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


Package is "perl-Template-Toolkit"

Wed Apr  1 19:19:37 2020 rev:38 rq:790547 version:3.008

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Template-Toolkit/perl-Template-Toolkit.changes  
2020-01-29 13:21:39.974270625 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Template-Toolkit.new.3248/perl-Template-Toolkit.changes
2020-04-01 19:19:54.295573407 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 03:09:55 UTC 2020 -  
+
+- updated to 3.008
+   see /usr/share/doc/packages/perl-Template-Toolkit/Changes
+
+---

Old:

  Template-Toolkit-3.007.tar.gz

New:

  Template-Toolkit-3.008.tar.gz



Other differences:
--
++ perl-Template-Toolkit.spec ++
--- /var/tmp/diff_new_pack.JHANNa/_old  2020-04-01 19:19:55.791574079 +0200
+++ /var/tmp/diff_new_pack.JHANNa/_new  2020-04-01 19:19:55.791574079 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Template-Toolkit
-Version:3.007
+Version:3.008
 Release:0
 %define cpan_name Template-Toolkit
 Summary:Template Processing System
@@ -30,6 +30,8 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(AppConfig) >= 1.56
+BuildRequires:  perl(CGI) >= 4.11
+BuildRequires:  perl(Test::LeakTrace)
 Requires:   perl(AppConfig) >= 1.56
 %{perl_requires}
 

++ Template-Toolkit-3.007.tar.gz -> Template-Toolkit-3.008.tar.gz ++
 10711 lines of diff (skipped)




commit lxd for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package lxd for openSUSE:Factory checked in 
at 2020-04-01 19:20:31

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


Package is "lxd"

Wed Apr  1 19:20:31 2020 rev:14 rq:790622 version:4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/lxd/lxd.changes  2020-03-22 14:17:27.886068158 
+0100
+++ /work/SRC/openSUSE:Factory/.lxd.new.3248/lxd.changes2020-04-01 
19:20:35.611591995 +0200
@@ -1,0 +2,19 @@
+Wed Apr  1 14:23:25 UTC 2020 - Aleksa Sarai 
+
+- Update to LXD 4.0.0. The full upstream changelog is available from:
+  https://discuss.linuxcontainers.org/t/lxd-4-0-lts-has-been-released/7231
+  boo#1168338
+
+  Breaking Changes:
+* Removal of --container-only, replaced by --instance-only
+
+  + VM: Support for backup (import/export)
+  + PCI and USB devices in the resource API
+  + Support for multiple ipvlan NIC devices
+  + Support for host addresses on routed NIC
+  + Support for editing cluster roles
+  + Disk usage for custom volumes
+  + Disk usage for snapshots
+  + Support for passwordless PKI mode
+
+---

Old:

  lxd-3.23.tar.gz
  lxd-3.23.tar.gz.asc

New:

  lxd-4.0.0.tar.gz
  lxd-4.0.0.tar.gz.asc



Other differences:
--
++ lxd.spec ++
--- /var/tmp/diff_new_pack.R1uSMy/_old  2020-04-01 19:20:38.111593120 +0200
+++ /var/tmp/diff_new_pack.R1uSMy/_new  2020-04-01 19:20:38.111593120 +0200
@@ -23,7 +23,7 @@
 %define import_path github.com/lxc/lxd
 
 Name:   lxd
-Version:3.23
+Version:4.0.0
 Release:0
 Summary:Container hypervisor based on LXC
 License:Apache-2.0

++ lxd-3.23.tar.gz -> lxd-4.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/lxd/lxd-3.23.tar.gz 
/work/SRC/openSUSE:Factory/.lxd.new.3248/lxd-4.0.0.tar.gz differ: char 16, line 
1




commit python-mocket for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-mocket for openSUSE:Factory 
checked in at 2020-04-01 19:19:48

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


Package is "python-mocket"

Wed Apr  1 19:19:48 2020 rev:2 rq:790553 version:3.8.4

Changes:

--- /work/SRC/openSUSE:Factory/python-mocket/python-mocket.changes  
2019-09-23 12:36:09.389622408 +0200
+++ /work/SRC/openSUSE:Factory/.python-mocket.new.3248/python-mocket.changes
2020-04-01 19:20:03.603577594 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 07:38:18 UTC 2020 - pgaj...@suse.com
+
+- version update to 3.8.4
+  * Adding missing `load_verify_locations` method
+  * Removing `hexdump` dependency
+  * Fix for removing DeprecationWarning (#105)
+  * Py3.8 classifier
+  * Fix for Redis module
+
+---

Old:

  mocket-3.7.3.tar.gz

New:

  mocket-3.8.4.tar.gz



Other differences:
--
++ python-mocket.spec ++
--- /var/tmp/diff_new_pack.3cvGaP/_old  2020-04-01 19:20:04.291577904 +0200
+++ /var/tmp/diff_new_pack.3cvGaP/_new  2020-04-01 19:20:04.295577906 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-mocket
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-mocket
-Version:3.7.3
+Version:3.8.4
 Release:0
 Summary:Python socket mock framework
 License:BSD-3-Clause
@@ -29,7 +29,6 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-decorator
-Requires:   python-hexdump
 Requires:   python-python-magic
 Requires:   python-six
 Requires:   python-urllib3
@@ -44,7 +43,6 @@
 BuildRequires:  %{python_module cryptography}
 BuildRequires:  %{python_module decorator}
 BuildRequires:  %{python_module gevent}
-BuildRequires:  %{python_module hexdump}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pyOpenSSL}
 BuildRequires:  %{python_module pytest}
@@ -78,9 +76,7 @@
 %install
 export LANG=en_US.UTF-8
 %python_install
-%{python_expand rm -r %{buildroot}%{$python_sitelib}/tests
-%fdupes %{buildroot}%{$python_sitelib}
-}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 export LANG=en_US.UTF-8

++ mocket-3.7.3.tar.gz -> mocket-3.8.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-mocket-3.7.3/.travis.yml 
new/python-mocket-3.8.4/.travis.yml
--- old/python-mocket-3.7.3/.travis.yml 2019-09-18 09:15:32.0 +0200
+++ new/python-mocket-3.8.4/.travis.yml 2020-02-24 12:32:41.0 +0100
@@ -8,7 +8,7 @@
   - "3.5"
   - "3.6"
   - "3.7"
-  - "3.8-dev"
+  - "3.8"
   - "pypy"
   - "pypy3.5-6.0"
 install:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-mocket-3.7.3/MANIFEST.in 
new/python-mocket-3.8.4/MANIFEST.in
--- old/python-mocket-3.7.3/MANIFEST.in 2019-09-18 09:15:32.0 +0200
+++ new/python-mocket-3.8.4/MANIFEST.in 2020-02-24 12:32:41.0 +0100
@@ -1 +1,5 @@
-include README.rst LICENSE *.txt
\ No newline at end of file
+include README.rst LICENSE *.txt
+recursive-include tests *.json
+recursive-include tests *.png
+recursive-include tests *.py
+recursive-include tests *.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-mocket-3.7.3/Makefile 
new/python-mocket-3.8.4/Makefile
--- old/python-mocket-3.7.3/Makefile2019-09-18 09:15:32.0 +0200
+++ new/python-mocket-3.8.4/Makefile2020-02-24 12:32:41.0 +0100
@@ -14,7 +14,7 @@
 
 lint-python:
@echo "Linting Python files"
-   flake8 --ignore=E501,E731 --exclude=.git,compat.py mocket
+   flake8 --ignore=E501,E731,W503 --exclude=.git,compat.py mocket
@echo ""
 
 develop: install-test-requirements install-dev-requirements
@@ -31,7 +31,7 @@
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
 
 publish:
-   python setup.py sdist bdist_wheel
+   python setup.py sdist
pip install -U twine
twine upload dist/mocket-$(shell python -c 'import mocket; 
print(mocket.__version__)')*.*
pip install -U anaconda-client
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-mocket-3.7.3/mocket/__init__.py 
new/python-mocket-3.8.4/mocket/__init__.py
--- 

commit python-marshmallow for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-marshmallow for 
openSUSE:Factory checked in at 2020-04-01 19:19:34

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


Package is "python-marshmallow"

Wed Apr  1 19:19:34 2020 rev:13 rq:790511 version:3.5.1

Changes:

--- /work/SRC/openSUSE:Factory/python-marshmallow/python-marshmallow.changes
2019-11-14 23:52:57.464529787 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-marshmallow.new.3248/python-marshmallow.changes
  2020-04-01 19:19:47.151570192 +0200
@@ -1,0 +2,21 @@
+Wed Apr  1 09:10:03 UTC 2020 - pgaj...@suse.com
+
+- version update to 3.5.1
+  - Includes bug fix from 2.21.0.
+  - Fix list of nullable nested fields ``List(Nested(Field, allow_none=True)``
+(:issue:`1497`). Because this fix reverts an optimization introduced to
+speed-up serialization and deserialization of lists of nested fields, a
+negative impact on performance in this specific case is expected.
+  - Improve type coverage (:issue:`1479`). Thanks :user:`Reskov`.
+  - Fix typing for ``data`` param of ``Schema.load`` and ``ValidationError`` 
(:issue:`1492`).
+Thanks :user:`mehdigmira` for reporting and thanks :user:`dfirst` for the 
PR.
+  - Remove unnecessary typecasts (:pr:`1500`). Thanks :user:`hukkinj1`.
+  - Remove useless ``_serialize`` override in ``UUID`` field (:pr:`1489`).
+  - ``fields.Nested`` may take a callable that returns a schema instance.
+Use this to resolve order-of-declaration issues when schemas nest each 
other (:issue:`1146`).
+  - Passing the string ``"self"`` to ``fields.Nested`` is deprecated.
+Use a callable instead.
+  - Fix typing for ``Number._format_num`` (:pr:`1466`). Thanks 
:user:`hukkinj1`.
+  - Make mypy stricter and remove dead code (:pr:`1467`). Thanks again, 
:user:`hukkinj1`.
+
+---

Old:

  marshmallow-3.2.2.tar.gz

New:

  marshmallow-3.5.1.tar.gz



Other differences:
--
++ python-marshmallow.spec ++
--- /var/tmp/diff_new_pack.uiEnZU/_old  2020-04-01 19:19:48.491570795 +0200
+++ /var/tmp/diff_new_pack.uiEnZU/_new  2020-04-01 19:19:48.495570797 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-marshmallow
 #
-# Copyright (c) 2019 SUSE LLC.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-marshmallow
-Version:3.2.2
+Version:3.5.1
 Release:0
 Summary:ORM/ODM/framework-agnostic library to convert datatypes 
from/to Python types
 License:MIT AND BSD-3-Clause

++ marshmallow-3.2.2.tar.gz -> marshmallow-3.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/marshmallow-3.2.2/AUTHORS.rst 
new/marshmallow-3.5.1/AUTHORS.rst
--- old/marshmallow-3.2.2/AUTHORS.rst   2019-11-04 22:14:53.0 +0100
+++ new/marshmallow-3.5.1/AUTHORS.rst   2020-03-05 14:05:11.0 +0100
@@ -140,3 +140,9 @@
 - `@phrfpeixoto `_
 - `@jceresini `_
 - Nikolay Shebanov `@killthekitten `_
+- Taneli Hukkinen `@hukkinj1 `_
+- `@Reskov `_
+- Albert Tugushev `@atugushev `_
+- `@dfirst `_
+- Tim Gates `@timgates42 `_
+- Nathan `@nbanmp `_
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/marshmallow-3.2.2/CHANGELOG.rst 
new/marshmallow-3.5.1/CHANGELOG.rst
--- old/marshmallow-3.2.2/CHANGELOG.rst 2019-11-04 22:14:53.0 +0100
+++ new/marshmallow-3.5.1/CHANGELOG.rst 2020-03-05 14:05:11.0 +0100
@@ -1,17 +1,107 @@
 Changelog
 -
 
+3.5.1 (2020-03-05)
+**
+
+Bug fixes:
+
+- Includes bug fix from 2.21.0.
+
+3.5.0 (2020-02-19)
+**
+
+Bug fixes:
+
+- Fix list of nullable nested fields ``List(Nested(Field, allow_none=True)``
+  (:issue:`1497`). Because this fix reverts an optimization introduced to
+  speed-up serialization and deserialization of lists of nested fields, a
+  negative impact on performance in this specific case is expected.
+
+3.4.0 (2020-02-02)
+**
+
+Features:
+
+- Improve type coverage (:issue:`1479`). Thanks :user:`Reskov`.
+
+Bug fixes:
+
+- Fix typing for ``data`` param of 

commit nfdump for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package nfdump for openSUSE:Factory checked 
in at 2020-04-01 19:20:27

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


Package is "nfdump"

Wed Apr  1 19:20:27 2020 rev:2 rq:790580 version:1.6.20

Changes:

--- /work/SRC/openSUSE:Factory/nfdump/nfdump.changes2020-02-27 
14:40:57.974481427 +0100
+++ /work/SRC/openSUSE:Factory/.nfdump.new.3248/nfdump.changes  2020-04-01 
19:20:31.319590064 +0200
@@ -1,0 +2,8 @@
+Sun Mar 29 10:33:10 UTC 2020 - Martin Hauke 
+
+- Update to version 1.6.20
+ - More cleanup on plain number printing
+ - Fix plain numbers bug #213
+ - Fix profiler filer bug
+
+---

Old:

  nfdump-1.6.19.tar.gz

New:

  nfdump-1.6.20.tar.gz



Other differences:
--
++ nfdump.spec ++
--- /var/tmp/diff_new_pack.uIOjDG/_old  2020-04-01 19:20:31.879590316 +0200
+++ /var/tmp/diff_new_pack.uIOjDG/_new  2020-04-01 19:20:31.887590320 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package 
+# spec file for package nfdump
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,14 +12,15 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 %define nfcapddatadir  %{_localstatedir}/lib/nfcapd
 %define sfcapddatadir  %{_localstatedir}/lib/sfcapd
 %define nfhomedir %{_var}/lib/%{name}
 Name:   nfdump
-Version:1.6.19
+Version:1.6.20
 Release:0
 Summary:CLI tools to collect and process netflow data
 License:BSD-3-Clause

++ nfdump-1.6.19.tar.gz -> nfdump-1.6.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nfdump-1.6.19/ChangeLog new/nfdump-1.6.20/ChangeLog
--- old/nfdump-1.6.19/ChangeLog 2020-02-22 08:39:45.0 +0100
+++ new/nfdump-1.6.20/ChangeLog 2020-03-29 12:00:43.0 +0200
@@ -1,3 +1,11 @@
+2020-03-29
+- Release 1.6.20
+- More cleanup on plain number printing
+
+2020-03-28
+- Fix plain numbers bug #213
+- Fix profiler filer bug
+
 2020-02-22
 - Release 1.6.19
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nfdump-1.6.19/README.md new/nfdump-1.6.20/README.md
--- old/nfdump-1.6.19/README.md 2020-02-22 08:39:45.0 +0100
+++ new/nfdump-1.6.20/README.md 2020-03-29 12:00:43.0 +0200
@@ -1,8 +1,8 @@
 # nfdump
 
-Stable Release v1.6.19
+Stable Release v1.6.20
 
-See the Changelog file for all changes in release 1.6.19
+See the Changelog file for all changes in release 1.6.20
 
 nfdump is a toolset in order to collect and process netflow and sflow data, 
sent from netflow/sflow compatible devices. 
 The toolset supports netflow __v1__, __v5/v7__,__v9__,__IPFIX__ and __SFLOW__. 
 nfdump supports IPv4 as well as IPv6.
@@ -31,7 +31,7 @@
 does not support the full IPFIX definition.
 
 * Supports basically same feature set of elements as netflow_v9 module
-* Only UDP traffic is accepted no tCP/SCTP
+* Only UDP traffic is accepted no TCP/SCTP
 * If you would like to see more IPFIX support, please contact me. 
 
 ---
@@ -215,7 +215,7 @@
 proper IP addresses.
 
 See the manual pages or use the -h switch for details on using each of 
-the programs. For any questions send email to ph...@users.sourceforge.net
+the programs. For any questions send email to pe...@people.ops-trust.net
 
 Configure your router to export netflow. See the relevant documentation
 for your model. 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nfdump-1.6.19/bin/Makefile.am 
new/nfdump-1.6.20/bin/Makefile.am
--- old/nfdump-1.6.19/bin/Makefile.am   2020-02-22 08:39:45.0 +0100
+++ new/nfdump-1.6.20/bin/Makefile.am   2020-03-29 12:00:43.0 +0200
@@ -37,7 +37,8 @@
 output += output_json.c output_json.h output_csv.c output_csv.h output_pipe.c 
output_pipe.h
 output += output_fmt.c output_fmt.h 
 util = util.c util.h
-filelzo = minilzo.c minilzo.h lzoconf.h lzodefs.h lz4.c lz4.h nffile.c 
nffile.h nfx.c nfx.h 
+filelzo = minilzo.c minilzo.h lzoconf.h lzodefs.h lz4.c lz4.h 
+nffile = nffile.c nffile.h nfx.c nfx.h 
 nflist = flist.c flist.h fts_compat.c fts_compat.h
 filter = grammar.y scanner.l nftree.c nftree.h ipconv.c ipconv.h rbtree.h
 exporter = exporter.c exporter.h
@@ 

commit pinta for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package pinta for openSUSE:Factory checked 
in at 2020-04-01 19:20:03

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


Package is "pinta"

Wed Apr  1 19:20:03 2020 rev:22 rq:790604 version:1.6

Changes:

--- /work/SRC/openSUSE:Factory/pinta/pinta.changes  2015-06-12 
20:31:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.pinta.new.3248/pinta.changes2020-04-01 
19:20:07.551579371 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 22:12:31 UTC 2020 - Karl Cheng 
+
+- Fix unresolvable Mono addins dependency 
+
+---



Other differences:
--
++ pinta.spec ++
--- /var/tmp/diff_new_pack.urMtsq/_old  2020-04-01 19:20:09.731580351 +0200
+++ /var/tmp/diff_new_pack.urMtsq/_new  2020-04-01 19:20:09.735580353 +0200
@@ -29,7 +29,7 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  update-desktop-files
-BuildRequires:  mono(Mono.Addins)
+BuildRequires:  mono-addins-devel
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(glib-sharp-2.0)
 BuildRequires:  pkgconfig(gtk-sharp-2.0)




commit python-coloredlogs for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-coloredlogs for 
openSUSE:Factory checked in at 2020-04-01 19:20:06

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


Package is "python-coloredlogs"

Wed Apr  1 19:20:06 2020 rev:7 rq:790586 version:14.0

Changes:

--- /work/SRC/openSUSE:Factory/python-coloredlogs/python-coloredlogs.changes
2020-02-15 22:25:49.735322981 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-coloredlogs.new.3248/python-coloredlogs.changes
  2020-04-01 19:20:12.987581816 +0200
@@ -1,0 +2,20 @@
+Wed Apr  1 11:52:27 UTC 2020 - Marketa Calabkova 
+
+- Update to 14.0
+  * Merged pull request `#80`_ that drops support for Python 3.4 which
+has gone end-of-life and now represents less than 1% of PyPI downloads.
+  * Improved compatibility with the Python standard library by changing
+the order of positional arguments received by the initializer of the
+:class:`~coloredlogs.ColoredFormatter` class (as suggested in `#64`_
+and `#75`_).
+  * Add support for the ``%(username)s`` field (requested in `#76`_) and 
properly
+document supported custom fields.
+  * Consistently use ``console`` highlighting in documentation.
+  * Fix a broken link in the readme.
+  * Merge pull request `#79`_ which adds support for Python 3.8.
+  * Fix support for custom log record factories and add a test to avoid
+regressions (`#47`_, `#59`_).
+  * Change ``make screenshots`` to be Python 3 compatible and document
+additional requirements (`#65`_).
+
+---

Old:

  coloredlogs-11.0.tar.gz

New:

  coloredlogs-14.0.tar.gz



Other differences:
--
++ python-coloredlogs.spec ++
--- /var/tmp/diff_new_pack.Eixyvk/_old  2020-04-01 19:20:14.395582450 +0200
+++ /var/tmp/diff_new_pack.Eixyvk/_new  2020-04-01 19:20:14.403582453 +0200
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-coloredlogs
-Version:11.0
+Version:14.0
 Release:0
 Summary:Colored terminal output for Python's logging module
 License:MIT
@@ -27,7 +27,7 @@
 URL:https://github.com/xolox/python-coloredlogs
 Source: 
https://files.pythonhosted.org/packages/source/c/coloredlogs/coloredlogs-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE test_cli_conversion_test.patch mc...@suse.com
-# With using alternatives, we don't have versionless command in time of %check
+# With using alternatives, we don't have versionless command in time of %%check
 Patch0: test_cli_conversion_test.patch
 BuildRequires:  %{python_module capturer >= 2.4}
 BuildRequires:  %{python_module humanfriendly >= 6.1}

++ coloredlogs-11.0.tar.gz -> coloredlogs-14.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coloredlogs-11.0/CHANGELOG.rst 
new/coloredlogs-14.0/CHANGELOG.rst
--- old/coloredlogs-11.0/CHANGELOG.rst  2020-02-15 00:18:02.0 +0100
+++ new/coloredlogs-14.0/CHANGELOG.rst  2020-02-16 21:50:46.0 +0100
@@ -11,6 +11,90 @@
 .. _Keep a Changelog: http://keepachangelog.com/
 .. _semantic versioning: http://semver.org/
 
+`Release 14.0`_ (2020-02-16)
+
+
+Integrate native Windows 10 support for ANSI escape sequences (`#71`_, `#72`_).
+
+Native support for ANSI escape sequences was added to Windows 10 after its
+initial release, specifically in release 10.0.14393. I've now updated
+:pypi:`coloredlogs` and :pypi:`humanfriendly` to detect and enable this "new"
+native support.
+
+Windows 10 seems to comprise the majority of Windows installations worldwide so
+in the interest of "looking forward" I've decided to drop the :pypi:`colorama`
+requirement, given that it has now become a minority use case.
+
+Hopefully most existing users will not experience any regression because they
+previously installed :pypi:`colorama` already, and when available it will still
+be used. However new installations on older Windows systems now require users
+to install :pypi:`colorama` separately. This has been documented in the readme
+in an attempt to minimize resulting confusion.
+
+PS. In case anyone is wondering: I decided that giving a major Windows support
+update in :pypi:`coloredlogs` the version 13.0 was asking for trouble, so I
+decided not to do that .
+
+.. _Release 14.0: 
https://github.com/xolox/python-coloredlogs/compare/12.0...14.0
+.. _#71: https://github.com/xolox/python-coloredlogs/issues/71
+.. _#72: https://github.com/xolox/python-coloredlogs/pull/72
+
+`Release 12.0`_ (2020-02-16)
+
+
+Two 

commit exim for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package exim for openSUSE:Factory checked in 
at 2020-04-01 19:20:17

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


Package is "exim"

Wed Apr  1 19:20:17 2020 rev:58 rq:790598 version:4.93.0.4

Changes:

--- /work/SRC/openSUSE:Factory/exim/exim.changes2020-01-13 
22:21:21.138513440 +0100
+++ /work/SRC/openSUSE:Factory/.exim.new.3248/exim.changes  2020-04-01 
19:20:24.607587044 +0200
@@ -0,0 +1,2 @@
+Wed Apr  1 12:52:10 UTC 2020 - wullin...@rz.uni-kiel.de
+- don't create logfiles during install



Other differences:
--
++ exim.spec ++
--- /var/tmp/diff_new_pack.khQHat/_old  2020-04-01 19:20:26.199587761 +0200
+++ /var/tmp/diff_new_pack.khQHat/_new  2020-04-01 19:20:26.203587762 +0200
@@ -73,7 +73,7 @@
 Requires(pre):  fileutils textutils
 %endif
 Version:4.93.0.4
-Release:1
+Release:2
 %if %{with_mysql}
 BuildRequires:  mysql-devel
 %endif
@@ -415,10 +415,6 @@
echo copying default config file to /etc/exim/exim.conf
fi
 fi
-# create logfiles if missing
-for i in var/log/exim/main.log var/log/exim/panic.log var/log/exim/reject.log; 
do
-   if ! test -e $i; then touch $i; chown mail:mail $i; chmod 640 $i ; fi
-done
 %if 0%{?suse_version} > 1220
 %{fillup_only}
 %service_add_post exim.service






commit dictd for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package dictd for openSUSE:Factory checked 
in at 2020-04-01 19:19:55

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


Package is "dictd"

Wed Apr  1 19:19:55 2020 rev:4 rq:790579 version:1.13.0

Changes:

--- /work/SRC/openSUSE:Factory/dictd/dictd.changes  2020-02-20 
14:54:27.858180216 +0100
+++ /work/SRC/openSUSE:Factory/.dictd.new.3248/dictd.changes2020-04-01 
19:20:05.019578231 +0200
@@ -1,0 +2,31 @@
+Mon Mar 30 12:37:41 UTC 2020 - Matej Cepl 
+
+- Update to 1.13.0:
+  - dictd:
+* add support for IPv6 (the default is IPv4)
+- Add global configuration option "address_family" and
+  command line options --address-family 
+- Options "listen_to" and --listen-to accepts host name
+  in addition to IP address, "*" means "bind to all interfaces".
+  - dict:
+* add support for IPv6.
+- New command line options -4 and -6.
+- dict + dict:// URL: add support for IPv6 address
+  surrounded by [ and ] symbols
+  - dictfmt:
+* fix overlap of source and destination buffers in memcpy(3).
+  Use memmove(3) instead. This fixes failures on Linux/musl.
+* DICTFMT_SORT environment variable may be used for
+  setting non-default sort(1)
+  - Fix build on recent Solaris/IllumOS (missing -lnsl at link
+time)
+  - Remove support for --use-dictorg and socks5. Clean-ups for build
+system.
+  - Remove support for non-utf8 dictionaries.
+  - tests:
+* new test for dictd as a daemon
+* always use @AWK@
+* test/dictzip_test.in: avoid printing binary \0. This fixes test on
+  some systems
+
+---

Old:

  _service
  _servicedata
  dictd-1.12.1+git.1579902294.78aa097.tar.xz

New:

  dictd-1.13.0.tar.gz



Other differences:
--
++ dictd.spec ++
--- /var/tmp/diff_new_pack.5AvBGk/_old  2020-04-01 19:20:06.563578926 +0200
+++ /var/tmp/diff_new_pack.5AvBGk/_new  2020-04-01 19:20:06.567578928 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   dictd
-Version:1.12.1+git.1579902294.78aa097
+Version:1.13.0
 Release:0
 Summary:DICT protocol (RFC 2229) server and command-line client
 License:GPL-1.0-or-later AND Zlib AND MIT
 Group:  Productivity/Office/Dictionary
 URL:https://github.com/cheusov/dictd
-Source0:%{name}-%{version}.tar.xz
+Source0:
https://github.com/cheusov/dictd/archive/%{version}.tar.gz#/dictd-%{version}.tar.gz
 Source1:colorit.conf
 Source2:dictd.service
 Patch0: dictd-1.12.1-unused-return.patch

++ dictd-1.12.1-unused-return.patch ++
--- /var/tmp/diff_new_pack.5AvBGk/_old  2020-04-01 19:20:06.599578942 +0200
+++ /var/tmp/diff_new_pack.5AvBGk/_new  2020-04-01 19:20:06.599578942 +0200
@@ -1,7 +1,6 @@
-diff -purN dictd-1.12.1/dictd.c dictd-1.12.1_new/dictd.c
 dictd-1.12.1/dictd.c   2011-01-09 17:53:27.0 +0100
-+++ dictd-1.12.1_new/dictd.c   2014-02-25 16:12:49.752301674 +0100
-@@ -329,6 +329,7 @@ static void xsigprocmask (int how, const
+--- a/dictd.c
 b/dictd.c
+@@ -332,6 +332,7 @@ static void xsigprocmask (int how, const
 }
  }
  
@@ -9,7 +8,7 @@
  static void block_signals (void)
  {
 sigset_t set;
-@@ -350,6 +351,7 @@ static void unblock_signals (void)
+@@ -353,6 +354,7 @@ static void unblock_signals (void)
  
 xsigprocmask (SIG_UNBLOCK, , NULL);
  }
@@ -17,7 +16,7 @@
  
  static void handler( int sig )
  {
-@@ -1264,21 +1266,22 @@ static void release_root_privileges( voi
+@@ -1266,21 +1268,22 @@ static void release_root_privileges( voi
   * -- Bob Hilliard
   */
  {
@@ -75,7 +74,7 @@
  
 const char *   default_strategy_arg = "???";
  
-@@ -1696,7 +1701,7 @@ int main (int argc, char **argv, char **
+@@ -1707,7 +1712,7 @@ int main (int argc, char **argv, char **
  
 if (detach){
/* become a daemon */




commit python-coveralls for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-coveralls for 
openSUSE:Factory checked in at 2020-04-01 19:20:40

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


Package is "python-coveralls"

Wed Apr  1 19:20:40 2020 rev:8 rq:790631 version:1.11.1

Changes:

--- /work/SRC/openSUSE:Factory/python-coveralls/python-coveralls.changes
2019-12-05 17:36:57.421404235 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-coveralls.new.3248/python-coveralls.changes  
2020-04-01 19:20:45.495596442 +0200
@@ -1,0 +2,12 @@
+Wed Apr  1 13:54:08 UTC 2020 - Marketa Calabkova 
+
+- 1.11.1
+  * add service_number for github actions
+  * Python 2.7 and 3.4 are now officially End-Of-Life'd. Consider 
+them deprecated from the perspective of this package -- we'll 
+remove them in an upcoming release (likely the first one which 
+requires non-trivial work to continue supporting them!).
+  * support coverage>=5.0
+  * mark Python 3.8 as officially supported.
+
+---

Old:

  1.8.2.tar.gz

New:

  1.11.1.tar.gz



Other differences:
--
++ python-coveralls.spec ++
--- /var/tmp/diff_new_pack.mX563y/_old  2020-04-01 19:20:46.471596881 +0200
+++ /var/tmp/diff_new_pack.mX563y/_new  2020-04-01 19:20:46.475596883 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-coveralls
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-coveralls
-Version:1.8.2
+Version:1.11.1
 Release:0
 Summary:Module for showing coverage stats online via coverallsio
 License:MIT

++ 1.8.2.tar.gz -> 1.11.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.2/.circleci/config.yml 
new/coveralls-python-1.11.1/.circleci/config.yml
--- old/coveralls-python-1.8.2/.circleci/config.yml 2019-07-29 
21:36:54.0 +0200
+++ new/coveralls-python-1.11.1/.circleci/config.yml2020-02-15 
01:13:01.0 +0100
@@ -1,102 +1,153 @@
-version: 2
+version: 2.1
 
-jobs:
-  check:
-docker:
-  - image: python:3.6
-steps:
-  - checkout
-  - run: pip install pre-commit
-  - run: pre-commit run --all-files
+orbs:
+  linter: thekevjames/linter@1
 
-  test-py27:
+jobs:
+  toxpy:
 docker:
-  - image: python:2.7-alpine
+  - image: python:<>-alpine
+parameters:
+  docker_image:
+type: string
+  # TODO: figure out `<>.replace('.','')`
+  tox_environment:
+type: string
+  cov_version:
+default: ""
+type: string
 steps:
   - run: apk add --no-cache gcc git libffi-dev musl-dev openssh-client 
openssl-dev
   - checkout
-  - run: pip install tox
-  - run: tox -e "py27-cov{3,4,41}-{default,pyyaml}"
-
-  test-py34:
-docker:
-  - image: python:3.4-alpine
-steps:
-  - run: apk add --no-cache git openssh-client
-  - checkout
-  - run: pip install tox
-  - run: tox -e "py34-cov{3,4,41}-{default,pyyaml}"
-
-  test-py35:
-docker:
-  - image: python:3.5-alpine
-steps:
-  - run: apk add --no-cache git openssh-client
-  - checkout
-  - run: pip install tox
-  - run: tox -e "py35-cov{3,4,41}-{default,pyyaml}"
-
-  test-py36:
-docker:
-  - image: python:3.6-alpine
-steps:
-  - run: apk add --no-cache git openssh-client
-  - checkout
-  - run: pip install tox
-  - run: tox -e "py36-cov41-{default,pyyaml}"
-
-  test-py37:
-docker:
-  - image: python:3.7-alpine
-steps:
-  - run: apk add --no-cache git openssh-client
-  - checkout
-  - run: pip install tox
-  - run: tox -e "py37-cov41-{default,pyyaml}"
-
-  test-pypy2-5:
-docker:
-  - image: pypy:2-5.8.0
-steps:
-  - checkout
-  - run: pip install tox
-  - run: tox -e "pypy-cov{3,4,41}-{default,pyyaml}"
-
-  test-pypy2-6:
-docker:
-  - image: pypy:2-6.0.0
-steps:
-  - checkout
-  - run: pip install tox
-  - run: tox -e "pypy-cov{3,4,41}-{default,pyyaml}"
-
-  test-pypy3-5:
-docker:
-  - image: pypy:3-5.8.0
-steps:
-  - checkout
-  - run: pip install tox
-  - run: tox -e "pypy3-cov{3,4,41}-{default,pyyaml}"
-
-  test-pypy3-6:
-docker:
-  - image: pypy:3-6.0.0
-steps:
-  - checkout
-  - run: pip install tox
-  

commit python-Kivy for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-Kivy for openSUSE:Factory 
checked in at 2020-04-01 19:20:49

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


Package is "python-Kivy"

Wed Apr  1 19:20:49 2020 rev:6 rq:790633 version:1.11.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Kivy/python-Kivy.changes  2019-10-16 
09:14:16.767623110 +0200
+++ /work/SRC/openSUSE:Factory/.python-Kivy.new.3248/python-Kivy.changes
2020-04-01 19:20:54.387600443 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 14:34:43 UTC 2020 - Paolo Stivanin 
+
+- Remove nose dep as we are not running the tests 
+
+---



Other differences:
--
++ python-Kivy.spec ++
--- /var/tmp/diff_new_pack.Hkz5S2/_old  2020-04-01 19:20:55.675601023 +0200
+++ /var/tmp/diff_new_pack.Hkz5S2/_new  2020-04-01 19:20:55.679601024 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Kivy
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,7 +31,6 @@
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module docutils}
 BuildRequires:  %{python_module mock}
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pyenchant}
 BuildRequires:  %{python_module pygments}
 BuildRequires:  Mesa-devel




commit python-cron-descriptor for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-cron-descriptor for 
openSUSE:Factory checked in at 2020-04-01 19:20:45

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


Package is "python-cron-descriptor"

Wed Apr  1 19:20:45 2020 rev:2 rq:790632 version:1.2.24

Changes:

--- 
/work/SRC/openSUSE:Factory/python-cron-descriptor/python-cron-descriptor.changes
2019-09-27 14:48:56.592687568 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cron-descriptor.new.3248/python-cron-descriptor.changes
  2020-04-01 19:20:49.095598062 +0200
@@ -1,0 +2,6 @@
+Wed Apr  1 14:40:50 UTC 2020 - Marketa Calabkova 
+
+- Update to 1.2.24
+  * Fix CI Build/Deploy on new version
+
+---

Old:

  cron_descriptor-1.2.23.tar.gz

New:

  cron_descriptor-1.2.24.tar.gz



Other differences:
--
++ python-cron-descriptor.spec ++
--- /var/tmp/diff_new_pack.ZrPz1g/_old  2020-04-01 19:20:49.739598352 +0200
+++ /var/tmp/diff_new_pack.ZrPz1g/_new  2020-04-01 19:20:49.743598353 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cron-descriptor
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-cron-descriptor
-Version:1.2.23
+Version:1.2.24
 Release:0
 Summary:Python library that converts cron expressions into human 
readable strings
 License:MIT

++ cron_descriptor-1.2.23.tar.gz -> cron_descriptor-1.2.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cron-descriptor-1.2.23/.gitlab-ci.yml 
new/cron-descriptor-1.2.24/.gitlab-ci.yml
--- old/cron-descriptor-1.2.23/.gitlab-ci.yml   2019-09-09 05:44:50.0 
+0200
+++ new/cron-descriptor-1.2.24/.gitlab-ci.yml   2019-09-17 16:19:32.0 
+0200
@@ -8,7 +8,7 @@
   stage: test
   script:
 - apt-get update -qy
-- apt-get install python3-setuptools -qy
+- apt-get install python3-setuptools ca-certificates -qy
 - python3 setup.py test
   tags:
 - debian
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cron-descriptor-1.2.23/archlinux/PKGBUILD 
new/cron-descriptor-1.2.24/archlinux/PKGBUILD
--- old/cron-descriptor-1.2.23/archlinux/PKGBUILD   2019-09-09 
05:44:50.0 +0200
+++ new/cron-descriptor-1.2.24/archlinux/PKGBUILD   2019-09-17 
16:19:32.0 +0200
@@ -1,5 +1,5 @@
 pkgname=python-cron-descriptor
-pkgver=1.2.23
+pkgver=1.2.24
 pkgdesc="A Python library that converts cron expressions into human readable 
strings."
 pkgrel=1
 arch=('any')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cron-descriptor-1.2.23/cron_descriptor/__init__.py 
new/cron-descriptor-1.2.24/cron_descriptor/__init__.py
--- old/cron-descriptor-1.2.23/cron_descriptor/__init__.py  2019-09-09 
05:44:50.0 +0200
+++ new/cron-descriptor-1.2.24/cron_descriptor/__init__.py  2019-09-17 
16:19:32.0 +0200
@@ -27,6 +27,6 @@
 from .Exception import MissingFieldException, FormatException, 
WrongArgumentException
 
 
-__version__ = '1.2.23'
+__version__ = '1.2.24'
 __all__ = ['Options', 'ExpressionDescriptor', 'get_description', 
'DescriptionTypeEnum',
'CasingTypeEnum', 'MissingFieldException', 'FormatException', 
'WrongArgumentException']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cron-descriptor-1.2.23/setup.py 
new/cron-descriptor-1.2.24/setup.py
--- old/cron-descriptor-1.2.23/setup.py 2019-09-09 05:44:50.0 +0200
+++ new/cron-descriptor-1.2.24/setup.py 2019-09-17 16:19:32.0 +0200
@@ -32,7 +32,7 @@
 
 setuptools.setup(
 name="cron_descriptor",
-version="1.2.23",
+version="1.2.24",
 description="A Python library that converts cron expressions "
 "into human readable strings.",
 author="Adam Schubert",




commit telegram-desktop for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package telegram-desktop for 
openSUSE:Factory checked in at 2020-04-01 19:20:58

Comparing /work/SRC/openSUSE:Factory/telegram-desktop (Old)
 and  /work/SRC/openSUSE:Factory/.telegram-desktop.new.3248 (New)


Package is "telegram-desktop"

Wed Apr  1 19:20:58 2020 rev:32 rq:790636 version:2.0.1

Changes:

--- /work/SRC/openSUSE:Factory/telegram-desktop/telegram-desktop.changes
2020-03-19 19:51:50.796237700 +0100
+++ 
/work/SRC/openSUSE:Factory/.telegram-desktop.new.3248/telegram-desktop.changes  
2020-04-01 19:21:02.103603915 +0200
@@ -1,0 +2,24 @@
+Tue Mar 31 11:43:35 UTC 2020 - Marcel Kuehlhorn 
+
+- Update to 2.0.1
+  * Switch between folders using Ctrl+1, ..., Ctrl+8.
+  * Fix crash when a pinned in folder chat was added to archive.
+  * Fix font issues in Linux version.
+
+---
+Mon Mar 30 15:08:46 UTC 2020 - Marcel Kuehlhorn 
+
+- Update to 2.0.0
+  * Organize chats into Chat Folders if you have too many chats.
+  * Create custom folders with flexible settings, or use default
+recommendations.
+  * Pin an unlimited number of chats in each folder.
+  * Switch between folders in the new side bar to easily access
+all of your chats.
+  * Send :dice: to any chat to try your luck and get a random number
+from the animated dice.
+  * Send :virus:, :face_with_thermometer:, :mask:,
+:face_with_head_bandage:, :sneeze:, :sick:, :soap: or :ambulance:
+to try out the new animated emoji.
+
+---

Old:

  tdesktop-1.9.21-full.tar.gz

New:

  tdesktop-2.0.1-full.tar.gz



Other differences:
--
++ telegram-desktop.spec ++
--- /var/tmp/diff_new_pack.D29umX/_old  2020-04-01 19:21:04.243604878 +0200
+++ /var/tmp/diff_new_pack.D29umX/_new  2020-04-01 19:21:04.247604879 +0200
@@ -21,10 +21,17 @@
 %define _lto_cflags %{nil}
 %endif
 
+# We need at least gcc8 or higher to build
+%if 0%{?suse_version} < 01550 && 0%{?is_opensuse}
+%bcond_without  fixed_gcc
+%else
+%bcond_with fixed_gcc
+%endif
+
 %define __builder ninja
 
 Name:   telegram-desktop
-Version:1.9.21
+Version:2.0.1
 Release:0
 Summary:Messaging application with a focus on speed and security
 License:GPL-3.0-only
@@ -42,7 +49,11 @@
 BuildRequires:  enchant-devel
 BuildRequires:  ffmpeg-devel
 BuildRequires:  freetype-devel
+%if %{with fixed_gcc}
+BuildRequires:  gcc9-c++
+%else
 BuildRequires:  gcc-c++
+%endif
 BuildRequires:  glibc-devel
 BuildRequires:  libQt5Core-private-headers-devel
 BuildRequires:  libQt5Gui-private-headers-devel
@@ -137,6 +148,10 @@
 
 %build
 %limit_build -m 2048
+%if %{with fixed_gcc}
+export CC=/usr/bin/gcc-9
+export CXX=/usr/bin/g++-9
+%endif
 
 %cmake \
   -DCMAKE_INSTALL_PREFIX=/usr \


++ tdesktop-1.9.21-full.tar.gz -> tdesktop-2.0.1-full.tar.gz ++
/work/SRC/openSUSE:Factory/telegram-desktop/tdesktop-1.9.21-full.tar.gz 
/work/SRC/openSUSE:Factory/.telegram-desktop.new.3248/tdesktop-2.0.1-full.tar.gz
 differ: char 5, line 1




commit python-cpplint for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-cpplint for openSUSE:Factory 
checked in at 2020-04-01 19:20:56

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


Package is "python-cpplint"

Wed Apr  1 19:20:56 2020 rev:2 rq:790634 version:1.4.5

Changes:

--- /work/SRC/openSUSE:Factory/python-cpplint/python-cpplint.changes
2019-02-26 22:22:45.938058395 +0100
+++ /work/SRC/openSUSE:Factory/.python-cpplint.new.3248/python-cpplint.changes  
2020-04-01 19:20:57.567601874 +0200
@@ -1,0 +2,8 @@
+Wed Apr  1 14:13:44 UTC 2020 - Marketa Calabkova 
+
+- update to 1.4.5
+  * Add support for c++17 tuple destructuring
+  * Travis CI: Add Python 3.8 to the testing
+  * Fix linting unnecessary elif after break
+
+---

Old:

  cpplint-1.4.4.tar.gz

New:

  cpplint-1.4.5.tar.gz



Other differences:
--
++ python-cpplint.spec ++
--- /var/tmp/diff_new_pack.9qd62u/_old  2020-04-01 19:20:58.271602191 +0200
+++ /var/tmp/diff_new_pack.9qd62u/_new  2020-04-01 19:20:58.275602192 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cpplint
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,14 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-cpplint
-Version:1.4.4
+Version:1.4.5
 Release:0
 Summary:An automated checker to make sure a C++ file follows Google's 
C++ style guide
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/cpplint/cpplint
 Source: 
https://files.pythonhosted.org/packages/source/c/cpplint/cpplint-%{version}.tar.gz
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -41,6 +42,9 @@
 %prep
 %setup -q -n cpplint-%{version}
 sed -i -e '/^#!\//, 1d' cpplint.py
+sed -i 's/pytest-runner//' setup.py
+sed -i 's/pytest-cov//' test-requirements
+sed -i 's/--cov-fail-under=75 --cov=cpplint//' setup.cfg
 
 %build
 %python_build
@@ -50,7 +54,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test
+%pytest
 
 %files %{python_files}
 %license LICENSE

++ cpplint-1.4.4.tar.gz -> cpplint-1.4.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cpplint-1.4.4/MANIFEST.in 
new/cpplint-1.4.5/MANIFEST.in
--- old/cpplint-1.4.4/MANIFEST.in   2019-02-24 08:42:20.0 +0100
+++ new/cpplint-1.4.5/MANIFEST.in   2019-12-14 13:50:36.0 +0100
@@ -1,6 +1,17 @@
 # MANIFEST.in file required to deliver test files with source tar
 include *.py
 include LICENSE
+include test-requirements
+include dev-requirements
 
 # all samples for clitest
 graft samples
+
+global-exclude .tox
+global-exclude *~
+global-exclude __pycache__
+global-exclude .coverage
+global-exclude *.py[co]
+global-exclude *.db
+global-exclude .git*
+global-exclude *.orig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cpplint-1.4.4/PKG-INFO new/cpplint-1.4.5/PKG-INFO
--- old/cpplint-1.4.4/PKG-INFO  2019-02-25 13:32:15.0 +0100
+++ new/cpplint-1.4.5/PKG-INFO  2020-01-13 08:42:33.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: cpplint
-Version: 1.4.4
+Version: 1.4.5
 Summary: Automated checker to ensure C++ files follow Google's style guide
 Home-page: https://github.com/cpplint/cpplint
 Maintainer: cpplint Developers
@@ -35,7 +35,7 @@
 :target: https://pypi.python.org/pypi/cpplint
 
 Cpplint is a command-line tool to check C/C++ files for style issues 
following `Google's C++ style guide 
`_.
-Cpplint is developed and maintained by Google Inc. at 
`google/styleguide `_, also see see the 
`wikipedia entry `_
+Cpplint is developed and maintained by Google Inc. at 
`google/styleguide `_, also see the 
`wikipedia entry `_
 
 While Google maintains cpplint, Google is not (very) responsive to 
issues and pull requests, this fork aims to be (somewhat) more open to add 
fixes to cpplint to enable fixes, when those fixes make cpplint usable in wider 
contexts.
 
@@ -103,4 

commit python-jupyterlab for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-jupyterlab for 
openSUSE:Factory checked in at 2020-04-01 19:21:05

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


Package is "python-jupyterlab"

Wed Apr  1 19:21:05 2020 rev:7 rq:790533 version:2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-jupyterlab/python-jupyterlab.changes  
2020-03-10 11:55:13.871722152 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyterlab.new.3248/python-jupyterlab.changes
2020-04-01 19:21:07.303606254 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 10:46:09 UTC 2020 - Tomáš Chvátal 
+
+- We should work with tornado 4, 5 and 6.
+- The bugs were found in tornado 6.0.1 and 6.0.2 were fixed
+  by upstream developers
+
+---



Other differences:
--
++ python-jupyterlab.spec ++
--- /var/tmp/diff_new_pack.GToMWV/_old  2020-04-01 19:21:07.979606558 +0200
+++ /var/tmp/diff_new_pack.GToMWV/_new  2020-04-01 19:21:07.979606558 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyterlab
 #
-# Copyright (c) 2020 SUSE LLC.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,26 +31,26 @@
 BuildRequires:  %{python_module jupyterlab-server >= 1.0.0}
 BuildRequires:  %{python_module notebook >= 4.3.1}
 BuildRequires:  %{python_module pip}
-BuildRequires:  %{python_module tornado5}
+BuildRequires:  %{python_module tornado}
 BuildRequires:  fdupes
 BuildRequires:  jupyter-jupyterlab-filesystem
 BuildRequires:  nodejs >= 10
 BuildRequires:  npm >= 10
 BuildRequires:  python-rpm-macros
 Requires:   jupyter-jupyterlab = %{version}
+Requires:   python-Jinja2 >= 2.10
+Requires:   python-base >= 3.5
 Requires:   python-jupyter-core
 Requires:   python-jupyterlab-server >= 1.0.0
 Requires:   python-notebook >= 4.3.1
-Requires:   python-base >= 3.5
-Requires:   python-Jinja2 >= 2.10
-Requires:   python-tornado5
+Requires:   python-tornado
 Provides:   python-jupyter_jupyterlab = %{version}
 Obsoletes:  python-jupyter_jupyterlab < %{version}
 BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module Jinja2 >= 2.10}
-BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module pytest-check-links}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module requests}
 # /SECTION
 %python_subpackages
@@ -66,6 +66,7 @@
 
 %package -n jupyter-jupyterlab
 Summary:Environment for interactive and reproducible computing
+Group:  Development/Languages/Python
 Requires:   jupyter-jupyter-core
 Requires:   jupyter-jupyterlab-filesystem
 Requires:   jupyter-jupyterlab-server >= 1.0.0





commit python-macholib for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-macholib for openSUSE:Factory 
checked in at 2020-04-01 19:19:42

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


Package is "python-macholib"

Wed Apr  1 19:19:42 2020 rev:4 rq:790540 version:1.14

Changes:

--- /work/SRC/openSUSE:Factory/python-macholib/python-macholib.changes  
2019-01-24 14:14:10.631309657 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-macholib.new.3248/python-macholib.changes
2020-04-01 19:20:00.947576399 +0200
@@ -1,0 +2,9 @@
+Wed Apr  1 10:32:23 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.14
+  * Repository moved to GitHub
+  * #32: Update the LC_NAMES table
+  * #31: Add two new load commands introduced in macOS 10.15
+  * #27: Missing describe method for build_version_command
+
+---

Old:

  macholib-1.11.tar.gz

New:

  macholib-1.14.tar.gz



Other differences:
--
++ python-macholib.spec ++
--- /var/tmp/diff_new_pack.syxn2h/_old  2020-04-01 19:20:01.695576736 +0200
+++ /var/tmp/diff_new_pack.syxn2h/_new  2020-04-01 19:20:01.695576736 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-macholib
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,22 +18,23 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-macholib
-Version:1.11
+Version:1.14
 Release:0
 Summary:Mach-O header analysis and editing
 License:MIT
 Group:  Development/Languages/Python
-Url:http://bitbucket.org/ronaldoussoren/macholib
+URL:https://github.com/ronaldoussoren/macholib/
 Source: 
https://files.pythonhosted.org/packages/source/m/macholib/macholib-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-altgraph >= 0.15
+Requires:   python-setuptools
+BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module altgraph >= 0.13}
+BuildRequires:  %{python_module altgraph >= 0.15}
+BuildRequires:  %{python_module pytest}
 # /SECTION
-Requires:   python-altgraph >= 0.13
-BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -59,13 +60,13 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if %{with test}
 %check
-%python_exec setup.py test
-%endif
+# tests are too much platform specific (?)
+rm macholib_tests/test_{command_line,dyld}.py
+%pytest
 
 %files %{python_files}
-%doc README.txt
+%doc README.rst doc/*.rst
 %license doc/license.rst
 %python3_only %{_bindir}/macho_find
 %python3_only %{_bindir}/macho_standalone

++ macholib-1.11.tar.gz -> macholib-1.14.tar.gz ++
 14104 lines of diff (skipped)




commit 00Meta for openSUSE:Leap:15.1:Images

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 00Meta for openSUSE:Leap:15.1:Images 
checked in at 2020-04-01 14:30:36

Comparing /work/SRC/openSUSE:Leap:15.1:Images/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.1:Images/.00Meta.new.3248 (New)


Package is "00Meta"

Wed Apr  1 14:30:36 2020 rev:349 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_snapshot ++
--- /var/tmp/diff_new_pack.nOFqGP/_old  2020-04-01 14:30:37.719537788 +0200
+++ /var/tmp/diff_new_pack.nOFqGP/_new  2020-04-01 14:30:37.723537789 +0200
@@ -1 +1 @@
-8.11.19
\ No newline at end of file
+8.11.20
\ No newline at end of file




commit 00Meta for openSUSE:Leap:15.1:Images

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 00Meta for openSUSE:Leap:15.1:Images 
checked in at 2020-04-01 08:30:59

Comparing /work/SRC/openSUSE:Leap:15.1:Images/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.1:Images/.00Meta.new.3248 (New)


Package is "00Meta"

Wed Apr  1 08:30:59 2020 rev:348 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_totest ++
--- /var/tmp/diff_new_pack.bHUWCa/_old  2020-04-01 08:31:01.245469351 +0200
+++ /var/tmp/diff_new_pack.bHUWCa/_new  2020-04-01 08:31:01.245469351 +0200
@@ -1 +1 @@
-8.11.19
\ No newline at end of file
+8.11.20
\ No newline at end of file




commit pam_kwallet for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package pam_kwallet for openSUSE:Factory 
checked in at 2020-04-01 19:15:01

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


Package is "pam_kwallet"

Wed Apr  1 19:15:01 2020 rev:65 rq:790437 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/pam_kwallet/pam_kwallet.changes  2020-03-11 
22:03:08.749936170 +0100
+++ /work/SRC/openSUSE:Factory/.pam_kwallet.new.3248/pam_kwallet.changes
2020-04-01 19:15:32.827455767 +0200
@@ -1,0 +2,16 @@
+Tue Mar 31 15:16:35 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:41 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- Changes since 5.18.3:
+  * Make kwallet-pam work with pam_fscrypt
+
+---

Old:

  kwallet-pam-5.18.3.tar.xz
  kwallet-pam-5.18.3.tar.xz.sig

New:

  kwallet-pam-5.18.4.1.tar.xz
  kwallet-pam-5.18.4.1.tar.xz.sig



Other differences:
--
++ pam_kwallet.spec ++
--- /var/tmp/diff_new_pack.1m7Xn4/_old  2020-04-01 19:15:34.023456305 +0200
+++ /var/tmp/diff_new_pack.1m7Xn4/_new  2020-04-01 19:15:34.027456306 +0200
@@ -19,15 +19,15 @@
 %bcond_without lang
 
 Name:   pam_kwallet
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:A PAM Module for KWallet signing
 License:LGPL-2.1-only AND GPL-2.0-or-later AND GPL-3.0-only
 Group:  System/GUI/KDE
 URL:http://www.kde.org/
-Source: 
https://download.kde.org/stable/plasma/%{version}/kwallet-pam-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/kwallet-pam-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/kwallet-pam-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/kwallet-pam-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 Source3:baselibs.conf

++ kwallet-pam-5.18.3.tar.xz -> kwallet-pam-5.18.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-pam-5.18.3/CMakeLists.txt 
new/kwallet-pam-5.18.4.1/CMakeLists.txt
--- old/kwallet-pam-5.18.3/CMakeLists.txt   2020-03-10 14:05:33.0 
+0100
+++ new/kwallet-pam-5.18.4.1/CMakeLists.txt 2020-03-31 16:16:46.0 
+0200
@@ -1,7 +1,7 @@
 project(pam_kwallet)
 cmake_minimum_required(VERSION 2.8.12)
 set(KF5_MIN_VERSION "5.66.0")
-set(PROJECT_VERSION "5.18.3")
+set(PROJECT_VERSION "5.18.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwallet-pam-5.18.3/pam_kwallet.c 
new/kwallet-pam-5.18.4.1/pam_kwallet.c
--- old/kwallet-pam-5.18.3/pam_kwallet.c2020-03-10 14:05:33.0 
+0100
+++ new/kwallet-pam-5.18.4.1/pam_kwallet.c  2020-03-31 16:16:46.0 
+0200
@@ -310,18 +310,12 @@
 return PAM_IGNORE;
 }
 
-char *key = malloc(KWALLET_PAM_KEYSIZE);
-if (!key || kwallet_hash(pamh, password, userInfo, key) != 0) {
-free(key);
-pam_syslog(pamh, LOG_ERR, "%s: Fail into creating the hash", 
logPrefix);
-return PAM_IGNORE;
-}
-
+char *key = strdup(password);
 result = pam_set_data(pamh, kwalletPamDataKey, key, cleanup_free);
 
 if (result != PAM_SUCCESS) {
 free(key);
-pam_syslog(pamh, LOG_ERR, "%s: Impossible to store the hashed 
password: %s", logPrefix
+pam_syslog(pamh, LOG_ERR, "%s: Impossible to store the password: %s", 
logPrefix
 , pam_strerror(pamh, result));
 return PAM_IGNORE;
 }
@@ -574,15 +568,22 @@
 return PAM_IGNORE;
 }
 
-const char *kwalletKey;
-result = pam_get_data(pamh, kwalletPamDataKey, (const void **));
+char *password;
+result = pam_get_data(pamh, kwalletPamDataKey, (const void **));
 
 if (result != PAM_SUCCESS) {
 pam_syslog(pamh, LOG_INFO, "%s: open_session called without %s", 
logPrefix, kwalletPamDataKey);
 return PAM_SUCCESS;//We will wait for pam_sm_authenticate
 }
 
-start_kwallet(pamh, userInfo, kwalletKey);
+char *key = malloc(KWALLET_PAM_KEYSIZE);
+if (!key || kwallet_hash(pamh, password, userInfo, key) != 0) {
+free(key);
+pam_syslog(pamh, LOG_ERR, "%s: Fail into creating the hash", 
logPrefix);
+return PAM_IGNORE;
+}
+
+

commit xpra for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package xpra for openSUSE:Factory checked in 
at 2020-04-01 19:14:45

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


Package is "xpra"

Wed Apr  1 19:14:45 2020 rev:17 rq:790357 version:3.0.8

Changes:

--- /work/SRC/openSUSE:Factory/xpra/xpra.changes2020-03-16 
10:18:13.447584445 +0100
+++ /work/SRC/openSUSE:Factory/.xpra.new.3248/xpra.changes  2020-04-01 
19:15:19.791449902 +0200
@@ -1,0 +2,41 @@
+Tue Mar 31 21:08:47 UTC 2020 - aloi...@gmx.com
+
+- Update to version 3.0.8
+  * fix handling of dpi command line switch (correctly this
+time?)
+  * fix bug report window not getting focus on MacOS
+  * fix spurious ssh key warnings with newer versions of paramiko
+  * fix AltGr mode with non-X11 clients, layout-group changes
+  * fix rare unexpected client exit on MS Windows
+  * fix MS Windows clipboard:
++ update failures
++ convert CRLF line endings
+  * Clipboard:
++ fix selection not shown as active in menus (MS Windows and
+  MacOS)
++ fix spurious warnings when sharing a session
++ fix clipboard reset with python2 builds
++ selection translation for outbound data
++ support client applications that don't use TARGETS (ie:
+  Motif)
++ reject invalid targets
+  * fix 'xpra upgrade' wrongly updating non-xpra displays
+  * fix logging error in client geometry debugging output
+  * fix spurious de-iconifications
+  * fix handling of server control commands with python3 clients
+  * fix UDP backport bug sending control packets
+  * fix vfb getting killed on upgrade failure
+  * fix proxy server cleanup: force forwarders to terminate
+  * fix session info errors during client exit
+  * fix printer cleanup errors with invalid UTF8 printer names
+  * fix transient-for popup window workaround
+  * fix unicode errors saving xpra runner shell script with
+python3
+  * better detection of Wayland environments
+  * use python3 (if installed) by default on Ubuntu Xenial
+  * don't use Xdummy on arm, too slow
+  * don't show 'Download' button that we can't honour
+  * show all pressed keys according to X11 server in 'xpra info'
+  * try harder not to use video for tiny areas
+
+---

Old:

  xpra-3.0.7.tar.xz

New:

  xpra-3.0.8.tar.xz



Other differences:
--
++ xpra.spec ++
--- /var/tmp/diff_new_pack.z8KERc/_old  2020-04-01 19:15:21.827450818 +0200
+++ /var/tmp/diff_new_pack.z8KERc/_new  2020-04-01 19:15:21.831450820 +0200
@@ -19,7 +19,7 @@
 
 %global __requires_exclude 
^typelib\\(GtkosxApplication\\)|typelib\\(GdkGLExt\\)|typelib\\(GtkGLExt\\).*$
 Name:   xpra
-Version:3.0.7
+Version:3.0.8
 Release:0
 Summary:Remote display server for applications and desktops
 License:GPL-2.0-or-later AND BSD-3-Clause AND LGPL-3.0-or-later AND MIT

++ xpra-3.0.7.tar.xz -> xpra-3.0.8.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xpra-3.0.7/NEWS new/xpra-3.0.8/NEWS
--- old/xpra-3.0.7/NEWS 2020-03-13 17:51:18.0 +0100
+++ new/xpra-3.0.8/NEWS 2020-03-31 13:39:15.0 +0200
@@ -1,3 +1,42 @@
+v3.0.8 (2020-03-31)
+==
+   -- fix handling of dpi command line switch (correctly this time?)
+   -- fix bug report window not getting focus on MacOS
+   -- fix spurious ssh key warnings with newer versions of paramiko
+   -- fix AltGr mode with non-X11 clients, layout-group changes
+   -- fix rare unexpected client exit on MS Windows
+   -- fix MS Windows clipboard:
+   update failures
+   convert CRLF line endings
+   -- Clipboard:
+   fix selection not shown as active in menus (MS Windows and MacOS)
+   fix spurious warnings when sharing a session
+   fix clipboard reset with python2 builds
+   selection translation for outbound data
+   support client applications that don't use TARGETS (ie: Motif)
+   reject invalid targets
+   -- fix 'xpra upgrade' wrongly updating non-xpra displays
+   -- fix logging error in client geometry debugging output
+   -- fix pulseaudio start command with Ubuntu Xenial
+   -- fix spurious de-iconifications
+   -- fix handling of server control commands with python3 clients
+   -- fix UDP backport bug sending control packets
+   -- fix vfb getting killed on upgrade failure
+   -- fix proxy server cleanup: force forwarders to terminate
+   -- fix session info errors during client exit
+   -- fix printer cleanup errors with invalid UTF8 printer names
+   

commit python-azure-mgmt-iothub for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-mgmt-iothub for 
openSUSE:Factory checked in at 2020-04-01 19:14:23

Comparing /work/SRC/openSUSE:Factory/python-azure-mgmt-iothub (Old)
 and  /work/SRC/openSUSE:Factory/.python-azure-mgmt-iothub.new.3248 (New)


Package is "python-azure-mgmt-iothub"

Wed Apr  1 19:14:23 2020 rev:7 rq:790570 version:0.11.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-azure-mgmt-iothub/python-azure-mgmt-iothub.changes
2020-01-28 10:56:26.461088492 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-mgmt-iothub.new.3248/python-azure-mgmt-iothub.changes
  2020-04-01 19:15:04.291442928 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 12:07:20 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.11.0
+  + For detailed information about changes see the
+CHANGELOG.md file provided with this package
+- Rename HISTORY.rst to CHANGELOG.md in %files section
+- Rename README.rst to README.md in %files section
+
+---

Old:

  azure-mgmt-iothub-0.10.0.zip

New:

  azure-mgmt-iothub-0.11.0.zip



Other differences:
--
++ python-azure-mgmt-iothub.spec ++
--- /var/tmp/diff_new_pack.iVBAvN/_old  2020-04-01 19:15:05.279443372 +0200
+++ /var/tmp/diff_new_pack.iVBAvN/_new  2020-04-01 19:15:05.287443376 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-azure-mgmt-iothub
-Version:0.10.0
+Version:0.11.0
 Release:0
 Summary:Microsoft Azure IoTHub Management Client Library
 License:MIT
@@ -72,7 +72,7 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc HISTORY.rst README.rst
+%doc CHANGELOG.md README.md
 %license LICENSE.txt
 %{python_sitelib}/azure/mgmt/iothub
 %{python_sitelib}/azure_mgmt_iothub-*.egg-info




commit python-azure-core for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-core for 
openSUSE:Factory checked in at 2020-04-01 19:13:51

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


Package is "python-azure-core"

Wed Apr  1 19:13:51 2020 rev:3 rq:790561 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/python-azure-core/python-azure-core.changes  
2020-01-28 10:55:30.269049070 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-core.new.3248/python-azure-core.changes
2020-04-01 19:14:47.239435255 +0200
@@ -1,0 +2,9 @@
+Wed Apr  1 12:00:33 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 1.3.0
+  + For detailed information about changes see the
+CHANGELOG.md file provided with this package
+- Rename HISTORY.md to CHANGELOG.md in %files section
+
+---
@@ -7 +16 @@
-HISTORY.txt file provided with this package
+HISTORY.md file provided with this package

Old:

  azure-core-1.2.1.zip

New:

  azure-core-1.3.0.zip



Other differences:
--
++ python-azure-core.spec ++
--- /var/tmp/diff_new_pack.SsoFXg/_old  2020-04-01 19:14:49.731436377 +0200
+++ /var/tmp/diff_new_pack.SsoFXg/_new  2020-04-01 19:14:49.731436377 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-azure-core
-Version:1.2.1
+Version:1.3.0
 Release:0
 Summary:Microsoft Azure Core Library for Python
 License:MIT
@@ -69,7 +69,7 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc HISTORY.md README.md
+%doc CHANGELOG.md README.md
 %license LICENSE.txt
 %{python_sitelib}/azure/core
 %{python_sitelib}/azure_core-*.egg-info




commit plasma5-sdk for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package plasma5-sdk for openSUSE:Factory 
checked in at 2020-04-01 19:15:19

Comparing /work/SRC/openSUSE:Factory/plasma5-sdk (Old)
 and  /work/SRC/openSUSE:Factory/.plasma5-sdk.new.3248 (New)


Package is "plasma5-sdk"

Wed Apr  1 19:15:19 2020 rev:83 rq:790442 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-sdk/plasma5-sdk.changes  2020-03-11 
22:03:10.473937135 +0100
+++ /work/SRC/openSUSE:Factory/.plasma5-sdk.new.3248/plasma5-sdk.changes
2020-04-01 19:15:41.391459620 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:39 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:42 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  plasma-sdk-5.18.3.tar.xz
  plasma-sdk-5.18.3.tar.xz.sig

New:

  plasma-sdk-5.18.4.1.tar.xz
  plasma-sdk-5.18.4.1.tar.xz.sig



Other differences:
--
++ plasma5-sdk.spec ++
--- /var/tmp/diff_new_pack.h8QnPw/_old  2020-04-01 19:15:42.963460327 +0200
+++ /var/tmp/diff_new_pack.h8QnPw/_new  2020-04-01 19:15:42.963460327 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   plasma5-sdk
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plasma SDK
 License:LGPL-2.0-or-later AND GPL-2.0-only
 Group:  System/GUI/KDE
 URL:https://cgit.kde.org/plasma-sdk.git
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-sdk-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-sdk-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-sdk-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-sdk-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  breeze5-icons

++ plasma-sdk-5.18.3.tar.xz -> plasma-sdk-5.18.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-sdk-5.18.3/CMakeLists.txt 
new/plasma-sdk-5.18.4.1/CMakeLists.txt
--- old/plasma-sdk-5.18.3/CMakeLists.txt2020-03-10 14:22:07.0 
+0100
+++ new/plasma-sdk-5.18.4.1/CMakeLists.txt  2020-03-31 16:31:36.0 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(plasma-sdk)
-set(PROJECT_VERSION "5.18.3")
+set(PROJECT_VERSION "5.18.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-sdk-5.18.3/cuttlefish/org.kde.cuttlefish.appdata.xml 
new/plasma-sdk-5.18.4.1/cuttlefish/org.kde.cuttlefish.appdata.xml
--- old/plasma-sdk-5.18.3/cuttlefish/org.kde.cuttlefish.appdata.xml 
2020-03-10 14:20:56.0 +0100
+++ new/plasma-sdk-5.18.4.1/cuttlefish/org.kde.cuttlefish.appdata.xml   
2020-03-31 16:30:42.0 +0200
@@ -131,9 +131,9 @@
   
   KDE
   
+
 
 
 
-
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-sdk-5.18.3/engineexplorer/org.kde.plasmaengineexplorer.appdata.xml 
new/plasma-sdk-5.18.4.1/engineexplorer/org.kde.plasmaengineexplorer.appdata.xml
--- 
old/plasma-sdk-5.18.3/engineexplorer/org.kde.plasmaengineexplorer.appdata.xml   
2020-03-10 14:20:56.0 +0100
+++ 
new/plasma-sdk-5.18.4.1/engineexplorer/org.kde.plasmaengineexplorer.appdata.xml 
2020-03-31 16:30:42.0 +0200
@@ -102,10 +102,10 @@
 plasmaengineexplorer
   
   
+
 
 
 
-
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-sdk-5.18.3/lookandfeelexplorer/package/metadata.desktop 
new/plasma-sdk-5.18.4.1/lookandfeelexplorer/package/metadata.desktop
--- old/plasma-sdk-5.18.3/lookandfeelexplorer/package/metadata.desktop  
2020-03-10 14:20:56.0 +0100
+++ new/plasma-sdk-5.18.4.1/lookandfeelexplorer/package/metadata.desktop
2020-03-31 16:30:42.0 +0200
@@ -1,6 +1,7 @@
 [Desktop Entry]
 Comment=Explore and edit your Plasma Global Themes
 Comment[ca]=Explora i edita els vostres temes globals del Plasma
+Comment[cs]=Prohlížejte a editujte Globální Motivy Plasma
 Comment[da]=Udforsk og redigér dine globale Plasma-temaer
 Comment[de]=Erforschen und bearbeiten Sie Ihre globalen Plasma-Designs
 Comment[en_GB]=Explore and edit your Plasma Global Themes
@@ -19,6 +20,7 @@
 

commit plymouth-theme-breeze for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package plymouth-theme-breeze for 
openSUSE:Factory checked in at 2020-04-01 19:14:55

Comparing /work/SRC/openSUSE:Factory/plymouth-theme-breeze (Old)
 and  /work/SRC/openSUSE:Factory/.plymouth-theme-breeze.new.3248 (New)


Package is "plymouth-theme-breeze"

Wed Apr  1 19:14:55 2020 rev:64 rq:790412 version:5.18.4.1

Changes:

--- 
/work/SRC/openSUSE:Factory/plymouth-theme-breeze/plymouth-theme-breeze.changes  
2020-03-11 22:03:06.757935055 +0100
+++ 
/work/SRC/openSUSE:Factory/.plymouth-theme-breeze.new.3248/plymouth-theme-breeze.changes
2020-04-01 19:15:26.143452759 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:43 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:43 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  breeze-plymouth-5.18.3.tar.xz
  breeze-plymouth-5.18.3.tar.xz.sig

New:

  breeze-plymouth-5.18.4.1.tar.xz
  breeze-plymouth-5.18.4.1.tar.xz.sig



Other differences:
--
++ plymouth-theme-breeze.spec ++
--- /var/tmp/diff_new_pack.8ohUbb/_old  2020-04-01 19:15:28.447453796 +0200
+++ /var/tmp/diff_new_pack.8ohUbb/_new  2020-04-01 19:15:28.451453798 +0200
@@ -36,15 +36,15 @@
 
 %bcond_without lang
 Name:   plymouth-theme-breeze
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plymouth "Breeze" theme
 License:GPL-2.0+
 Group:  System/Base
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/breeze-plymouth-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/breeze-plymouth-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/breeze-plymouth-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/breeze-plymouth-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  cmake >= 2.8.12

++ breeze-plymouth-5.18.3.tar.xz -> breeze-plymouth-5.18.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-plymouth-5.18.3/CMakeLists.txt 
new/breeze-plymouth-5.18.4.1/CMakeLists.txt
--- old/breeze-plymouth-5.18.3/CMakeLists.txt   2020-03-10 13:55:08.0 
+0100
+++ new/breeze-plymouth-5.18.4.1/CMakeLists.txt 2020-03-31 16:03:58.0 
+0200
@@ -1,5 +1,5 @@
 project(breeze-plymouth)
-set(PROJECT_VERSION "5.18.3")
+set(PROJECT_VERSION "5.18.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)





commit python-azure-sdk for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-sdk for 
openSUSE:Factory checked in at 2020-04-01 19:14:31

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


Package is "python-azure-sdk"

Wed Apr  1 19:14:31 2020 rev:9 rq:790571 version:4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-azure-sdk/python-azure-sdk.changes
2020-01-28 10:57:13.089122399 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-sdk.new.3248/python-azure-sdk.changes  
2020-04-01 19:15:10.015445503 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 12:07:51 UTC 2020 - John Paul Adrian Glaubitz 

+
+- Add additional packages from the Azure SDK to Requires
+  + python-azure-eventhub
+  + python-azure-eventhub-checkpointstoreblob
+- Update version numbers for component packages in Requires
+  + python-azure-batch >= 9.0.0
+  + python-azure-datalake-store >= 0.0.48
+
+---



Other differences:
--
++ python-azure-sdk.spec ++
--- /var/tmp/diff_new_pack.SaCDO5/_old  2020-04-01 19:15:11.991446392 +0200
+++ /var/tmp/diff_new_pack.SaCDO5/_new  2020-04-01 19:15:11.995446394 +0200
@@ -29,8 +29,8 @@
 Requires:   python-azure-appconfiguration >= 1.0.0
 Requires:   python-azure-applicationinsights < 1.0.0
 Requires:   python-azure-applicationinsights >= 0.1.0
-Requires:   python-azure-batch < 9.0.0
-Requires:   python-azure-batch >= 8.0.0
+Requires:   python-azure-batch < 10.0.0
+Requires:   python-azure-batch >= 9.0.0
 Requires:   python-azure-cognitiveservices-anomalydetector < 1.0.0
 Requires:   python-azure-cognitiveservices-anomalydetector >= 0.2.0
 Requires:   python-azure-cognitiveservices-formrecognizer < 1.0.0
@@ -74,9 +74,13 @@
 Requires:   python-azure-cosmos < 5.0.0
 Requires:   python-azure-cosmos >= 4.0.0
 Requires:   python-azure-datalake-store < 1.0.0
-Requires:   python-azure-datalake-store >= 0.0.30
+Requires:   python-azure-datalake-store >= 0.0.48
 Requires:   python-azure-eventgrid < 2.0.0
 Requires:   python-azure-eventgrid >= 1.2.0
+Requires:   python-azure-eventhub < 6.0.0
+Requires:   python-azure-eventhub >= 5.0.1
+Requires:   python-azure-eventhub-checkpointstoreblob < 2.0.0
+Requires:   python-azure-eventhub-checkpointstoreblob >= 1.1.0
 Requires:   python-azure-graphrbac < 1.0.0
 Requires:   python-azure-graphrbac >= 0.40.0
 Requires:   python-azure-keyvault < 5.0.0




commit python-azure-eventhub for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-eventhub for 
openSUSE:Factory checked in at 2020-04-01 19:14:00

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


Package is "python-azure-eventhub"

Wed Apr  1 19:14:00 2020 rev:2 rq:790567 version:5.0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-azure-eventhub/python-azure-eventhub.changes  
2020-02-28 15:19:33.313674949 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-eventhub.new.3248/python-azure-eventhub.changes
2020-04-01 19:14:54.459438504 +0200
@@ -1,0 +2,9 @@
+Wed Apr  1 12:06:21 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 5.0.1
+  + For detailed information about changes see the
+CHANGELOG.md file provided with this package
+- Rename HISTORY.md to CHANGELOG.md in %files section
+
+---

Old:

  azure-eventhub-5.0.0.zip

New:

  azure-eventhub-5.0.1.zip



Other differences:
--
++ python-azure-eventhub.spec ++
--- /var/tmp/diff_new_pack.LPnL3h/_old  2020-04-01 19:14:55.615439025 +0200
+++ /var/tmp/diff_new_pack.LPnL3h/_new  2020-04-01 19:14:55.615439025 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-azure-eventhub
-Version:5.0.0
+Version:5.0.1
 Release:0
 Summary:Azure Event Hubs client library for Python
 License:MIT
@@ -76,7 +76,7 @@
 }
 
 %files %{python_files}
-%doc HISTORY.md README.md
+%doc CHANGELOG.md README.md
 %license LICENSE.txt
 %{python_sitelib}/azure/eventhub
 %{python_sitelib}/azure_eventhub-*.egg-info




commit python-azure-batch for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-batch for 
openSUSE:Factory checked in at 2020-04-01 19:13:46

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


Package is "python-azure-batch"

Wed Apr  1 19:13:46 2020 rev:7 rq:790560 version:9.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-azure-batch/python-azure-batch.changes
2019-10-10 14:28:00.320953308 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-azure-batch.new.3248/python-azure-batch.changes
  2020-04-01 19:14:35.003429750 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 11:59:53 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 9.0.0
+  + For detailed information about changes see the
+CHANGELOG.md file provided with this package
+- Rename HISTORY.rst to CHANGELOG.md in %files section
+- Rename README.rst to README.md in %files section
+
+---

Old:

  azure-batch-8.0.0.zip

New:

  azure-batch-9.0.0.zip



Other differences:
--
++ python-azure-batch.spec ++
--- /var/tmp/diff_new_pack.jar4Hu/_old  2020-04-01 19:14:36.515430431 +0200
+++ /var/tmp/diff_new_pack.jar4Hu/_new  2020-04-01 19:14:36.519430432 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-azure-batch
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-azure-batch
-Version:8.0.0
+Version:9.0.0
 Release:0
 Summary:Microsoft Azure Batch Client Library
 License:MIT
 Group:  Development/Languages/Python
-Url:https://github.com/Azure/azure-sdk-for-python
+URL:https://github.com/Azure/azure-sdk-for-python
 Source: 
https://files.pythonhosted.org/packages/source/a/azure-batch/azure-batch-%{version}.zip
 Source1:LICENSE.txt
 BuildRequires:  %{python_module azure-nspkg >= 3.0.0}
@@ -65,7 +65,7 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc HISTORY.rst README.rst
+%doc CHANGELOG.md README.md
 %license LICENSE.txt
 %{python_sitelib}/azure/batch
 %{python_sitelib}/azure_batch-*.egg-info




commit python-azure-agent for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-azure-agent for 
openSUSE:Factory checked in at 2020-04-01 19:13:30

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


Package is "python-azure-agent"

Wed Apr  1 19:13:30 2020 rev:13 rq:790353 version:2.2.45

Changes:

--- /work/SRC/openSUSE:Factory/python-azure-agent/python-azure-agent.changes
2020-02-07 15:57:13.331598959 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-agent.new.3248/python-azure-agent.changes
  2020-04-01 19:14:29.707427368 +0200
@@ -1,0 +2,7 @@
+Tue Mar 24 20:41:35 UTC 2020 - Robert Schweikert 
+
+- Add paa_use_hostnamectl.patch (bsc#1167601, bsc#1167602)
+  + Set the hostname using hostnamectl to ensure setting is
+properly applied
+
+---

New:

  paa_use_hostnamectl.patch



Other differences:
--
++ python-azure-agent.spec ++
--- /var/tmp/diff_new_pack.9JHo85/_old  2020-04-01 19:14:30.807427863 +0200
+++ /var/tmp/diff_new_pack.9JHo85/_new  2020-04-01 19:14:30.807427863 +0200
@@ -27,6 +27,7 @@
 Patch1: agent-no-auto-update.patch
 Patch6: paa_force_py3_sle15.patch
 Patch9: paa_sudo_sle15_nopwd.patch
+Patch10:paa_use_hostnamectl.patch
 BuildRequires:  dos2unix
 
 BuildRequires:  distribution-release
@@ -122,6 +123,7 @@
 %if 0%{?suse_version} && 0%{?suse_version} > 1315
 %patch9
 %endif
+%patch10
 
 %build
 %if 0%{?suse_version} && 0%{?suse_version} > 1315

++ paa_use_hostnamectl.patch ++
--- azurelinuxagent/common/osutil/suse.py.orig
+++ azurelinuxagent/common/osutil/suse.py
@@ -82,6 +82,11 @@ class SUSEOSUtil(SUSE11OSUtil):
 super(SUSEOSUtil, self).__init__()
 self.dhclient_name = 'wickedd-dhcp4'
 
+def set_hostname(self, hostname):
+shellutil.run(
+"hostnamectl set-hostname {0}".format(hostname), chk_err=False
+)
+
 def stop_dhcp_service(self):
 cmd = "systemctl stop {0}".format(self.dhclient_name)
 return shellutil.run(cmd, chk_err=False)



commit python-azure-eventhub-checkpointstoreblob for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 
python-azure-eventhub-checkpointstoreblob for openSUSE:Factory checked in at 
2020-04-01 19:14:14

Comparing /work/SRC/openSUSE:Factory/python-azure-eventhub-checkpointstoreblob 
(Old)
 and  
/work/SRC/openSUSE:Factory/.python-azure-eventhub-checkpointstoreblob.new.3248 
(New)


Package is "python-azure-eventhub-checkpointstoreblob"

Wed Apr  1 19:14:14 2020 rev:2 rq:790569 version:1.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-azure-eventhub-checkpointstoreblob/python-azure-eventhub-checkpointstoreblob.changes
  2020-02-28 15:19:34.70165 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-eventhub-checkpointstoreblob.new.3248/python-azure-eventhub-checkpointstoreblob.changes
2020-04-01 19:14:59.559440799 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 12:06:49 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 1.1.0
+  + For detailed information about changes see the
+CHANGELOG.md file provided with this package
+- Rename HISTORY.md to CHANGELOG.md in %files section
+- Update BuildRequires and Requires from setup.py
+
+---

Old:

  azure-eventhub-checkpointstoreblob-1.0.0.zip

New:

  azure-eventhub-checkpointstoreblob-1.1.0.zip



Other differences:
--
++ python-azure-eventhub-checkpointstoreblob.spec ++
--- /var/tmp/diff_new_pack.xgw1pG/_old  2020-04-01 19:15:00.339441150 +0200
+++ /var/tmp/diff_new_pack.xgw1pG/_new  2020-04-01 19:15:00.343441152 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-azure-eventhub-checkpointstoreblob
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:Azure EventHubs Checkpoint Store client library for Python 
using Storage Blobs
 License:MIT
@@ -26,18 +26,25 @@
 URL:https://github.com/Azure/azure-sdk-for-python
 Source: 
https://files.pythonhosted.org/packages/source/a/azure-eventhub-checkpointstoreblob/azure-eventhub-checkpointstoreblob-%{version}.zip
 Source1:LICENSE.txt
+BuildRequires:  %{python_module azure-core >= 1.2.2}
 BuildRequires:  %{python_module azure-eventhub < 6.0.0}
 BuildRequires:  %{python_module azure-eventhub >= 5.0.0}
 BuildRequires:  %{python_module azure-nspkg >= 3.0.0}
+BuildRequires:  %{python_module cryptography >= 2.1.4}
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module msrest >= 0.6.10}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
+Requires:   python-azure-core < 2.0.0
+Requires:   python-azure-core >= 1.2.2
 Requires:   python-azure-eventhub < 6.0.0
 Requires:   python-azure-eventhub >= 5.0.0
 Requires:   python-azure-nspkg >= 3.0.0
-Requires:   python-azure-storage-blob < 13.0.0
-Requires:   python-azure-storage-blob >= 12.0.0
+Requires:   python-cryptography >= 2.1.4
+Requires:   python-msrest >= 0.6.10
+
 Conflicts:  python-azure-sdk <= 2.0.0
 BuildArch:  noarch
 %python_subpackages
@@ -65,7 +72,7 @@
 }
 
 %files %{python_files}
-%doc HISTORY.md README.md
+%doc CHANGELOG.md README.md
 %license LICENSE.txt
 %{python_sitelib}/azure/eventhub/extensions/checkpointstoreblob
 %{python_sitelib}/azure_eventhub_checkpointstoreblob-*.egg-info




commit matrix-quaternion for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package matrix-quaternion for 
openSUSE:Factory checked in at 2020-04-01 19:16:49

Comparing /work/SRC/openSUSE:Factory/matrix-quaternion (Old)
 and  /work/SRC/openSUSE:Factory/.matrix-quaternion.new.3248 (New)


Package is "matrix-quaternion"

Wed Apr  1 19:16:49 2020 rev:3 rq:790403 version:0.0.9.4d

Changes:

--- /work/SRC/openSUSE:Factory/matrix-quaternion/matrix-quaternion.changes  
2019-06-12 13:12:29.216930697 +0200
+++ 
/work/SRC/openSUSE:Factory/.matrix-quaternion.new.3248/matrix-quaternion.changes
2020-04-01 19:17:29.619508314 +0200
@@ -1,0 +2,21 @@
+Tue Mar 31 20:02:32 UTC 2020 - ec...@opensuse.org
+
+- Update to 0.0.9.4d
+  This is a "sustaining" "rebuild" of the "stable" (that is - users
+  know its bugs by now) Quaternion on top of libQMatrixClient 
+  0.5.3.1. Unlike previous rebuilds, this incorporates two major
+  changes in Quaternion itself, backported from the master branch:
+
+  - (#653) Single sign-on support, to help Mozilla homeserver users
+  - (#663) Interoperability with Pantalaimon, to help practically
+any Matrix user who agrees to use Pantalaimon as an E2EE proxy.
+
+---
+Wed Jan 29 08:58:00 UTC 2020 - ec...@opensuse.org
+
+- Update to 0.0.9.4c
+  - A problem that led to appstream-util validate failure 
+preventing correct construction of Flatpaks has been fixed.
+- Run spec-cleaner.
+
+---

Old:

  matrix-quaternion-0.0.9.4.tar.gz

New:

  matrix-quaternion-0.0.9.4d.tar.gz



Other differences:
--
++ matrix-quaternion.spec ++
--- /var/tmp/diff_new_pack.o0UPNh/_old  2020-04-01 19:17:32.203509476 +0200
+++ /var/tmp/diff_new_pack.o0UPNh/_new  2020-04-01 19:17:32.207509478 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package matrix-quaternion
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,16 @@
 
 
 Name:   matrix-quaternion
-Version:0.0.9.4
+Version:0.0.9.4d
 Release:0
 Summary:QT Matrix client
 License:GPL-3.0-only
 Group:  Productivity/Networking/Instant Messenger
-Url:https://github.com/QMatrixClient/Quaternion
+URL:https://github.com/QMatrixClient/Quaternion
 Source0:
https://github.com/QMatrixClient/Quaternion/archive/%{version}/%{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake
-%if 0%{?suse_version} < 1500
-BuildRequires:  gcc7-c++
-%else
-BuildRequires:  gcc-c++
-%endif
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  pkgconfig
 BuildRequires:  cmake(Qt5Keychain)
 BuildRequires:  cmake(Qt5LinguistTools)
 BuildRequires:  pkgconfig(QMatrixClient) >= 0.5.1
@@ -46,6 +41,11 @@
 Requires:   %{name}-lang
 Requires:   libqt5-qtquickcontrols
 Requires:   libqt5-qtquickcontrols2
+%if 0%{?suse_version} < 1500
+BuildRequires:  gcc7-c++
+%else
+BuildRequires:  gcc-c++
+%endif
 # upstream use instead Qt5Core, Qt5Gui, Qt5Network, Qt5Quick, Qt5Widgets:
 # BuildRequires:  libqt5-qtdeclarative-devel libqt5-qtquickcontrols
 
@@ -81,8 +81,8 @@
 %endif
 
 %files
-%defattr(-,root,root,-)
-%doc COPYING README.md
+%license COPYING
+%doc README.md
 %{_bindir}/quaternion
 %{_datadir}/applications/*.desktop
 %{_datadir}/icons/hicolor/*/apps/*

++ matrix-quaternion-0.0.9.4.tar.gz -> matrix-quaternion-0.0.9.4d.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Quaternion-0.0.9.4/.travis.yml 
new/Quaternion-0.0.9.4d/.travis.yml
--- old/Quaternion-0.0.9.4/.travis.yml  2019-04-29 11:59:48.0 +0200
+++ new/Quaternion-0.0.9.4d/.travis.yml 2020-03-31 08:00:03.0 +0200
@@ -64,6 +64,7 @@
 - qt512tools
 - qt512translations
 - qt5keychain-dev
+- appstream-util
   - os: osx
 env: [ 'PATH=/usr/local/opt/qt/bin:$PATH' ]
 addons:
@@ -82,7 +83,7 @@
 - mkdir build && pushd build
 # TODO: add building with an external lib
 - cmake .. -LA -DUSE_INTREE_LIBQMC=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo 
-DCMAKE_INSTALL_PREFIX=/usr -DDEPLOY_VERBOSITY=$DEPLOY_VERBOSITY
-#- appstream-util validate linux/*.appdata.xml
+- if [ -f "$(which appstream-util)" ]; then appstream-util validate 
../linux/*.appdata.xml; fi
 - cmake --build . --target all
 - export DESTDIR=$TRAVIS_BUILD_DIR/install
 - if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake --build . --target install; fi
diff -urN '--exclude=CVS' 

commit clpeak for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package clpeak for openSUSE:Factory checked 
in at 2020-04-01 19:16:15

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


Package is "clpeak"

Wed Apr  1 19:16:15 2020 rev:6 rq:790376 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/clpeak/clpeak.changes2019-12-14 
12:23:29.491198304 +0100
+++ /work/SRC/openSUSE:Factory/.clpeak.new.3248/clpeak.changes  2020-04-01 
19:16:51.351491097 +0200
@@ -1,0 +2,11 @@
+Tue Mar 31 19:24:17 UTC 2020 - Martin Hauke 
+
+- Update to upstream release 1.1.0
+  * All the kernels are now de-unrolled
+  * Prior to this, all mad or fetch operations were manually
+unrolled which created register pressure on low-end devices.
+Now the operations are put in a for loop and left for the
+compiler to unroll
+  * General improvements
+
+---

Old:

  _service
  _servicedata
  clpeak-1.0+git.20191206.tar.xz

New:

  clpeak-1.1.0.tar.gz



Other differences:
--
++ clpeak.spec ++
--- /var/tmp/diff_new_pack.oKJbiF/_old  2020-04-01 19:16:54.251492401 +0200
+++ /var/tmp/diff_new_pack.oKJbiF/_new  2020-04-01 19:16:54.251492401 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package clpeak
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2015, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,13 +18,13 @@
 
 
 Name:   clpeak
-Version:1.0+git.20191206
+Version:1.1.0
 Release:0
 Summary:Find peak OpenCL capacities like bandwidth & compute
 License:SUSE-Public-Domain
 Group:  System/Benchmark
 URL:https://github.com/krrishnarraj/clpeak
-Source: %{name}-%{version}.tar.xz
+Source: 
https://github.com/krrishnarraj/clpeak/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  opencl-cpp-headers




commit xapps for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package xapps for openSUSE:Factory checked 
in at 2020-04-01 19:16:06

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


Package is "xapps"

Wed Apr  1 19:16:06 2020 rev:11 rq:790401 version:1.6.10

Changes:

--- /work/SRC/openSUSE:Factory/xapps/xapps.changes  2020-03-07 
21:41:17.608395914 +0100
+++ /work/SRC/openSUSE:Factory/.xapps.new.3248/xapps.changes2020-04-01 
19:16:39.251485652 +0200
@@ -1,0 +2,6 @@
+Sun Mar 22 13:04:56 UTC 2020 - Maurizio Galli 
+
+- Add gtkstatusicon-fix.patch, backport to fix crashing tray icon
+  (boo#1165082) 
+
+---

New:

  gtkstatusicon-fix.patch



Other differences:
--
++ xapps.spec ++
--- /var/tmp/diff_new_pack.oAAnGs/_old  2020-04-01 19:16:42.547487135 +0200
+++ /var/tmp/diff_new_pack.oAAnGs/_new  2020-04-01 19:16:42.551487137 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xapps
 #
-# Copyright (c) 2020 SUSE LLC.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,6 +31,8 @@
 Patch0: xapps-void-return-no-return.patch
 # PATCH-FIX-UPSTREAM xapps-python3.patch -- python2 is gone
 Patch1: xapps-python3.patch
+# PATCH-FIX-UPSTREAM gtkstatusicon-fix.patch maurizio.ga...@gmail.com -- 
Backport fix for icon crashing when using gtkstatus icon
+Patch2: gtkstatusicon-fix.patch
 BuildRequires:  fdupes
 BuildRequires:  gtk-doc
 BuildRequires:  hicolor-icon-theme

++ gtkstatusicon-fix.patch ++
diff -rub a/libxapp/xapp-status-icon.c b/libxapp/xapp-status-icon.c
--- a/libxapp/xapp-status-icon.c2020-01-10 01:14:11.0 +0800
+++ b/libxapp/xapp-status-icon.c2020-03-22 20:56:42.289445192 +0800
@@ -798,7 +798,6 @@
 }
 
 gtk_status_icon_set_tooltip_text (priv->gtk_status_icon, 
priv->tooltip_text);
-gtk_status_icon_set_name (priv->gtk_status_icon, priv->name);
 
 if (priv->icon_name)
 {
@@ -1327,6 +1326,12 @@
 xapp_status_icon_set_name (XAppStatusIcon *icon, const gchar *name)
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
+
+if (g_strcmp0 (name, icon->priv->name) == 0)
+{
+return;
+}
+
 g_clear_pointer (>priv->name, g_free);
 icon->priv->name = g_strdup (name);
 
@@ -1337,7 +1342,14 @@
 xapp_status_icon_interface_set_name (icon->priv->skeleton, name);
 }
 
-update_fallback_icon (icon);
+/* Call this directly instead of in the update_fallback_icon() function,
+ * as every time this is called, Gtk re-creates the plug for the icon,
+ * so the tray thinks one icon has disappeared and a new one appeared,
+ * which can cause flicker and undesirable re-ordering of tray items. */
+if (icon->priv->gtk_status_icon != NULL)
+{
+gtk_status_icon_set_name (icon->priv->gtk_status_icon, name);
+}
 }
 
 /**
@@ -1353,6 +1365,12 @@
 xapp_status_icon_set_icon_name (XAppStatusIcon *icon, const gchar *icon_name)
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
+
+if (g_strcmp0 (icon_name, icon->priv->icon_name) == 0)
+{
+return;
+}
+
 g_clear_pointer (>priv->icon_name, g_free);
 icon->priv->icon_name = g_strdup (icon_name);
 
@@ -1379,6 +1397,12 @@
 xapp_status_icon_set_tooltip_text (XAppStatusIcon *icon, const gchar 
*tooltip_text)
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
+
+if (g_strcmp0 (tooltip_text, icon->priv->tooltip_text) == 0)
+{
+return;
+}
+
 g_clear_pointer (>priv->tooltip_text, g_free);
 icon->priv->tooltip_text = g_strdup (tooltip_text);
 
@@ -1405,6 +1429,12 @@
 xapp_status_icon_set_label (XAppStatusIcon *icon, const gchar *label)
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
+
+if (g_strcmp0 (label, icon->priv->label) == 0)
+{
+return;
+}
+
 g_clear_pointer (>priv->label, g_free);
 icon->priv->label = g_strdup (label);
 
@@ -1429,6 +1459,12 @@
 xapp_status_icon_set_visible (XAppStatusIcon *icon, const gboolean visible)
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
+
+if (visible == icon->priv->visible)
+{
+return;
+}
+
 icon->priv->visible = visible;
 
 g_debug ("XAppStatusIcon set_visible: %s", visible ? "TRUE" : "FALSE");
@@ -1456,6 +1492,13 @@
 {
 g_return_if_fail (XAPP_IS_STATUS_ICON (icon));
 
+g_return_if_fail (GTK_IS_MENU (menu));
+
+if (menu == GTK_MENU (icon->priv->primary_menu))
+{
+return;
+}
+
 g_clear_object (>priv->primary_menu);
 
 g_debug ("XAppStatusIcon 

commit grub2-theme-breeze for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package grub2-theme-breeze for 
openSUSE:Factory checked in at 2020-04-01 19:15:42

Comparing /work/SRC/openSUSE:Factory/grub2-theme-breeze (Old)
 and  /work/SRC/openSUSE:Factory/.grub2-theme-breeze.new.3248 (New)


Package is "grub2-theme-breeze"

Wed Apr  1 19:15:42 2020 rev:64 rq:790451 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/grub2-theme-breeze/grub2-theme-breeze.changes
2020-03-11 22:03:56.577962939 +0100
+++ 
/work/SRC/openSUSE:Factory/.grub2-theme-breeze.new.3248/grub2-theme-breeze.changes
  2020-04-01 19:16:23.663478639 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:25 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:39 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  breeze-grub-5.18.3.tar.xz
  breeze-grub-5.18.3.tar.xz.sig

New:

  breeze-grub-5.18.4.1.tar.xz
  breeze-grub-5.18.4.1.tar.xz.sig



Other differences:
--
++ grub2-theme-breeze.spec ++
--- /var/tmp/diff_new_pack.m5ZXJU/_old  2020-04-01 19:16:25.615479517 +0200
+++ /var/tmp/diff_new_pack.m5ZXJU/_new  2020-04-01 19:16:25.619479519 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:   grub2-theme-breeze
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plasma branding for GRUB2's graphical console
 License:GPL-3.0-or-later
 Group:  System/Boot
 URL:https://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/breeze-grub-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/breeze-grub-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/breeze-grub-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/breeze-grub-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildArch:  noarch

++ breeze-grub-5.18.3.tar.xz -> breeze-grub-5.18.4.1.tar.xz ++





commit plasma5-thunderbolt for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package plasma5-thunderbolt for 
openSUSE:Factory checked in at 2020-04-01 19:15:53

Comparing /work/SRC/openSUSE:Factory/plasma5-thunderbolt (Old)
 and  /work/SRC/openSUSE:Factory/.plasma5-thunderbolt.new.3248 (New)


Package is "plasma5-thunderbolt"

Wed Apr  1 19:15:53 2020 rev:11 rq:790456 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-thunderbolt/plasma5-thunderbolt.changes  
2020-03-11 22:04:15.177973349 +0100
+++ 
/work/SRC/openSUSE:Factory/.plasma5-thunderbolt.new.3248/plasma5-thunderbolt.changes
2020-04-01 19:16:34.327483437 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:39 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:42 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  plasma-thunderbolt-5.18.3.tar.xz
  plasma-thunderbolt-5.18.3.tar.xz.sig

New:

  plasma-thunderbolt-5.18.4.1.tar.xz
  plasma-thunderbolt-5.18.4.1.tar.xz.sig



Other differences:
--
++ plasma5-thunderbolt.spec ++
--- /var/tmp/diff_new_pack.OOzvRC/_old  2020-04-01 19:16:35.267483860 +0200
+++ /var/tmp/diff_new_pack.OOzvRC/_new  2020-04-01 19:16:35.271483861 +0200
@@ -20,15 +20,15 @@
 %define qt5_version 5.10.0
 %bcond_without lang
 Name:   plasma5-thunderbolt
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plasma frontend for Thunderbolt 3 security levels
 License:GPL-2.0-or-later
 Group:  Productivity/Security
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-thunderbolt-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-thunderbolt-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-thunderbolt-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-thunderbolt-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}

++ plasma-thunderbolt-5.18.3.tar.xz -> plasma-thunderbolt-5.18.4.1.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-thunderbolt-5.18.3/po/zh_CN/kcm_bolt.po 
new/plasma-thunderbolt-5.18.4.1/po/zh_CN/kcm_bolt.po
--- old/plasma-thunderbolt-5.18.3/po/zh_CN/kcm_bolt.po  2020-03-10 
14:23:33.0 +0100
+++ new/plasma-thunderbolt-5.18.4.1/po/zh_CN/kcm_bolt.po2020-03-31 
16:32:56.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-10-18 03:35+0200\n"
-"PO-Revision-Date: 2020-03-10 10:59\n"
+"PO-Revision-Date: 2020-03-25 19:56\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-thunderbolt-5.18.3/po/zh_CN/kded_bolt.po 
new/plasma-thunderbolt-5.18.4.1/po/zh_CN/kded_bolt.po
--- old/plasma-thunderbolt-5.18.3/po/zh_CN/kded_bolt.po 2020-03-10 
14:23:33.0 +0100
+++ new/plasma-thunderbolt-5.18.4.1/po/zh_CN/kded_bolt.po   2020-03-31 
16:32:56.0 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2019-05-20 03:11+0200\n"
-"PO-Revision-Date: 2020-03-10 10:59\n"
+"PO-Revision-Date: 2020-03-25 19:56\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"





commit plasma5-workspace-wallpapers for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package plasma5-workspace-wallpapers for 
openSUSE:Factory checked in at 2020-04-01 19:15:32

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


Package is "plasma5-workspace-wallpapers"

Wed Apr  1 19:15:32 2020 rev:84 rq:790445 version:5.18.4.1

Changes:

--- 
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma5-workspace-wallpapers.changes
2020-03-11 22:03:37.945952511 +0100
+++ 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new.3248/plasma5-workspace-wallpapers.changes
  2020-04-01 19:16:07.479471357 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:40 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:43 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  plasma-workspace-wallpapers-5.18.3.tar.xz
  plasma-workspace-wallpapers-5.18.3.tar.xz.sig

New:

  plasma-workspace-wallpapers-5.18.4.1.tar.xz
  plasma-workspace-wallpapers-5.18.4.1.tar.xz.sig



Other differences:
--
++ plasma5-workspace-wallpapers.spec ++
--- /var/tmp/diff_new_pack.o6DJDy/_old  2020-04-01 19:16:10.655472786 +0200
+++ /var/tmp/diff_new_pack.o6DJDy/_new  2020-04-01 19:16:10.655472786 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:   plasma5-workspace-wallpapers
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 0.0.12
@@ -28,9 +28,9 @@
 License:GPL-2.0-or-later
 Group:  System/GUI/KDE
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-workspace-wallpapers-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-workspace-wallpapers-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-workspace-wallpapers-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-workspace-wallpapers-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildArch:  noarch

++ plasma-workspace-wallpapers-5.18.3.tar.xz -> 
plasma-workspace-wallpapers-5.18.4.1.tar.xz ++
/work/SRC/openSUSE:Factory/plasma5-workspace-wallpapers/plasma-workspace-wallpapers-5.18.3.tar.xz
 
/work/SRC/openSUSE:Factory/.plasma5-workspace-wallpapers.new.3248/plasma-workspace-wallpapers-5.18.4.1.tar.xz
 differ: char 25, line 1





commit plasma-vault for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package plasma-vault for openSUSE:Factory 
checked in at 2020-04-01 19:15:25

Comparing /work/SRC/openSUSE:Factory/plasma-vault (Old)
 and  /work/SRC/openSUSE:Factory/.plasma-vault.new.3248 (New)


Package is "plasma-vault"

Wed Apr  1 19:15:25 2020 rev:52 rq:790443 version:5.18.4.1

Changes:

--- /work/SRC/openSUSE:Factory/plasma-vault/plasma-vault.changes
2020-03-11 22:03:14.385939325 +0100
+++ /work/SRC/openSUSE:Factory/.plasma-vault.new.3248/plasma-vault.changes  
2020-04-01 19:15:53.659465139 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 15:16:42 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4.1:
+  * Version fixed
+
+---
+Tue Mar 31 14:47:43 UTC 2020 - Fabian Vogt 
+
+- Update to 5.18.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.4.php
+- No code changes since 5.18.3
+
+---

Old:

  plasma-vault-5.18.3.tar.xz
  plasma-vault-5.18.3.tar.xz.sig

New:

  plasma-vault-5.18.4.1.tar.xz
  plasma-vault-5.18.4.1.tar.xz.sig



Other differences:
--
++ plasma-vault.spec ++
--- /var/tmp/diff_new_pack.QxVcMA/_old  2020-04-01 19:15:56.811466558 +0200
+++ /var/tmp/diff_new_pack.QxVcMA/_new  2020-04-01 19:15:56.811466558 +0200
@@ -19,15 +19,15 @@
 %define kf5_version 5.58.0
 %bcond_without lang
 Name:   plasma-vault
-Version:5.18.3
+Version:5.18.4.1
 Release:0
 Summary:Plasma applet and services for creating encrypted vaults
 License:GPL-2.0-or-later
 Group:  Productivity/Security
 URL:http://www.kde.org
-Source: 
https://download.kde.org/stable/plasma/%{version}/plasma-vault-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/plasma/5.18.4/plasma-vault-%{version}.tar.xz
 %if %{with lang}
-Source1:
https://download.kde.org/stable/plasma/%{version}/plasma-vault-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/5.18.4/plasma-vault-%{version}.tar.xz.sig
 Source2:plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= %{kf5_version}

++ plasma-vault-5.18.3.tar.xz -> plasma-vault-5.18.4.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-vault-5.18.3/CMakeLists.txt 
new/plasma-vault-5.18.4.1/CMakeLists.txt
--- old/plasma-vault-5.18.3/CMakeLists.txt  2020-03-10 14:23:38.0 
+0100
+++ new/plasma-vault-5.18.4.1/CMakeLists.txt2020-03-31 16:33:01.0 
+0200
@@ -4,7 +4,7 @@
 
 project (PlasmaVault)
 
-set(PROJECT_VERSION "5.18.3")
+set(PROJECT_VERSION "5.18.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set (PLASMAVAULT_VERSION "0.1")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-vault-5.18.3/po/cs/plasmavault-kde.po 
new/plasma-vault-5.18.4.1/po/cs/plasmavault-kde.po
--- old/plasma-vault-5.18.3/po/cs/plasmavault-kde.po2020-03-10 
14:23:47.0 +0100
+++ new/plasma-vault-5.18.4.1/po/cs/plasmavault-kde.po  2020-03-31 
16:33:14.0 +0200
@@ -515,17 +515,17 @@
 #: kded/ui/vaultwizardbase.h:50 kded/ui/vaultwizardbase.h:102
 #, kde-format
 msgid "Next"
-msgstr ""
+msgstr "Následující"
 
 #: kded/ui/vaultwizardbase.h:93
 #, kde-format
 msgid "Create"
-msgstr ""
+msgstr "Vytvořit"
 
 #: kded/ui/vaultwizardbase.h:100
 #, kde-format
 msgid "Previous"
-msgstr ""
+msgstr "Předchozí"
 
 #: plasma/package/contents/ui/main.qml:102
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-vault-5.18.3/po/et/plasmavault-kde.po 
new/plasma-vault-5.18.4.1/po/et/plasmavault-kde.po
--- old/plasma-vault-5.18.3/po/et/plasmavault-kde.po2020-03-10 
14:23:48.0 +0100
+++ new/plasma-vault-5.18.4.1/po/et/plasmavault-kde.po  2020-03-31 
16:33:15.0 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-vault\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n;
 "POT-Creation-Date: 2020-02-17 08:31+0100\n"
-"PO-Revision-Date: 2020-02-17 17:52+0200\n"
+"PO-Revision-Date: 2020-03-18 12:58+0200\n"
 "Last-Translator: Marek Laane \n"
 "Language-Team: Estonian \n"
 "Language: et_EE\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.08.1\n"
+"X-Generator: Lokalize 19.12.2\n"
 
 #: fileitemplugin/plasmavaultfileitemaction.cpp:83
 #, kde-format
@@ -75,7 +75,7 @@
 #: kded/engine/fusebackend_p.cpp:60
 #, kde-format
 msgid "The mount point directory is not empty, refusing to open the vault"

commit python-mockito for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-mockito for openSUSE:Factory 
checked in at 2020-04-01 19:17:35

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


Package is "python-mockito"

Wed Apr  1 19:17:35 2020 rev:8 rq:790480 version:1.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-mockito/python-mockito.changes
2019-04-08 20:53:43.894576965 +0200
+++ /work/SRC/openSUSE:Factory/.python-mockito.new.3248/python-mockito.changes  
2020-04-01 19:18:00.123522038 +0200
@@ -1,0 +2,10 @@
+Wed Apr  1 07:13:22 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.2.1
+  - @nielsvaneck fixed how we can lookup inherited classmethods.
+  - Code base now is python 3 compatible. No 2to3 anymore.
+  - Fine tune error messages on unexpected calls or verifications. 
+  - @felixonmars fixed a small compatibility issue with python 3.8
+  - Mocking properties has become a bit easier. (#26)
+
+---

Old:

  mockito-1.1.1.tar.gz

New:

  1.2.1.tar.gz



Other differences:
--
++ python-mockito.spec ++
--- /var/tmp/diff_new_pack.vzZbYV/_old  2020-04-01 19:18:03.163523406 +0200
+++ /var/tmp/diff_new_pack.vzZbYV/_new  2020-04-01 19:18:03.163523406 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-mockito
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%define skip_python3 1
 Name:   python-mockito
-Version:1.1.1
+Version:1.2.1
 Release:0
 Summary:Spying framework
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/kaste/mockito-python
-Source: 
https://files.pythonhosted.org/packages/source/m/mockito/mockito-%{version}.tar.gz
+# https://github.com/kaste/mockito-python/issues/36
+Source: 
https://github.com/kaste/mockito-python/archive/%{version}.tar.gz
 BuildRequires:  %{python_module numpy}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
@@ -41,7 +41,7 @@
 Mockito is a spying framework originally based on the Java library with the 
same name.
 
 %prep
-%setup -q -n mockito-%{version}
+%setup -q -n mockito-python-%{version}
 
 %build
 %python_build

++ mockito-1.1.1.tar.gz -> 1.2.1.tar.gz ++
 10976 lines of diff (skipped)




commit u-boot for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2020-04-01 19:16:36

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


Package is "u-boot"

Wed Apr  1 19:16:36 2020 rev:127 rq:790458 version:2020.01

Changes:

--- /work/SRC/openSUSE:Factory/u-boot/u-boot.changes2020-03-27 
22:02:27.790973041 +0100
+++ /work/SRC/openSUSE:Factory/.u-boot.new.3248/u-boot.changes  2020-04-01 
19:17:19.239503643 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 21:34:26 UTC 2020 - Petr Tesařík 
+
+- Use proper quoting for the modalias Supplements (see also
+  https://github.com/openSUSE/libzypp/issues/216).
+
+---



Other differences:
--
++ u-boot.spec ++
--- /var/tmp/diff_new_pack.p77Szy/_old  2020-04-01 19:17:21.619504714 +0200
+++ /var/tmp/diff_new_pack.p77Szy/_new  2020-04-01 19:17:21.623504716 +0200
@@ -318,7 +318,7 @@
 Provides:   u-boot-rpi3 = %{version}
 Obsoletes:  u-boot-rpi4 < %{version}
 Provides:   u-boot-rpi4 = %{version}
-Supplements:modalias(of:NfirmwareT*Craspberrypi?bcm2835-firmwareC*)
+Supplements:modalias(of:NfirmwareT*Craspberrypi%2Cbcm2835-firmwareC*)
 %endif
 
 %description






commit wireguard for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package wireguard for openSUSE:Factory 
checked in at 2020-04-01 19:17:02

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


Package is "wireguard"

Wed Apr  1 19:17:02 2020 rev:14 rq:790368 version:1.0.20200330

Changes:

--- /work/SRC/openSUSE:Factory/wireguard/wireguard.changes  2020-03-22 
14:18:30.918108604 +0100
+++ /work/SRC/openSUSE:Factory/.wireguard.new.3248/wireguard.changes
2020-04-01 19:17:39.103512581 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 19:29:33 UTC 2020 - Martin Hauke 
+
+- Update to version 1.0.20200330
+  * queueing: backport skb_reset_redirect change from 5.6
+
+---

Old:

  wireguard-linux-compat-0.0.20200318.tar.asc
  wireguard-linux-compat-0.0.20200318.tar.xz

New:

  wireguard-linux-compat-1.0.20200330.tar.asc
  wireguard-linux-compat-1.0.20200330.tar.xz



Other differences:
--
++ wireguard.spec ++
--- /var/tmp/diff_new_pack.D44JqO/_old  2020-04-01 19:17:40.723513310 +0200
+++ /var/tmp/diff_new_pack.D44JqO/_new  2020-04-01 19:17:40.735513315 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   wireguard
-Version:0.0.20200318
+Version:1.0.20200330
 Release:0
 Summary:Fast, modern, secure kernel VPN tunnel
 License:GPL-2.0-only


++ wireguard-linux-compat-0.0.20200318.tar.xz -> 
wireguard-linux-compat-1.0.20200330.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/wireguard-linux-compat-0.0.20200318/src/compat/compat.h 
new/wireguard-linux-compat-1.0.20200330/src/compat/compat.h
--- old/wireguard-linux-compat-0.0.20200318/src/compat/compat.h 2020-03-19 
06:15:25.0 +0100
+++ new/wireguard-linux-compat-1.0.20200330/src/compat/compat.h 2020-03-31 
02:15:15.0 +0200
@@ -1024,6 +1024,16 @@
 #define COMPAT_CANNOT_USE_MAX_MTU
 #endif
 
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+#include 
+static inline void skb_reset_redirect(struct sk_buff *skb)
+{
+#ifdef CONFIG_NET_SCHED
+   skb_reset_tc(skb);
+#endif
+}
+#endif
+
 #if defined(ISUBUNTU1604)
 #include 
 #ifndef _WG_LINUX_SIPHASH_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wireguard-linux-compat-0.0.20200318/src/dkms.conf 
new/wireguard-linux-compat-1.0.20200330/src/dkms.conf
--- old/wireguard-linux-compat-0.0.20200318/src/dkms.conf   2020-03-19 
06:15:25.0 +0100
+++ new/wireguard-linux-compat-1.0.20200330/src/dkms.conf   2020-03-31 
02:15:15.0 +0200
@@ -1,5 +1,5 @@
 PACKAGE_NAME="wireguard"
-PACKAGE_VERSION="0.0.20200318"
+PACKAGE_VERSION="1.0.20200330"
 AUTOINSTALL=yes
 
 BUILT_MODULE_NAME="wireguard"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wireguard-linux-compat-0.0.20200318/src/queueing.h 
new/wireguard-linux-compat-1.0.20200330/src/queueing.h
--- old/wireguard-linux-compat-0.0.20200318/src/queueing.h  2020-03-19 
06:15:25.0 +0100
+++ new/wireguard-linux-compat-1.0.20200330/src/queueing.h  2020-03-31 
02:15:15.0 +0200
@@ -103,8 +103,8 @@
skb->dev = NULL;
 #ifdef CONFIG_NET_SCHED
skb->tc_index = 0;
-   skb_reset_tc(skb);
 #endif
+   skb_reset_redirect(skb);
skb->hdr_len = skb_headroom(skb);
skb_reset_mac_header(skb);
skb_reset_network_header(skb);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wireguard-linux-compat-0.0.20200318/src/version.h 
new/wireguard-linux-compat-1.0.20200330/src/version.h
--- old/wireguard-linux-compat-0.0.20200318/src/version.h   2020-03-19 
06:15:25.0 +0100
+++ new/wireguard-linux-compat-1.0.20200330/src/version.h   2020-03-31 
02:15:15.0 +0200
@@ -1,3 +1,3 @@
 #ifndef WIREGUARD_VERSION
-#define WIREGUARD_VERSION "0.0.20200318"
+#define WIREGUARD_VERSION "1.0.20200330"
 #endif




commit shim-leap for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package shim-leap for openSUSE:Factory 
checked in at 2020-04-01 19:16:28

Comparing /work/SRC/openSUSE:Factory/shim-leap (Old)
 and  /work/SRC/openSUSE:Factory/.shim-leap.new.3248 (New)


Package is "shim-leap"

Wed Apr  1 19:16:28 2020 rev:11 rq:790405 version:14

Changes:

--- /work/SRC/openSUSE:Factory/shim-leap/shim-leap.changes  2020-03-30 
23:02:08.040133128 +0200
+++ /work/SRC/openSUSE:Factory/.shim-leap.new.3248/shim-leap.changes
2020-04-01 19:17:03.691496648 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 08:38:56 UTC 2020 - Gary Ching-Pang Lin 
+
+- Use the full path of efibootmgr to avoid errors when invoking
+  shim-install from packagekitd (bsc#1168104)
+
+---



Other differences:
--
++ shim-install ++
--- /var/tmp/diff_new_pack.uC2FCs/_old  2020-04-01 19:17:04.275496911 +0200
+++ /var/tmp/diff_new_pack.uC2FCs/_new  2020-04-01 19:17:04.279496913 +0200
@@ -12,6 +12,7 @@
 sysconfdir="/etc"
 libdir="/usr/lib64"
 source_dir="$libdir/efi"
+efibootmgr="/usr/sbin/efibootmgr"
 grub_probe="/usr/sbin/grub2-probe"
 grub_mkrelpath="/usr/bin/grub2-mkrelpath"
 grub_install="/usr/sbin/grub2-install"
@@ -245,9 +246,9 @@
 fi
 if test "$no_nvram" = no && test -n "$bootloader_id"; then
 # Delete old entries from the same distributor.
-for bootnum in `efibootmgr | grep '^Boot[0-9]' | \
+for bootnum in `$efibootmgr | grep '^Boot[0-9]' | \
 fgrep -i " $bootloader_id" | cut -b5-8`; do
-efibootmgr -b "$bootnum" -B
+$efibootmgr -b "$bootnum" -B
 done
fi
exit 0
@@ -323,9 +324,9 @@
 modprobe -q efivars 2>/dev/null || true
 
 # Delete old entries from the same distributor.
-for bootnum in `efibootmgr | grep '^Boot[0-9]' | \
+for bootnum in `$efibootmgr | grep '^Boot[0-9]' | \
 fgrep -i " $bootloader_id" | cut -b5-8`; do
-efibootmgr -b "$bootnum" -B
+$efibootmgr -b "$bootnum" -B
 done
 
 efidir_drive="$("$grub_probe" --target=drive --device-map= "$efidir")"
@@ -344,12 +345,12 @@
 efidir_disk="$("$grub_probe" --target=disk --device-map= -d 
"$mddev")"
 efidir_part="$(echo "$efidir_drive" | sed 's/^([^,]*,[^0-9]*//; 
s/[^0-9].*//')"
 efidir_d=${mddev#/dev/}
-efibootmgr -c -d "$efidir_disk" -p "$efidir_part" -w \
+$efibootmgr -c -d "$efidir_disk" -p "$efidir_part" -w \
   -L "$bootloader_id ($efidir_d)" -l 
"\\EFI\\$efi_distributor\\$efi_file"
 done
 else
 efidir_part="$(echo "$efidir_drive" | sed 's/^([^,]*,[^0-9]*//; 
s/[^0-9].*//')"
-efibootmgr -c -d "$efidir_disk" -p "$efidir_part" -w \
+$efibootmgr -c -d "$efidir_disk" -p "$efidir_part" -w \
-L "$bootloader_id" -l "\\EFI\\$efi_distributor\\$efi_file"
 fi
 fi




commit krita for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package krita for openSUSE:Factory checked 
in at 2020-04-01 19:07:45

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


Package is "krita"

Wed Apr  1 19:07:45 2020 rev:42 rq:788658 version:4.2.9

Changes:

--- /work/SRC/openSUSE:Factory/krita/krita.changes  2019-11-28 
10:17:30.655639228 +0100
+++ /work/SRC/openSUSE:Factory/.krita.new.3248/krita.changes2020-04-01 
19:08:25.279263404 +0200
@@ -1,0 +2,103 @@
+Thu Mar 26 15:26:54 UTC 2020 - wba...@tmo.at
+
+- Update to 4.2.9:
+  * See https://krita.org/en/item/krita-4-2-9-released/
+  * Brush outline no longer flickers when you hover over the canvas
+  * Added "Airbrush" and "Airbrush Rate" to the Color Smudge brush,
+and a new Ratio setting
+  * Added a "Split Layer into Selection Mask" feature
+  * Fix transparency checkers looked white on HDR display
+(kde#406698)
+  * Several fixes to file dialogs for overwriting and jpg files
+(kde#412651)
+  * Fix Grow Selection expanding in one direction (kde#414647)
+  * Fix crash using onion skins on non-animated layers (kde#414668)
+  * Increase the limit in Layer Offset to 100k (kde#414625)
+  * Fix crash opening .kra with incorrect clone source (related to
+(kde#414699)
+  * Prevent crash on addition of color to deleted palette with
+colorpicker (kde#413548)
+  * Make Add subbrush off on changing multibrush tool's type from
+Copy Translate (kde#415651)
+  * Improve rendering of predefined default Rect dab
+  * Set the default location for restored files to
+QStandardPaths::PicturesLocation (kde#415810)
+  * Don't crash if remoteArguments is called when there isn't a
+mainwindow (kde#415794)
+  * Delay initialization of brush paintop widget state (kde#415033)
+  * Reenable breeze: with the latest release, the bug with
+comboboxes has been fixed
+  * Show the hand cursor if there is no colorize mask yet
+(kde#415935)
+  * Fix logic for enabling/disabling options in stroke selection
+dialog (kde#415896)
+  * ORA export, write entire layers instead of cropping them
+  * Fix endless recursion when assigning a profile (kde#414818)
+  * Fix a crash when cancelling Transform Tool action (kde#414672)
+  * Fix an obviously wrong assert in the gradients (kde#414550)
+  * Fix 1px brush offset in line tool (kde#407405)
+  * Fix Layer Filter Combobox with Breeze theme (kde#406595)
+  * Fix comparison of double spin box
+  * Fix PaletteDocker not showing palettes (kde#414890)
+  * Fix undo of replacing vector selection (kde#412808)
+  * Separate krita log dialog from system information
+  * Resource bundle: turn assert into check (kde#399008)
+  * Fix the python Canvas.setRotation method (kde#416126)
+  * Store and restore the geometry of the svg editor window
+(kde#416097)
+  * Fix number of asserts with continued transform (kde#415625)
+  * Fix Touch Docker save button not working on new files
+(kde#407905)
+  * Fix blur Filter inconsistencies (kde#416241)
+  * Fix border artifacts in layer styles (kde#414582)
+  * Use Qt::Popup for color selectors popup widgets (kde#410959)
+  * Always show color popup below the cursor (kde#394139)
+  * Remove the strength compatibility with older paintop presets
+(kde#416335)
+  * Fixed unneeded error message in Render Animation (kde#412599)
+  * Fix canvas offset calculation (kde#416352)
+  * Layers with alpha channel disabled correctly export as
+"svg:src-atop" for ORA
+  * Add icon to Close button of "About Krita" dialog box
+  * Fix memory leak in preset history docker
+  * Warn that Krita needs to be restarted after enabling/disabling
+plugins (kde#416575)
+  * Workaround Qt 5.14's colormanagement preventing png files from
+being saved (kde#416515)
+  * Fixes with last used filter command (kde#416706)
+  * Fix Increase/Decrease Brush Size and Switch To Previous Preset
+buttons
+  * Fix Warp and Cage transform in master (kde#416505)
+  * Fix crazy snapping when resizing shapes (kde#414336)
+  * Fix hiccups when doing canvas actions (kde#414576, kde#415773)
+  * Fix animation rendering problem on small images (< 100px in
+size) (kde#415367)
+  * Fix display of vector shapes when transformed with transform
+tool (kde#417016)
+  * Fix hangup when loading image with generator/file layers
+(kde#415891)
+  * Fix slowdown associated with the quick hide function of
+Shift+click on layer visibility icons
+  * Fix canvas border color issue
+  * Fix issue when saving preferences
+  * A number of fixes with L*A*B* and CMYK thanks to L.E Segovia's
+Season of KDE work
+  * Set setRedirectPolicy as per discussion on KDE mailing lists
+  * Fix crash when loading asl with tdta OSType
+  * Make "Save Incremental Version" update recently used 

commit kernel-source for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2020-04-01 19:07:32

Comparing /work/SRC/openSUSE:Factory/kernel-source (Old)
 and  /work/SRC/openSUSE:Factory/.kernel-source.new.3248 (New)


Package is "kernel-source"

Wed Apr  1 19:07:32 2020 rev:536 rq:789720 version:5.6.0

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
2020-03-29 14:25:24.350088623 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new.3248/dtb-aarch64.changes  
2020-04-01 19:07:48.223246732 +0200
@@ -1,0 +2,31 @@
+Mon Mar 30 09:55:50 CEST 2020 - jsl...@suse.cz
+
+- Refresh
+  patches.suse/media-go7007-Fix-URB-type-for-interrupt-handling.patch.
+  Update upstream status.
+- commit 46fab61
+
+---
+Mon Mar 30 07:46:22 CEST 2020 - mkube...@suse.cz
+
+- mac80211: fix authentication with iwlwifi/mvm
+  
(https://lkml.kernel.org/r/20200329.212136.273575061630425724.da...@davemloft.net).
+- commit 5032681
+
+---
+Mon Mar 30 06:48:22 CEST 2020 - mkube...@suse.cz
+
+- Revert "sign also s390x kernel images (bsc#1163524)"
+  This reverts commit b38b61155f0a2c3ebca06d4bb0c2e11a19a87f1f.
+  The pesign-obs-integration changes needed for s390x image signing are
+  still missing in Factory so that this change breaks s390x builds.
+- commit 9544af9
+
+---
+Mon Mar 30 06:30:50 CEST 2020 - mkube...@suse.cz
+
+- Update to 5.6 final
+- refresh configs
+- commit da616f7
+
+---
@@ -217,0 +249,10 @@
+Mon Mar 23 06:35:03 CET 2020 - mkube...@suse.cz
+
+- Update to 5.6-rc7
+- refresh
+  patches.suse/supported-flag
+- refresh config files:
+  - CC_HAS_INT128=n on 32-bit architectures (was =y on i386)
+- commit 0801cd7
+
+---
@@ -308,0 +350,10 @@
+Thu Mar 19 18:15:57 CET 2020 - yousaf.kau...@suse.com
+
+- config: arm64: enable CONFIG_MTD_PHYSMAP_OF
+  Get rid of CONFIG_MTD_PHYSMAP_COMPAT and enable CONFIG_MTD_PHYSMAP_OF.
+  Compat maps of zero length (CONFIG_MTD_PHYSMAP_LEN=0x0) doesn't make
+  sense and driver initialization is bound to fail. So use device-tree
+  based initialization.
+- commit 2205109
+
+---
@@ -562,0 +614,7 @@
+Mon Mar 16 06:38:08 CET 2020 - mkube...@suse.cz
+
+- Update to 5.6-rc6
+- refresh config files
+- commit 5c2f002
+
+---
@@ -568,0 +627,4 @@
+- mmc: sdhci: iproc: Add custom set_power() callback for bcm2711
+  (bsc#1165954).
+- mmc: sdhci: Introduce sdhci_set_power_and_bus_voltage()
+  (bsc#1165954).
@@ -571,0 +634,9 @@
+Fri Mar 13 11:08:52 CET 2020 - nsaenzjulie...@suse.de
+
+- Delete 
patches.suse/linux-log2-h-add-roundup-rounddown_pow_two64-family-of-functions.patch.
+  The patch was initially introduced to support RPi4's PCIe controller.
+  The now available upstream driver isn't using this roundup
+  functionality.
+- commit ea370a5
+
+---
@@ -576 +647 @@
-- commit 32fb233
+- commit e9e55d0
@@ -917,0 +989,20 @@
+Mon Mar  9 19:06:37 CET 2020 - j...@suse.de
+
+- rpm/kabi.pl: account for namespace field being moved last
+  Upstream is moving the namespace field in Module.symvers last in order to
+  preserve backwards compatibility with kmod tools (depmod, etc). Fix the 
kabi.pl
+  script to expect the namespace field last. Since split() ignores trailing 
empty
+  fields and delimeters, switch to using tr to count how many fields/tabs are 
in
+  a line. Also, in load_symvers(), pass LIMIT of -1 to split() so it does not
+  strip trailing empty fields, as namespace is an optional field.
+- commit a3bb253
+
+---
+Mon Mar  9 06:38:13 CET 2020 - mkube...@suse.cz
+
+- Update to 5.6-rc5
+- new config options:
+  - BACKLIGHT_LED=m
+- commit ff29e08
+
+---
@@ -1210,0 +1302,9 @@
+Mon Mar  2 05:17:37 CET 2020 - mkube...@suse.cz
+
+- Update to 5.6-rc4
+- eliminated 3 patches
+- new config options:
+  - KVM_WERROR=n (x86)
+- commit 8a04afc
+
+---
@@ -1479,0 +1580,11 @@
+Wed Feb 26 14:05:58 CET 2020 - mho...@suse.com
+
+- Created new preempt kernel flavor (jsc#SLE-11309)
+  Configs are cloned from the respective $arch/default configs. All
+  changed configs appart from CONFIG_PREEMPT->y are a result of
+  dependencies, namely many lock/unlock primitives are no longer
+  inlined in the preempt kernel. 

commit raspberrypi-firmware for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2020-04-01 19:07:56

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


Package is "raspberrypi-firmware"

Wed Apr  1 19:07:56 2020 rev:63 rq:790466 version:2020.02.20

Changes:

--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-config.changes
 2020-03-24 22:34:04.873140114 +0100
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new.3248/raspberrypi-firmware-config.changes
   2020-04-01 19:08:33.411267063 +0200
@@ -1,0 +2,22 @@
+Wed Apr  1 07:25:26 UTC 2020 - Guillaume GARDET 
+
+- Drop Supplements for extra and extra-pi4
+
+---
+Tue Mar 31 21:34:26 UTC 2020 - Petr Tesařík 
+
+- Use proper quoting for the modalias Supplements (see also
+  https://github.com/openSUSE/libzypp/issues/216).
+
+---
+Fri Mar 27 12:30:54 UTC 2020 - Petr Tesařík 
+
+- Add a modalias Supplements, so the package gets selected
+  automatically on a Raspberry Pi.
+
+---
+Thu Mar 26 10:31:48 UTC 2020 - Nicolas Patricio Saenz Julienne 

+
+- Remove rpi4-cma overlay, not needed anymore (bsc#1167761)
+
+---
raspberrypi-firmware.changes: same change



Other differences:
--
++ raspberrypi-firmware-config.spec ++
--- /var/tmp/diff_new_pack.dntSYh/_old  2020-04-01 19:08:35.751268115 +0200
+++ /var/tmp/diff_new_pack.dntSYh/_new  2020-04-01 19:08:35.755268117 +0200
@@ -26,6 +26,7 @@
 Source: config.txt
 BuildRequires:  raspberrypi-firmware
 Requires:   raspberrypi-firmware = %{version}
+Supplements:modalias(of:NfirmwareT*Craspberrypi%2Cbcm2835-firmwareC*)
 Conflicts:  kernel < 4.12.14
 Conflicts:  raspberrypi-firmware-config
 Provides:   raspberrypi-firmware-branding-openSUSE = %{version}

++ raspberrypi-firmware.spec ++
--- /var/tmp/diff_new_pack.dntSYh/_old  2020-04-01 19:08:35.783268130 +0200
+++ /var/tmp/diff_new_pack.dntSYh/_new  2020-04-01 19:08:35.787268132 +0200
@@ -30,6 +30,7 @@
 Requires(preun): util-linux
 Recommends: raspberrypi-firmware-config
 Recommends: raspberrypi-firmware-dt
+Supplements:modalias(of:NfirmwareT*Craspberrypi%2Cbcm2835-firmwareC*)
 BuildArch:  noarch
 
 %description

++ config.txt ++
--- /var/tmp/diff_new_pack.dntSYh/_old  2020-04-01 19:08:35.819268146 +0200
+++ /var/tmp/diff_new_pack.dntSYh/_new  2020-04-01 19:08:35.819268146 +0200
@@ -60,7 +60,6 @@
 [pi4]
 
 dtoverlay=disable-vc4
-dtoverlay=rpi4-cma
 dtoverlay=rpi4-thermal
 dtoverlay=rpi4-gpio-names
 dtoverlay=rpi4-firmware-dma-ranges




commit 4pane for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 4pane for openSUSE:Factory checked 
in at 2020-04-01 19:08:06

Comparing /work/SRC/openSUSE:Factory/4pane (Old)
 and  /work/SRC/openSUSE:Factory/.4pane.new.3248 (New)


Package is "4pane"

Wed Apr  1 19:08:06 2020 rev:5 rq:789332 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/4pane/4pane.changes  2019-11-06 
13:50:16.231776871 +0100
+++ /work/SRC/openSUSE:Factory/.4pane.new.3248/4pane.changes2020-04-01 
19:08:51.815275343 +0200
@@ -1,0 +2,18 @@
+Sat Mar 28 15:10:58 UTC 2020 - Luigi Baldoni 
+
+- Update to version 6.0
+  * 4Pane no longer builds with wxWidgets 2.8; it now requires
+3.0 or higher.
+  * There's a faster way to reach the File OpenWith menu.
+Ctrl-Alt-doubleclick will now directly show the menu.
+  * When moving or pasting files, optionally retain their
+previous modification date.
+  * Support extracting/verifying 'rar' archives, if 'unrar' is
+installed, but not 'rar' creation. 'unrar' is freely
+available (though with a licence restriction) but the 'rar'
+licence is too restricted.
+  * Previewing images now supports svg files too.
+  * Add support for the LXQt DE by recognising its default
+editor, terminal and image viewer.
+
+---

Old:

  4pane-5.0.tar.gz

New:

  4pane-6.0.tar.gz



Other differences:
--
++ 4pane.spec ++
--- /var/tmp/diff_new_pack.FhNGBH/_old  2020-04-01 19:08:52.463275635 +0200
+++ /var/tmp/diff_new_pack.FhNGBH/_new  2020-04-01 19:08:52.463275635 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package 4pane
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2016 Packman Team 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,17 +18,16 @@
 
 
 Name:   4pane
-Version:5.0
+Version:6.0
 Release:0
 Summary:A multi-pane detailed-list file manager
 License:GPL-3.0-only
-Url:http://www.4pane.co.uk/
+URL:http://www.4pane.co.uk/
 Source0:
https://sourceforge.net/projects/fourpane/files/%{version}/%{name}-%{version}.tar.gz
 %if 0%{?is_opensuse}
 BuildRequires:  wxWidgets-devel >= 3
 %else
-# SLE_12 lacks wxWidgets_3.0-devel
-BuildRequires:  wxWidgets-devel < 3
+BuildRequires:  wxWidgets_3.0-devel
 %define _use_internal_dependency_generator 0
 %define __find_requires %wx_requires
 %endif
@@ -36,7 +35,6 @@
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  xz-devel
-Recommends: %{name}-lang
 
 %description
 4Pane is a multi-pane detailed-list file manager.
@@ -61,7 +59,6 @@
 make %{?_smp_mflags} DESTDIR=%{buildroot} install
 %find_lang 4Pane
 mkdir -vp %{buildroot}/%{_datadir}/applications
-mkdir -vp %{buildroot}/%{_datadir}/appdata
 cd %{buildroot}/%{_datadir}/applications
 ln -s ../4Pane/rc/4Pane.desktop 4Pane.desktop
 pushd %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
@@ -70,21 +67,19 @@
 %fdupes -s %{buildroot}/%{_datadir}
 
 %files
-%defattr(-,root,root,-)
 %doc LICENCE
 %{_bindir}/%{name}
 %{_bindir}/4Pane
 %dir %{_datadir}/4Pane
 %dir %{_datadir}/4Pane/bitmaps
 %{_datadir}/4Pane/bitmaps/*
-%{_datadir}/appdata
-%{_datadir}/icons/hicolor/*
 %{_datadir}/4Pane/rc
 %{_datadir}/applications/4Pane.desktop
+%{_datadir}/icons/hicolor/*
+%{_datadir}/metainfo/4Pane.appdata.xml
 %dir %{_docdir}/4Pane
 %{_docdir}/4Pane/*
 
 %files lang -f 4Pane.lang
-%defattr(-,root,root,-)
 
 %changelog

++ 4pane-5.0.tar.gz -> 4pane-6.0.tar.gz ++
 54240 lines of diff (skipped)




commit lutris for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package lutris for openSUSE:Factory checked 
in at 2020-04-01 19:08:10

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


Package is "lutris"

Wed Apr  1 19:08:10 2020 rev:3 rq:789981 version:0.5.5

Changes:

--- /work/SRC/openSUSE:Factory/lutris/lutris.changes2020-03-03 
10:20:50.81525 +0100
+++ /work/SRC/openSUSE:Factory/.lutris.new.3248/lutris.changes  2020-04-01 
19:08:57.923278091 +0200
@@ -1,0 +2,23 @@
+Mon Mar 30 11:32:25 UTC 2020 - Michael Vetter 
+
+- Update to 0.5.5:
+  * Initial support for Humble Bundle
+  * Add resolution switching support for Wayland (Mutter only)
+  * Add option to enable ACO shader compiler on Mesa >= 19.3
+  * DXVK is enabled by default
+  * Add initial support for VKD3D
+  * Migrate D9VK configs to use DXVK
+  * Remove d3d10 and d3d10_1 from dlls handled by DXVK
+  * Fix an API breakage occuring with a Gtk update
+  * Add a System info tab in Preferences
+  * Better handle authentication failure for GOG
+  * Fix case issue with key lookup in Steam VDF files
+  * Add Yuzu runner
+  * Add bsnes-hd beta and smsplus libretro cores
+  * Add sound device option for Mednafen
+  * Remove bundled winetricks
+  * Remove xboxdrv integration
+- Remove lutris-0.5.4-boo1161650-remove-polkit.patch: upstreamed
+- Remove lutris-0.5.4-sort_new_with_model_fix.patch: upstreamed
+
+---

Old:

  lutris-0.5.4-boo1161650-remove-polkit.patch
  lutris-0.5.4-sort_new_with_model_fix.patch
  lutris_0.5.4.tar.xz

New:

  lutris_0.5.5.tar.xz



Other differences:
--
++ lutris.spec ++
--- /var/tmp/diff_new_pack.QphYfc/_old  2020-04-01 19:08:59.359278738 +0200
+++ /var/tmp/diff_new_pack.QphYfc/_new  2020-04-01 19:08:59.359278738 +0200
@@ -18,15 +18,12 @@
 
 %global appid net.lutris.Lutris
 Name:   lutris
-Version:0.5.4
+Version:0.5.5
 Release:0
 Summary:Manager for game installation and execution
 License:GPL-3.0-or-later
 URL:https://lutris.net
 Source0:https://lutris.net/releases/lutris_%{version}.tar.xz
-# boo#1161650: Remove xboxdrv and polkit
-Patch0: lutris-0.5.4-boo1161650-remove-polkit.patch
-Patch1: lutris-0.5.4-sort_new_with_model_fix.patch
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection
 BuildRequires:  hicolor-icon-theme
@@ -60,16 +57,13 @@
 
 %prep
 %setup -q -n %{name}
-# boo#1161650
-%patch0 -p1
-%patch1 -p1
-rm -rf share/polkit-1/
+sed -i "s|!/usr/bin/env python3|!/usr/bin/python3|" 
share/lutris/bin/lutris-wrapper
 
 %build
-CFLAGS="%{optflags}" python3 setup.py build
+%py3_build
 
 %install
-python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%py3_install
 %suse_update_desktop_file -r -i %{appid} Network FileTransfer
 %fdupes %{buildroot}%{_prefix}
 
@@ -87,7 +81,6 @@
 %doc README.rst CONTRIBUTING.md AUTHORS
 %license LICENSE
 %{_bindir}/%{name}
-%{_bindir}/lutris-wrapper
 %{_datadir}/%{name}/
 %{_datadir}/applications/%{appid}.desktop
 %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg

++ lutris_0.5.4.tar.xz -> lutris_0.5.5.tar.xz ++
 32462 lines of diff (skipped)




commit raspberrypi-firmware-dt for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package raspberrypi-firmware-dt for 
openSUSE:Factory checked in at 2020-04-01 19:07:59

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


Package is "raspberrypi-firmware-dt"

Wed Apr  1 19:07:59 2020 rev:21 rq:790469 version:2020.02.03

Changes:

--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware-dt/raspberrypi-firmware-dt.changes
  2020-03-24 22:33:55.397135509 +0100
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware-dt.new.3248/raspberrypi-firmware-dt.changes
2020-04-01 19:08:41.307270615 +0200
@@ -1,0 +2,20 @@
+Tue Mar 31 21:34:26 UTC 2020 - Petr Tesařík 
+
+- Use proper quoting for the modalias Supplements (see also
+  https://github.com/openSUSE/libzypp/issues/216).
+
+---
+Fri Mar 27 12:30:54 UTC 2020 - Petr Tesařík 
+
+- Add a modalias Supplements, so the package gets selected
+  automatically on a Raspberry Pi.
+
+---
+Thu Mar 26 10:35:55 UTC 2020 - Nicolas Patricio Saenz Julienne 

+
+- Add upstream-cma.patch unifying CMA handling on all RPis (bsc#1167761)
+- Remove rpi4-cma-overlay.dts since not needed anymore (bsc#1167761)
+- Rename emmc2bus.patch to upstream-emmc2bus.patch to mark this is a reality 
upstream
+- Rename pcie-dma-ranges.patch to upstream-pcie-dma-ranges.patch to mark this 
is a reality upstream
+
+---

Old:

  emmc2bus.patch
  pcie-dma-ranges.patch
  rpi4-cma-overlay.dts

New:

  upstream-cma.patch
  upstream-emmc2bus.patch
  upstream-pcie-dma-ranges.patch



Other differences:
--
++ raspberrypi-firmware-dt.spec ++
--- /var/tmp/diff_new_pack.PNaCq4/_old  2020-04-01 19:08:50.535274767 +0200
+++ /var/tmp/diff_new_pack.PNaCq4/_new  2020-04-01 19:08:50.539274769 +0200
@@ -25,19 +25,20 @@
 URL:https://github.com/raspberrypi/linux/
 Source: raspberrypi-firmware-dt-%{version}.tar.xz
 Source1:disable-vc4-overlay.dts
-Source2:rpi4-cma-overlay.dts
-Source3:rpi4-thermal.dts
-Source4:rpi4-gpio-names-overlay.dts
-Source5:uboot-bcm2835-pl011-overlay.dts
-Source6:rpi4-firmware-dma-ranges-overlay.dts
+Source2:rpi4-thermal.dts
+Source3:rpi4-gpio-names-overlay.dts
+Source4:uboot-bcm2835-pl011-overlay.dts
+Source5:rpi4-firmware-dma-ranges-overlay.dts
 Source100:  get-from-git.sh
-Patch0: pcie-dma-ranges.patch
-Patch1: emmc2bus.patch
+Patch0: upstream-pcie-dma-ranges.patch
+Patch1: upstream-emmc2bus.patch
+Patch2: upstream-cma.patch
 Requires:   raspberrypi-firmware
 BuildRequires:  dtc
 BuildRequires:  raspberrypi-firmware
 BuildArch:  noarch
 Conflicts:  kernel < 4.12.14
+Supplements:modalias(of:NfirmwareT*Craspberrypi%2Cbcm2835-firmwareC*)
 
 %description
 This package provides additional device tree base files as well as overlays
@@ -47,6 +48,7 @@
 %setup
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 SRCDIR=`pwd`
@@ -61,7 +63,7 @@
 done
 
 export DTC_FLAGS="-R 0 -p 0 -@ -H epapr"
-for dts in arch/arm/boot/dts/overlays/*dts %{SOURCE1} %{SOURCE2} %{SOURCE3} 
%{SOURCE4} %{SOURCE5} %{SOURCE6}; do
+for dts in arch/arm/boot/dts/overlays/*dts %{SOURCE1} %{SOURCE2} %{SOURCE3} 
%{SOURCE4} %{SOURCE5}; do
 target=$(basename ${dts%*.dts})
 target=${target%*-overlay}
 mkdir -p $PPDIR/overlays

++ upstream-cma.patch ++
>From d857f139e84b419d8a68bcaf3ce7ad3bf3d0fc11 Mon Sep 17 00:00:00 2001
From: Nicolas Saenz Julienne 
Date: Thu, 26 Mar 2020 11:30:30 +0100
Subject: [PATCH] ARM: dts: bcm283x: Unify CMA configuration

With the introduction of the Raspberry Pi 4 we were forced to explicitly
configure CMA's location, since arm64 defaults it into the ZONE_DMA32
memory area, which is not good enough to perform DMA operations on that
device. To bypass this limitation a dedicated CMA DT node was created,
explicitly indicating the acceptable memory range and size.

That said, compatibility between boards is a must on the Raspberry Pi
ecosystem so this creates a common CMA DT node so as for DT overlays to
be able to update CMA's properties regardless of the board being used.

Signed-off-by: Nicolas Saenz Julienne 
Reviewed-by: Phil Elwell 
Signed-off-by: Florian Fainelli 
---
 arch/arm/boot/dts/bcm2711-rpi-4-b.dts |  4 
 arch/arm/boot/dts/bcm2711.dtsi| 33 +++
 arch/arm/boot/dts/bcm283x.dtsi| 13 +++
 3 files changed, 26 insertions(+), 24 deletions(-)

diff --git 

commit jag for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package jag for openSUSE:Factory checked in 
at 2020-04-01 19:10:12

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


Package is "jag"

Wed Apr  1 19:10:12 2020 rev:2 rq:790255 version:0.3.6

Changes:

--- /work/SRC/openSUSE:Factory/jag/jag.changes  2020-03-30 23:05:14.352239265 
+0200
+++ /work/SRC/openSUSE:Factory/.jag.new.3248/jag.changes2020-04-01 
19:13:33.407402037 +0200
@@ -1,0 +2,8 @@
+Tue Mar 31 13:05:23 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 0.3.6
+  * Project files cleanup
+  * Renamed PNG image from editor.
+  * Added manpage and desktop files
+
+---

Old:

  jag-0.3.5.tar.bz2
  jag-icons.tar

New:

  jag-upstream-0.3.6.tar.bz2



Other differences:
--
++ jag.spec ++
--- /var/tmp/diff_new_pack.P8Dqin/_old  2020-04-01 19:13:36.723403529 +0200
+++ /var/tmp/diff_new_pack.P8Dqin/_new  2020-04-01 19:13:36.723403529 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jag
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,14 @@
 
 
 Name:   jag
-Version:0.3.5
+Version:0.3.6
 Release:0
 Summary:Arcade and Puzzle 2D Game in which you have to break all the 
target pieces
+# jag.xlabsoft.com is down
 License:GPL-3.0-or-later
 Group:  Amusements/Games/Logic
-# jag.xlabsoft.com is down
 URL:https://salsa.debian.org/games-team/jag
-Source0:
https://salsa.debian.org/games-team/jag/-/archive/%{version}/%{name}-%{version}.tar.bz2
-Source1:%{name}-icons.tar
+Source0:
https://salsa.debian.org/games-team/jag/-/archive/upstream/%{version}/%{name}-upstream-%{version}.tar.bz2
 Source2:%{name}.appdata.xml
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
@@ -78,11 +77,11 @@
 This package contains the level editor for JAG.
 
 %prep
-%setup -q -a1
+%setup -q -n %{name}-upstream-%{version}
 
 # qmake...
 sed -i 's#target.path = %{_prefix}/games/#target.path = %{_bindir}#' game.pro
-sed -i 's#target.path = %{_prefix}/games/#target.path = %{_bindir}#' 
src/editor/editor.pro
+sed -i 's#target.path = %{_prefix}/games/#target.path = %{_bindir}#' 
src/editor/jag-editor.pro
 
 %build
 %qmake5
@@ -101,18 +100,16 @@
 %qmake5_install
 popd
 
-# install icons
-for i in 22 32 48 64 72 96 128 256 ; do
-  install -Dm 0644 icons/%{name}_${i}x${i}.png 
%{buildroot}%{_datadir}/icons/hicolor/${i}x${i}/apps/%{name}.png
-  install -Dm 0644 icons/%{name}-editor_${i}x${i}.png 
%{buildroot}%{_datadir}/icons/hicolor/${i}x${i}/apps/%{name}-editor.png
-done
-
-# install Desktop files
-install -Dm 0644 debian/%{name}.desktop 
%{buildroot}%{_datadir}/applications/%{name}.desktop
+# Install the desktop files
+install -Dm 0644 src/jag.desktop 
%{buildroot}%{_datadir}/applications/%{name}.desktop
 
 %suse_update_desktop_file -c %{name}-editor "JAG Level Editor" JAG jag-editor 
jag-editor "Game;LogicGame;"
 
-# install software gallery metadata
+# Install icons for applications menus
+install -Dm 0644 src/images/jag.png %{buildroot}%{_datadir}/pixmaps/jag.png
+install -Dm 0644 src/editor/jag-editor.png 
%{buildroot}%{_datadir}/pixmaps/jag-editor.png
+
+# Install software gallery metadata
 install -Dm 0644 %{SOURCE2} %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml
 
 %files
@@ -122,7 +119,7 @@
 %{_bindir}/%{name}
 %{_datadir}/appdata/%{name}.appdata.xml
 %{_datadir}/applications/%{name}.desktop
-%{_datadir}/icons/hicolor/*/apps/%{name}.png
+%{_datadir}/pixmaps/jag.png
 
 %files data
 %license LICENSE
@@ -135,6 +132,6 @@
 %{_bindir}/jag-editor
 %{_datadir}/applications/jag-editor.desktop
 %{_datadir}/games/%{name}/editor/
-%{_datadir}/icons/hicolor/*/apps/%{name}-editor.png
+%{_datadir}/pixmaps/jag-editor.png
 
 %changelog




commit gnuhealth for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package gnuhealth for openSUSE:Factory 
checked in at 2020-04-01 19:09:51

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


Package is "gnuhealth"

Wed Apr  1 19:09:51 2020 rev:37 rq:790258 version:3.6.3

Changes:

--- /work/SRC/openSUSE:Factory/gnuhealth/gnuhealth.changes  2020-02-29 
21:25:17.662609101 +0100
+++ /work/SRC/openSUSE:Factory/.gnuhealth.new.3248/gnuhealth.changes
2020-04-01 19:13:04.327388954 +0200
@@ -1,0 +2,21 @@
+Tue Mar 31 16:09:25 UTC 2020 - Axel Braun 
+
+- update for boo#1167126, 1167128 
+
+---
+Tue Mar 17 13:32:03 UTC 2020 - Axel Braun 
+
+- clean up of spec file to get rid of warnings
+  added gnuhealth-rpmlintrc 
+
+---
+Sat Mar 14 15:24:49 UTC 2020 - Axel Braun 
+
+- gnuhealth-control 3.6.3 - added chmod after getlang command
+
+---
+Mon Mar  2 19:25:36 UTC 2020 - Axel Braun 
+
+- modified getlang to exclude 2 directories (otherwise initialization fails 
after language installation) 
+
+---

New:

  gnuhealth-rpmlintrc



Other differences:
--
++ gnuhealth.spec ++
--- /var/tmp/diff_new_pack.MYNloc/_old  2020-04-01 19:13:06.219389805 +0200
+++ /var/tmp/diff_new_pack.MYNloc/_new  2020-04-01 19:13:06.223389807 +0200
@@ -33,14 +33,15 @@
 BuildRequires:  trytond
 
 URL:http://health.gnu.org
-##ource0:http://ftp.gnu.org/gnu/health/%{name}-%{version}.tar.gz
-Source: %{name}-%{version}.tar.gz
+Source0:%{name}-%{version}.tar.gz
+###http://ftp.gnu.org/gnu/health/%{name}-%{version}.tar.gz
 Source1:GNUHealth.README.SUSE
 Source2:gnuhealth-control
 Source3:gnuhealth.service
 Source4:gnuhealth-webdav@.service
 Source5:openSUSE-gnuhealth-setup
 Source6:gnuhealth
+Source7:gnuhealth-rpmlintrc
 Patch0: shebang.diff
 ##atch1: xmlfix.diff
 ##atch2: demo.diff
@@ -135,11 +136,19 @@
 #delete empty demo directory
 rm -rf scripts/demo
 
-mkdir -p $RPM_BUILD_ROOT%{_unitdir}
-install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_unitdir}/%{name}.service
-install -p -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_unitdir}/%{name}-webdav@.service
-
-mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/tryton
+mkdir -p %{buildroot}%{_unitdir}
+install -p -m 644 %{SOURCE3} %{buildroot}%{_unitdir}/%{name}.service
+install -p -m 644 %{SOURCE4} %{buildroot}%{_unitdir}/%{name}-webdav@.service
+
+mkdir -p %{buildroot}%{_sysconfdir}/tryton
+
+#remove double license file:
+rm backend/fhir/client/COPYING
+
+#Move FHIR serer to examples directory
+mkdir -p -m 755 %{buildroot}%{_docdir}/%{name}/examples/
+mv backend/fhir* %{buildroot}%{_docdir}/%{name}/examples/.
+rmdir backend
 
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
@@ -169,23 +178,25 @@
 
 %preun
 %service_del_preun gnuhealth.service
+%service_del_preun gnuhealth-webdav@.service
 
 %postun
 %service_del_postun gnuhealth.service
+%service_del_postun gnuhealth-webdav@.service
 
 %files -n %{name}-orthanc
 %{python3_sitelib}/%{name}_orthanc*
 %{python3_sitelib}/trytond/modules/health_orthanc*
 
 %files 
-%defattr(744,root,root)
 %{_bindir}/gnuhealth-control
 %{_bindir}/openSUSE-gnuhealth-setup
 %{_bindir}/install_demo_database.sh
 %{_unitdir}/%{name}.service
 %{_unitdir}/%{name}-webdav@.service
-%defattr(-,root,root)
-%doc README Changelog gnuhealth-setup version gnuhealthrc 
GNUHealth.README.SUSE scripts/* backend/* config/* doc/*
+%doc README Changelog gnuhealth-setup version gnuhealthrc 
GNUHealth.README.SUSE scripts/* config/* doc/*
+%{_docdir}/%{name}/examples* 
+%dir %{_sysconfdir}/tryton
 %license COPYING
 %exclude %{python3_sitelib}/%{name}_orthanc*
 %exclude %{python3_sitelib}/trytond/modules/health_orthanc*

++ gnuhealth-3.6.3.tar.gz ++
/work/SRC/openSUSE:Factory/gnuhealth/gnuhealth-3.6.3.tar.gz 
/work/SRC/openSUSE:Factory/.gnuhealth.new.3248/gnuhealth-3.6.3.tar.gz differ: 
char 5, line 1

++ gnuhealth-control ++
--- /var/tmp/diff_new_pack.MYNloc/_old  2020-04-01 19:13:06.299389841 +0200
+++ /var/tmp/diff_new_pack.MYNloc/_new  2020-04-01 19:13:06.299389841 +0200
@@ -1,13 +1,13 @@
 #!/bin/bash
 
 # gnuhealth-control
-# The GNU Health control center 
+# The GNU Health control center for openSUSE Installations 
 
 ##
 #
 #GNU Health: The Free Health and Hospital Information System
 #Copyright (C) 2008-2015 Luis Falcon 
-#Adaption to 

commit python-fanficfare for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-fanficfare for 
openSUSE:Factory checked in at 2020-04-01 19:13:04

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


Package is "python-fanficfare"

Wed Apr  1 19:13:04 2020 rev:18 rq:790351 version:3.17.0+git.1585684191.22d2ad45

Changes:

--- /work/SRC/openSUSE:Factory/python-fanficfare/python-fanficfare.changes  
2020-03-03 10:20:35.251190023 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-fanficfare.new.3248/python-fanficfare.changes
2020-04-01 19:14:23.479424565 +0200
@@ -1,0 +2,15 @@
+Tue Mar 31 20:32:37 UTC 2020 - mc...@suse.com
+
+- Update to version 3.17.0+git.1585684191.22d2ad45:
+  * fictionalley.org needs a slow_down_sleep_time or it starts rejecting conns.
+  * Bump Test Version 3.17.7
+  * Fix Description parsing with series/universe/contest links in 
adapter_storiesonlinenet.
+  * Revert PR#478
+  * Add support for fictionalley.ikeran.org
+  * Remove extra spaces from replace_metadata examples
+  * Accept https URLs for adapter_wwwutopiastoriescom, but don't use 
https--doesn't work with python.
+  * Bump Test Version 3.17.6
+  * Fix for adapter_ficbooknet when no ships/characters.
+  * Bump Test Version 3.17.5
+
+---

Old:

  FanFicFare-3.16.0.tar.gz

New:

  FanFicFare-3.17.0+git.1585684191.22d2ad45.tar.xz
  _service
  _servicedata



Other differences:
--
++ python-fanficfare.spec ++
--- /var/tmp/diff_new_pack.qFLmFM/_old  2020-04-01 19:14:24.195424888 +0200
+++ /var/tmp/diff_new_pack.qFLmFM/_new  2020-04-01 19:14:24.199424890 +0200
@@ -21,13 +21,14 @@
 %define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fanficfare
-Version:3.16.0
+Version:3.17.0+git.1585684191.22d2ad45
 Release:0
 Summary:Tool for making eBooks from stories on fanfiction and other 
web sites
 License:GPL-3.0-only
 Group:  Development/Languages/Python
 URL:https://github.com/JimmXinu/FanFicFare
-Source: 
https://github.com/JimmXinu/%{modname}/archive/v%{version}/%{modname}-%{version}.tar.gz
+# Source: 
https://github.com/JimmXinu/%%{modname}/archive/v%%{version}/%%{modname}-%%{version}.tar.gz
+Source: %{modname}-%{version}.tar.xz
 BuildRequires:  %{python_module beautifulsoup4}
 BuildRequires:  %{python_module chardet}
 BuildRequires:  %{python_module html2text}

++ _service ++

  
   3.17.0+git
   https://github.com/JimmXinu/FanFicFare.git
git
enable
  
  
*.tar
xz
  
  

++ _servicedata ++


https://github.com/JimmXinu/FanFicFare.git
  22d2ad4564f50d9949aae1ebc10a6939a75e8d9b


commit prometheus-sap_host_exporter for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package prometheus-sap_host_exporter for 
openSUSE:Factory checked in at 2020-04-01 19:11:58

Comparing /work/SRC/openSUSE:Factory/prometheus-sap_host_exporter (Old)
 and  /work/SRC/openSUSE:Factory/.prometheus-sap_host_exporter.new.3248 
(New)


Package is "prometheus-sap_host_exporter"

Wed Apr  1 19:11:58 2020 rev:2 rq:790273 version:0.3.0+git.1585067146.33dcd8a

Changes:

--- 
/work/SRC/openSUSE:Factory/prometheus-sap_host_exporter/prometheus-sap_host_exporter.changes
2020-03-11 19:08:34.936112934 +0100
+++ 
/work/SRC/openSUSE:Factory/.prometheus-sap_host_exporter.new.3248/prometheus-sap_host_exporter.changes
  2020-04-01 19:13:52.603410674 +0200
@@ -1,0 +2,44 @@
+Mon Mar 23 18:35:55 2020 UTC - shap-st...@suse.de
+
+- Release 0.3.0
+
+  ## Added
+  - Alert metrics collector (#21) 
+  - `make obs-workdir` target can now handle custom Git branches and forks via 
environment variables (#25)
+
+  ## Changed
+  - Some metric now properly use the `Counter` type instead of `Gauge` and are 
more semantically correct. (#23)
+  - `sap-control-url` setting now has a default value and doesn't require 
users to explicitly input the URL scheme. (#26)
+  - `go_*` debug metrics are only shown when the log level is `debug` or 
higher. (#24) 
+  - Refactored configuration code (#26)
+
+  ## Fixed
+  - Enqueue Server metrics are now properly documented (#23)
+  - Documentation can be fully browsed from the README ToC (#28)
+
+---
+Thu Mar 19 11:00:29 2020 UTC - shap-st...@suse.de
+
+- Release 0.2.3
+
+  # Fixed:
+  - Fix failure of enabling service in deployment 
(https://github.com/SUSE/sap_host_exporter/pull/20)
+
+---
+Wed Mar 18 10:49:59 2020 UTC - shap-st...@suse.de
+
+- Release 0.2.1
+
+  # fixed: 
+
+  - fix rpm macro on 
obs/packaging(https://github.com/SUSE/sap_host_exporter/pull/18)
+
+---
+Tue Mar 17 16:38:39 2020 UTC - shap-st...@suse.de
+
+- Release 0.2.0
+
+  ## Added
+  - Add the ability to run multiple systemd instances with dedicated config 
files. (#16)
+
+---

Old:

  prometheus-sap_host_exporter-0.1.0.tar.gz

New:

  prometheus-sap_host_exporter-0.3.0+git.1585067146.33dcd8a.tar.gz



Other differences:
--
++ prometheus-sap_host_exporter.spec ++
--- /var/tmp/diff_new_pack.XNhWSf/_old  2020-04-01 19:13:53.835411228 +0200
+++ /var/tmp/diff_new_pack.XNhWSf/_new  2020-04-01 19:13:53.835411228 +0200
@@ -1,26 +1,29 @@
 #
-# Copyright 2019-2020 SUSE LLC
+# spec file for package prometheus-sap_host_exporter
 #
-# 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
+# Copyright (c) 2020 SUSE LLC
 #
-#https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# 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 https://bugs.opensuse.org/
 #
+
+
 Name:   prometheus-sap_host_exporter
 # Version will be processed via set_version source service
-Version:0.1.0
+Version:0.3.0+git.1585067146.33dcd8a
 Release:0
-License:Apache-2.0
 Summary:Prometheus exporter for SAP systems (a.k.a. NetWeaver)
+License:Apache-2.0
 Group:  System/Monitoring
-Url:https://github.com/SUSE/sap_host_exporter
+URL:https://github.com/SUSE/sap_host_exporter
 Source: %{name}-%{version}.tar.gz
 Source1:vendor.tar.gz
 ExclusiveArch:  aarch64 x86_64 ppc64le s390x
@@ -58,23 +61,26 @@
 install -D -m 0755 %{shortname} "%{buildroot}%{_bindir}/%{shortname}"
 
 # Install the systemd unit
-install -D -m 0644 

commit susepaste for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package susepaste for openSUSE:Factory 
checked in at 2020-04-01 19:12:29

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


Package is "susepaste"

Wed Apr  1 19:12:29 2020 rev:10 rq:790650 version:0.6

Changes:

--- /work/SRC/openSUSE:Factory/susepaste/susepaste.changes  2019-08-28 
18:37:00.909267711 +0200
+++ /work/SRC/openSUSE:Factory/.susepaste.new.3248/susepaste.changes
2020-04-01 19:14:03.047415373 +0200
@@ -1,0 +2,7 @@
+Tue Mar 31 17:24:07 UTC 2020 - Dominique Leuenberger 
+
+- Add 0001-susepaste-Fix-parsing-of-returned-Location-header.patch:
+  fix parsing of location header returned by susepaste.org
+  (boo#116669).
+
+---

New:

  0001-susepaste-Fix-parsing-of-returned-Location-header.patch



Other differences:
--
++ susepaste.spec ++
--- /var/tmp/diff_new_pack.VDlK81/_old  2020-04-01 19:14:04.439415999 +0200
+++ /var/tmp/diff_new_pack.VDlK81/_new  2020-04-01 19:14:04.439415999 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package susepaste
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,8 +22,9 @@
 Summary:Script for using openSUSE paste
 License:GPL-3.0-only
 Group:  Productivity/Other
-URL:http://susepaste.org
+URL:https://susepaste.org
 Source0:susepaste-script-%{version}.tar.bz2
+Patch0: 0001-susepaste-Fix-parsing-of-returned-Location-header.patch
 Requires:   bash
 Requires:   curl
 BuildArch:  noarch
@@ -47,6 +48,7 @@
 
 %prep
 %setup -q -n susepaste-script-%{version}
+%patch0 -p2
 mv gpl-3.0.txt COPYING
 
 %build
@@ -64,15 +66,15 @@
   %{buildroot}%{_datadir}/susepaste/lang-mappings.sed
 
 %files
-%doc COPYING
+%license COPYING
 %{_bindir}/%{name}
 %{_datadir}/susepaste/lang-mappings.sed
 %dir %{_datadir}/susepaste
-%{_mandir}/man1/%{name}.1%{ext_man}
+%{_mandir}/man1/%{name}.1%{?ext_man}
 
 %files screenshot
-%doc COPYING
+%license COPYING
 %{_bindir}/%{name}-screenshot
-%{_mandir}/man1/%{name}-screenshot.1%{ext_man}
+%{_mandir}/man1/%{name}-screenshot.1%{?ext_man}
 
 %changelog

++ 0001-susepaste-Fix-parsing-of-returned-Location-header.patch ++
>From 86a31fca451c5242f216f6a7eb87ec43de749925 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger 
Date: Tue, 31 Mar 2020 19:12:44 +0200
Subject: [PATCH] susepaste: Fix parsing of returned Location header

---
 script/susepaste| 2 +-
 script/susepaste-screenshot | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/script/susepaste b/script/susepaste
index f2fceec..b09ba16 100755
--- a/script/susepaste
+++ b/script/susepaste
@@ -121,7 +121,7 @@ URL="`
 curl -v -F "$TYPE=$INPUT" -F "title=$TITLE"  -F "expire=$EXPIRE"   \
 -F "name=$NICK"   -F "submit=submit" -F "lang=$SYNTAX" \
$API_KEY   \
-${SCHEMA}://susepaste.org 2>&1 | sed -n 's|<\ Location:\ ||p' `"
+${SCHEMA}://susepaste.org 2>&1 | sed -n 's|<\ [lL]ocation:\ ||p' `"
 
 # Check the results and inform the user
 
diff --git a/script/susepaste-screenshot b/script/susepaste-screenshot
index cb75337..057d41f 100755
--- a/script/susepaste-screenshot
+++ b/script/susepaste-screenshot
@@ -96,7 +96,7 @@ URL="`
 curl -v -F "file=@$TMP" -F "title=$TITLE"  -F "expire=$EXPIRE" \
 -F "name=$NICK" -F "submit=submit" -F "lang=image" \
 $API_KEY   \
-http://susepaste.org 2>&1 | sed -n 's|<\ Location:\ ||p' `"
+http://susepaste.org 2>&1 | sed -n 's|<\ [lL]ocation:\ ||p' `"
 
 rm -f "$TMP"
 
-- 
2.26.0




commit libvterm for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package libvterm for openSUSE:Factory 
checked in at 2020-04-01 19:11:29

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


Package is "libvterm"

Wed Apr  1 19:11:29 2020 rev:8 rq:790279 version:0.1.3

Changes:

--- /work/SRC/openSUSE:Factory/libvterm/libvterm.changes2020-01-12 
23:26:05.434853994 +0100
+++ /work/SRC/openSUSE:Factory/.libvterm.new.3248/libvterm.changes  
2020-04-01 19:13:50.279409629 +0200
@@ -1,0 +2,18 @@
+Mon Mar 30 20:04:17 CEST 2020 - Matej Cepl 
+
+- All my previous builds were just figments of my imagination,
+  and neovim upstream claims one has to use 0.1.3 only. So,
+  downgrading.
+
+---
+Mon Mar 30 19:19:23 CEST 2020 - Matej Cepl 
+
+- Update to 0.1.3+bzr767:
+  - Remove debugging print on DECRQSS
+  - Regenerate fullwidth.inc for latest Unicode
+  - A much more efficient find-wide-chars.pl
+  - Accept OSC ... ST without an intermediate semicolon after the
+command number
+  - Fix printf argument types (gh#vim/vim#5456)
+
+---

Old:

  libvterm-0~bzr762.tar.gz

New:

  libvterm-0.1.3.tar.gz



Other differences:
--
++ libvterm.spec ++
--- /var/tmp/diff_new_pack.6ygLHp/_old  2020-04-01 19:13:50.959409934 +0200
+++ /var/tmp/diff_new_pack.6ygLHp/_new  2020-04-01 19:13:50.963409936 +0200
@@ -17,17 +17,18 @@
 
 
 %define sover 0
-%define relno 762
+%{?!make_build:%define make_build %{__make} %{_make_output_sync} 
%{?_smp_mflags} %{_make_verbose}}
+%{?!_make_output_sync:%define _make_output_sync %(! %{__make} --version -O 
>/dev/null 2>&1 || echo -O)}
+%{?!_make_verbose:%define _make_verbose V=1 VERBOSE=1}
 
 Name:   libvterm
-Version:0.1.3+bzr762
+Version:0.1.3
 Release:0
 Summary:An abstract library implementation of a VT220/xterm/ECMA-48 
terminal emulator
 License:MIT
 Group:  Development/Libraries/C and C++
 URL:https://launchpad.net/libvterm
-# https://bazaar.launchpad.net/~libvterm/libvterm/trunk/tarball/%%{relno}
-Source: %{name}-0~bzr%{relno}.tar.gz
+Source: 
https://launchpad.net/libvterm/trunk/v0.1/+download/libvterm-%{version}.tar.gz
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 
@@ -61,7 +62,7 @@
 This package contains tools for libvterm.
 
 %prep
-%setup -q -n \~libvterm/libvterm/trunk
+%setup -q
 
 %build
 %make_build PREFIX=%{_prefix} \

++ libvterm-0~bzr762.tar.gz -> libvterm-0.1.3.tar.gz ++
 23754 lines of diff (skipped)




commit httpie for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package httpie for openSUSE:Factory checked 
in at 2020-04-01 19:12:47

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


Package is "httpie"

Wed Apr  1 19:12:47 2020 rev:5 rq:790295 version:2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/httpie/httpie.changes2020-01-20 
22:56:41.975372479 +0100
+++ /work/SRC/openSUSE:Factory/.httpie.new.3248/httpie.changes  2020-04-01 
19:14:14.503420527 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 16:59:11 UTC 2020 - Matej Cepl 
+
+- Don't use %python3_only command, but properly use alternatives.
+
+---



Other differences:
--
++ httpie.spec ++
--- /var/tmp/diff_new_pack.pQawGB/_old  2020-04-01 19:14:16.403421382 +0200
+++ /var/tmp/diff_new_pack.pQawGB/_new  2020-04-01 19:14:16.403421382 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package httpie
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,7 +29,6 @@
 Source1:http.1
 Patch0: httpie-adjust-requirements.patch
 BuildRequires:  %{python_module Pygments >= 2.1.3}
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest-httpbin}
 BuildRequires:  %{python_module pytest}
@@ -43,6 +42,8 @@
 Suggests:   python-colorama >= 0.2.4
 Provides:   httpie
 BuildArch:  noarch
+Requires(post):   update-alternatives
+Requires(postun):  update-alternatives
 %python_subpackages
 
 %description
@@ -66,19 +67,27 @@
 %install
 export LC_CTYPE=en_US.UTF-8
 %python_install
+%python_clone -a %{buildroot}%{_bindir}/http
+%python_clone -a %{buildroot}%{_bindir}/https
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 install -D -m 0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/http.1
 
 %check
 export LC_CTYPE=en_US.UTF-8
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_version}
+%pytest
+
+%post
+%python_install_alternative http https
+
+%postun
+%python_uninstall_alternative http https
 
 %files %{python_files}
 %doc AUTHORS.rst CHANGELOG.rst README.rst
 %license LICENSE
-%python3_only %{_bindir}/http
-%python3_only %{_bindir}/https
+%python_alternative %{_bindir}/http
+%python_alternative %{_bindir}/https
 %{python_sitelib}/*
-%{_mandir}/man1/http.1%{ext_man}
+%{_mandir}/man1/http.1%{?ext_man}
 
 %changelog




commit armnn for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package armnn for openSUSE:Factory checked 
in at 2020-04-01 19:10:51

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


Package is "armnn"

Wed Apr  1 19:10:51 2020 rev:7 rq:790253 version:20.02

Changes:

--- /work/SRC/openSUSE:Factory/armnn/armnn.changes  2020-03-24 
22:38:54.097280675 +0100
+++ /work/SRC/openSUSE:Factory/.armnn.new.3248/armnn.changes2020-04-01 
19:13:43.651406646 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 15:23:29 UTC 2020 - Guillaume GARDET 
+
+- Disable RPATH to fix build on Leap15.2/SLE15SP2
+
+---



Other differences:
--
++ armnn.spec ++
--- /var/tmp/diff_new_pack.UnRdEN/_old  2020-04-01 19:13:46.575407962 +0200
+++ /var/tmp/diff_new_pack.UnRdEN/_new  2020-04-01 19:13:46.579407963 +0200
@@ -386,6 +386,7 @@
 %endif
 %endif
 %cmake \
+  -DCMAKE_SKIP_RPATH=True \
   -DSHARED_BOOST=1 \
   -DCMAKE_CXX_FLAGS:STRING="%{optflags} -pthread $CXX_ADDITIONAL_FLAGS 
-Wno-error=implicit-fallthrough -Wno-error=unused-parameter" \
   -DBOOST_LIBRARYDIR=%{_libdir} \




commit netty3 for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package netty3 for openSUSE:Factory checked 
in at 2020-04-01 19:18:56

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


Package is "netty3"

Wed Apr  1 19:18:56 2020 rev:4 rq:790525 version:3.10.6

Changes:

--- /work/SRC/openSUSE:Factory/netty3/netty3.changes2019-11-28 
13:51:04.506690171 +0100
+++ /work/SRC/openSUSE:Factory/.netty3.new.3248/netty3.changes  2020-04-01 
19:19:20.507558205 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 06:02:58 UTC 2020 - Fridrich Strba 
+
+- Migrate away from the felix OSGi implementation to to the latest
+  org.osgi one
+
+---



Other differences:
--
++ netty3.spec ++
--- /var/tmp/diff_new_pack.DHOvah/_old  2020-04-01 19:19:21.611558701 +0200
+++ /var/tmp/diff_new_pack.DHOvah/_new  2020-04-01 19:19:21.611558701 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package netty3
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -36,16 +36,16 @@
 BuildRequires:  mvn(commons-logging:commons-logging)
 BuildRequires:  mvn(io.netty:netty-tcnative)
 BuildRequires:  mvn(javax.servlet:javax.servlet-api)
-BuildRequires:  mvn(log4j:log4j)
+BuildRequires:  mvn(log4j:log4j:1.2.16)
 BuildRequires:  mvn(org.apache.ant:ant)
 BuildRequires:  mvn(org.apache.ant:ant-launcher)
 BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
-BuildRequires:  mvn(org.apache.felix:org.osgi.compendium)
-BuildRequires:  mvn(org.apache.felix:org.osgi.core)
 BuildRequires:  mvn(org.apache.maven.plugins:maven-antrun-plugin)
 BuildRequires:  mvn(org.bouncycastle:bcpkix-jdk15on)
 BuildRequires:  mvn(org.jboss.logging:jboss-logging)
 BuildRequires:  mvn(org.jboss.marshalling:jboss-marshalling)
+BuildRequires:  mvn(org.osgi:osgi.cmpn)
+BuildRequires:  mvn(org.osgi:osgi.core)
 BuildRequires:  mvn(org.slf4j:slf4j-api)
 BuildRequires:  mvn(org.sonatype.oss:oss-parent:pom:)
 Requires:   netty-tcnative
@@ -98,6 +98,10 @@
 # Force use servlet 3.1 apis
 %pom_change_dep :servlet-api javax.servlet:javax.servlet-api:3.1.0
 
+# use latest OSGi implementation
+%pom_change_dep :org.osgi.core org.osgi:osgi.core
+%pom_change_dep :org.osgi.compendium org.osgi:osgi.cmpn
+
 # Uneeded tasks
 %pom_remove_plugin :maven-assembly-plugin
 %pom_remove_plugin :maven-source-plugin




commit tycho for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package tycho for openSUSE:Factory checked 
in at 2020-04-01 19:19:08

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


Package is "tycho"

Wed Apr  1 19:19:08 2020 rev:3 rq:790528 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/tycho/tycho.changes  2020-03-18 
12:40:55.084784872 +0100
+++ /work/SRC/openSUSE:Factory/.tycho.new.3248/tycho.changes2020-04-01 
19:19:27.775561475 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 08:53:05 UTC 2020 - Fridrich Strba 
+
+- Modified patch:
+  * tycho-use-custom-resolver.patch
++ fix build against the new felix-scr version
+
+---



Other differences:
--
++ tycho-use-custom-resolver.patch ++
--- /var/tmp/diff_new_pack.kqjodt/_old  2020-04-01 19:19:29.767562371 +0200
+++ /var/tmp/diff_new_pack.kqjodt/_new  2020-04-01 19:19:29.767562371 +0200
@@ -354,8 +354,8 @@



-+  
-+  
++  
++  
 +  
 
  




commit opennlp for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package opennlp for openSUSE:Factory checked 
in at 2020-04-01 19:19:00

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


Package is "opennlp"

Wed Apr  1 19:19:00 2020 rev:2 rq:790526 version:1.5.3

Changes:

--- /work/SRC/openSUSE:Factory/opennlp/opennlp.changes  2020-03-05 
23:19:16.385210902 +0100
+++ /work/SRC/openSUSE:Factory/.opennlp.new.3248/opennlp.changes
2020-04-01 19:19:22.791559232 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 06:27:06 UTC 2020 - Fridrich Strba 
+
+- Migrate away from the old felix-osgi implementation to OSGi r7
+
+---



Other differences:
--
++ opennlp.spec ++
--- /var/tmp/diff_new_pack.Lpyux0/_old  2020-04-01 19:19:23.419559515 +0200
+++ /var/tmp/diff_new_pack.Lpyux0/_new  2020-04-01 19:19:23.423559516 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package opennlp
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,8 @@
 BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
 BuildRequires:  mvn(org.apache.uima:uimaj-core)
 BuildRequires:  mvn(org.apache:apache:pom:)
-BuildRequires:  mvn(org.osgi:org.osgi.compendium)
-BuildRequires:  mvn(org.osgi:org.osgi.core)
+BuildRequires:  mvn(org.osgi:osgi.cmpn)
+BuildRequires:  mvn(org.osgi:osgi.core)
 BuildArch:  noarch
 
 %description
@@ -74,6 +74,10 @@
 find . -name '*.bat' -print -delete
 find . -name '*.class' -print -delete
 
+# use latest OSGi implementation
+%pom_change_dep -r :org.osgi.core org.osgi:osgi.core opennlp
+%pom_change_dep -r :org.osgi.compendium org.osgi:osgi.cmpn opennlp
+
 %pom_remove_plugin -r :apache-rat-plugin opennlp
 %pom_remove_plugin -r :maven-dependency-plugin opennlp
 %pom_remove_plugin -r :maven-eclipse-plugin opennlp




commit woodstox-core for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package woodstox-core for openSUSE:Factory 
checked in at 2020-04-01 19:19:15

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


Package is "woodstox-core"

Wed Apr  1 19:19:15 2020 rev:3 rq:790529 version:6.1.1

Changes:

--- /work/SRC/openSUSE:Factory/woodstox-core/woodstox-core.changes  
2019-06-06 18:18:06.120672329 +0200
+++ /work/SRC/openSUSE:Factory/.woodstox-core.new.3248/woodstox-core.changes
2020-04-01 19:19:31.483563143 +0200
@@ -1,0 +2,11 @@
+Tue Mar 31 06:35:08 UTC 2020 - Fridrich Strba 
+
+- Upgrade to upstream version 6.1.1
+- Removed patch:
+  * 0001-stax2-api.patch
++ Not needed any more with this version
+- Added patch:
+  * 0001-Allow-building-against-OSGi-APIs-newer-than-R4.patch
++ Migrate build from felix-osgi-core to osgi-core
+
+---

Old:

  0001-stax2-api.patch
  woodstox-core-5.2.0.tar.gz

New:

  0001-Allow-building-against-OSGi-APIs-newer-than-R4.patch
  woodstox-core-6.1.1.tar.gz



Other differences:
--
++ woodstox-core.spec ++
--- /var/tmp/diff_new_pack.KCcQBP/_old  2020-04-01 19:19:32.563563629 +0200
+++ /var/tmp/diff_new_pack.KCcQBP/_new  2020-04-01 19:19:32.563563629 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package woodstox
+# spec file for package woodstox-core
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,25 +19,25 @@
 %global base_name woodstox
 %global core_name %{base_name}-core
 Name:   %{core_name}
-Version:5.2.0
+Version:6.1.1
 Release:0
 Summary:XML processor
 License:Apache-2.0
 Group:  Development/Libraries/Java
 URL:https://github.com/FasterXML/woodstox
 Source0:
https://github.com/FasterXML/%{base_name}/archive/%{name}-%{version}.tar.gz
-Patch0: 0001-stax2-api.patch
+Patch0: 0001-Allow-building-against-OSGi-APIs-newer-than-R4.patch
 BuildRequires:  fdupes
 BuildRequires:  maven-local
 BuildRequires:  mvn(com.fasterxml:oss-parent:pom:)
-BuildRequires:  mvn(javax.xml.stream:stax-api)
 BuildRequires:  mvn(junit:junit)
 BuildRequires:  mvn(net.java.dev.msv:msv-core)
-BuildRequires:  mvn(net.java.dev.msv:msv-rngconverter)
 BuildRequires:  mvn(net.java.dev.msv:xsdlib)
 BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
-BuildRequires:  mvn(org.apache.felix:org.osgi.core)
+BuildRequires:  mvn(org.apache.maven.plugins:maven-shade-plugin)
 BuildRequires:  mvn(org.codehaus.woodstox:stax2-api)
+BuildRequires:  mvn(org.osgi:osgi.core)
+BuildRequires:  mvn(relaxngDatatype:relaxngDatatype)
 BuildArch:  noarch
 
 %description
@@ -58,19 +58,20 @@
 
 %patch0 -p1
 
-%pom_xpath_inject 
'pom:plugin[pom:artifactId="maven-bundle-plugin"]/pom:configuration' '
-
-{local-packages}
-'
+%pom_remove_plugin :nexus-staging-maven-plugin
+
+# we don't care about Java 9 modules (yet)
+%pom_remove_plugin :moditect-maven-plugin
+
+# replace felix-osgi-core with osgi-core
+%pom_change_dep -r :org.osgi.core org.osgi:osgi.core
 
 %{mvn_alias} ":{woodstox-core}" :@1-lgpl :@1-asl :wstx-asl :wstx-lgpl \
 org.codehaus.woodstox:@1 org.codehaus.woodstox:@1-asl \
 org.codehaus.woodstox:@1-lgpl org.codehaus.woodstox:wstx-lgpl \
 org.codehaus.woodstox:wstx-asl
-%{mvn_file} : %{name}{,-asl,-lgpl}
 
-# Fails even when using online maven build
-rm ./src/test/java/org/codehaus/stax/test/stream/TestNamespaces.java
+%{mvn_file} : %{name}{,-asl,-lgpl}
 
 %build
 %{mvn_build} -f -- -Dsource=6

++ 0001-Allow-building-against-OSGi-APIs-newer-than-R4.patch ++
>From 46dbf7151b5d8b1a854863305297cc7b4a70af44 Mon Sep 17 00:00:00 2001
From: Mat Booth 
Date: Wed, 18 Sep 2019 16:00:51 +0100
Subject: [PATCH] Allow building against OSGi APIs newer than R4

---
 .../ctc/wstx/osgi/WstxBundleActivator.java| 23 ---
 1 file changed, 20 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/ctc/wstx/osgi/WstxBundleActivator.java 
b/src/main/java/com/ctc/wstx/osgi/WstxBundleActivator.java
index 0ad8402..26b1f0f 100644
--- a/src/main/java/com/ctc/wstx/osgi/WstxBundleActivator.java
+++ b/src/main/java/com/ctc/wstx/osgi/WstxBundleActivator.java
@@ -1,5 +1,9 @@
 package com.ctc.wstx.osgi;
 
+import java.util.Dictionary;
+import java.util.Hashtable;
+import java.util.Properties;
+
 import org.osgi.framework.BundleActivator;
 import org.osgi.framework.BundleContext;
 
@@ -27,16 +31,29 @@ public class WstxBundleActivator
 

commit osgi-core for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package osgi-core for openSUSE:Factory 
checked in at 2020-04-01 19:18:28

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


Package is "osgi-core"

Wed Apr  1 19:18:28 2020 rev:2 rq:790501 version:7.0.0

Changes:

--- /work/SRC/openSUSE:Factory/osgi-core/osgi-core.changes  2019-02-28 
21:39:07.265626641 +0100
+++ /work/SRC/openSUSE:Factory/.osgi-core.new.3248/osgi-core.changes
2020-04-01 19:18:48.147543645 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 08:51:17 UTC 2020 - Fridrich Strba 
+
+- Update to upstream version 7.0.0
+
+---

Old:

  osgi.core-6.0.0-sources.jar
  osgi.core-6.0.0.pom

New:

  LICENSE-2.0
  osgi.core-7.0.0-sources.jar
  osgi.core-7.0.0.pom



Other differences:
--
++ osgi-core.spec ++
--- /var/tmp/diff_new_pack.6Zta03/_old  2020-04-01 19:18:49.383544201 +0200
+++ /var/tmp/diff_new_pack.6Zta03/_new  2020-04-01 19:18:49.387544203 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package osgi-core
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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:   osgi-core
-Version:6.0.0
+Version:7.0.0
 Release:0
 Summary:OSGi Core API
 License:Apache-2.0
@@ -25,7 +25,8 @@
 URL:https://www.osgi.org
 Source0:
https://repo1.maven.org/maven2/org/osgi/osgi.core/%{version}/osgi.core-%{version}-sources.jar
 Source1:
https://repo1.maven.org/maven2/org/osgi/osgi.core/%{version}/osgi.core-%{version}.pom
-Source2:%{name}-build.xml
+Source2:http://www.apache.org/licenses/LICENSE-2.0
+Source3:%{name}-build.xml
 BuildRequires:  ant
 BuildRequires:  fdupes
 BuildRequires:  javapackages-local
@@ -34,7 +35,7 @@
 BuildArch:  noarch
 
 %description
-OSGi Core Release 6, Interfaces and Classes for use in compiling bundles.
+OSGi Core Release 7, Interfaces and Classes for use in compiling bundles.
 
 %package javadoc
 Summary:API documentation for %{name}
@@ -49,7 +50,8 @@
 build-jar-repository -s lib osgi-annotation
 
 cp -p %{SOURCE1} pom.xml
-cp -p %{SOURCE2} build.xml
+cp -p %{SOURCE2} LICENSE
+cp -p %{SOURCE3} build.xml
 mkdir -p src/main/java
 mv org src/main/java/
 
@@ -94,7 +96,6 @@
 
 %files -f .mfiles
 %license LICENSE
-%doc about.html
 
 %files javadoc
 %license LICENSE

++ LICENSE-2.0 ++

 Apache License
   Version 2.0, January 2004
http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

  "License" shall mean the terms and conditions for use, reproduction,
  and distribution as defined by Sections 1 through 9 of this document.

  "Licensor" shall mean the copyright owner or entity authorized by
  the copyright owner that is granting the License.

  "Legal Entity" shall mean the union of the acting entity and all
  other entities that control, are controlled by, or are under common
  control with that entity. For the purposes of this definition,
  "control" means (i) the power, direct or indirect, to cause the
  direction or management of such entity, whether by contract or
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
  outstanding shares, or (iii) beneficial ownership of such entity.

  "You" (or "Your") shall mean an individual or Legal Entity
  exercising permissions granted by this License.

  "Source" form shall mean the preferred form for making modifications,
  including but not limited to software source code, documentation
  source, and configuration files.

  "Object" form shall mean any form resulting from mechanical
  transformation or translation of a Source form, including but
  not limited to compiled object code, generated documentation,
  and conversions to other media types.

  "Work" shall mean the work of authorship, whether in Source or
  Object form, made available under the License, as indicated by a
  copyright notice that is included in or attached to the work
  (an example is provided in the Appendix below).

  "Derivative Works" shall mean any work, whether in Source or Object
  form, that is based on (or derived from) the Work and for which the
  editorial revisions, annotations, elaborations, or other modifications
  represent, as a whole, an 

commit felix-utils for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package felix-utils for openSUSE:Factory 
checked in at 2020-04-01 19:18:51

Comparing /work/SRC/openSUSE:Factory/felix-utils (Old)
 and  /work/SRC/openSUSE:Factory/.felix-utils.new.3248 (New)


Package is "felix-utils"

Wed Apr  1 19:18:51 2020 rev:3 rq:790524 version:1.11.4

Changes:

--- /work/SRC/openSUSE:Factory/felix-utils/felix-utils.changes  2019-04-11 
12:19:11.728990139 +0200
+++ /work/SRC/openSUSE:Factory/.felix-utils.new.3248/felix-utils.changes
2020-04-01 19:19:13.111554877 +0200
@@ -1,0 +2,8 @@
+Tue Mar 31 06:19:36 UTC 2020 - Fridrich Strba 
+
+- Update to upstream release 1.11.4
+- Added patch:
+  * -Port-to-osgi-cmpn.patch
++ Migrate away from the old felix-osgi implementation
+
+---

Old:

  org.apache.felix.utils-1.10.4-source-release.tar.gz

New:

  -Port-to-osgi-cmpn.patch
  org.apache.felix.utils-1.11.4-source-release.tar.gz



Other differences:
--
++ felix-utils.spec ++
--- /var/tmp/diff_new_pack.ghUDTT/_old  2020-04-01 19:19:16.071556209 +0200
+++ /var/tmp/diff_new_pack.ghUDTT/_new  2020-04-01 19:19:16.071556209 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package felix-utils
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,20 @@
 %global bundle org.apache.felix.utils
 %bcond_with tests
 Name:   felix-utils
-Version:1.10.4
+Version:1.11.4
 Release:0
 Summary:Utility classes for OSGi
 License:Apache-2.0
 Group:  Development/Libraries/Java
-URL:http://felix.apache.org
-Source0:
http://repo1.maven.org/maven2/org/apache/felix/%{bundle}/%{version}/%{bundle}-%{version}-source-release.tar.gz
+URL:https://felix.apache.org
+Source0:
https://repo1.maven.org/maven2/org/apache/felix/%{bundle}/%{version}/%{bundle}-%{version}-source-release.tar.gz
 Source1:%{name}-build.xml
+Patch0: -Port-to-osgi-cmpn.patch
 BuildRequires:  ant
 BuildRequires:  fdupes
-BuildRequires:  felix-osgi-compendium
-BuildRequires:  felix-osgi-core
 BuildRequires:  javapackages-local
+BuildRequires:  osgi-compendium
+BuildRequires:  osgi-core
 BuildArch:  noarch
 %if %{with tests}
 BuildRequires:  ant-junit
@@ -51,9 +52,10 @@
 
 %prep
 %setup -q -n %{bundle}-%{version}
+%patch0 -p1
 cp -p %{SOURCE1} build.xml
 mkdir -p lib
-build-jar-repository -s lib felix
+build-jar-repository -s lib osgi-core osgi-compendium
 %if %{with tests}
 build-jar-repository -s lib junit hamcrest/core mockito
 %endif

++ -Port-to-osgi-cmpn.patch ++
>From d7a2d969b55ab34a223ad1422b2e3ef7d95a347f Mon Sep 17 00:00:00 2001
From: Marian Koncek 
Date: Mon, 5 Nov 2018 09:59:04 +0100
Subject: [PATCH] Port to osgi-cmpn

---
 .../utils/repository/AggregateRepository.java | 20 +++
 .../utils/repository/BaseRepository.java  | 19 ++
 .../utils/properties/MockBundleContext.java   | 10 ++
 3 files changed, 49 insertions(+)

diff --git 
a/src/main/java/org/apache/felix/utils/repository/AggregateRepository.java 
b/src/main/java/org/apache/felix/utils/repository/AggregateRepository.java
index 50dceaf..4da3141 100644
--- a/src/main/java/org/apache/felix/utils/repository/AggregateRepository.java
+++ b/src/main/java/org/apache/felix/utils/repository/AggregateRepository.java
@@ -25,7 +25,12 @@ import java.util.Map;
 
 import org.osgi.resource.Capability;
 import org.osgi.resource.Requirement;
+import org.osgi.resource.Resource;
+import org.osgi.service.repository.ExpressionCombiner;
 import org.osgi.service.repository.Repository;
+import org.osgi.service.repository.RequirementBuilder;
+import org.osgi.service.repository.RequirementExpression;
+import org.osgi.util.promise.Promise;
 
 public class AggregateRepository implements Repository {
 
@@ -52,4 +57,19 @@ public class AggregateRepository implements Repository {
 }
 return result;
 }
+
+   @Override
+   public Promise> 
findProviders(RequirementExpression expression) {
+   throw new UnsupportedOperationException();
+   }
+
+   @Override
+   public ExpressionCombiner getExpressionCombiner() {
+   throw new UnsupportedOperationException();
+   }
+
+   @Override
+   public RequirementBuilder newRequirementBuilder(String namespace) {
+   throw new UnsupportedOperationException();
+   }
 }
diff --git 

commit python-mbstrdecoder for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-mbstrdecoder for 
openSUSE:Factory checked in at 2020-04-01 19:19:31

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


Package is "python-mbstrdecoder"

Wed Apr  1 19:19:31 2020 rev:4 rq:790510 version:0.8.4

Changes:

--- /work/SRC/openSUSE:Factory/python-mbstrdecoder/python-mbstrdecoder.changes  
2020-02-07 15:56:31.671577706 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-mbstrdecoder.new.3248/python-mbstrdecoder.changes
2020-04-01 19:19:42.579568135 +0200
@@ -1,0 +2,6 @@
+Wed Apr  1 09:07:21 UTC 2020 - pgaj...@suse.com
+
+- version update to 0.8.4
+  * no upstream changelog found
+
+---

Old:

  mbstrdecoder-0.8.3.tar.gz

New:

  mbstrdecoder-0.8.4.tar.gz



Other differences:
--
++ python-mbstrdecoder.spec ++
--- /var/tmp/diff_new_pack.QwTZrI/_old  2020-04-01 19:19:43.127568382 +0200
+++ /var/tmp/diff_new_pack.QwTZrI/_new  2020-04-01 19:19:43.131568384 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-mbstrdecoder
-Version:0.8.3
+Version:0.8.4
 Release:0
 Summary:Multi-byte character string decoder
 License:MIT
@@ -60,7 +60,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test
+%pytest
 
 %files %{python_files}
 %license LICENSE

++ mbstrdecoder-0.8.3.tar.gz -> mbstrdecoder-0.8.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbstrdecoder-0.8.3/PKG-INFO 
new/mbstrdecoder-0.8.4/PKG-INFO
--- old/mbstrdecoder-0.8.3/PKG-INFO 2020-01-04 13:33:03.546205300 +0100
+++ new/mbstrdecoder-0.8.4/PKG-INFO 2020-01-04 15:31:35.690955400 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: mbstrdecoder
-Version: 0.8.3
+Version: 0.8.4
 Summary: multi-byte character string decoder
 Home-page: https://github.com/thombashi/mbstrdecoder
 Author: Tsuyoshi Hombashi
@@ -26,6 +26,10 @@
:target: https://pypi.org/project/mbstrdecoder
 :alt: Supported Python versions
 
+.. image:: https://img.shields.io/pypi/implementation/mbstrdecoder.svg
+:target: https://pypi.org/project/mbstrdecoder
+:alt: Supported Python implementations
+
 .. image:: 
https://img.shields.io/travis/thombashi/mbstrdecoder/master.svg?label=Linux/macOS%20CI
 :target: https://travis-ci.org/thombashi/mbstrdecoder
 :alt: Linux/macOS CI status
@@ -81,7 +85,7 @@
 
 Dependencies
 
-Python 2.7+ or 3.5+ or `PyPy `__
+Python 2.7+ or 3.5+
 
 - `chardet `__
 
@@ -106,6 +110,7 @@
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbstrdecoder-0.8.3/README.rst 
new/mbstrdecoder-0.8.4/README.rst
--- old/mbstrdecoder-0.8.3/README.rst   2020-01-04 13:22:50.0 +0100
+++ new/mbstrdecoder-0.8.4/README.rst   2020-01-04 15:12:39.0 +0100
@@ -16,6 +16,10 @@
:target: https://pypi.org/project/mbstrdecoder
 :alt: Supported Python versions
 
+.. image:: https://img.shields.io/pypi/implementation/mbstrdecoder.svg
+:target: https://pypi.org/project/mbstrdecoder
+:alt: Supported Python implementations
+
 .. image:: 
https://img.shields.io/travis/thombashi/mbstrdecoder/master.svg?label=Linux/macOS%20CI
 :target: https://travis-ci.org/thombashi/mbstrdecoder
 :alt: Linux/macOS CI status
@@ -71,7 +75,7 @@
 
 Dependencies
 
-Python 2.7+ or 3.5+ or `PyPy `__
+Python 2.7+ or 3.5+
 
 - `chardet `__
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mbstrdecoder-0.8.3/mbstrdecoder/__version__.py 
new/mbstrdecoder-0.8.4/mbstrdecoder/__version__.py
--- old/mbstrdecoder-0.8.3/mbstrdecoder/__version__.py  2020-01-04 
13:32:38.0 +0100
+++ new/mbstrdecoder-0.8.4/mbstrdecoder/__version__.py  2020-01-04 
15:19:22.0 +0100
@@ -6,6 +6,6 @@
 __author__ = 

commit python-parallax for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-parallax for openSUSE:Factory 
checked in at 2020-04-01 19:19:28

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


Package is "python-parallax"

Wed Apr  1 19:19:28 2020 rev:15 rq:790509 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/python-parallax/python-parallax.changes  
2019-08-22 15:17:32.746347927 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parallax.new.3248/python-parallax.changes
2020-04-01 19:19:40.251567088 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 08:54:34 UTC 2020 - Kristoffer Gronlund 
+
+- Release 1.0.6
+- Replace preexec_fn as start_new_session
+- No need to mask signals for subprocess call
+
+---

Old:

  parallax-1.0.5.tar.gz

New:

  parallax-1.0.6.tar.gz



Other differences:
--
++ python-parallax.spec ++
--- /var/tmp/diff_new_pack.V7NPDd/_old  2020-04-01 19:19:40.943567399 +0200
+++ /var/tmp/diff_new_pack.V7NPDd/_new  2020-04-01 19:19:40.943567399 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-parallax
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-parallax
-Version:1.0.5
+Version:1.0.6
 Release:0
 Summary:Python module for multi-node SSH command execution and file 
copy
 License:BSD-3-Clause

++ parallax-1.0.5.tar.gz -> parallax-1.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.5/PKG-INFO new/parallax-1.0.6/PKG-INFO
--- old/parallax-1.0.5/PKG-INFO 2019-08-22 09:45:34.0 +0200
+++ new/parallax-1.0.6/PKG-INFO 2020-04-01 10:50:03.678191400 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: parallax
-Version: 1.0.5
+Version: 1.0.6
 Summary: Execute commands and copy files over SSH to multiple machines at once
 Home-page: https://github.com/krig/parallax/
 Author: Kristoffer Gronlund
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.5/README new/parallax-1.0.6/README
--- old/parallax-1.0.5/README   2014-12-25 18:53:06.0 +0100
+++ new/parallax-1.0.6/README   1970-01-01 01:00:00.0 +0100
@@ -1,76 +0,0 @@
-# Parallax SSH
-
-Parallax SSH is a fork of [Parallel SSH][pssh] which focuses less on
-command-line tools and more on providing a flexible and programmable
-API that can be used by Python application developers to perform SSH
-operations across multiple machines.
-
-## Installation
-
-Parallax intends to be compatible with Python 2.6 and above (including
-Python 3.1 and greater), but is primarily tested with Python 2.7.
-
-Installation requires setuptools or ez_setup.py. The latter can be
-downloaded [here][ez].
-
-Once those requirements are fulfilled, installation is as simple as:
-
-# sudo python setup.py install
-
-Packaged versions of Parallax SSH for various distributions can be
-downloaded from the openSUSE [OBS][obs].
-
-To install via PyPI, use `pip`:
-
-# pip install parallax
-
-Share and enjoy!
-
-## Usage
-
-* `parallax.call(hosts, cmdline, opts)`
-
-  Executes the given command on a set of hosts, collecting the output.
-
-  Returns a dict mapping the hostname of
-  each host either to a tuple containing a return code,
-  stdout and stderr, or an `parallax.Error` instance
-  describing the error.
-
-* `parallax.copy(hosts, src, dst, opts)`
-
-  Copies files from `src` on the local machine to `dst` on the
-  remote hosts.
-
-  Returns a dict mapping the hostname of
-  each host either to a path, or an `parallax.Error` instance
-  describing the error.
-
-* `parallax.slurp(hosts, src, dst, opts)`
-
-  Copies files from `src` on the remote hosts to a local folder for
-  each of the remote hosts.
-
-  Returns a dict mapping the hostname of
-  each host either to a path, or an `parallax.Error` instance
-  describing the error.
-
-## How it works
-
-By default, Parallax SSH uses at most 32 SSH process in parallel to
-SSH to the nodes. By default, it uses a timeout of one minute to SSH
-to a node and obtain a result.
-
-## Environment variables
-
-* `PARALLAX_HOSTS`
-* `PARALLAX_USER`
-* `PARALLAX_PAR`
-* `PARALLAX_OUTDIR`
-* `PARALLAX_VERBOSE`
-* `PARALLAX_OPTIONS`
-
-
-  [pssh]: https://code.google.com/p/parallel-ssh/ "parallel-ssh"
-  [ez]: http://peak.telecommunity.com/dist/ez_setup.py 

commit osgi-compendium for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package osgi-compendium for openSUSE:Factory 
checked in at 2020-04-01 19:18:22

Comparing /work/SRC/openSUSE:Factory/osgi-compendium (Old)
 and  /work/SRC/openSUSE:Factory/.osgi-compendium.new.3248 (New)


Package is "osgi-compendium"

Wed Apr  1 19:18:22 2020 rev:3 rq:790500 version:7.0.0

Changes:

--- /work/SRC/openSUSE:Factory/osgi-compendium/osgi-compendium.changes  
2019-04-17 10:08:25.826784275 +0200
+++ 
/work/SRC/openSUSE:Factory/.osgi-compendium.new.3248/osgi-compendium.changes
2020-04-01 19:18:42.499541104 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 08:52:15 UTC 2020 - Fridrich Strba 
+
+- Update to upstream version 7.0.0
+
+---

Old:

  osgi.cmpn-6.0.0.jar

New:

  osgi.cmpn-7.0.0.jar



Other differences:
--
++ osgi-compendium.spec ++
--- /var/tmp/diff_new_pack.H6tNKH/_old  2020-04-01 19:18:43.127541387 +0200
+++ /var/tmp/diff_new_pack.H6tNKH/_new  2020-04-01 19:18:43.131541389 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package osgi-compendium
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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:   osgi-compendium
-Version:6.0.0
+Version:7.0.0
 Release:0
 Summary:Interfaces and Classes for use in compiling OSGi bundles
 License:Apache-2.0
 Group:  Development/Libraries/Java
 URL:http://www.osgi.org
-Source0:https://osgi.org/download/r6/osgi.cmpn-%{version}.jar
+Source0:https://osgi.org/download/r7/osgi.cmpn-%{version}.jar
 Source1:%{name}-build.xml
 BuildRequires:  ant
 BuildRequires:  fdupes
@@ -87,6 +87,8 @@
 %pom_add_dep javax.servlet:javax.servlet-api::provided
 %pom_add_dep javax.persistence:persistence-api::provided
 
+rm -r src/main/java/org/osgi/service/jaxrs
+
 mkdir -p lib
 build-jar-repository -s lib geronimo-jpa-3.0-api glassfish-servlet-api 
osgi-annotation osgi-core
 

++ osgi-compendium-build.xml ++
--- /var/tmp/diff_new_pack.H6tNKH/_old  2020-04-01 19:18:43.159541401 +0200
+++ /var/tmp/diff_new_pack.H6tNKH/_new  2020-04-01 19:18:43.163541403 +0200
@@ -9,13 +9,13 @@
   
 
 
-  
+  
   
 
   
   
-  
-  
+  
+  
   
 
   
@@ -116,8 +116,8 @@



-   
-   
+   
+   







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

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-os-client-config for 
openSUSE:Factory checked in at 2020-04-01 19:18:13

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


Package is "python-os-client-config"

Wed Apr  1 19:18:13 2020 rev:14 rq:790503 version:1.33.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-os-client-config/python-os-client-config.changes
  2019-12-04 14:18:43.266361239 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-os-client-config.new.3248/python-os-client-config.changes
2020-04-01 19:18:33.487537049 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 09:27:05 UTC 2020 - Dirk Mueller 
+
+- switch to python 3.x only builds
+
+---



Other differences:
--
++ python-os-client-config.spec ++
--- /var/tmp/diff_new_pack.q2Shbg/_old  2020-04-01 19:18:34.083537317 +0200
+++ /var/tmp/diff_new_pack.q2Shbg/_new  2020-04-01 19:18:34.087537319 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-os-client-config
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,32 +25,25 @@
 Summary:OpenStack Client Configuration Library
 License:Apache-2.0
 Group:  Development/Languages/Python
-URL:https://launchpad.net/%{sname}
-Source0:
https://files.pythonhosted.org/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
+URL:https://launchpad.net/%{name}
+Source0:
https://files.pythonhosted.org/packages/source/o/os-client-config/os-client-config-1.33.0.tar.gz
 BuildRequires:  openstack-macros
-BuildRequires:  python2-pbr
-BuildRequires:  python2-setuptools
 BuildRequires:  python3-pbr
 BuildRequires:  python3-setuptools
-Requires:   python-PyYAML
-Requires:   python-appdirs
-Requires:   python-keystoneauth1
-Requires:   python-requestsexceptions
 BuildArch:  noarch
 %if %{with test}
-BuildRequires:  python-extras
-BuildRequires:  python-fixtures
-BuildRequires:  python-glanceclient
-BuildRequires:  python-jsonschema
-BuildRequires:  python-keystoneclient
-BuildRequires:  python-mock
-BuildRequires:  python-oslotest
-BuildRequires:  python-python-subunit
-BuildRequires:  python-stestr
-BuildRequires:  python-testscenarios
-BuildRequires:  python-testtools
+BuildRequires:  python3-extras
+BuildRequires:  python3-fixtures
+BuildRequires:  python3-glanceclient
+BuildRequires:  python3-jsonschema
+BuildRequires:  python3-keystoneclient
+BuildRequires:  python3-mock
+BuildRequires:  python3-oslotest
+BuildRequires:  python3-python-subunit
+BuildRequires:  python3-stestr
+BuildRequires:  python3-testscenarios
+BuildRequires:  python3-testtools
 %endif
-%python_subpackages
 
 %description
 os-client-config is a library for collecting client configuration for
@@ -60,46 +53,63 @@
 files, and it also contains some vendor specific default values so that
 you don't have to know extra info to use OpenStack.
 
+%package -n python3-os-client-config
+Summary:OpenStack Client Configuration Library
+Group:  Development/Languages/Python
+Requires:   python3-PyYAML
+Requires:   python3-appdirs
+Requires:   python3-keystoneauth1
+Requires:   python3-requestsexceptions
+
+%description -n python3-os-client-config
+os-client-config is a library for collecting client configuration for
+using an OpenStack cloud in a consistent and comprehensive manner.
+It will find cloud config for as few as 1 cloud and as many as you want
+to put in a config file. It will read environment variables and config
+files, and it also contains some vendor specific default values so that
+you don't have to know extra info to use OpenStack.
+
+This package contains the Python 3.x module.
+
 %if %{with docs}
 %package -n python-os-client-config-doc
 Summary:Documentation for OpenStack client configuration library
 Group:  Development/Languages/Python
-BuildRequires:  python-Sphinx
-BuildRequires:  python-openstackdocstheme
-BuildRequires:  python-reno
+BuildRequires:  python3-Sphinx
+BuildRequires:  python3-openstackdocstheme
+BuildRequires:  python3-reno
 
 %description -n python-os-client-config-doc
 Documentation for the os-client-config library.
 %endif
 
 %prep
-%autosetup -n %{sname}-%{version}
+%autosetup -p1 -n %{sname}-%{version}
 %py_req_cleanup
-sed -i 's/^warning-is-error.*/warning-is-error = 0/g' setup.cfg
 
 %build
-%python_build
+%py3_build
 %if %{with docs}
 # generate html docs
-%{__python2} 

commit osgi-annotation for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package osgi-annotation for openSUSE:Factory 
checked in at 2020-04-01 19:18:19

Comparing /work/SRC/openSUSE:Factory/osgi-annotation (Old)
 and  /work/SRC/openSUSE:Factory/.osgi-annotation.new.3248 (New)


Package is "osgi-annotation"

Wed Apr  1 19:18:19 2020 rev:2 rq:790499 version:7.0.0

Changes:

--- /work/SRC/openSUSE:Factory/osgi-annotation/osgi-annotation.changes  
2019-02-28 21:39:10.629625583 +0100
+++ 
/work/SRC/openSUSE:Factory/.osgi-annotation.new.3248/osgi-annotation.changes
2020-04-01 19:18:41.307540568 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 08:49:38 UTC 2020 - Fridrich Strba 
+
+- Upgrade to the upstream version 7.0.0
+
+---

Old:

  osgi.annotation-6.0.0-sources.jar
  osgi.annotation-6.0.0.pom

New:

  LICENSE-2.0
  osgi.annotation-7.0.0-sources.jar
  osgi.annotation-7.0.0.pom



Other differences:
--
++ osgi-annotation.spec ++
--- /var/tmp/diff_new_pack.ubKvsz/_old  2020-04-01 19:18:42.143540944 +0200
+++ /var/tmp/diff_new_pack.ubKvsz/_new  2020-04-01 19:18:42.147540946 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package osgi-annotation
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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:   osgi-annotation
-Version:6.0.0
+Version:7.0.0
 Release:0
 Summary:Annotations for use in compiling OSGi bundles
 License:Apache-2.0
@@ -25,9 +25,10 @@
 URL:http://www.osgi.org/
 # Upstream project is behind an account registration system with no anonymous
 # read access, so we download the source from maven central instead
-Source0:
http://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}-sources.jar
-Source1:
http://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.pom
-Source2:%{name}-build.xml
+Source0:
https://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}-sources.jar
+Source1:
https://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.pom
+Source2:http://www.apache.org/licenses/LICENSE-2.0
+Source3:%{name}-build.xml
 BuildRequires:  ant
 BuildRequires:  fdupes
 BuildRequires:  javapackages-local
@@ -48,10 +49,10 @@
 %prep
 %setup -q -c
 
-mkdir -p src/main/resources && mv about.html src/main/resources
 mkdir -p src/main/java && mv org src/main/java
 cp -p %{SOURCE1} pom.xml
-cp -p %{SOURCE2} build.xml
+cp -p %{SOURCE2} LICENSE
+cp -p %{SOURCE3} build.xml
 
 # Ensure OSGi metadata is generated
 %pom_xpath_inject pom:project "

++ LICENSE-2.0 ++

 Apache License
   Version 2.0, January 2004
http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

  "License" shall mean the terms and conditions for use, reproduction,
  and distribution as defined by Sections 1 through 9 of this document.

  "Licensor" shall mean the copyright owner or entity authorized by
  the copyright owner that is granting the License.

  "Legal Entity" shall mean the union of the acting entity and all
  other entities that control, are controlled by, or are under common
  control with that entity. For the purposes of this definition,
  "control" means (i) the power, direct or indirect, to cause the
  direction or management of such entity, whether by contract or
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
  outstanding shares, or (iii) beneficial ownership of such entity.

  "You" (or "Your") shall mean an individual or Legal Entity
  exercising permissions granted by this License.

  "Source" form shall mean the preferred form for making modifications,
  including but not limited to software source code, documentation
  source, and configuration files.

  "Object" form shall mean any form resulting from mechanical
  transformation or translation of a Source form, including but
  not limited to compiled object code, generated documentation,
  and conversions to other media types.

  "Work" shall mean the work of authorship, whether in Source or
  Object form, made available under the License, as indicated by a
  copyright notice that is included in or attached to the work
  (an example is provided in the Appendix 

commit xtables-geoip for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package xtables-geoip for openSUSE:Factory 
checked in at 2020-04-01 19:18:08

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


Package is "xtables-geoip"

Wed Apr  1 19:18:08 2020 rev:48 rq:790467 version:20200401

Changes:

--- /work/SRC/openSUSE:Factory/xtables-geoip/xtables-geoip.changes  
2020-03-01 21:29:01.680680064 +0100
+++ /work/SRC/openSUSE:Factory/.xtables-geoip.new.3248/xtables-geoip.changes
2020-04-01 19:18:28.811534946 +0200
@@ -1,0 +2,5 @@
+Wed Apr  1 05:27:56 UTC 2020 - Arjen de Korte 
+
+- Update database files to 20200401
+
+---

Old:

  dbip-country-lite-2020-03.csv.gz

New:

  dbip-country-lite-2020-04.csv.gz



Other differences:
--
++ xtables-geoip.spec ++
--- /var/tmp/diff_new_pack.NcHWrn/_old  2020-04-01 19:18:29.551535278 +0200
+++ /var/tmp/diff_new_pack.NcHWrn/_new  2020-04-01 19:18:29.551535278 +0200
@@ -17,7 +17,7 @@
 
 
 %define year2020
-%define month   03
+%define month   04
 
 Name:   xtables-geoip
 Version:%year%{month}01




commit python-minio for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-minio for openSUSE:Factory 
checked in at 2020-04-01 19:17:42

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


Package is "python-minio"

Wed Apr  1 19:17:42 2020 rev:9 rq:790578 version:5.0.8

Changes:

--- /work/SRC/openSUSE:Factory/python-minio/python-minio.changes
2020-01-22 22:46:57.940596619 +0100
+++ /work/SRC/openSUSE:Factory/.python-minio.new.3248/python-minio.changes  
2020-04-01 19:18:09.143526096 +0200
@@ -1,0 +2,18 @@
+Wed Apr  1 08:39:08 UTC 2020 - pgaj...@suse.com
+
+- version update to 5.0.8
+  * Fixes not subscriptable objects (#858) (03/09/20)
+  * Support to put/get/delete default encryption configuration apis on a 
bucket (#855) (02/24/20)
+  * Fix deprecation warnings due to invalid escape sequences. (#853) (02/10/20)
+  * Add support for Amazon S3 Transfer Acceleration for presigned urls (#827) 
(02/02/20)
+  * Add note on concurrent usage of Minio client (#849) (02/01/20)
+  * python 3.8 compatibility (#847) (01/27/20)
+  * cleanup whitespace and fix license header (#845) (01/22/20)
+  * fix: relax bucket_name validation for existing buckets (#840) (01/22/20)
+  * Implement credentials object (similar to minio-go) to enable AWS IAM 
(#817) (01/22/20)
+- added sources
+  https://github.com/minio/minio-py/issues/865
+  + config.json.sample
+  + credentials.sample
+
+---

Old:

  minio-5.0.6.tar.gz

New:

  config.json.sample
  credentials.sample
  minio-5.0.8.tar.gz



Other differences:
--
++ python-minio.spec ++
--- /var/tmp/diff_new_pack.aVssYW/_old  2020-04-01 19:18:10.887526881 +0200
+++ /var/tmp/diff_new_pack.aVssYW/_new  2020-04-01 19:18:10.895526884 +0200
@@ -17,14 +17,18 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-minio
-Version:5.0.6
+Version:5.0.8
 Release:0
 Summary:Minio library for Amazon S3 compatible cloud storage
 License:Apache-2.0
 Group:  Development/Languages/Python
 URL:https://github.com/minio/minio-py
 Source: 
https://files.pythonhosted.org/packages/source/m/minio/minio-%{version}.tar.gz
+# https://github.com/minio/minio-py/issues/865
+Source1:
https://raw.githubusercontent.com/minio/minio-py/master/minio/credentials/config.json.sample
+Source2:
https://raw.githubusercontent.com/minio/minio-py/master/minio/credentials/credentials.sample
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -40,6 +44,7 @@
 BuildRequires:  %{python_module future}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module python-dateutil}
 BuildRequires:  %{python_module pytz}
 BuildRequires:  %{python_module urllib3}
@@ -52,6 +57,7 @@
 %prep
 %setup -q -n minio-%{version}
 mv docs/zh_CN/API.md docs/API_zh_CN.md
+sed -i -e '/configparser/d' setup.py
 
 %build
 %python_build
@@ -61,7 +67,8 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test --test-suite=tests
+cp %{SOURCE1} %{SOURCE2} minio/credentials
+%pytest
 
 %files %{python_files}
 %doc README*.md docs/API*.md examples/

++ config.json.sample ++
{
"version": "8",
"hosts": {
"play": {
"url": "https://play.minio.io:9000;,
"accessKey": "Q3AM3UQ867SPQQA43P2F",
"secretKey": "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
"api": "S3v2"
},
"s3": {
"url": "https://s3.amazonaws.com;,
"accessKey": "accessKey",
"secretKey": "secret",
"api": "S3v4"
}
}
}
++ credentials.sample ++
[default]
aws_access_key_id = accessKey
aws_secret_access_key = secret
aws_session_token = token

[no_token]
aws_access_key_id = accessKey
aws_secret_access_key = secret

[with_colon]
aws_access_key_id: accessKey
aws_secret_access_key: secret++ minio-5.0.6.tar.gz -> minio-5.0.8.tar.gz 
++
 3137 lines of diff (skipped)




commit aaa_base for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2020-04-01 19:17:55

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


Package is "aaa_base"

Wed Apr  1 19:17:55 2020 rev:466 rq: version:84.87+git20200224.7105b32

Changes:

--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes2020-03-30 
22:50:48.427753513 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new.3248/aaa_base.changes  
2020-04-01 19:18:15.043528751 +0200
@@ -2,6 +1,0 @@
-Tue Mar 24 13:13:10 UTC 2020 - lnus...@suse.de
-
-- Update to version 84.87+git20200312.411a96b:
-  * get_kernel_version: support xz compressed kernel (boo#1162581).
-


Old:

  aaa_base-84.87+git20200312.411a96b.tar.xz

New:

  aaa_base-84.87+git20200224.7105b32.tar.xz



Other differences:
--
++ aaa_base.spec ++
--- /var/tmp/diff_new_pack.mJGefg/_old  2020-04-01 19:18:16.679529487 +0200
+++ /var/tmp/diff_new_pack.mJGefg/_new  2020-04-01 19:18:16.683529489 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   aaa_base
-Version:84.87+git20200312.411a96b
+Version:84.87+git20200224.7105b32
 Release:0
 URL:https://github.com/openSUSE/aaa_base
 # do not require systemd - aaa_base is in the build environment and we don't

++ _servicedata ++
--- /var/tmp/diff_new_pack.mJGefg/_old  2020-04-01 19:18:16.735529512 +0200
+++ /var/tmp/diff_new_pack.mJGefg/_new  2020-04-01 19:18:16.735529512 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/openSUSE/aaa_base.git
-  dfc5b8af96bec249e44a83d573af1f95a661a85c
\ No newline at end of file
+  b27e1402705aa9f2140b15e2d7aff32c31445f1e
\ No newline at end of file

++ aaa_base-84.87+git20200312.411a96b.tar.xz -> 
aaa_base-84.87+git20200224.7105b32.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-84.87+git20200312.411a96b/get_kernel_version.c 
new/aaa_base-84.87+git20200224.7105b32/get_kernel_version.c
--- old/aaa_base-84.87+git20200312.411a96b/get_kernel_version.c 2020-03-12 
16:44:51.0 +0100
+++ new/aaa_base-84.87+git20200224.7105b32/get_kernel_version.c 2020-02-24 
11:21:41.0 +0100
@@ -47,8 +47,7 @@
 
   /* check if file exist and is compressed */
   {
-#define DETECT_SIZE 6
-unsigned char  buf [DETECT_SIZE];
+unsigned char  buf [2];
 int fd = open (argv[1], O_RDONLY | O_CLOEXEC);
 if (fd == -1)
   {
@@ -56,30 +55,16 @@
return 1;
   }
 
-if (read (fd, buf, DETECT_SIZE) != DETECT_SIZE)
+if (read (fd, buf, 2) != 2)
   {
fprintf (stderr, "Short read\n");
close (fd);
return 1;
   }
 
-/* \xFD7zXZ\x00 */
-if ((buf [0] == 0xfd) &&
-   (buf [1] == '7') &&
-   (buf [2] == 'z') &&
-   (buf [3] == 'X') &&
-   (buf [4] == 'Z') &&
-   (buf [5] == 0))
-  {
-   snprintf (command, sizeof (command), "/usr/bin/xz -dc %s 2>/dev/null", 
argv[1]);
-  }
-
 if (buf [0] == 037 && (buf [1] == 0213 || buf [1] == 0236))
   {
snprintf (command, sizeof (command), "/bin/gzip -dc %s 2>/dev/null", 
argv[1]);
-  }
-
-if (*command) {
fp = popen (command, "re");
if (fp == NULL)
  {




commit rubygem-rubocop for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package rubygem-rubocop for openSUSE:Factory 
checked in at 2020-04-01 19:17:53

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


Package is "rubygem-rubocop"

Wed Apr  1 19:17:53 2020 rev:10 rq:790485 version:0.81.0

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rubocop/rubygem-rubocop.changes  
2020-03-03 10:20:38.523196793 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rubocop.new.3248/rubygem-rubocop.changes
2020-04-01 19:18:12.695527695 +0200
@@ -1,0 +2,100 @@
+Wed Apr  1 08:02:34 UTC 2020 - Dan Čermák 
+
+- New upstream release 0.81.0
+
+  ### New features
+
+  * [#7299](https://github.com/rubocop-hq/rubocop/issues/7299): Add new
+`Lint/RaiseException` cop. ([@denys281][])
+  * [#7793](https://github.com/rubocop-hq/rubocop/pull/7793): Prefer `include?`
+over `member?` in `Style/CollectionMethods`. ([@dmolesUC][])
+  * [#7654](https://github.com/rubocop-hq/rubocop/issues/7654): Support
+`with_fixed_indentation` option for `Layout/ArrayAlignment`
+cop. ([@nikitasakov][])
+  * [#7783](https://github.com/rubocop-hq/rubocop/pull/7783): Support Ruby 
2.7's
+numbered parameter for `Style/RedundantSort`. ([@koic][])
+  * [#7795](https://github.com/rubocop-hq/rubocop/issues/7795): Make
+`Layout/EmptyLineAfterGuardClause` aware of case where `and` or `or` is 
used
+before keyword that break control (e.g. `and return`). ([@koic][])
+  * [#7786](https://github.com/rubocop-hq/rubocop/pull/7786): Support Ruby 
2.7's
+pattern match for `Layout/ElseAlignment` cop. ([@koic][])
+  * [#7784](https://github.com/rubocop-hq/rubocop/pull/7784): Support Ruby 
2.7's
+numbered parameter for `Lint/SafeNavigationChain`. ([@koic][])
+  * [#7331](https://github.com/rubocop-hq/rubocop/issues/7331): Add `forbidden`
+option to `Style/ModuleFunction`cop. ([@weh][])
+  * [#7699](https://github.com/rubocop-hq/rubocop/pull/7699): Add new
+`Lint/StructNewOverride` cop.  ([@ybiquitous][])
+  * [#7637](https://github.com/rubocop-hq/rubocop/pull/7637): Add new
+`Style/TrailingCommaInBlockArgs` cop. ([@pawptart][])
+  * [#7809](https://github.com/rubocop-hq/rubocop/pull/7809): Add
+auto-correction for `Style/EndBlock` cop.  ([@tejasbubane][])
+  * [#7739](https://github.com/rubocop-hq/rubocop/pull/7739): Add
+`IgnoreNotImplementedMethods` configuration to
+`Lint/UnusedMethodArgument`. ([@tejasbubane][])ñ
+  * [#7740](https://github.com/rubocop-hq/rubocop/issues/7740): Add
+`AllowModifiersOnSymbols` configuration to
+`Style/AccessModifierDeclarations`. ([@tejasbubane][])
+  * [#7812](https://github.com/rubocop-hq/rubocop/pull/7812): Add
+auto-correction for `Lint/BooleanSymbol` cop. ([@tejasbubane][])
+  * [#7823](https://github.com/rubocop-hq/rubocop/pull/7823): Add
+`IgnoredMethods` configuration in `Metrics/AbcSize`,
+`Metrics/CyclomaticComplexity`, and `Metrics/PerceivedComplexity`
+cops. ([@drenmi][])
+  * [#7816](https://github.com/rubocop-hq/rubocop/pull/7816): Support Ruby 
2.7's
+numbered parameter for `Style/Lambda`. ([@koic][])
+  * [#7829](https://github.com/rubocop-hq/rubocop/issues/7829): Fix an error 
for
+`Style/OneLineConditional` when one of the branches contains `next`
+keyword. ([@koic][])
+
+  ### Bug fixes
+
+  * [#7236](https://github.com/rubocop-hq/rubocop/pull/7236): Mark
+`Style/InverseMethods` auto-correct as incompatible with
+`Style/SymbolProc`. ([@drenmi][])
+  * [#7144](https://github.com/rubocop-hq/rubocop/issues/7144): Fix
+`Style/Documentation` constant visibility declaration in
+namespace. ([@AdrienSldy][])
+  * [#7779](https://github.com/rubocop-hq/rubocop/issues/7779): Fix a false
+positive for `Style/MultilineMethodCallIndentation` when using Ruby 2.7's
+numbered parameter. ([@koic][])
+  * [#7733](https://github.com/rubocop-hq/rubocop/issues/7733): Fix
+rubocop-junit-formatter imcompatibility XML for JUnit formatter. 
([@koic][])
+  * [#7767](https://github.com/rubocop-hq/rubocop/issues/7767): Skip array
+literals in `Style/HashTransformValues` and
+`Style/HashTransformKeys`. ([@tejasbubane][])
+  * [#7791](https://github.com/rubocop-hq/rubocop/issues/7791): Fix an error on
+auto-correction for `Layout/BlockEndNewline` when `}` of multiline block
+without processing is not on its own line. ([@koic][])
+  * [#7778](https://github.com/rubocop-hq/rubocop/issues/7778): Fix a false
+positive for `Layout/EndAlignment` when a non-whitespace is used before the
+`end` keyword. ([@koic][])
+  * [#7806](https://github.com/rubocop-hq/rubocop/pull/7806): Fix an error for
+`Lint/ErbNewArguments` cop when inspecting
+`ActionView::Template::Handlers::ERB.new`. ([@koic][])
+  

commit ulfius for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package ulfius for openSUSE:Factory checked 
in at 2020-04-01 19:18:03

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


Package is "ulfius"

Wed Apr  1 19:18:03 2020 rev:12 rq:790473 version:2.6.6

Changes:

--- /work/SRC/openSUSE:Factory/ulfius/ulfius.changes2020-01-19 
20:58:28.824083117 +0100
+++ /work/SRC/openSUSE:Factory/.ulfius.new.3248/ulfius.changes  2020-04-01 
19:18:21.783531783 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 05:46:12 UTC 2020 - Martin Hauke 
+
+- Update to version 2.6.6
+  * Update doc generation
+  * Fix jansson memoy management bug
+
+---

Old:

  ulfius-2.6.5.tar.gz

New:

  ulfius-2.6.6.tar.gz



Other differences:
--
++ ulfius.spec ++
--- /var/tmp/diff_new_pack.1ziJ4p/_old  2020-04-01 19:18:22.683532189 +0200
+++ /var/tmp/diff_new_pack.1ziJ4p/_new  2020-04-01 19:18:22.687532190 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ulfius
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2018, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -20,7 +20,7 @@
 %define _lto_cflags %{nil}
 %define sover 2_6
 Name:   ulfius
-Version:2.6.5
+Version:2.6.6
 Release:0
 Summary:Web Framework for REST Applications in C
 License:MIT

++ ulfius-2.6.5.tar.gz -> ulfius-2.6.6.tar.gz ++
 22217 lines of diff (skipped)




commit felix-scr for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package felix-scr for openSUSE:Factory 
checked in at 2020-04-01 19:18:42

Comparing /work/SRC/openSUSE:Factory/felix-scr (Old)
 and  /work/SRC/openSUSE:Factory/.felix-scr.new.3248 (New)


Package is "felix-scr"

Wed Apr  1 19:18:42 2020 rev:3 rq:790522 version:2.1.16

Changes:

--- /work/SRC/openSUSE:Factory/felix-scr/felix-scr.changes  2019-11-26 
16:56:58.448155130 +0100
+++ /work/SRC/openSUSE:Factory/.felix-scr.new.3248/felix-scr.changes
2020-04-01 19:19:00.175549057 +0200
@@ -1,0 +2,13 @@
+Wed Apr  1 08:21:39 UTC 2020 - Fridrich Strba 
+
+- Update to version 2.1.16
+- Modified patch:
+  * osgi-metadata.patch -> 
+0001-Use-import-package-instead-of-embedding-dependencies.patch
+   + Don't embed dependencies, use import-package instead
+- Added patch:
+  * 0002-Drop-the-dependencies-on-kxml-xpp3.patch
++ Drop dependencies on kxml and xpp, use the system SAX
+  implementation instead
+
+---

Old:

  LICENSE
  NOTICE
  org.apache.felix.scr-2.0.14.tar.xz
  osgi-metadata.patch

New:

  0001-Use-import-package-instead-of-embedding-dependencies.patch
  0002-Drop-the-dependencies-on-kxml-xpp3.patch
  org.apache.felix.scr-2.1.16-source-release.tar.gz



Other differences:
--
++ felix-scr.spec ++
--- /var/tmp/diff_new_pack.5gijjm/_old  2020-04-01 19:19:01.127549485 +0200
+++ /var/tmp/diff_new_pack.5gijjm/_new  2020-04-01 19:19:01.131549487 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package felix-scr
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,32 +18,26 @@
 
 %global bundle  org.apache.felix.scr
 Name:   felix-scr
-Version:2.0.14
+Version:2.1.16
 Release:0
 Summary:Apache Felix Service Component Runtime (SCR)
 License:Apache-2.0
 Group:  Development/Libraries/Java
-URL:
http://felix.apache.org/documentation/subprojects/apache-felix-service-component-runtime.html
-# svn export 
http://svn.apache.org/repos/asf/felix/releases/%{bundle}-%{version}/
-# tar caJf %{bundle}-%{version}.tar.xz %{bundle}-%{version}
-Source0:%{bundle}-%{version}.tar.xz
-Source1:http://svn.apache.org/repos/asf/felix/releases/1.0.0/LICENSE
-Source2:http://svn.apache.org/repos/asf/felix/releases/1.0.0/NOTICE
+URL:
https://felix.apache.org/documentation/subprojects/apache-felix-service-component-runtime.html
+Source0:
http://archive.apache.org/dist/felix/%{bundle}-%{version}-source-release.tar.gz
 # Don't embed deps, use import-package instead
-Patch0: osgi-metadata.patch
+Patch0: 0001-Use-import-package-instead-of-embedding-dependencies.patch
+# Drop dep on kxml/xpp, use the system SAX implementation instead
+Patch1: 0002-Drop-the-dependencies-on-kxml-xpp3.patch
 BuildRequires:  fdupes
 BuildRequires:  maven-local
 BuildRequires:  xz
-BuildRequires:  mvn(net.sf.kxml:kxml2)
 BuildRequires:  mvn(org.apache.felix:felix-parent:pom:)
 BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
 BuildRequires:  mvn(org.apache.felix:org.apache.felix.gogo.runtime)
-BuildRequires:  mvn(org.apache.felix:org.apache.felix.shell)
-BuildRequires:  mvn(org.apache.maven.plugins:maven-failsafe-plugin)
 BuildRequires:  mvn(org.osgi:osgi.annotation)
-BuildRequires:  mvn(org.osgi:osgi.cmpn)
-BuildRequires:  mvn(org.osgi:osgi.core)
-BuildRequires:  mvn(xpp3:xpp3)
+BuildRequires:  mvn(org.osgi:osgi.cmpn) >= 7.0.0
+BuildRequires:  mvn(org.osgi:osgi.core) >= 7.0.0
 BuildArch:  noarch
 
 %description
@@ -58,40 +52,34 @@
 
 %prep
 %setup -q -n %{bundle}-%{version}
-cp %{SOURCE1} %{SOURCE2} .
-%patch0
+%patch0 -p1
+%patch1 -p1
 
 # All these OSGi deps are provided in the compendium jar
-%pom_add_dep org.osgi:osgi.cmpn:6.0.0:provided
+%pom_add_dep org.osgi:osgi.cmpn:7.0.0:provided
 %pom_remove_dep org.osgi:org.osgi.service.component
 %pom_remove_dep org.osgi:org.osgi.service.cm
 %pom_remove_dep org.osgi:org.osgi.service.log
 %pom_remove_dep org.osgi:org.osgi.service.metatype
 %pom_remove_dep org.osgi:org.osgi.namespace.extender
-%pom_remove_dep org.osgi:osgi.promise
+%pom_remove_dep org.osgi:org.osgi.util.promise
+%pom_remove_dep org.osgi:org.osgi.util.function
 
-# Many test deps are not in Fedora
+# Remove test deps
 %pom_xpath_remove 
"pom:project/pom:dependencies/pom:dependency[pom:scope='test']"
 %pom_remove_dep org.ops4j.base:
+%pom_remove_plugin :maven-failsafe-plugin
 
-# Animal sniffer is unnecessary since we always know JRE level on Fedora
+# Animal 

commit aqute-bnd for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package aqute-bnd for openSUSE:Factory 
checked in at 2020-04-01 19:18:33

Comparing /work/SRC/openSUSE:Factory/aqute-bnd (Old)
 and  /work/SRC/openSUSE:Factory/.aqute-bnd.new.3248 (New)


Package is "aqute-bnd"

Wed Apr  1 19:18:33 2020 rev:5 rq:790521 version:3.5.0

Changes:

--- /work/SRC/openSUSE:Factory/aqute-bnd/aqute-bnd.changes  2019-07-02 
10:38:41.518608852 +0200
+++ /work/SRC/openSUSE:Factory/.aqute-bnd.new.3248/aqute-bnd.changes
2020-04-01 19:18:53.119545882 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 08:09:22 UTC 2020 - Fridrich Strba 
+
+- Addes patch:
+  * 0001-Port-to-OSGI-7.0.0.patch
++ Port to OSGI 7.0.0
+
+---

New:

  0001-Port-to-OSGI-7.0.0.patch



Other differences:
--
++ aqute-bnd.spec ++
--- /var/tmp/diff_new_pack.KW1BrC/_old  2020-04-01 19:18:56.491547399 +0200
+++ /var/tmp/diff_new_pack.KW1BrC/_new  2020-04-01 19:18:56.495547401 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package aqute-bnd
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 # Part of jpm is under BSD, but jpm is not included in binary RPM
 License:Apache-2.0
 Group:  Development/Libraries/Java
-URL:http://bnd.bndtools.org/
+URL:https://bnd.bndtools.org/
 Source0:https://github.com/bndtools/bnd/archive/%{version}.REL.tar.gz
 Source1:bnd-%{version}.REL-build_xml.tar.xz
 Source3:
https://repo1.maven.org/maven2/biz/aQute/bnd/aQute.libg/%{version}/aQute.libg-%{version}.pom
@@ -32,7 +32,8 @@
 Source6:
https://repo1.maven.org/maven2/biz/aQute/bnd/biz.aQute.bnd.annotation/%{version}/biz.aQute.bnd.annotation-%{version}.pom
 Patch0: 0001-Disable-removed-commands.patch
 Patch1: 0002-Fix-ant-compatibility.patch
-Patch2: aqute-bnd-3.5.0-java8compat.patch
+Patch2: 0001-Port-to-OSGI-7.0.0.patch
+Patch3: aqute-bnd-3.5.0-java8compat.patch
 BuildRequires:  ant
 BuildRequires:  fdupes
 BuildRequires:  javapackages-local
@@ -91,6 +92,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 # the commands pull in more dependencies than we want (felix-resolver, jetty)
 rm biz.aQute.bnd/src/aQute/bnd/main/{RemoteCommand,ResolveCommand}.java

++ bnd-maven-plugin.spec ++
--- /var/tmp/diff_new_pack.KW1BrC/_old  2020-04-01 19:18:56.527547415 +0200
+++ /var/tmp/diff_new_pack.KW1BrC/_new  2020-04-01 19:18:56.527547415 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bnd-maven-plugin
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 # Part of jpm is under BSD, but jpm is not included in binary RPM
 License:Apache-2.0
 Group:  Development/Libraries/Java
-URL:http://bnd.bndtools.org/
+URL:https://bnd.bndtools.org/
 Source0:https://github.com/bndtools/bnd/archive/%{version}.REL.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  maven-local

++ 0001-Port-to-OSGI-7.0.0.patch ++
>From e9469ae2ca9f3d64fd88e0d8aaf8ebeea7bb937d Mon Sep 17 00:00:00 2001
From: Marian Koncek 
Date: Fri, 12 Apr 2019 14:59:30 +0200
Subject: [PATCH] Port to OSGI 7.0.0

---
 .../src/aQute/bnd/main/ReporterLogger.java| 16 +
 .../src/aQute/bnd/testing/TestingLog.java | 35 +++
 2 files changed, 51 insertions(+)

diff --git a/biz.aQute.bnd/src/aQute/bnd/main/ReporterLogger.java 
b/biz.aQute.bnd/src/aQute/bnd/main/ReporterLogger.java
index ce86cd6..735db9c 100644
--- a/biz.aQute.bnd/src/aQute/bnd/main/ReporterLogger.java
+++ b/biz.aQute.bnd/src/aQute/bnd/main/ReporterLogger.java
@@ -1,5 +1,6 @@
 package aQute.bnd.main;
 
+import org.osgi.framework.Bundle;
 import org.osgi.framework.ServiceReference;
 import org.osgi.service.log.LogService;
 import org.slf4j.Logger;
@@ -8,6 +9,7 @@ import org.slf4j.LoggerFactory;
 import aQute.service.reporter.Reporter;
 
 public class ReporterLogger implements LogService {
+   private final static RuntimeException UNSUPPORTED = new 
UnsupportedOperationException("This method is provided for backwards 
compatibility");
private final static Logger logger  = 
LoggerFactory.getLogger(ReporterLogger.class);
 
private Reporterreporter;
@@ -108,4 +110,18 @@ public class ReporterLogger implements LogService {
}
 

commit felix-shell for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package felix-shell for openSUSE:Factory 
checked in at 2020-04-01 19:18:44

Comparing /work/SRC/openSUSE:Factory/felix-shell (Old)
 and  /work/SRC/openSUSE:Factory/.felix-shell.new.3248 (New)


Package is "felix-shell"

Wed Apr  1 19:18:44 2020 rev:3 rq:790523 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/felix-shell/felix-shell.changes  2019-12-02 
11:38:21.690460936 +0100
+++ /work/SRC/openSUSE:Factory/.felix-shell.new.3248/felix-shell.changes
2020-04-01 19:19:07.023552138 +0200
@@ -1,0 +2,5 @@
+Tue Mar 31 06:10:51 UTC 2020 - Fridrich Strba 
+
+- Build against OSGi R7 APIs
+
+---



Other differences:
--
++ felix-shell.spec ++
--- /var/tmp/diff_new_pack.SEICWu/_old  2020-04-01 19:19:08.803552938 +0200
+++ /var/tmp/diff_new_pack.SEICWu/_new  2020-04-01 19:19:08.803552938 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package felix-shell
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,14 +23,14 @@
 Summary:Apache Felix Shell Service
 License:Apache-2.0
 Group:  Development/Libraries/Java
-URL:http://felix.apache.org
+URL:https://felix.apache.org
 Source0:
http://archive.apache.org/dist/felix/%{bundle}-%{version}-source-release.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  maven-local
 BuildRequires:  mvn(org.apache.felix:felix-parent:pom:)
 BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
-BuildRequires:  mvn(org.osgi:org.osgi.compendium)
-BuildRequires:  mvn(org.osgi:org.osgi.core)
+BuildRequires:  mvn(org.osgi:osgi.cmpn)
+BuildRequires:  mvn(org.osgi:osgi.core)
 BuildArch:  noarch
 
 %description
@@ -48,6 +48,10 @@
 
 %pom_remove_plugin org.codehaus.mojo:rat-maven-plugin
 
+# Use latest OSGi implementation
+%pom_change_dep :org.osgi.core org.osgi:osgi.core
+%pom_change_dep :org.osgi.compendium org.osgi:osgi.cmpn
+
 %pom_add_dep junit:junit::test
 
 %{mvn_file} :%{bundle} "felix/%{bundle}"
@@ -63,11 +67,10 @@
 %fdupes -s %{buildroot}%{_javadocdir}
 
 %files -f .mfiles
-%license LICENSE
-%doc NOTICE DEPENDENCIES
+%license LICENSE NOTICE
+%doc DEPENDENCIES
 
 %files javadoc -f .mfiles-javadoc
-%license LICENSE
-%doc NOTICE
+%license LICENSE NOTICE
 
 %changelog




commit python-moviepy for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-moviepy for openSUSE:Factory 
checked in at 2020-04-01 19:09:06

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


Package is "python-moviepy"

Wed Apr  1 19:09:06 2020 rev:7 rq:790164 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/python-moviepy/python-moviepy.changes
2019-05-22 15:38:48.126585539 +0200
+++ /work/SRC/openSUSE:Factory/.python-moviepy.new.3248/python-moviepy.changes  
2020-04-01 19:11:47.771354509 +0200
@@ -1,0 +2,7 @@
+Tue Mar 31 12:29:28 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.0.2
+  * lot of changes, see
+https://github.com/Zulko/moviepy/blob/master/CHANGELOG.md
+
+---

Old:

  moviepy-1.0.0.tar.gz

New:

  moviepy-1.0.2.tar.gz



Other differences:
--
++ python-moviepy.spec ++
--- /var/tmp/diff_new_pack.m3hQqz/_old  2020-04-01 19:11:53.575357120 +0200
+++ /var/tmp/diff_new_pack.m3hQqz/_new  2020-04-01 19:11:53.575357120 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-moviepy
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,19 +17,34 @@
 
 
 %define modname moviepy
-
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-moviepy
-Version:1.0.0
+Version:1.0.2
 Release:0
 Summary:Video editing with Python
 License:MIT
 Group:  Development/Languages/Python
-Url:https://github.com/Zulko/moviepy
+URL:https://github.com/Zulko/moviepy
 Source: 
https://files.pythonhosted.org/packages/source/m/moviepy/moviepy-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-decorator >= 4.0.2
+Requires:   python-numpy
+Requires:   python-proglog
+Requires:   python-requests >= 2.8.1
+Requires:   python-tqdm >= 4.11.2
+Recommends: ImageMagick
+Recommends: ffmpeg
+Recommends: python-Pillow
+Recommends: python-matplotlib >= 2.0.0
+Recommends: python-opencv >= 3.0
+Recommends: python-pygame >= 1.9.3
+Recommends: python-scikit-image >= 0.13.0
+Recommends: python-scikit-learn
+Recommends: python-scipy >= 0.19.0
+Recommends: python-youtube_dl
+BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module Pillow}
 BuildRequires:  %{python_module coveralls >= 1.1}
@@ -45,16 +60,11 @@
 BuildRequires:  %{python_module tqdm >= 4.11.2}
 BuildRequires:  ImageMagick
 BuildRequires:  ffmpeg
-BuildRequires:  python-ipaddress
 BuildRequires:  python-imageio >= 2.0
+BuildRequires:  python-ipaddress
 BuildRequires:  python3-imageio >= 2.5
 BuildRequires:  python3-imageio-ffmpeg >= 0.2.0
 # /SECTION
-Requires:   python-decorator >= 4.0.2
-Requires:   python-numpy
-Requires:   python-proglog
-Requires:   python-requests >= 2.8.1
-Requires:   python-tqdm >= 4.11.2
 %ifpython2
 Requires:   python-imageio >= 2.1.2
 %endif
@@ -62,18 +72,6 @@
 Requires:   python-imageio >= 2.5
 Requires:   python-imageio-ffmpeg >= 0.2.0
 %endif
-Recommends: ImageMagick
-Recommends: ffmpeg
-Recommends: python-Pillow
-Recommends: python-matplotlib >= 2.0.0
-Recommends: python-opencv >= 3.0
-Recommends: python-pygame >= 1.9.3
-Recommends: python-scikit-image >= 0.13.0
-Recommends: python-scikit-learn
-Recommends: python-scipy >= 0.19.0
-Recommends: python-youtube_dl
-BuildArch:  noarch
-
 %python_subpackages
 
 %description

++ moviepy-1.0.0.tar.gz -> moviepy-1.0.2.tar.gz ++
/work/SRC/openSUSE:Factory/python-moviepy/moviepy-1.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.python-moviepy.new.3248/moviepy-1.0.2.tar.gz 
differ: char 5, line 1




commit python-msrest for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-msrest for openSUSE:Factory 
checked in at 2020-04-01 19:09:32

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


Package is "python-msrest"

Wed Apr  1 19:09:32 2020 rev:9 rq:790243 version:0.6.11

Changes:

--- /work/SRC/openSUSE:Factory/python-msrest/python-msrest.changes  
2019-10-10 14:32:08.868373959 +0200
+++ /work/SRC/openSUSE:Factory/.python-msrest.new.3248/python-msrest.changes
2020-04-01 19:12:39.823377929 +0200
@@ -1,0 +2,8 @@
+Tue Mar 31 15:26:34 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.6.11
+  + For detailed information about changes see the
+README.rst file provided with this package
+
+---
@@ -5 +13 @@
-  + Version 0.6.20
+  + Version 0.6.10
@@ -7 +15 @@
-HISTORY.txt file provided with this package
+README.rst file provided with this package
@@ -46 +53,0 @@
-- Install HISTORY.rst into doc directory

Old:

  msrest-0.6.10.tar.gz

New:

  msrest-0.6.11.tar.gz



Other differences:
--
++ python-msrest.spec ++
--- /var/tmp/diff_new_pack.M18d3I/_old  2020-04-01 19:12:42.187378992 +0200
+++ /var/tmp/diff_new_pack.M18d3I/_new  2020-04-01 19:12:42.191378994 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-msrest
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrest
-Version:0.6.10
+Version:0.6.11
 Release:0
 Summary:AutoRest swagger generator Python client runtime
 License:MIT
 Group:  Development/Languages/Python
-Url:https://pypi.python.org/pypi/msrest
+URL:https://pypi.python.org/pypi/msrest
 Source: 
https://files.pythonhosted.org/packages/source/m/msrest/msrest-%{version}.tar.gz
 Source1:LICENSE.md
 BuildRequires:  %{python_module setuptools}

++ msrest-0.6.10.tar.gz -> msrest-0.6.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrest-0.6.10/PKG-INFO new/msrest-0.6.11/PKG-INFO
--- old/msrest-0.6.10/PKG-INFO  2019-09-04 20:04:43.0 +0200
+++ new/msrest-0.6.11/PKG-INFO  2020-01-30 18:02:40.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: msrest
-Version: 0.6.10
+Version: 0.6.11
 Summary: AutoRest swagger generator Python client runtime.
 Home-page: https://github.com/Azure/msrest-for-python
 Author: Microsoft Corporation
@@ -27,6 +27,22 @@
 Release History
 ---
 
+2019-01-30 Version 0.6.11
++
+
+**Features**
+
+- XML mode can now be enabled even if the given Model has no XML 
metadata  #184
+- Add Kerberos Authentication  #186
+- Improve error message if expected type is dictionnary and something 
else is provided  #188
+
+**Bugfixes**
+
+- Fix comma separated serialization of array in query  #186
+- Fix validation of basic types in some complex scenario  #189
+
+Thanks to catatonicprime for the contribution
+
 2019-09-04 Version 0.6.10
 +
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrest-0.6.10/README.rst new/msrest-0.6.11/README.rst
--- old/msrest-0.6.10/README.rst2019-09-04 20:03:33.0 +0200
+++ new/msrest-0.6.11/README.rst2020-01-30 18:02:00.0 +0100
@@ -20,6 +20,22 @@
 Release History
 ---
 
+2019-01-30 Version 0.6.11
++
+
+**Features**
+
+- XML mode can now be enabled even if the given Model has no XML metadata  #184
+- Add Kerberos Authentication  #186
+- Improve error message if expected type is dictionnary and something else is 
provided  #188
+
+**Bugfixes**
+
+- Fix comma separated serialization of array in query  #186
+- Fix validation of basic types in some complex scenario  #189
+
+Thanks to catatonicprime for the contribution
+
 2019-09-04 Version 0.6.10
 +
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrest-0.6.10/msrest/authentication.py 
new/msrest-0.6.11/msrest/authentication.py
--- old/msrest-0.6.10/msrest/authentication.py  2019-09-04 

commit 000update-repos for openSUSE:Leap:15.2:PowerPC

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-04-01 21:03:04

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000update-repos.new.3248 (New)


Package is "000update-repos"

Wed Apr  1 21:03:04 2020 rev:152 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.1:ppc:update_1585721850.packages.xz



Other differences:
--















































































































































































































































































































commit 000update-repos for openSUSE:Leap:15.2

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2 checked in at 2020-04-01 21:01:50

Comparing /work/SRC/openSUSE:Leap:15.2/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000update-repos.new.3248 (New)


Package is "000update-repos"

Wed Apr  1 21:01:50 2020 rev:581 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.1:update_1585720565.packages.xz



Other differences:
--




















































































































































































































































































































































































































































































































































































































































commit 000release-packages for openSUSE:Leap:15.2:PowerPC

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-04-01 21:24:42

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000release-packages.new.3248 
(New)


Package is "000release-packages"

Wed Apr  1 21:24:42 2020 rev:164 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-release.spec: same change
stub.spec: same change
++ weakremovers.inc ++
--- /var/tmp/diff_new_pack.TCm7W7/_old  2020-04-01 21:24:45.194081702 +0200
+++ /var/tmp/diff_new_pack.TCm7W7/_new  2020-04-01 21:24:45.194081702 +0200
@@ -9277,8 +9277,6 @@
 Provides: weakremover(ldapfuse)
 Provides: weakremover(ldapvi)
 Provides: weakremover(ldmtool)
-Provides: weakremover(ldns)
-Provides: weakremover(ldns-devel)
 Provides: weakremover(leafnode)
 Provides: weakremover(leafpad)
 Provides: weakremover(ledmon)
@@ -11719,7 +11717,6 @@
 Provides: weakremover(libldl2)
 Provides: weakremover(libldm-1_0-0)
 Provides: weakremover(libldm-1_0-0-devel)
-Provides: weakremover(libldns2)
 Provides: weakremover(libleechcraft-util-db-qt5-0_6_75_1)
 Provides: weakremover(libleechcraft-util-gui-qt5-0_6_75_1)
 Provides: weakremover(libleechcraft-util-models-qt5-0_6_75_1)
@@ -15187,7 +15184,6 @@
 Provides: weakremover(perl-DBD-Pg)
 Provides: weakremover(perl-DBD-SQLite)
 Provides: weakremover(perl-DBIx-Transaction)
-Provides: weakremover(perl-DNS-LDNS)
 Provides: weakremover(perl-Data-Clone)
 Provides: weakremover(perl-Data-Dump-Streamer)
 Provides: weakremover(perl-Data-Peek)
@@ -16561,7 +16557,6 @@
 Provides: weakremover(python3-kmod)
 Provides: weakremover(python3-kopano)
 Provides: weakremover(python3-lazy-object-proxy)
-Provides: weakremover(python3-ldns)
 Provides: weakremover(python3-lensfun)
 Provides: weakremover(python3-leveldb)
 Provides: weakremover(python3-lhafile)
@@ -20530,6 +20525,8 @@
 Provides: weakremover(lcms2)
 Provides: weakremover(ldb-tools)
 Provides: weakremover(ldirectord)
+Provides: weakremover(ldns)
+Provides: weakremover(ldns-devel)
 Provides: weakremover(ledger)
 Provides: weakremover(leptonica-devel)
 Provides: weakremover(leptonica-tools)
@@ -21077,6 +21074,7 @@
 Provides: weakremover(libldap-2_4-2)
 Provides: weakremover(libldb-devel)
 Provides: weakremover(libldb1)
+Provides: weakremover(libldns2)
 Provides: weakremover(liblightdm-gobject-1-0)
 Provides: weakremover(liblightdm-qt-3-0)
 Provides: weakremover(liblightdm-qt5-3-0)
@@ -22303,6 +22301,7 @@
 Provides: weakremover(perl-Crypt-SSLeay)
 Provides: weakremover(perl-DBD-mysql)
 Provides: weakremover(perl-DBI)
+Provides: weakremover(perl-DNS-LDNS)
 Provides: weakremover(perl-GraphicsMagick)
 Provides: weakremover(perl-Gtk2-Unique)
 Provides: weakremover(perl-Mail-SpamAssassin)
@@ -22638,6 +22637,7 @@
 Provides: weakremover(python3-ldap)
 Provides: weakremover(python3-ldb)
 Provides: weakremover(python3-ldb-devel)
+Provides: weakremover(python3-ldns)
 Provides: weakremover(python3-libcomps)
 Provides: weakremover(python3-libixion)
 Provides: weakremover(python3-libmount)




commit 000release-packages for openSUSE:Leap:15.2

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2 checked in at 2020-04-01 21:24:18

Comparing /work/SRC/openSUSE:Leap:15.2/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000release-packages.new.3248 (New)


Package is "000release-packages"

Wed Apr  1 21:24:18 2020 rev:896 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-release.spec: same change
stub.spec: same change
++ weakremovers.inc ++
--- /var/tmp/diff_new_pack.7xf8PX/_old  2020-04-01 21:24:20.770071920 +0200
+++ /var/tmp/diff_new_pack.7xf8PX/_new  2020-04-01 21:24:20.774071922 +0200
@@ -4380,6 +4380,8 @@
 Provides: weakremover(krb5-plugin-preauth-pkinit)
 Provides: weakremover(krb5-server)
 Provides: weakremover(ldirectord)
+Provides: weakremover(ldns)
+Provides: weakremover(ldns-devel)
 Provides: weakremover(libBasicUsageEnvironment1)
 Provides: weakremover(libIlmImf-2_2-23)
 Provides: weakremover(libIlmImfUtil-2_2-23)
@@ -4625,6 +4627,7 @@
 Provides: weakremover(libksuseinstall-devel)
 Provides: weakremover(libksuseinstall1)
 Provides: weakremover(libldap-2_4-2)
+Provides: weakremover(libldns2)
 Provides: weakremover(libliveMedia66)
 Provides: weakremover(liblmdb-0_9_17)
 Provides: weakremover(liblwres160)
@@ -5077,6 +5080,7 @@
 Provides: weakremover(perl-Bootloader-YAML)
 Provides: weakremover(perl-DBD-mysql)
 Provides: weakremover(perl-DBI)
+Provides: weakremover(perl-DNS-LDNS)
 Provides: weakremover(perl-PCP-LogImport)
 Provides: weakremover(perl-PCP-LogSummary)
 Provides: weakremover(perl-PCP-MMV)
@@ -5224,6 +5228,7 @@
 Provides: weakremover(python3-idle)
 Provides: weakremover(python3-ipa_hbac)
 Provides: weakremover(python3-kiwi)
+Provides: weakremover(python3-ldns)
 Provides: weakremover(python3-libxml2-python)
 Provides: weakremover(python3-nghttp2)
 Provides: weakremover(python3-pcp)




commit vagrant-sshfs for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package vagrant-sshfs for openSUSE:Factory 
checked in at 2020-04-01 22:56:42

Comparing /work/SRC/openSUSE:Factory/vagrant-sshfs (Old)
 and  /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.3248 (New)


Package is "vagrant-sshfs"

Wed Apr  1 22:56:42 2020 rev:8 rq:790711 version:1.3.4

Changes:

--- /work/SRC/openSUSE:Factory/vagrant-sshfs/vagrant-sshfs.changes  
2020-03-31 17:16:09.735662539 +0200
+++ /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.3248/vagrant-sshfs.changes
2020-04-01 22:56:43.596566432 +0200
@@ -1,0 +2,17 @@
+Wed Apr  1 20:38:10 UTC 2020 - Dan Čermák 
+
+- Fix test suite failures (boo#1168371)
+
+  The testsuite was implicitly assuming that /sbin/ is a symlink to /usr/sbin
+  (which is the case on Fedora, but not on opensuse). By switching to the
+  /var/run -> /run symlink, we fix this issue.
+
+  Also, the sed call in the spec file to change the Fedora box to
+  opensuse/Tumbleweed.$(uname -m) got removed and instead was moved into the
+  packaged Vagrantfile.
+
+  Added patches:
+  * 0001-Use-var-run-run-symlink-for-tests.patch
+  * 0002-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch
+
+---

New:

  0001-Use-var-run-run-symlink-for-tests.patch
  0002-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch



Other differences:
--
++ vagrant-sshfs.spec ++
--- /var/tmp/diff_new_pack.higzHw/_old  2020-04-01 22:56:47.136567591 +0200
+++ /var/tmp/diff_new_pack.higzHw/_new  2020-04-01 22:56:47.140567593 +0200
@@ -34,6 +34,10 @@
 Source2:https://keybase.io/dustymabe/pgp_keys.asc#/%{name}.keyring
 # custom script to automate the test suite run
 Source3:testsuite.sh
+# https://github.com/dustymabe/vagrant-sshfs/pull/109
+Patch0: 0001-Use-var-run-run-symlink-for-tests.patch
+# FIX-OPENSUSE use the Tumbleweed.$(uname -m) vagrant box instead of 
fedora/*-cloud-base
+Patch1: 0002-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  vagrant >= 1.9.1
@@ -66,7 +70,7 @@
 vagrant-sshfs.
 
 %prep
-%autosetup -c
+%autosetup -c -p1
 
 # since we don't have the full git repo we can't use `git ls-files`
 sed -i 's/git ls-files -z/find . -type f -print0/' 
%{vagrant_plugin_name}.gemspec
@@ -83,7 +87,6 @@
 %install
 %vagrant_plugin_install -n %{mod_full_name}.gem
 install -p -m 0755 %{SOURCE3} %{buildroot}/%{vagrant_plugin_instdir}/test/misc/
-sed -i "s#box  = '.*/.*'#box  = 'opensuse/Tumbleweed.$(uname -m)'#" 
%{buildroot}/%{vagrant_plugin_instdir}/test/misc/Vagrantfile
 
 %files
 %{vagrant_plugin_instdir}

++ 0001-Use-var-run-run-symlink-for-tests.patch ++
>From 99a62bb2bc01f042987a17e414a702ad2291ab26 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= 
Date: Wed, 1 Apr 2020 22:28:22 +0200
Subject: [PATCH 1/2] Use /var/run/ -> /run symlink for tests

The symlink /var/run -> /run is more common among different Linux distributions
than /sbin/ -> /usr/sbin. This makes the testsuite a bit more portable when
swapping the vagrant box for one of a different distro.
---
 test/misc/Vagrantfile | 2 +-
 test/misc/dotests.sh  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/misc/Vagrantfile b/test/misc/Vagrantfile
index e15376d..b975ffa 100644
--- a/test/misc/Vagrantfile
+++ b/test/misc/Vagrantfile
@@ -8,7 +8,7 @@ Vagrant.configure(2) do |config|
 
 # Test a forward mount to a location that is a symbolic link
 # https://github.com/dustymabe/vagrant-sshfs/issues/44
-config.vm.synced_folder "/etc/", 
"/sbin/forward_slave_mount_sym_link_test/", type: "sshfs"
+config.vm.synced_folder "/etc/", 
"/var/run/forward_slave_mount_sym_link_test/", type: "sshfs"
 
 # Test a forward normal mount:
 # mounting a folder from a 3rd party host into guest
diff --git a/test/misc/dotests.sh b/test/misc/dotests.sh
index e133e8e..e80b4c9 100644
--- a/test/misc/dotests.sh
+++ b/test/misc/dotests.sh
@@ -8,7 +8,7 @@ vagrant ssh -- cat /tmp/forward_slave_mount_etc/machine-id
 
 # https://github.com/dustymabe/vagrant-sshfs/issues/44
 echo -en "Testing slave forward mount with a symlink!\n\t"
-vagrant ssh -- cat /usr/sbin/forward_slave_mount_sym_link_test/machine-id
+vagrant ssh -- cat /run/forward_slave_mount_sym_link_test/machine-id
 
 echo -en "Testing normal forward mount!\n\t"
 vagrant ssh -- cat /tmp/forward_normal_mount_etc/machine-id
-- 
2.26.0

++ 0002-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch ++
>From 56f320784d5439fa30104c9b62e63135e693505f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= 
Date: Wed, 1 Apr 2020 22:34:10 

commit 000update-repos for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000update-repos for openSUSE:Factory 
checked in at 2020-04-01 21:07:02

Comparing /work/SRC/openSUSE:Factory/000update-repos (Old)
 and  /work/SRC/openSUSE:Factory/.000update-repos.new.3248 (New)


Package is "000update-repos"

Wed Apr  1 21:07:02 2020 rev:977 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.1:update_1585720565.packages.xz



Other differences:
--






















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































commit 000release-packages for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Factory checked in at 2020-04-02 07:13:32

Comparing /work/SRC/openSUSE:Factory/000release-packages (Old)
 and  /work/SRC/openSUSE:Factory/.000release-packages.new.3248 (New)


Package is "000release-packages"

Thu Apr  2 07:13:32 2020 rev:509 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-Addon-NonOss-release.spec ++
--- /var/tmp/diff_new_pack.sjHAS6/_old  2020-04-02 07:13:35.347937882 +0200
+++ /var/tmp/diff_new_pack.sjHAS6/_new  2020-04-02 07:13:35.347937882 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package openSUSE-Addon-NonOss-release (Version 20200331)
+# spec file for package openSUSE-Addon-NonOss-release (Version 20200401)
 #
 # Copyright (c) 2020 openSUSE.
 #
@@ -16,16 +16,16 @@
 Name:   openSUSE-Addon-NonOss-release
 %define product openSUSE-Addon-NonOss
 Summary:openSUSE NonOSS Addon%{?betaversion: %{betaversion}}
-Version:20200331
+Version:    20200401
 Release:0
 License:BSD-3-Clause
 Group:  System/Fhs
 
 Provides:   %name-%version
 Provides:   product() = openSUSE-Addon-NonOss
-Provides:   product(openSUSE-Addon-NonOss) = 20200331-0
+Provides:   product(openSUSE-Addon-NonOss) = 20200401-0
 Provides:   product-label() = non%20oss%20addon
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Daddon%2Dnonoss%3A20200331
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Daddon%2Dnonoss%3A20200401
 
 
 AutoReqProv:on
@@ -49,10 +49,10 @@
 
   openSUSE
   openSUSE-Addon-NonOss
-  20200331
+  20200401
   0
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-addon-nonoss:20200331
+  cpe:/o:opensuse:opensuse-addon-nonoss:20200401
   
 
 

++ openSUSE-MicroOS-release.spec ++
--- /var/tmp/diff_new_pack.sjHAS6/_old  2020-04-02 07:13:35.359937894 +0200
+++ /var/tmp/diff_new_pack.sjHAS6/_new  2020-04-02 07:13:35.359937894 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openSUSE-MicroOS-release
-Version:20200331
+Version:    20200401
 Release:0
 Summary:openSUSE MicroOS 
 License:GPL-2.0-or-later
@@ -169,9 +169,9 @@
 %include %{SOURCE100}
 Provides:   %name-%version
 Provides:   product() = openSUSE-MicroOS
-Provides:   product(openSUSE-MicroOS) = 20200331-0
+Provides:   product(openSUSE-MicroOS) = 20200401-0
 Provides:   product-label() = openSUSE%20MicroOS
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dmicroos%3A20200331
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dmicroos%3A20200401
 Provides:   product-url(releasenotes) = 
http%3A%2F%2Fdoc.opensuse.org%2Frelease%2Dnotes%2Fx86_64%2FopenSUSE%2FTumbleweed%2Frelease%2Dnotes%2DopenSUSE.rpm
 Provides:   product-endoflife()
 Requires:   product_flavor(openSUSE-MicroOS)
@@ -187,7 +187,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(dvd)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200331-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200401-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description dvd
@@ -203,7 +203,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(kubic-dvd)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200331-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200401-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description kubic-dvd
@@ -219,7 +219,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(appliance)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200331-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200401-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description appliance
@@ -235,7 +235,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(appliance-kubic)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200331-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200401-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description appliance-kubic
@@ -293,11 +293,11 @@
 
   openSUSE
   openSUSE-MicroOS
-  20200331
+  20200401
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-microos:20200331
+  cpe:/o:opensuse:opensuse-microos:20200401
   openSUSE-MicroOS
   
 

++ openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.sjHAS6/_old  2020-04-02 07:13:35.375937911 +0200
+++ /var/tmp/diff_new_pack.sjHAS6/_new  2020-04-02 07:13:35.379937915 +0200
@@ -20,7 +20,7 @

commit 000product for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2020-04-02 07:13:36

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


Package is "000product"

Thu Apr  2 07:13:36 2020 rev:2187 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi ++
--- /var/tmp/diff_new_pack.HHnhwl/_old  2020-04-02 07:13:43.631946481 +0200
+++ /var/tmp/diff_new_pack.HHnhwl/_new  2020-04-02 07:13:43.635946486 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -36,11 +36,11 @@
   true
   -x -2
   openSUSE
-  20200331
+  20200401
   11
-  cpe:/o:opensuse:opensuse-addon-nonoss:20200331,openSUSE NonOSS 
Addon
+  cpe:/o:opensuse:opensuse-addon-nonoss:20200401,openSUSE NonOSS 
Addon
   af ar be_BY bg br ca cy el et ga gl gu_IN he 
hi_IN hr ka km ko lt mk nn pa_IN rw sk sl sr_CS ss st tg th tr uk ve vi xh zu 

-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200331/i586
 
obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200331/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200401/i586
 
obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200401/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE

++ openSUSE-MicroOS-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.HHnhwl/_old  2020-04-02 07:13:43.651946502 +0200
+++ /var/tmp/diff_new_pack.HHnhwl/_new  2020-04-02 07:13:43.651946502 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,11 +35,11 @@
   true
   -x -2
   openSUSE
-  20200331
+  20200401
   11
-  cpe:/o:opensuse:opensuse-microos:20200331,openSUSE 
MicroOS
+  cpe:/o:opensuse:opensuse-microos:20200401,openSUSE 
MicroOS
   en_US 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-MicroOS/20200331/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-MicroOS/20200401/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE

openSUSE-MicroOS-dvd5-kubic-dvd-x86_64.kiwi: same change
++ openSUSE-cd-mini-i586.kiwi ++
--- /var/tmp/diff_new_pack.HHnhwl/_old  2020-04-02 07:13:43.695946548 +0200
+++ /var/tmp/diff_new_pack.HHnhwl/_new  2020-04-02 07:13:43.699946552 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,11 +32,11 @@
   true
   -x -2
   openSUSE
-  20200331
+  20200401
   11
-  cpe:/o:opensuse:opensuse:20200331,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200401,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200331/i586
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200401/i586
   openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE

++ openSUSE-cd-mini-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.HHnhwl/_old  2020-04-02 07:13:43.715946569 +0200
+++ /var/tmp/diff_new_pack.HHnhwl/_new  2020-04-02 07:13:43.715946569 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,11 +35,11 @@
   true
   -x -2
   openSUSE
-  20200331
+  20200401
   11
-  cpe:/o:opensuse:opensuse:20200331,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200401,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200331/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200401/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE
   /usr/share/kiwi/modules/plugins/openSUSE

++ openSUSE-dvd5-dvd-i586.kiwi ++
--- /var/tmp/diff_new_pack.HHnhwl/_old  2020-04-02 07:13:43.735946589 +0200
+++ /var/tmp/diff_new_pack.HHnhwl/_new  2020-04-02 07:13:43.735946589 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,11 +32,11 @@
   true
   -x -2
   openSUSE
-  20200331
+  20200401
   11
-  cpe:/o:opensuse:opensuse:20200331,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200401,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/202