git: eb5486be0727 - main - archivers/zstr: Update 1.0.6-12 -> 1.0.7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 08 Dec 2022 11:11:29 UTC
The branch main has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=eb5486be07270cc0102f62e165c1f465998f6ffb
commit eb5486be07270cc0102f62e165c1f465998f6ffb
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-12-08 07:05:56 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-12-08 11:11:23 +0000
archivers/zstr: Update 1.0.6-12 -> 1.0.7
Reported by: portscout
---
archivers/zstr/Makefile | 4 +---
archivers/zstr/distinfo | 6 +++---
archivers/zstr/files/patch-src_strict__fstream.hpp | 13 -------------
3 files changed, 4 insertions(+), 19 deletions(-)
diff --git a/archivers/zstr/Makefile b/archivers/zstr/Makefile
index da85e6db034a..26e7c686ccdd 100644
--- a/archivers/zstr/Makefile
+++ b/archivers/zstr/Makefile
@@ -1,8 +1,6 @@
PORTNAME= zstr
DISTVERSIONPREFIX= v
-DISTVERSION= 1.0.6-12
-PORTREVISION= 1
-DISTVERSIONSUFFIX= -g85a5bd5
+DISTVERSION= 1.0.7
CATEGORIES= archivers devel
MAINTAINER= yuri@FreeBSD.org
diff --git a/archivers/zstr/distinfo b/archivers/zstr/distinfo
index 89bb7d6a2ddf..a49235bd99d8 100644
--- a/archivers/zstr/distinfo
+++ b/archivers/zstr/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1670012488
-SHA256 (mateidavid-zstr-v1.0.6-12-g85a5bd5_GH0.tar.gz) = 3736ba6bd89c0be586d1359afcef3aa05872a543beb229af7d08757be370b3e2
-SIZE (mateidavid-zstr-v1.0.6-12-g85a5bd5_GH0.tar.gz) = 11635
+TIMESTAMP = 1670483092
+SHA256 (mateidavid-zstr-v1.0.7_GH0.tar.gz) = 8d2ddae68ff7bd0a6fce6150a8f52ad9ce1bed2c4056c8846f4dec4f2dc60819
+SIZE (mateidavid-zstr-v1.0.7_GH0.tar.gz) = 11743
diff --git a/archivers/zstr/files/patch-src_strict__fstream.hpp b/archivers/zstr/files/patch-src_strict__fstream.hpp
deleted file mode 100644
index 02e38142256f..000000000000
--- a/archivers/zstr/files/patch-src_strict__fstream.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-- https://github.com/mateidavid/zstr/issues/60
-
---- src/strict_fstream.hpp.orig 2022-12-02 20:40:17 UTC
-+++ src/strict_fstream.hpp
-@@ -64,7 +64,7 @@ static std::string strerror()
- } else {
- return "Unknown error (" + std::to_string(err_num) + ")";
- }
--#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600 || defined(__APPLE__)) && ! _GNU_SOURCE) || defined(__MUSL__)
-+#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600 || defined(__APPLE__) || defined(__FreeBSD__)) && ! _GNU_SOURCE) || defined(__MUSL__)
- // XSI-compliant strerror_r()
- const int err_num = errno; // See above
- if (strerror_r(err_num, buff.data(), buff.size()) == 0) {