pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/sandboxctl
Module Name: pkgsrc
Committed By: schmonz
Date: Sun Mar 30 16:23:58 UTC 2025
Modified Files:
pkgsrc/sysutils/sandboxctl: Makefile distinfo
pkgsrc/sysutils/sandboxctl/patches: patch-modules_netbsd__release.subr
Log Message:
sandboxctl: don't fail when certctl is not present. Bump PKGREVISION.
>From mlelstv@ on netbsd-users@ (thanks!).
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/sandboxctl/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/sandboxctl/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/sandboxctl/Makefile
diff -u pkgsrc/sysutils/sandboxctl/Makefile:1.5 pkgsrc/sysutils/sandboxctl/Makefile:1.6
--- pkgsrc/sysutils/sandboxctl/Makefile:1.5 Thu Jul 25 05:41:52 2024
+++ pkgsrc/sysutils/sandboxctl/Makefile Sun Mar 30 16:23:57 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2024/07/25 05:41:52 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2025/03/30 16:23:57 schmonz Exp $
DISTNAME= sandboxctl-1.1
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GITHUB:=jmmv/}sandboxctl/releases/download/sandboxctl-1.1/
Index: pkgsrc/sysutils/sandboxctl/distinfo
diff -u pkgsrc/sysutils/sandboxctl/distinfo:1.6 pkgsrc/sysutils/sandboxctl/distinfo:1.7
--- pkgsrc/sysutils/sandboxctl/distinfo:1.6 Sun Jun 23 17:16:40 2024
+++ pkgsrc/sysutils/sandboxctl/distinfo Sun Mar 30 16:23:57 2025
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2024/06/23 17:16:40 schmonz Exp $
+$NetBSD: distinfo,v 1.7 2025/03/30 16:23:57 schmonz Exp $
BLAKE2s (sandboxctl-1.1.tar.gz) = 360d17228953cc1143d07c40fe79b2eb45ae0ea8bdf7935cdeca47e95d96661c
SHA512 (sandboxctl-1.1.tar.gz) = 066c188f3d5a058c2260c30fbbf208b340060cdc37fa84d594a3b409443ef40c07857ef568107aae1027b75f5533f574d84fcfe984941298e7147c19336957f9
Size (sandboxctl-1.1.tar.gz) = 99040 bytes
-SHA1 (patch-modules_netbsd__release.subr) = d88256dc6b43f6cb2aab071ce25f46d31866794d
+SHA1 (patch-modules_netbsd__release.subr) = af88580e7e5d7ce6a69d76019deb3cd49f8b788c
SHA1 (patch-sandbox.subr.in) = 45fa0c7f9e9539317581f5ff2570ff04b78e948b
Index: pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr
diff -u pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr:1.1 pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr:1.2
--- pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr:1.1 Sun Jun 23 17:16:41 2024
+++ pkgsrc/sysutils/sandboxctl/patches/patch-modules_netbsd__release.subr Sun Mar 30 16:23:58 2025
@@ -1,4 +1,4 @@
-$NetBSD: patch-modules_netbsd__release.subr,v 1.1 2024/06/23 17:16:41 schmonz Exp $
+$NetBSD: patch-modules_netbsd__release.subr,v 1.2 2025/03/30 16:23:58 schmonz Exp $
For "netbsd-release" sandboxes, run certctl if available.
@@ -8,7 +8,7 @@ For "netbsd-release" sandboxes, run cert
shtk_cli_debug "Creating device nodes"
chroot "${root}" /bin/sh -c "cd /dev && ./MAKEDEV all"
-+ chroot "${root}" /bin/sh -c "[ -x /usr/sbin/certctl ] && /usr/sbin/certctl rehash"
++ chroot "${root}" /bin/sh -c "[ ! -x /usr/sbin/certctl ] || /usr/sbin/certctl rehash"
}
Home |
Main Index |
Thread Index |
Old Index