Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package picotool for openSUSE:Factory checked in at 2021-06-04 00:33:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/picotool (Old) and /work/SRC/openSUSE:Factory/.picotool.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "picotool" Fri Jun 4 00:33:17 2021 rev:5 rq:897118 version:1.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/picotool/picotool.changes 2021-05-12 19:32:52.158884906 +0200 +++ /work/SRC/openSUSE:Factory/.picotool.new.1898/picotool.changes 2021-06-04 00:33:26.436885352 +0200 @@ -1,0 +2,12 @@ +Thu Jun 3 09:35:18 UTC 2021 - Guillaume GARDET <guillaume.gar...@opensuse.org> + +- Add patch to fix build with GCC11: + * picotool-gh30.patch + +------------------------------------------------------------------- +Sun May 23 09:35:34 UTC 2021 - Mustafa ??al????kan <mus...@protonmail.com> + +- Upstream started to tag versions so drop _service and change + source to upstream tarball + +------------------------------------------------------------------- Old: ---- _service picotool-0.0~git20210424.a49dc0b.tar.gz New: ---- picotool-1.0.1.tar.gz picotool-gh30.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ picotool.spec ++++++ --- /var/tmp/diff_new_pack.rf3n2w/_old 2021-06-04 00:33:27.088885858 +0200 +++ /var/tmp/diff_new_pack.rf3n2w/_new 2021-06-04 00:33:27.092885861 +0200 @@ -17,10 +17,9 @@ %define sdk_version 1.1.2 - Name: picotool URL: https://github.com/raspberrypi/picotool -Version: 0.0~git20210424.a49dc0b +Version: 1.0.1 Release: 0 Summary: Tool to inspect RP2040 binaries License: BSD-3-Clause @@ -28,14 +27,17 @@ BuildRequires: cmake >= 3.12 BuildRequires: gcc-c++ BuildRequires: libusb-1_0-devel -Source0: %{name}-%{version}.tar.gz +Source0: https://github.com/raspberrypi/picotool/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: https://github.com/raspberrypi/pico-sdk/archive/%{sdk_version}.tar.gz#/pico-sdk-%{sdk_version}.tar.gz +# PATCH-FIX-UPSTREAM - https://github.com/raspberrypi/picotool/pull/30 +Patch1: picotool-gh30.patch %description Picotool is a tool for inspecting RP2040 binaries, and interacting with RP2040 devices when they are in BOOTSEL mode. %prep %setup -q -a 1 +%patch1 -p1 %build %cmake -DPICO_SDK_PATH="../pico-sdk-%{sdk_version}" ++++++ picotool-0.0~git20210424.a49dc0b.tar.gz -> picotool-1.0.1.tar.gz ++++++ ++++++ picotool-gh30.patch ++++++ >From 95b6027fcd3d8efb1854436156e336c6bbb02b7f Mon Sep 17 00:00:00 2001 From: Jannis Achstetter <krip...@kripserver.net> Date: Sun, 16 May 2021 22:16:41 +0200 Subject: [PATCH] Add missing #include <limits> to cli.h --- cli.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli.h b/cli.h index caafa61..5d79ec1 100644 --- a/cli.h +++ b/cli.h @@ -18,6 +18,7 @@ #include <iostream> #include <numeric> #include <sstream> +#include <limits> /** * Note this is a hastily hacked together command line parser. @@ -905,4 +906,4 @@ namespace cli { } } -#endif \ No newline at end of file +#endif