pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/daemontools-encore



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Sat Jan 25 11:17:32 UTC 2020

Modified Files:
        pkgsrc/sysutils/daemontools-encore: Makefile distinfo
Added Files:
        pkgsrc/sysutils/daemontools-encore/patches:
            patch-rts.tests_supervise-lock.sh

Log Message:
In ls(1) output from tests, omit any trailing SELinux dot. Fixes
self-tests on CentOS. Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/daemontools-encore/Makefile \
    pkgsrc/sysutils/daemontools-encore/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/sysutils/daemontools-encore/patches/patch-rts.tests_supervise-lock.sh

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

Modified files:

Index: pkgsrc/sysutils/daemontools-encore/Makefile
diff -u pkgsrc/sysutils/daemontools-encore/Makefile:1.2 pkgsrc/sysutils/daemontools-encore/Makefile:1.3
--- pkgsrc/sysutils/daemontools-encore/Makefile:1.2     Thu Jan 23 16:49:59 2020
+++ pkgsrc/sysutils/daemontools-encore/Makefile Sat Jan 25 11:17:31 2020
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2020/01/23 16:49:59 schmonz Exp $
+# $NetBSD: Makefile,v 1.3 2020/01/25 11:17:31 schmonz Exp $
 
 DISTNAME=              daemontools-encore-1.11
-PKGREVISION=           1
+PKGREVISION=           2
 CATEGORIES=            sysutils
 MASTER_SITES=          ${HOMEPAGE}
 
Index: pkgsrc/sysutils/daemontools-encore/distinfo
diff -u pkgsrc/sysutils/daemontools-encore/distinfo:1.2 pkgsrc/sysutils/daemontools-encore/distinfo:1.3
--- pkgsrc/sysutils/daemontools-encore/distinfo:1.2     Thu Jan 23 16:49:59 2020
+++ pkgsrc/sysutils/daemontools-encore/distinfo Sat Jan 25 11:17:31 2020
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2020/01/23 16:49:59 schmonz Exp $
+$NetBSD: distinfo,v 1.3 2020/01/25 11:17:31 schmonz Exp $
 
 SHA1 (daemontools-encore-1.11.tar.gz) = 23f8dc5cf2d063c481b328fce523fc8a0349b693
 RMD160 (daemontools-encore-1.11.tar.gz) = 518f85f1502bf969ee60d5169642089752bd2d52
@@ -7,4 +7,5 @@ Size (daemontools-encore-1.11.tar.gz) = 
 SHA1 (patch-MAN) = 7c361a3365a43a992d7a0ccf938b79dc2a8691bc
 SHA1 (patch-Makefile) = b1bc2500071491280a02f158bf4d8ed4e0aa369e
 SHA1 (patch-rts.tests_supervise-downtime.sh) = c6415e1c0adce32e5ad57ad5457fd1be98c53958
+SHA1 (patch-rts.tests_supervise-lock.sh) = 1f2e036adb93a0f872ae2a3f2d7fd89ea0a9809a
 SHA1 (patch-sleeper.c) = cdae9837bb8a5cc268c8e86e97e03d11f8e9d32d

Added files:

Index: pkgsrc/sysutils/daemontools-encore/patches/patch-rts.tests_supervise-lock.sh
diff -u /dev/null pkgsrc/sysutils/daemontools-encore/patches/patch-rts.tests_supervise-lock.sh:1.1
--- /dev/null   Sat Jan 25 11:17:32 2020
+++ pkgsrc/sysutils/daemontools-encore/patches/patch-rts.tests_supervise-lock.sh        Sat Jan 25 11:17:31 2020
@@ -0,0 +1,18 @@
+$NetBSD: patch-rts.tests_supervise-lock.sh,v 1.1 2020/01/25 11:17:31 schmonz Exp $
+
+In ls(1) output from tests, omit any trailing SELinux dot.
+
+--- rts.tests/supervise-lock.sh.orig   2018-10-14 00:48:50.000000000 +0000
++++ rts.tests/supervise-lock.sh
+@@ -1,9 +1,9 @@
+ echo '--- supervise leaves locked service intact'
+ supervise test.sv &
+ waitok test.sv
+-( cd test.sv/supervise && ls -dl * | awk '{ print $1, $5, $9 }' )
++( cd test.sv/supervise && ls -dl * | awk '{ print substr($1,1,10), $5, $9 }' )
+ supervise test.sv; echo $?
+-( cd test.sv/supervise && ls -dl * | awk '{ print $1, $5, $9 }' )
++( cd test.sv/supervise && ls -dl * | awk '{ print substr($1,1,10), $5, $9 }' )
+ svc -x test.sv; echo $?
+ wait
+ svstat test.sv; echo $?



Home | Main Index | Thread Index | Old Index