Accepting request 1077043 from home:iznogood:branches:Archiving

New upstream release

OBS-URL: https://build.opensuse.org/request/show/1077043
OBS-URL: https://build.opensuse.org/package/show/Archiving/parzip?expand=0&rev=7
This commit is contained in:
2023-04-12 07:32:36 +00:00
committed by Git OBS Bridge
parent 943a941f25
commit ef7a8e6aa9
5 changed files with 18 additions and 31 deletions
+12
View File
@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Apr 3 17:32:58 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 1.4.0:
* Start using std::filesystem instead of native code.
* More use of C++ filesystem library.
* Update to new style wrapdb deps.
* Add #include <stdexcept>
* Add #include <cstdint> in file.h
- Drop parzip-fix-missing-includes.patch: Patch applied upstream.
- Replace gcc-c++ with generic c++_compiler BuildRequires.
-------------------------------------------------------------------
Sat Apr 1 22:32:59 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
+3 -4
View File
@@ -17,16 +17,15 @@
Name: parzip
Version: 1.3.0
Version: 1.4.0
Release: 0
Summary: Parallel pkzip implementation
License: GPL-3.0-or-later
Group: Productivity/Archiving/Compression
URL: https://github.com/jpakkane/parzip
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: c++_compiler
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(liblzma)
-3
View File
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d19e6c7de7f0b4a8b3646655fd8c53ead9055148fd319c13b84f6cea03ff4c8
size 56047
+3
View File
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51ab728ff8d85957e4036f96545abaa588cadc13bbf189606f5fd76a5910bec8
size 55769
-24
View File
@@ -1,24 +0,0 @@
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;