On Mon, Dec 04, 2017 at 04:17:00PM -0700, Aaron Bieber wrote: > Hola! > > This brings gopass to the latest version which has a some fun new stuff! > > OpenBSD specific stuff: > - Now pledge'd on OpenBSD: "stdio rpath wpath cpath tty proc exec" > - Fixes for wizard UI > - Fix the version check (won't make http requests anymore) > > Full changelog: https://github.com/justwatchcom/gopass/releases > > OK?
Just kidding - 1.6.4 came out - here is the diff for it - the patch that is added is upstreamed and can be removed > 1.6.4. https://deftly.net/patches/gopass-1.6.4.diff Index: Makefile =================================================================== RCS file: /cvs/ports/security/gopass/Makefile,v retrieving revision 1.2 diff -u -p -r1.2 Makefile --- Makefile 28 Oct 2017 13:38:38 -0000 1.2 +++ Makefile 15 Dec 2017 13:27:40 -0000 @@ -4,7 +4,7 @@ COMMENT = pass compatible password manag GH_ACCOUNT = justwatchcom GH_PROJECT = gopass -GH_TAGNAME = v1.5.1 +GH_TAGNAME = v1.6.4 CATEGORIES = security @@ -16,10 +16,12 @@ PERMIT_PACKAGE_CDROM = Yes RUN_DEPENDS = devel/git \ security/gnupg2 +# uses pledge() WANTLIB += c pthread MODULES = lang/go MODGO_TYPE = bin +MODGO_LDFLAGS = -X "main.version=${GH_TAGNAME:S/v//}" # Tests require MODGO_ENV, but break in weird ways when it is set. NO_TEST = Yes Index: distinfo =================================================================== RCS file: /cvs/ports/security/gopass/distinfo,v retrieving revision 1.2 diff -u -p -r1.2 distinfo --- distinfo 28 Oct 2017 13:38:38 -0000 1.2 +++ distinfo 15 Dec 2017 13:27:40 -0000 @@ -1,2 +1,2 @@ -SHA256 (gopass-1.5.1.tar.gz) = 0rfjS0YDlh5LRyyreRTj8tM/AODdPke3RXjn/EC3ZYI= -SIZE (gopass-1.5.1.tar.gz) = 1173306 +SHA256 (gopass-1.6.4.tar.gz) = U2FUvZZSxIuEDhNa+9kcWYCu1MFz7lxvC2AqcXQdkd0= +SIZE (gopass-1.6.4.tar.gz) = 1681472 Index: patches/patch-utils_notify_notify_others_go =================================================================== RCS file: patches/patch-utils_notify_notify_others_go diff -N patches/patch-utils_notify_notify_others_go --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-utils_notify_notify_others_go 15 Dec 2017 13:27:40 -0000 @@ -0,0 +1,14 @@ +$OpenBSD$ + +This is fixed upstream. Can be removed next release. + +Index utils/notify/notify_others.go +--- utils/notify/notify_others.go ++++ utils/notify/notify_others.go +@@ -10,5 +10,5 @@ import ( + + // Notify is not yet implemented on this platform + func Notify(subj, msg string) error { +- return errors.New("GOOS %s not yet supported", runtime.GOOS) ++ return errors.Errorf("GOOS %s not yet supported", runtime.GOOS) + } > > -- > PGP: 0x1F81112D62A9ADCE / 3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE > -- PGP: 0x1F81112D62A9ADCE / 3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE