Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package parzip for openSUSE:Factory checked in at 2023-04-02 19:18:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/parzip (Old) and /work/SRC/openSUSE:Factory/.parzip.new.9019 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "parzip" Sun Apr 2 19:18:14 2023 rev:3 rq:1076717 version:1.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/parzip/parzip.changes 2020-03-31 17:17:12.003702083 +0200 +++ /work/SRC/openSUSE:Factory/.parzip.new.9019/parzip.changes 2023-04-02 19:18:14.972786673 +0200 @@ -1,0 +2,6 @@ +Sat Apr 1 22:32:59 UTC 2023 - Bjørn Lie <[email protected]> + +- Add parzip-fix-missing-includes.patch: Add missing includes + exposed by gcc 13. + +------------------------------------------------------------------- New: ---- parzip-fix-missing-includes.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ parzip.spec ++++++ --- /var/tmp/diff_new_pack.Pp0rtR/_old 2023-04-02 19:18:15.372788681 +0200 +++ /var/tmp/diff_new_pack.Pp0rtR/_new 2023-04-02 19:18:15.380788721 +0200 @@ -1,7 +1,7 @@ # # spec file for package parzip # -# Copyright (c) 2020 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 @@ -23,7 +23,9 @@ License: GPL-3.0-or-later Group: Productivity/Archiving/Compression URL: https://github.com/jpakkane/parzip -Source0: https://github.com/jpakkane/parzip/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +Source0: %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM parzip-fix-missing-includes.patch +Patch0: parzip-fix-missing-includes.patch BuildRequires: gcc-c++ BuildRequires: meson BuildRequires: pkgconfig @@ -49,7 +51,7 @@ archives split to multiple files %prep -%setup -q +%autosetup -p1 %build %meson ++++++ parzip-fix-missing-includes.patch ++++++ Index: parzip-1.3.0/src/decompress.cpp =================================================================== --- parzip-1.3.0.orig/src/decompress.cpp +++ parzip-1.3.0/src/decompress.cpp @@ -53,6 +53,7 @@ #include <cstring> #include <memory> +#include <stdexcept> #define CHUNK 1024 * 1024 Index: parzip-1.3.0/src/file.h =================================================================== --- parzip-1.3.0.orig/src/file.h +++ parzip-1.3.0/src/file.h @@ -19,6 +19,7 @@ #include <cstdio> #include <string> +#include <cstdint> class MMapper;
