aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Smith <jsmith@resonatingmedia.com>2024-05-10 17:43:51 +0000
committerVladimir Druzenko <vvd@FreeBSD.org>2024-05-10 17:48:39 +0000
commit05134cf2c6d7bbbb254325f46728124a466ffcaf (patch)
treeb5fd3ba4398155a957afc1cbfb22f1d777c64632
parente6da5aacce6e079b8bee770bf14399db9834f10e (diff)
downloadports-05134cf2c6d7bbbb254325f46728124a466ffcaf.tar.gz
ports-05134cf2c6d7bbbb254325f46728124a466ffcaf.zip
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 (cherry picked from commit e05da69d0d3fc274c73a0fbc4f312da3b9265b90)
-rw-r--r--security/doas/Makefile2
-rw-r--r--security/doas/distinfo6
-rw-r--r--security/doas/files/patch-doasedit6
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."