Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-dbus-deviation for openSUSE:Factory checked in at 2024-01-22 20:34:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-dbus-deviation (Old) and /work/SRC/openSUSE:Factory/.python-dbus-deviation.new.16006 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-dbus-deviation" Mon Jan 22 20:34:11 2024 rev:5 rq:1140336 version:0.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-dbus-deviation/python-dbus-deviation.changes 2021-05-19 17:48:59.989630323 +0200 +++ /work/SRC/openSUSE:Factory/.python-dbus-deviation.new.16006/python-dbus-deviation.changes 2024-01-22 20:34:38.846145066 +0100 @@ -1,0 +2,8 @@ +Mon Jan 22 02:03:06 UTC 2024 - Steve Kowalik <steven.kowa...@suse.com> + +- Switch to autosetup and pyproject macros. +- Add Requires for update-alternatives. +- Add patch correct-test-assertion-methods.patch: + * Use non-removed test assertion methods. + +------------------------------------------------------------------- New: ---- correct-test-assertion-methods.patch BETA DEBUG BEGIN: New:- Add Requires for update-alternatives. - Add patch correct-test-assertion-methods.patch: * Use non-removed test assertion methods. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-dbus-deviation.spec ++++++ --- /var/tmp/diff_new_pack.tgkwQl/_old 2024-01-22 20:34:39.722177060 +0100 +++ /var/tmp/diff_new_pack.tgkwQl/_new 2024-01-22 20:34:39.722177060 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-dbus-deviation # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,17 +16,19 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define skip_python2 1 Name: python-dbus-deviation Version: 0.6.1 Release: 0 Summary: Parse D-Bus introspection XML and process it in various ways License: LGPL-2.1-or-later -URL: http://people.collabora.com/~pwith/dbus-deviation/ +URL: https://tecnocode.co.uk/dbus-deviation/ Source: https://files.pythonhosted.org/packages/source/d/dbus-deviation/dbus-deviation-%{version}.tar.gz +# PATCH-FIX-UPSTREAM gh#pwithnall/dbus-deviation#21 +Patch0: correct-test-assertion-methods.patch BuildRequires: %{python_module Sphinx} +BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-lxml @@ -34,6 +36,8 @@ # SECTION test requirements BuildRequires: %{python_module lxml} # /SECTION +Requires(post): update-alternatives +Requires(postun):update-alternatives %python_subpackages %description @@ -43,16 +47,16 @@ This functionality is also available as a Python module, dbusdeviation. %prep -%setup -q -n dbus-deviation-%{version} +%autosetup -p1 -n dbus-deviation-%{version} sed -i -e "/setuptools_/d" setup.py chmod -x dbusapi/tests/*.py dbusdeviation/tests/*.py dbusdeviation/utilities/*.py sed -i '1 {/^#!/d}' dbusapi/tests/*.py dbusdeviation/tests/*.py dbusdeviation/utilities/*.py %build -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_clone -a %{buildroot}%{_bindir}/dbus-interface-diff %python_clone -a %{buildroot}%{_bindir}/dbus-interface-vcs-helper %python_expand %fdupes %{buildroot}%{$python_sitelib} @@ -73,5 +77,5 @@ %python_alternative %{_bindir}/dbus-interface-vcs-helper %{python_sitelib}/dbusapi %{python_sitelib}/dbusdeviation -%{python_sitelib}/dbus_deviation-%{version}*-info +%{python_sitelib}/dbus_deviation-%{version}.dist-info ++++++ correct-test-assertion-methods.patch ++++++ >From 2ee6b32cc893eeda74a67593efc80f603b74a73c Mon Sep 17 00:00:00 2001 From: Steve Kowalik <ste...@wedontsleep.org> Date: Mon, 22 Jan 2024 12:41:49 +1100 Subject: [PATCH] Use self.assertEqual() everywhere self.assertEquals() has been deprecated since 3.1 and was finally removed in Python 3.12. Move with the times and use the correct method name. --- dbusapi/tests/test_ast.py | 6 +++--- dbusapi/tests/test_interfaceparser.py | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dbusapi/tests/test_ast.py b/dbusapi/tests/test_ast.py index 70979ea..462bb90 100755 --- a/dbusapi/tests/test_ast.py +++ b/dbusapi/tests/test_ast.py @@ -227,9 +227,9 @@ def test_walk(self): }) children = [node for node in iface.walk()] - self.assertEquals(len(children), 2) - self.assertEquals(children[0], method) - self.assertEquals(children[1], annotation) + self.assertEqual(len(children), 2) + self.assertEqual(children[0], method) + self.assertEqual(children[1], annotation) class TestAstSignatures(unittest.TestCase): diff --git a/dbusapi/tests/test_interfaceparser.py b/dbusapi/tests/test_interfaceparser.py index 1902534..09d54ec 100755 --- a/dbusapi/tests/test_interfaceparser.py +++ b/dbusapi/tests/test_interfaceparser.py @@ -459,13 +459,13 @@ def test_doc_comments(self): (parser, interfaces, _) = _test_parser(xml) interface = interfaces.get('I.I') self.assertIsNotNone(interface) - self.assertEquals(interface.comment, "Please consider me") + self.assertEqual(interface.comment, "Please consider me") meth = interface.methods.get('foo') self.assertIsNotNone(meth) - self.assertEquals(meth.comment, "Notice me too") - self.assertEquals(len(meth.arguments), 1) + self.assertEqual(meth.comment, "Notice me too") + self.assertEqual(len(meth.arguments), 1) arg = meth.arguments[0] - self.assertEquals(arg.comment, "And me!") + self.assertEqual(arg.comment, "And me!") def test_line_numbers(self): """Test that line numbers are correctly computed""" @@ -498,7 +498,7 @@ def test_line_numbers(self): self.assertIsNotNone(meth) self.assertEqual(meth.line_number, 9) self.assertEqual(meth.comment_line_number, 6) - self.assertEquals(len(meth.arguments), 2) + self.assertEqual(len(meth.arguments), 2) arg = meth.arguments[0] self.assertEqual(arg.line_number, 13) self.assertEqual(arg.comment_line_number, 10) @@ -517,7 +517,7 @@ def test_doc_annotations(self): (parser, interfaces, _) = _test_parser(xml) interface = interfaces.get('I.I') self.assertIsNotNone(interface) - self.assertEquals(interface.comment, "bla") + self.assertEqual(interface.comment, "bla") def test_multiline_comments(self): xml = ("<node xmlns:tp='" @@ -534,9 +534,9 @@ def test_multiline_comments(self): (parser, interfaces, _) = _test_parser(xml) interface = interfaces.get('I.I') self.assertIsNotNone(interface) - self.assertEquals(interface.comment, - " Please consider that\n" - " multiline comment") + self.assertEqual(interface.comment, + " Please consider that\n" + " multiline comment") def test_ignored_comments(self): xml = ("<node xmlns:tp='"