Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-patatt for openSUSE:Factory checked in at 2023-06-01 17:20:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-patatt (Old) and /work/SRC/openSUSE:Factory/.python-patatt.new.2531 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-patatt" Thu Jun 1 17:20:57 2023 rev:7 rq:1090245 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-patatt/python-patatt.changes 2022-09-08 14:23:11.470604861 +0200 +++ /work/SRC/openSUSE:Factory/.python-patatt.new.2531/python-patatt.changes 2023-06-01 17:21:00.294688379 +0200 @@ -1,0 +2,7 @@ +Thu Jun 1 10:09:10 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 0.6.3: + * Split at 75 characters instead of 78 +- add keyring for validation + +------------------------------------------------------------------- Old: ---- patatt-0.6.2.tar.asc patatt-0.6.2.tar.gz New: ---- patatt-0.6.3.tar.asc patatt-0.6.3.tar.gz python-patatt.keyring ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-patatt.spec ++++++ --- /var/tmp/diff_new_pack.c4FWM5/_old 2023-06-01 17:21:00.878691842 +0200 +++ /var/tmp/diff_new_pack.c4FWM5/_new 2023-06-01 17:21:00.882691865 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-patatt # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,13 +19,14 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-patatt -Version: 0.6.2 +Version: 0.6.3 Release: 0 Summary: Cryptographic patch attestation for the masses License: MIT-0 URL: https://git.kernel.org/pub/scm/utils/patatt/patatt.git/ Source0: https://git.kernel.org/pub/scm/utils/patatt/patatt.git/snapshot/patatt-%{version}.tar.gz Source1: https://git.kernel.org/pub/scm/utils/patatt/patatt.git/snapshot/patatt-%{version}.tar.asc +Source2: python-patatt.keyring BuildRequires: %{python_module setuptools} BuildRequires: python-rpm-macros BuildArch: noarch ++++++ patatt-0.6.2.tar.gz -> patatt-0.6.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patatt-0.6.2/patatt/__init__.py new/patatt-0.6.3/patatt/__init__.py --- old/patatt-0.6.2/patatt/__init__.py 2022-08-25 22:41:52.000000000 +0200 +++ new/patatt-0.6.3/patatt/__init__.py 2023-01-25 21:04:22.000000000 +0100 @@ -51,7 +51,7 @@ CONFIGCACHE = dict() # My version -__VERSION__ = '0.6.2' +__VERSION__ = '0.6.3' MAX_SUPPORTED_FORMAT_VERSION = 1 @@ -451,7 +451,7 @@ return good, valid, trusted, signkey, signtime @staticmethod - def splitter(longstr: bytes, limit: int = 78) -> bytes: + def splitter(longstr: bytes, limit: int = 75) -> bytes: splitstr = list() first = True while len(longstr) > limit: