Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pbr for openSUSE:Factory checked in at 2022-08-22 11:04:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pbr (Old) and /work/SRC/openSUSE:Factory/.python-pbr.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pbr" Mon Aug 22 11:04:47 2022 rev:60 rq:998219 version:5.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pbr/python-pbr.changes 2022-08-12 17:46:15.394056216 +0200 +++ /work/SRC/openSUSE:Factory/.python-pbr.new.2083/python-pbr.changes 2022-08-22 11:04:51.245664987 +0200 @@ -1,0 +2,8 @@ +Fri Aug 19 16:24:19 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- update to 5.10.0: + * Specify Changelog procedure + * Allow leading spaces when determining symbols + * Adding python classifiers py38 & py39 + +------------------------------------------------------------------- Old: ---- pbr-5.9.0.tar.gz New: ---- pbr-5.10.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pbr.spec ++++++ --- /var/tmp/diff_new_pack.d4cQyN/_old 2022-08-22 11:04:51.809666221 +0200 +++ /var/tmp/diff_new_pack.d4cQyN/_new 2022-08-22 11:04:51.813666230 +0200 @@ -26,7 +26,7 @@ %bcond_with test %endif Name: python-pbr%{psuffix} -Version: 5.9.0 +Version: 5.10.0 Release: 0 Summary: Python Build Reasonableness License: Apache-2.0 ++++++ pbr-5.9.0.tar.gz -> pbr-5.10.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/AUTHORS new/pbr-5.10.0/AUTHORS --- old/pbr-5.9.0/AUTHORS 2022-05-05 11:53:08.000000000 +0200 +++ new/pbr-5.10.0/AUTHORS 2022-08-11 16:02:39.000000000 +0200 @@ -20,6 +20,7 @@ Chang Bo Guo <guoc...@cn.ibm.com> ChangBo Guo(gcb) <eric....@easystack.cn> Chris Dent <cd...@anticdent.org> +Chris Dohmen <chris.doh...@sciencelogic.com> Christian Berendt <bere...@b1-systems.de> Chuck Short <chuck.sh...@canonical.com> Clark Boylan <clark.boy...@gmail.com> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/CONTRIBUTING.rst new/pbr-5.10.0/CONTRIBUTING.rst --- old/pbr-5.9.0/CONTRIBUTING.rst 2022-05-05 11:52:40.000000000 +0200 +++ new/pbr-5.10.0/CONTRIBUTING.rst 2022-08-11 16:01:20.000000000 +0200 @@ -9,6 +9,11 @@ https://docs.opendev.org/opendev/infra-manual/latest/developers.html#development-workflow +Release notes are managed through the tool +`reno <https://pypi.org/project/reno/>`_. This tool will create +a new file under the directory ``releasenotes`` that should +be checked in with the code changes. + Pull requests submitted through GitHub will be ignored. Bugs should be filed on Launchpad, not GitHub: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/ChangeLog new/pbr-5.10.0/ChangeLog --- old/pbr-5.9.0/ChangeLog 2022-05-05 11:53:08.000000000 +0200 +++ new/pbr-5.10.0/ChangeLog 2022-08-11 16:02:39.000000000 +0200 @@ -1,6 +1,13 @@ CHANGES ======= +5.10.0 +------ + +* Specify Changelog procedure +* Allow leading spaces when determining symbols +* Adding python classifiers py38 & py39 + 5.9.0 ----- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/PKG-INFO new/pbr-5.10.0/PKG-INFO --- old/pbr-5.9.0/PKG-INFO 2022-05-05 11:53:08.682916900 +0200 +++ new/pbr-5.10.0/PKG-INFO 2022-08-11 16:02:39.758154200 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pbr -Version: 5.9.0 +Version: 5.10.0 Summary: Python Build Reasonableness Home-page: https://docs.openstack.org/pbr/latest/ Author: OpenStack @@ -25,5 +25,7 @@ Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 Requires-Python: >=2.6 Description-Content-Type: text/x-rst; charset=UTF-8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/pbr/packaging.py new/pbr-5.10.0/pbr/packaging.py --- old/pbr-5.9.0/pbr/packaging.py 2022-05-05 11:52:40.000000000 +0200 +++ new/pbr-5.10.0/pbr/packaging.py 2022-08-11 16:01:20.000000000 +0200 @@ -694,7 +694,7 @@ git_dir) header_len = len('sem-ver:') commands = [line[header_len:].strip() for line in changelog.split('\n') - if line.lower().startswith('sem-ver:')] + if line.lower().strip().startswith('sem-ver:')] symbols = set() for command in commands: symbols.update([symbol.strip() for symbol in command.split(',')]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/pbr/tests/test_packaging.py new/pbr-5.10.0/pbr/tests/test_packaging.py --- old/pbr-5.9.0/pbr/tests/test_packaging.py 2022-05-05 11:52:40.000000000 +0200 +++ new/pbr-5.10.0/pbr/tests/test_packaging.py 2022-08-11 16:01:20.000000000 +0200 @@ -672,6 +672,20 @@ version = packaging._get_version_from_git() self.assertThat(version, matchers.StartsWith('2.0.0.dev1')) + def test_leading_space(self): + self.repo.commit() + self.repo.tag('1.2.3') + self.repo.commit(' sem-ver: api-break') + version = packaging._get_version_from_git() + self.assertThat(version, matchers.StartsWith('2.0.0.dev1')) + + def test_leading_characters_symbol_not_found(self): + self.repo.commit() + self.repo.tag('1.2.3') + self.repo.commit(' ssem-ver: api-break') + version = packaging._get_version_from_git() + self.assertThat(version, matchers.StartsWith('1.2.4.dev1')) + def test_tagged_version_has_tag_version(self): self.repo.commit() self.repo.tag('1.2.3') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/pbr.egg-info/PKG-INFO new/pbr-5.10.0/pbr.egg-info/PKG-INFO --- old/pbr-5.9.0/pbr.egg-info/PKG-INFO 2022-05-05 11:53:08.000000000 +0200 +++ new/pbr-5.10.0/pbr.egg-info/PKG-INFO 2022-08-11 16:02:39.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pbr -Version: 5.9.0 +Version: 5.10.0 Summary: Python Build Reasonableness Home-page: https://docs.openstack.org/pbr/latest/ Author: OpenStack @@ -25,5 +25,7 @@ Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 Requires-Python: >=2.6 Description-Content-Type: text/x-rst; charset=UTF-8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-5.9.0/setup.cfg new/pbr-5.10.0/setup.cfg --- old/pbr-5.9.0/setup.cfg 2022-05-05 11:53:08.682916900 +0200 +++ new/pbr-5.10.0/setup.cfg 2022-08-11 16:02:39.758154200 +0200 @@ -25,6 +25,8 @@ Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 [options] python_requires = >=2.6