git: 4c68997a512e - main - textproc/ugrep: Update to 7.1.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 30 Dec 2024 17:00:49 UTC
The branch main has been updated by ashish:
URL: https://cgit.FreeBSD.org/ports/commit/?id=4c68997a512e25abc3ea573830911c29b4138240
commit 4c68997a512e25abc3ea573830911c29b4138240
Author: Ashish SHUKLA <ashish@FreeBSD.org>
AuthorDate: 2024-12-30 16:54:32 +0000
Commit: Ashish SHUKLA <ashish@FreeBSD.org>
CommitDate: 2024-12-30 17:00:28 +0000
textproc/ugrep: Update to 7.1.2
- Remove the unneeded patch
---
textproc/ugrep/Makefile | 2 +-
textproc/ugrep/distinfo | 6 +++---
textproc/ugrep/files/patch-src_zstream.hpp | 11 -----------
3 files changed, 4 insertions(+), 15 deletions(-)
diff --git a/textproc/ugrep/Makefile b/textproc/ugrep/Makefile
index 08d10f5721dd..4c61650dbe74 100644
--- a/textproc/ugrep/Makefile
+++ b/textproc/ugrep/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ugrep
DISTVERSIONPREFIX= v
-DISTVERSION= 7.1.1
+DISTVERSION= 7.1.2
CATEGORIES= textproc
MAINTAINER= ashish@FreeBSD.org
diff --git a/textproc/ugrep/distinfo b/textproc/ugrep/distinfo
index 76d33c3dc109..568c0fb8f5ed 100644
--- a/textproc/ugrep/distinfo
+++ b/textproc/ugrep/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1732964723
-SHA256 (Genivia-ugrep-v7.1.1_GH0.tar.gz) = 89e3d7898995d1aff44c0231d65ce2b78d991db198544723526576f9a46f0578
-SIZE (Genivia-ugrep-v7.1.1_GH0.tar.gz) = 7120113
+TIMESTAMP = 1735577654
+SHA256 (Genivia-ugrep-v7.1.2_GH0.tar.gz) = 1e016791c09bfd44df14a7e00af64c10cb559fa7fd1fe3ba4b87b2c73be5e264
+SIZE (Genivia-ugrep-v7.1.2_GH0.tar.gz) = 7120839
diff --git a/textproc/ugrep/files/patch-src_zstream.hpp b/textproc/ugrep/files/patch-src_zstream.hpp
deleted file mode 100644
index 715484065756..000000000000
--- a/textproc/ugrep/files/patch-src_zstream.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/zstream.hpp.orig 2024-11-29 20:51:51 UTC
-+++ src/zstream.hpp
-@@ -2626,7 +2626,7 @@ class zstreambuf : public std::streambuf {
- if (block_size > bz3file_->max ||
- bz3file_->len > bz3file_->max ||
- fread(bz3file_->buf, 1, block_size, file_) < block_size ||
-- bz3_decode_block(bz3file_->strm, bz3file_->buf, block_size, bz3file_->len) < 0)
-+ bz3_decode_block(bz3file_->strm, bz3file_->buf, bz3file_->max, block_size, bz3file_->len) < 0)
- {
- if (ferror(file_))
- warning("cannot read", pathname_);