Date: Fri, 10 May 2024 17:47:10 GMT From: Vladimir Druzenko <vvd@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: e05da69d0d3f - main - security/doas: update to 6.3p12 Message-ID: <202405101747.44AHlARk024867@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by vvd: URL: https://cgit.FreeBSD.org/ports/commit/?id=e05da69d0d3fc274c73a0fbc4f312da3b9265b90 commit e05da69d0d3fc274c73a0fbc4f312da3b9265b90 Author: Jesse Smith <jsmith@resonatingmedia.com> AuthorDate: 2024-05-10 17:43:51 +0000 Commit: Vladimir Druzenko <vvd@FreeBSD.org> CommitDate: 2024-05-10 17:43:51 +0000 security/doas: update to 6.3p12 6.3p11: * Cleaned up error checking for temporary files, removed redundant check. * Fixed status check for copy and editor launch. 6.3p12: * Make sure doasedit can work when target file to edit has a leading slash character. ie A full path name is used. * Update doas.1 manual page to indicate problems with piping input on Linux when processes are launched by doas. Upstream release announcement: https://github.com/slicer69/doas/releases/tag/6.3p11 https://github.com/slicer69/doas/releases/tag/6.3p12 PR: 278897 MFH: 2024Q2 --- security/doas/Makefile | 2 +- security/doas/distinfo | 6 +++--- security/doas/files/patch-doasedit | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/security/doas/Makefile b/security/doas/Makefile index 8006f40e5e0b..7180fd0237fc 100644 --- a/security/doas/Makefile +++ b/security/doas/Makefile @@ -1,5 +1,5 @@ PORTNAME= doas -PORTVERSION= 6.3p10 +PORTVERSION= 6.3p12 CATEGORIES= security MAINTAINER= jsmith@resonatingmedia.com diff --git a/security/doas/distinfo b/security/doas/distinfo index b8bf4e6739d3..5a0be4612ac3 100644 --- a/security/doas/distinfo +++ b/security/doas/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1714579988 -SHA256 (slicer69-doas-6.3p10_GH0.tar.gz) = 60d01561936ba7737b30d836e6a5002ed4864676cc4982ee72c4463b8d1fae1c -SIZE (slicer69-doas-6.3p10_GH0.tar.gz) = 34291 +TIMESTAMP = 1715361640 +SHA256 (slicer69-doas-6.3p12_GH0.tar.gz) = e4f37745345c12d4e0c8c03c8237791729cf047dbd7b2455f8de60e2f82ac1b0 +SIZE (slicer69-doas-6.3p12_GH0.tar.gz) = 34396 diff --git a/security/doas/files/patch-doasedit b/security/doas/files/patch-doasedit index 61cad710e13e..53e910bf09c7 100644 --- a/security/doas/files/patch-doasedit +++ b/security/doas/files/patch-doasedit @@ -1,4 +1,4 @@ ---- doasedit.orig 2021-09-13 18:56:31 UTC +--- doasedit.orig 2024-05-10 17:16:18 UTC +++ doasedit @@ -30,7 +30,7 @@ then exit 3 @@ -6,6 +6,6 @@ -temp_file=$(mktemp --tmpdir doasedit.XXXXXXXX) +temp_file=$(mktemp -t /tmp) - if [ ! $? ] + if [ ! -r "$temp_file" ] then - echo "Could not create temporary file." + echo "Was unable to create temporary file."
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405101747.44AHlARk024867>