From 2bf7949a63ae7879aa36184ce5cf02bdd14ea675e65ab61a6797fda2f39b0655 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Tue, 26 May 2020 13:06:17 +0000 Subject: [PATCH] up to 0.5.0+git20200526.ga926bac9e6c2 OBS-URL: https://build.opensuse.org/package/show/devel:tools/b4?expand=0&rev=2 --- 0001-fix-unicode.patch | 32 -------------------------------- _servicedata | 2 +- b4.changes | 9 +++++++++ b4.spec | 5 ++--- 4 files changed, 12 insertions(+), 36 deletions(-) delete mode 100644 0001-fix-unicode.patch diff --git a/0001-fix-unicode.patch b/0001-fix-unicode.patch deleted file mode 100644 index 8b9be56..0000000 --- a/0001-fix-unicode.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 345a58f37d51b302937a14f623076c5dd13dcc32 Mon Sep 17 00:00:00 2001 -From: Jiri Slaby -Date: Tue, 26 May 2020 13:40:37 +0200 -Subject: [PATCH] fix unicode - ---- - setup.py | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index ed24367c6c56..c73c9f4b2b0b 100644 ---- a/setup.py -+++ b/setup.py -@@ -1,5 +1,6 @@ - #!/usr/bin/env python3 - -+import io - import os - import re - from setuptools import setup -@@ -11,7 +12,7 @@ from setuptools import setup - - - def read(fname): -- return open(os.path.join(os.path.dirname(__file__), fname)).read() -+ return io.open(os.path.join(os.path.dirname(__file__), fname), "r", encoding="utf-8").read() - - - def find_version(source): --- -2.26.2 - diff --git a/_servicedata b/_servicedata index 09b154f..1255387 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ git://git.kernel.org/pub/scm/utils/b4/b4.git - 59be08453137a3b9c6a25dc6787b5066a88a84cd \ No newline at end of file + a926bac9e6c222e1bfe87ce79d925083c5879060 \ No newline at end of file diff --git a/b4.changes b/b4.changes index c81a61e..1b30a03 100644 --- a/b4.changes +++ b/b4.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Tue May 26 13:05:22 UTC 2020 - jslaby@suse.com + +- Update to version 0.5.0+git20200526.ga926bac9e6c2: + * Use unicode escape sequences + * Up the version to 0.6.0-dev + * Prepare for 0.5.0 + * Backfill series before diffing them + ------------------------------------------------------------------- Tue May 26 09:56:21 UTC 2020 - Jiri Slaby diff --git a/b4.spec b/b4.spec index fde39a2..675525e 100644 --- a/b4.spec +++ b/b4.spec @@ -17,16 +17,15 @@ %define skip_python2 1 -%define version_unconverted 0.4.0+git20200525.g59be08453137 +%define version_unconverted 0.5.0+git20200526.ga926bac9e6c2 Name: b4 -Version: 0.4.0+git20200525.g59be08453137 +Version: 0.5.0+git20200526.ga926bac9e6c2 Release: 0 Summary: Helper scripts for kernel.org patches License: GPL-2.0-or-later URL: https://git.kernel.org/pub/scm/utils/b4/b4.git Group: Development/Tools/Other Source0: %{name}-%{version}.tar.xz -Patch0: 0001-fix-unicode.patch BuildArch: noarch BuildRequires: %{python_module setuptools}