Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package b4 for openSUSE:Factory checked in at 2022-03-28 17:01:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/b4 (Old) and /work/SRC/openSUSE:Factory/.b4.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "b4" Mon Mar 28 17:01:09 2022 rev:21 rq:965356 version:0.8.0+2 Changes: -------- --- /work/SRC/openSUSE:Factory/b4/b4.changes 2021-09-02 23:20:29.364566543 +0200 +++ /work/SRC/openSUSE:Factory/.b4.new.1900/b4.changes 2022-03-28 17:02:11.345102065 +0200 @@ -1,0 +2,7 @@ +Mon Mar 21 10:21:21 UTC 2022 - [email protected] + +- Update to version 0.8.0+2: + * Allow whitespace at the start of non-wrapped trailers + * validate: Use patatt's configured keyring as fallback + +------------------------------------------------------------------- Old: ---- b4-0.8.0+0.obscpio New: ---- b4-0.8.0+2.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ b4.spec ++++++ --- /var/tmp/diff_new_pack.yDL40q/_old 2022-03-28 17:02:11.829102723 +0200 +++ /var/tmp/diff_new_pack.yDL40q/_new 2022-03-28 17:02:11.833102729 +0200 @@ -1,7 +1,7 @@ # # spec file for package b4 # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,9 +16,9 @@ # -%define version_unconverted 0.8.0+0 +%define version_unconverted 0.8.0+2 Name: b4 -Version: 0.8.0+0 +Version: 0.8.0+2 Release: 0 Summary: Helper scripts for kernel.org patches License: GPL-2.0-or-later ++++++ _service ++++++ --- /var/tmp/diff_new_pack.yDL40q/_old 2022-03-28 17:02:11.861102767 +0200 +++ /var/tmp/diff_new_pack.yDL40q/_new 2022-03-28 17:02:11.865102772 +0200 @@ -1,6 +1,6 @@ <services> <service name="obs_scm" mode="disabled"> - <param name="url">git://git.kernel.org/pub/scm/utils/b4/b4.git</param> + <param name="url">https://git.kernel.org/pub/scm/utils/b4/b4</param> <param name="scm">git</param> <param name="changesgenerate">enable</param> <param name="revision">stable-0.8.y</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.yDL40q/_old 2022-03-28 17:02:11.885102799 +0200 +++ /var/tmp/diff_new_pack.yDL40q/_new 2022-03-28 17:02:11.889102805 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> - <param name="url">git://git.kernel.org/pub/scm/utils/b4/b4.git</param> - <param name="changesrevision">d8937ede7064a74623a9d1ef260d5d50a146dd44</param></service></servicedata> + <param name="url">https://git.kernel.org/pub/scm/utils/b4/b4</param> + <param name="changesrevision">846c6928b70727e3f8002f1e9c71176d2b824093</param></service></servicedata> (No newline at EOF) ++++++ b4-0.8.0+0.obscpio -> b4-0.8.0+2.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/b4-0.8.0+0/.gitignore new/b4-0.8.0+2/.gitignore --- old/b4-0.8.0+0/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/b4-0.8.0+2/.gitignore 2022-02-01 16:37:59.000000000 +0100 @@ -0,0 +1,18 @@ +*.swp +*.pyc +*.pyo +*.json +*.pdf +test.log +build/* +dist/* +MANIFEST +.idea +__pycache__ +*.egg-info +*.patch +*.mbx +*.maildir +*.cover +*.thanks +.venv diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/b4-0.8.0+0/b4/__init__.py new/b4-0.8.0+2/b4/__init__.py --- old/b4-0.8.0+0/b4/__init__.py 2021-09-01 15:12:37.000000000 +0200 +++ new/b4-0.8.0+2/b4/__init__.py 2022-02-01 16:37:59.000000000 +0100 @@ -1115,7 +1115,11 @@ config = get_main_config() sources = config.get('keyringsrc') if not sources: - sources = ['ref:::.keys', 'ref:::.local-keys', 'ref::refs/meta/keyring:'] + # fallback to patatt's keyring if none is specified for b4 + patatt_config = patatt.get_config_from_git(r'patatt\..*', multivals=['keyringsrc']) + sources = patatt_config.get('keyringsrc') + if not sources: + sources = ['ref:::.keys', 'ref:::.local-keys', 'ref::refs/meta/keyring:'] if pdir not in sources: sources.append(pdir) @@ -1388,7 +1392,7 @@ was_trailer = False for line in body.split('\n'): line = line.strip('\r') - matches = re.search(r'^(\w\S+):\s+(\S.*)', line, flags=re.I) + matches = re.search(r'^\s*(\w\S+):\s+(\S.*)', line, flags=re.I) if matches: groups = list(matches.groups()) # We only accept headers if we haven't seen any non-trailer lines diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/b4-0.8.0+0/patatt/.gitignore new/b4-0.8.0+2/patatt/.gitignore --- old/b4-0.8.0+0/patatt/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/b4-0.8.0+2/patatt/.gitignore 2022-02-01 16:37:59.000000000 +0100 @@ -0,0 +1,10 @@ +*~ +*.pyc +*.swp +__pycache__ +.venv +.idea +*.egg-info +build +dist +outgoing ++++++ b4.obsinfo ++++++ --- /var/tmp/diff_new_pack.yDL40q/_old 2022-03-28 17:02:12.033103001 +0200 +++ /var/tmp/diff_new_pack.yDL40q/_new 2022-03-28 17:02:12.037103006 +0200 @@ -1,6 +1,5 @@ name: b4 -version: 0.8.0+0 -mtime: 1630501957 -commit: d8937ede7064a74623a9d1ef260d5d50a146dd44 - +version: 0.8.0+2 +mtime: 1643729879 +commit: 846c6928b70727e3f8002f1e9c71176d2b824093
