Date: Sat, 13 Mar 2021 19:13:47 +0000 (UTC) From: Neel Chauhan <nc@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568274 - in head/sysutils/daemontools-encore: . files Message-ID: <202103131913.12DJDlx5029452@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: nc Date: Sat Mar 13 19:13:47 2021 New Revision: 568274 URL: https://svnweb.freebsd.org/changeset/ports/568274 Log: sysutils/daemontools-encore: Update to 1.11 Changes: https://untroubled.org/daemontools-encore/CHANGES Added: head/sysutils/daemontools-encore/files/patch-Makefile (contents, props changed) head/sysutils/daemontools-encore/files/patch-conf-cc (contents, props changed) head/sysutils/daemontools-encore/files/patch-conf-ld (contents, props changed) head/sysutils/daemontools-encore/files/patch-sleeper.c (contents, props changed) Deleted: head/sysutils/daemontools-encore/files/patch-Makefile.diff head/sysutils/daemontools-encore/files/patch-conf-cc.diff head/sysutils/daemontools-encore/files/patch-conf-ld.diff head/sysutils/daemontools-encore/files/patch-sleeper-c.diff Modified: head/sysutils/daemontools-encore/Makefile head/sysutils/daemontools-encore/distinfo Modified: head/sysutils/daemontools-encore/Makefile ============================================================================== --- head/sysutils/daemontools-encore/Makefile Sat Mar 13 19:00:41 2021 (r568273) +++ head/sysutils/daemontools-encore/Makefile Sat Mar 13 19:13:47 2021 (r568274) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= daemontools-encore -PORTVERSION= 1.10 -PORTREVISION= 1 +PORTVERSION= 1.11 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/daemontools-encore/ Modified: head/sysutils/daemontools-encore/distinfo ============================================================================== --- head/sysutils/daemontools-encore/distinfo Sat Mar 13 19:00:41 2021 (r568273) +++ head/sysutils/daemontools-encore/distinfo Sat Mar 13 19:13:47 2021 (r568274) @@ -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 Added: head/sysutils/daemontools-encore/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daemontools-encore/files/patch-Makefile Sat Mar 13 19:13:47 2021 (r568274) @@ -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 Added: head/sysutils/daemontools-encore/files/patch-conf-cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daemontools-encore/files/patch-conf-cc Sat Mar 13 19:13:47 2021 (r568274) @@ -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. Added: head/sysutils/daemontools-encore/files/patch-conf-ld ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daemontools-encore/files/patch-conf-ld Sat Mar 13 19:13:47 2021 (r568274) @@ -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. Added: head/sysutils/daemontools-encore/files/patch-sleeper.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daemontools-encore/files/patch-sleeper.c Sat Mar 13 19:13:47 2021 (r568274) @@ -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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103131913.12DJDlx5029452>