Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package b4 for openSUSE:Factory checked in 
at 2021-06-02 22:11:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/b4 (Old)
 and      /work/SRC/openSUSE:Factory/.b4.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "b4"

Wed Jun  2 22:11:20 2021 rev:15 rq:895862 version:0.7.0+0

Changes:
--------
--- /work/SRC/openSUSE:Factory/b4/b4.changes    2021-04-06 17:32:29.771307980 
+0200
+++ /work/SRC/openSUSE:Factory/.b4.new.1898/b4.changes  2021-06-02 
22:11:39.680130072 +0200
@@ -1,0 +2,60 @@
+Thu May 27 06:30:41 UTC 2021 - [email protected]
+
+- Update to version 0.7.0+0:
+  * Add new b4 pr flags
+  * Check uids on the key when using default keyring
+  * Update attestation section in the README
+  * Don't depend on List-Archive lore header
+  * Handle situations where -f only has an email
+  * Fix pr -l where we introduced var collision
+  * Bump patatt to 0.4.2
+  * Avoid type error when local mbox lacks specified message ID
+  * Tweak lore.kernel.org match
+  * Return early if no messages retrieved
+  * Strip any List-* headers matching lore
+  * Move --show-keys into its own kr subcommand
+  * Handle partial reroll of series without cover
+  * Don't crash on absent cover letter
+  * Warn when we find an "Obsoleted-by" trailer
+  * Reimplement single-msgid cherrypicking
+  * Initial support for Obsoleted-by: trailer
+  * Cherrypick from the correct series revision
+  * Write maildir atomically
+  * Minor visual tweak in output
+  * Fix a crash on incomplete/missing threads
+  * Tweak output filenames
+  * Document save-maildirs and -M options
+  * Don't use mboxo for anything
+  * Allow passing entire mbox via stdin
+  * Perform mboxo unescaping before DKIM check
+  * Implement partial reroll
+  * Don't try to read stdin multiple times
+  * Restore check for attestation-check-dkim
+  * Improve subject parsing for bracketed prefixes
+  * Ensure trailers are tracked with source messages
+  * Fix DKIM check on headers that don't lowercase h
+  * Properly fail with BADSIG on bad signature
+  * Force datetime to UTC if it's native
+  * Fix crash when PGP key not in default keyring
+  * Clean up after ourselves
+  * Rudimentary support for showing patatt key info
+  * Fix for DKIM signatures without t= field
+  * Reimplement attestation-staleness-days
+  * Python 3.6 compatibility fixes
+  * Remove sendemail-validte hook
+  * Reimplement attestation code one more time
+  * Loosen compatible release identifiers for install_requires
+  * Save to/cc headers as-is for tracking
+  * Add -f to "b4 mbox" to filter dupes
+  * Check if -o is a maildir
+  * Recognize merged PRs when attempting auto-base
+  * Raise RuntimeError instead of exiting
+  * Convert mboxrd to mboxo
+  * Allow passing extra opts to git-format-patch
+  * Fix crasher when we don't use -g with b4 pr
+  * Rework b4 pr exploder for transparency log needs
+  * DKIM: remove extra public-inbox headers
+  * Only check allow-list of trailers in follow-ups
+  * Add BugLink to non-person trailers
+
+-------------------------------------------------------------------

Old:
----
  b4-0.6.2+5.obscpio

New:
----
  b4-0.7.0+0.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ b4.spec ++++++
--- /var/tmp/diff_new_pack.9qoygM/_old  2021-06-02 22:11:40.140130830 +0200
+++ /var/tmp/diff_new_pack.9qoygM/_new  2021-06-02 22:11:40.144130836 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define version_unconverted 0.6.2+5
+%define version_unconverted 0.7.0+0
 Name:           b4
-Version:        0.6.2+5
+Version:        0.7.0+0
 Release:        0
 Summary:        Helper scripts for kernel.org patches
 License:        GPL-2.0-or-later
@@ -26,12 +26,17 @@
 URL:            https://git.kernel.org/pub/scm/utils/b4/b4.git
 Source0:        %{name}-%{version}.tar.xz
 BuildArch:      noarch
-# for checks
+# SECTION test requirements
 BuildRequires:  git-core
+BuildRequires:  python3-dkimpy
+BuildRequires:  python3-dnspython
+BuildRequires:  python3-patatt
 BuildRequires:  python3-requests
+# /SECTION
 BuildRequires:  python3-setuptools
 Requires:       python3-dkimpy >= 1.0.5
 Requires:       python3-dnspython >= 2.0.0
+Requires:       python3-patatt >= 0.4
 Requires:       python3-requests >= 2.24.0
 
 %description
@@ -46,6 +51,9 @@
 %prep
 %autosetup -p1
 
+# use the system one
+rm -rf patatt
+
 # ditch shebang from .py files, they are non-executables anyway
 sed -i.old '1{/#!.*/d}' b4/*.py
 
@@ -59,11 +67,11 @@
 %check
 python3 setup.py check
 export PYTHONPATH="./"
-THEIRS=`python3 ./b4/command.py --version`
+THEIRS=`%{buildroot}/%{_bindir}/b4 --version`
 OURS=`sed -n "s/__VERSION__ = '\(.*\)'/\1/p" b4/__init__.py`
 test "$THEIRS" = "$OURS"
-python3 ./b4/command.py --help |grep -q 'mbox,am,attest'
-python3 ./b4/command.py mbox abc |& grep -q 'Looking up 
https://lore.kernel.org/r/abc'
+%{buildroot}/%{_bindir}/b4 --help |grep -q 'mbox,am,attest'
+%{buildroot}/%{_bindir}/b4 mbox abc |& grep -q 'Looking up 
https://lore.kernel.org/r/abc'
 
 %files
 %doc README.rst

++++++ _service ++++++
--- /var/tmp/diff_new_pack.9qoygM/_old  2021-06-02 22:11:40.172130882 +0200
+++ /var/tmp/diff_new_pack.9qoygM/_new  2021-06-02 22:11:40.172130882 +0200
@@ -3,7 +3,7 @@
     <param name="url">git://git.kernel.org/pub/scm/utils/b4/b4.git</param>
     <param name="scm">git</param>
     <param name="changesgenerate">enable</param>
-    <param name="revision">stable-0.6.y</param>
+    <param name="revision">stable-0.7.y</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.9qoygM/_old  2021-06-02 22:11:40.188130909 +0200
+++ /var/tmp/diff_new_pack.9qoygM/_new  2021-06-02 22:11:40.188130909 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">git://git.kernel.org/pub/scm/utils/b4/b4.git</param>
-              <param 
name="changesrevision">e66d514b4113fffc81e48c7c531dcf148ba8b8e8</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">ee5e56d06c786d7906c214fc1f8cbbeeb3e658a6</param></service></servicedata>
\ No newline at end of file

++++++ b4-0.6.2+5.obscpio -> b4-0.7.0+0.obscpio ++++++
++++ 6905 lines of diff (skipped)

++++++ b4.obsinfo ++++++
--- /var/tmp/diff_new_pack.9qoygM/_old  2021-06-02 22:11:40.292131080 +0200
+++ /var/tmp/diff_new_pack.9qoygM/_new  2021-06-02 22:11:40.296131087 +0200
@@ -1,5 +1,5 @@
 name: b4
-version: 0.6.2+5
-mtime: 1614627630
-commit: e66d514b4113fffc81e48c7c531dcf148ba8b8e8
+version: 0.7.0+0
+mtime: 1622050582
+commit: ee5e56d06c786d7906c214fc1f8cbbeeb3e658a6
 

Reply via email to