Index: head/sysutils/daemontools-encore/Makefile =================================================================== --- head/sysutils/daemontools-encore/Makefile (revision 568273) +++ head/sysutils/daemontools-encore/Makefile (revision 568274) @@ -1,103 +1,102 @@ # Created by: Uffe Jakobsen # $FreeBSD$ PORTNAME= daemontools-encore -PORTVERSION= 1.10 -PORTREVISION= 1 +PORTVERSION= 1.11 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/daemontools-encore/ MAINTAINER= ports@FreeBSD.org COMMENT= Daemontools-encore is a collection of tools for managing UNIX services LICENSE= MIT USES= gmake CONFLICTS= daemontools-[0-9]* freedt-[0-9]* serialmail-[0-9]* ALL_TARGET= default S_EARLY_DESC= Start early, before the normal daemons S_NORMAL_DESC= Start normally in the usual boot sequence OPTIONS_SINGLE= SEQ OPTIONS_SINGLE_SEQ= S_EARLY S_NORMAL OPTIONS_DEFAULT= S_NORMAL .include . if ${PORT_OPTIONS:MS_EARLY} SVSCAN_REQUIRE?= SERVERS SVSCAN_BEFORE?= DAEMON . endif . if ${PORT_OPTIONS:MS_NORMAL} SVSCAN_REQUIRE?= LOGIN SVSCAN_BEFORE?= . endif SUB_LIST+= SVSCAN_REQUIRE=${SVSCAN_REQUIRE} SVSCAN_BEFORE=${SVSCAN_BEFORE} USE_RC_SUBR= svscan MANFILES= \ envdir.8 \ envuidgid.8 \ fghack.8 \ multilog.8 \ pgrphack.8 \ readproctitle.8 \ setlock.8 \ setuidgid.8 \ softlimit.8 \ supervise.8 \ svc.8 \ svok.8 \ svscan.8 \ svscanboot.8 \ svstat.8 \ svup.8 \ tai64n.8 \ tai64nlocal.8 PLIST_FILES= \ bin/envdir \ bin/envuidgid \ bin/fghack \ bin/multilog \ bin/pgrphack \ bin/readproctitle \ bin/setlock \ bin/setuidgid \ bin/softlimit \ bin/supervise \ bin/svc \ bin/svok \ bin/svscan \ bin/svscanboot \ bin/svstat \ bin/svup \ bin/tai64n \ bin/tai64nlocal \ %%DOCSDIR%%/README \ %%DOCSDIR%%/LICENSE \ %%DOCSDIR%%/CHANGES \ %%DOCSDIR%%/CHANGES.djb \ ${MANFILES:S,^,man/man8/,:S,$,.gz,} do-install: ${INSTALL_SCRIPT} ${WRKSRC}/svscanboot.sh ${STAGEDIR}${PREFIX}/bin/svscanboot .for binfile in envdir envuidgid fghack multilog pgrphack readproctitle setlock setuidgid softlimit supervise svc svok svscan svstat svup tai64n tai64nlocal ${INSTALL_PROGRAM} ${WRKSRC}/${binfile} ${STAGEDIR}${PREFIX}/bin/ .endfor ${MKDIR} ${STAGEDIR}${DOCSDIR} .for docfile in README LICENSE CHANGES CHANGES.djb ${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR} .endfor .for manfile in ${MANFILES} ${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${MAN1PREFIX}/man/man8/ .endfor .include Index: head/sysutils/daemontools-encore/distinfo =================================================================== --- head/sysutils/daemontools-encore/distinfo (revision 568273) +++ head/sysutils/daemontools-encore/distinfo (revision 568274) @@ -1,2 +1,3 @@ -SHA256 (daemontools-encore-1.10.tar.gz) = 9f48f3c6cdd3f2b0202532e87f9ff46ea86777ca31ebda3a96bed618104bbd31 -SIZE (daemontools-encore-1.10.tar.gz) = 87096 +TIMESTAMP = 1615662582 +SHA256 (daemontools-encore-1.11.tar.gz) = 3bab6cf1de2bdefa607d42a8f50577f2664b6a29b273b98cd0b3b8f7781d8b72 +SIZE (daemontools-encore-1.11.tar.gz) = 94917 Index: head/sysutils/daemontools-encore/files/patch-sleeper-c.diff =================================================================== --- head/sysutils/daemontools-encore/files/patch-sleeper-c.diff (revision 568273) +++ head/sysutils/daemontools-encore/files/patch-sleeper-c.diff (nonexistent) @@ -1,33 +0,0 @@ ---- sleeper.c.orig 2014-07-27 23:16:55.000000000 +0200 -+++ sleeper.c 2014-07-27 23:18:11.000000000 +0200 -@@ -8,20 +8,18 @@ - const char *name; - int ignored; - switch (sig) { -- case SIGALRM: name = "ALRM"; break; -- case SIGCONT: name = "CONT"; break; -- case SIGHUP: name = "HUP"; break; -- case SIGINT: name = "INT"; break; -- case SIGQUIT: name = "QUIT"; break; -- case SIGTERM: name = "TERM"; break; -- case SIGUSR1: name = "USR1"; break; -- case SIGUSR2: name = "USR2"; break; -- case SIGWINCH: name = "WINCH"; break; -- default: name = "unknown signal"; -+ case SIGALRM: name = "Caught ALRM\n"; break; -+ case SIGCONT: name = "Caught CONT\n"; break; -+ case SIGHUP: name = "Caught HUP\n"; break; -+ case SIGINT: name = "Caught INT\n"; break; -+ case SIGQUIT: name = "Caught QUIT\n"; break; -+ case SIGTERM: name = "Caught TERM\n"; break; -+ case SIGUSR1: name = "Caught USR1\n"; break; -+ case SIGUSR2: name = "Caught USR2\n"; break; -+ case SIGWINCH: name = "Caught WINCH\n"; break; -+ default: name = "unknown signal\n"; - } -- ignored = write(1, "Caught ", 7); - ignored = write(1, name, str_len(name)); -- ignored = write(1, "\n", 1); - if (sig != SIGCONT) - _exit(1); - } Property changes on: head/sysutils/daemontools-encore/files/patch-sleeper-c.diff ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-conf-cc.diff =================================================================== --- head/sysutils/daemontools-encore/files/patch-conf-cc.diff (revision 568273) +++ head/sysutils/daemontools-encore/files/patch-conf-cc.diff (nonexistent) @@ -1,7 +0,0 @@ ---- conf-cc.orig 2014-07-27 23:11:57.000000000 +0200 -+++ conf-cc 2014-07-27 23:12:04.000000000 +0200 -@@ -1,3 +1,3 @@ --gcc -O2 -Wall -Wshadow -Wcast-align -Wwrite-strings -+cc -O2 -Wall -Wshadow -Wcast-align -Wwrite-strings - - This will be used to compile .c files. Property changes on: head/sysutils/daemontools-encore/files/patch-conf-cc.diff ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-conf-ld.diff =================================================================== --- head/sysutils/daemontools-encore/files/patch-conf-ld.diff (revision 568273) +++ head/sysutils/daemontools-encore/files/patch-conf-ld.diff (nonexistent) @@ -1,7 +0,0 @@ ---- conf-ld.orig 2014-07-27 23:12:53.000000000 +0200 -+++ conf-ld 2014-07-27 23:13:03.000000000 +0200 -@@ -1,3 +1,3 @@ --gcc -s -+cc -s - - This will be used to link .o files into an executable. Property changes on: head/sysutils/daemontools-encore/files/patch-conf-ld.diff ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-Makefile.diff =================================================================== --- head/sysutils/daemontools-encore/files/patch-Makefile.diff (revision 568273) +++ head/sysutils/daemontools-encore/files/patch-Makefile.diff (nonexistent) @@ -1,11 +0,0 @@ ---- Makefile.orig 2014-04-02 00:58:19.000000000 +0200 -+++ Makefile 2014-07-27 23:29:50.000000000 +0200 -@@ -239,7 +239,7 @@ - ./compile iopause.c - - it: \ --rts sysdeps man -+programs sysdeps man - - load: \ - conf-ld print-ld.sh systype warn-auto.sh Property changes on: head/sysutils/daemontools-encore/files/patch-Makefile.diff ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-Makefile =================================================================== --- head/sysutils/daemontools-encore/files/patch-Makefile (nonexistent) +++ head/sysutils/daemontools-encore/files/patch-Makefile (revision 568274) @@ -0,0 +1,11 @@ +--- Makefile.orig 2018-10-14 00:48:50 UTC ++++ Makefile +@@ -247,7 +247,7 @@ compile iopause.c taia.h tai.h uint64.h select.h iopau + ./compile iopause.c + + it: \ +-rts sysdeps man ++programs sysdeps man + + load: \ + conf-ld print-ld.sh systype warn-auto.sh Property changes on: head/sysutils/daemontools-encore/files/patch-Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-conf-cc =================================================================== --- head/sysutils/daemontools-encore/files/patch-conf-cc (nonexistent) +++ head/sysutils/daemontools-encore/files/patch-conf-cc (revision 568274) @@ -0,0 +1,7 @@ +--- conf-cc.orig 2018-10-14 00:48:50 UTC ++++ conf-cc +@@ -1,3 +1,3 @@ +-gcc -O2 -Wall -Wshadow -Wcast-align -Wwrite-strings ++cc -O2 -Wall -Wshadow -Wcast-align -Wwrite-strings + + This will be used to compile .c files. Property changes on: head/sysutils/daemontools-encore/files/patch-conf-cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-conf-ld =================================================================== --- head/sysutils/daemontools-encore/files/patch-conf-ld (nonexistent) +++ head/sysutils/daemontools-encore/files/patch-conf-ld (revision 568274) @@ -0,0 +1,7 @@ +--- conf-ld.orig 2018-10-14 00:48:50 UTC ++++ conf-ld +@@ -1,3 +1,3 @@ +-gcc -s ++cc -s + + This will be used to link .o files into an executable. Property changes on: head/sysutils/daemontools-encore/files/patch-conf-ld ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/daemontools-encore/files/patch-sleeper.c =================================================================== --- head/sysutils/daemontools-encore/files/patch-sleeper.c (nonexistent) +++ head/sysutils/daemontools-encore/files/patch-sleeper.c (revision 568274) @@ -0,0 +1,29 @@ +--- sleeper.c.orig 2018-10-14 00:48:50 UTC ++++ sleeper.c +@@ -11,16 +11,16 @@ static void catch_sig(int sig) + int ignored; + int i; + switch (sig) { +- case SIGALRM: name = "ALRM"; break; +- case SIGCONT: name = "CONT"; break; +- case SIGHUP: name = "HUP"; break; +- case SIGINT: name = "INT"; break; +- case SIGQUIT: name = "QUIT"; break; +- case SIGTERM: name = "TERM"; break; +- case SIGUSR1: name = "USR1"; break; +- case SIGUSR2: name = "USR2"; break; +- case SIGWINCH: name = "WINCH"; break; +- default: name = "unknown signal"; ++ case SIGALRM: name = "Caught ALRM\n"; break; ++ case SIGCONT: name = "Caught CONT\n"; break; ++ case SIGHUP: name = "Caught HUP\n"; break; ++ case SIGINT: name = "Caught INT\n"; break; ++ case SIGQUIT: name = "Caught QUIT\n"; break; ++ case SIGTERM: name = "Caught TERM\n"; break; ++ case SIGUSR1: name = "Caught USR1\n"; break; ++ case SIGUSR2: name = "Caught USR2\n"; break; ++ case SIGWINCH: name = "Caught WINCH\n"; break; ++ default: name = "unknown signal\n"; + } + i = str_len(name); + byte_copy(buf+7,i,name); Property changes on: head/sysutils/daemontools-encore/files/patch-sleeper.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property