pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/sudo



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Dec 26 12:29:56 UTC 2023

Modified Files:
        pkgsrc/security/sudo: distinfo
Added Files:
        pkgsrc/security/sudo/patches: patch-lib_ssl__compat_Makefile.in

Log Message:
sudo: fix unportable test(1) operator


To generate a diff of this commit:
cvs rdiff -u -r1.132 -r1.133 pkgsrc/security/sudo/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/security/sudo/patches/patch-lib_ssl__compat_Makefile.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/sudo/distinfo
diff -u pkgsrc/security/sudo/distinfo:1.132 pkgsrc/security/sudo/distinfo:1.133
--- pkgsrc/security/sudo/distinfo:1.132 Sat Nov 11 10:07:41 2023
+++ pkgsrc/security/sudo/distinfo       Tue Dec 26 12:29:56 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.132 2023/11/11 10:07:41 adam Exp $
+$NetBSD: distinfo,v 1.133 2023/12/26 12:29:56 wiz Exp $
 
 BLAKE2s (sudo-1.9.15p2.tar.gz) = b55f757290d5e85fa692b6ca91f058223dd7f0678cb760521ba8a8237ca2bfdc
 SHA512 (sudo-1.9.15p2.tar.gz) = 219fc138fb4850fff30c44a6dab767402172d545a83d31dba4a2a9ce27f8a9fe14f1f24f4e328517f2dd26e84906db5d2be388a9c82e89f5ca59740bb782a608
@@ -8,5 +8,6 @@ SHA1 (patch-configure) = 824095fe7be5f85
 SHA1 (patch-examples_Makefile.in) = a20967ecd88eb5e4a8b47e6a3b80bc18be713409
 SHA1 (patch-lib_logsrv_Makefile.in) = 301c317c806edeee8ce7b44a5431cd38defb3a54
 SHA1 (patch-lib_protobuf-c_Makefile.in) = 122e432fb0da36b998778a1b71130f0c3785f575
+SHA1 (patch-lib_ssl__compat_Makefile.in) = 7cf0bf38005ddefc6158e69a88d106388e714555
 SHA1 (patch-plugins_sudoers_Makefile.in) = d2981bb9841f6bb4b1c80f5c2f2727fbf9579501
 SHA1 (patch-src_Makefile.in) = 0642684c2d4b3a89259f7d27908f5ec8070969ec

Added files:

Index: pkgsrc/security/sudo/patches/patch-lib_ssl__compat_Makefile.in
diff -u /dev/null pkgsrc/security/sudo/patches/patch-lib_ssl__compat_Makefile.in:1.1
--- /dev/null   Tue Dec 26 12:29:56 2023
+++ pkgsrc/security/sudo/patches/patch-lib_ssl__compat_Makefile.in      Tue Dec 26 12:29:56 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-lib_ssl__compat_Makefile.in,v 1.1 2023/12/26 12:29:56 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- lib/ssl_compat/Makefile.in.orig    2023-12-26 12:28:57.453225566 +0000
++++ lib/ssl_compat/Makefile.in
+@@ -111,7 +111,7 @@ $(devdir)/log_server.pb-c.c: $(srcdir)/l
+           echo "$$cmd"; eval $$cmd; \
+           cmd='$(scriptdir)/unanon $(devdir)/log_server.pb-c.h $(devdir)/log_server.pb-c.c'; \
+           echo "$$cmd"; eval $$cmd; \
+-          if [ "$(devdir)" == "$(srcdir)" ]; then \
++          if [ "$(devdir)" = "$(srcdir)" ]; then \
+               cmd='mv -f $(devdir)/log_server.pb-c.h $(incdir)/log_server.pb-c.h'; \
+           else \
+               cmd='mv -f $(devdir)/log_server.pb-c.h $(top_builddir)/log_server.pb-c.h'; \



Home | Main Index | Thread Index | Old Index