From: Laurent Cheylus Subject: Re: [maintainer update] sysutils/fzf 0.71.0 To: Volker Schlecht Cc: ports , dgl@openbsd.org Date: Sun, 5 Apr 2026 18:24:08 +0200 Hi Volker, ----- Mail original ----- > On 4/4/26 11:48 AM, Laurent Cheylus wrote: > > Hi ports@ > > > > simple update for sysutils/fzf to the latest version 0.71.0. > > Changelog: https://github.com/junegunn/fzf/releases/tag/v0.71.0 > Given that this made it in: > > https://github.com/junegunn/fzf/pull/4719 > > Shouldn't we drop the patch? You're right. Attached a new version of my diff for fzf 0.71.0 without patch => my commit and dlg@ one for pledge are available in this version (commited upstream before release). Thanks, Laurent Index: Makefile =================================================================== RCS file: /cvs/ports/sysutils/fzf/Makefile,v diff -u -p -r1.57 Makefile --- Makefile 4 Mar 2026 18:35:19 -0000 1.57 +++ Makefile 5 Apr 2026 16:21:09 -0000 @@ -1,6 +1,6 @@ COMMENT = command-line fuzzy finder -V = 0.70.0 +V = 0.71.0 MODGO_MODNAME = github.com/junegunn/fzf MODGO_VERSION = v${V} Index: distinfo =================================================================== RCS file: /cvs/ports/sysutils/fzf/distinfo,v diff -u -p -r1.48 distinfo --- distinfo 4 Mar 2026 18:35:19 -0000 1.48 +++ distinfo 5 Apr 2026 16:21:09 -0000 @@ -1,4 +1,4 @@ -SHA256 (fzf-0.70.0.zip) = 8bOgsqvSoNjp/R2LrUAg0DqyRH4nhcfonVoc2dKdY34= +SHA256 (fzf-0.71.0.zip) = FPW2I1ZZpaZtpCXRJQbPFn9m0gEqzl+/InG4MyhZ0qY= SHA256 (go_modules/github.com/charlievieth/fastwalk/@v/v1.0.14.mod) = Zj95BXVMltgHzmGn6DUhzWdhku/gmGkmRR1PxDU+JaA= SHA256 (go_modules/github.com/charlievieth/fastwalk/@v/v1.0.14.zip) = CPuBKrWH17sQ1w2Irc5JYhjnUBx7FxkTiTelTYH1/sk= SHA256 (go_modules/github.com/gdamore/encoding/@v/v1.0.1.mod) = Z2IawwIkfAvI+iS78TchCDbgwG1nxBFsjI+YHhY9AEM= @@ -65,7 +65,7 @@ SHA256 (go_modules/golang.org/x/tools/@v SHA256 (go_modules/golang.org/x/tools/@v/v0.6.0.mod) = gw7Xjc0+mSfEEuJkEjAwhEd0nVE9MQJNJ24kQ7IBZgk= SHA256 (go_modules/golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod) = ql4+ybt7n2gWCe+sAZ2d4ae6dxkkj/Hqon54iC2z1/U= SHA256 (go_modules/golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.zip) = xOnwY8/tVGyQ8AqWV96sT5FaiZT4y+bb0/GOeeuDAs8= -SIZE (fzf-0.70.0.zip) = 452635 +SIZE (fzf-0.71.0.zip) = 460276 SIZE (go_modules/github.com/charlievieth/fastwalk/@v/v1.0.14.mod) = 92 SIZE (go_modules/github.com/charlievieth/fastwalk/@v/v1.0.14.zip) = 71415 SIZE (go_modules/github.com/gdamore/encoding/@v/v1.0.1.mod) = 78 Index: patches/patch-src_protector_protector_openbsd_go =================================================================== RCS file: patches/patch-src_protector_protector_openbsd_go diff -N patches/patch-src_protector_protector_openbsd_go --- patches/patch-src_protector_protector_openbsd_go 24 Feb 2026 14:18:10 -0000 1.5 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,10 +0,0 @@ -Index: src/protector/protector_openbsd.go ---- src/protector/protector_openbsd.go.orig -+++ src/protector/protector_openbsd.go -@@ -6,5 +6,5 @@ import "golang.org/x/sys/unix" - - // Protect calls OS specific protections like pledge on OpenBSD - func Protect() { -- unix.PledgePromises("stdio dpath wpath rpath tty proc exec inet tmppath") -+ unix.PledgePromises("stdio cpath dpath wpath rpath tty proc exec inet") - }