Update to runit-2.1.2

Kill time_t patch committed upstream and drop maintainership while here.

WARNING: upstream changed back the default service directory to
/service, check the instructions in the README and
share/doc/runit/upgrade.html
This commit is contained in:
jca 2016-05-08 08:59:16 +00:00
parent 79facf8a3d
commit a87170bfea
4 changed files with 10 additions and 25 deletions

View File

@ -1,17 +1,14 @@
# $OpenBSD: Makefile,v 1.17 2015/05/08 09:08:45 espie Exp $
# $OpenBSD: Makefile,v 1.18 2016/05/08 08:59:16 jca Exp $
COMMENT= daemontools alike replacement for init
DISTNAME= runit-1.7.2
REVISION= 2
DISTNAME= runit-2.1.2
CATEGORIES= sysutils
HOMEPAGE= http://www.smarden.org/runit/
MAINTAINER= Jeremie Courreges-Anglas <jca@wxcvbn.org>
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= c
WANTLIB= c
MASTER_SITES= ${HOMEPAGE}
WRKDIST= ${WRKDIR}/admin/${DISTNAME}

View File

@ -1,2 +1,2 @@
SHA256 (runit-1.7.2.tar.gz) = zJEEH/jvsyN2Owc9VLpuvvZQKEu9GJPJrxmW/FaAnf4=
SIZE (runit-1.7.2.tar.gz) = 102942
SHA256 (runit-2.1.2.tar.gz) = b9AWDLDPEgfeTmZ1S205dQz/FLsKpmq0lJCZLAxHuhg=
SIZE (runit-2.1.2.tar.gz) = 110916

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_fmt_ptime_c,v 1.1 2014/04/22 09:50:06 jca Exp $
--- src/fmt_ptime.c.orig Tue Nov 21 16:14:12 2006
+++ src/fmt_ptime.c Tue Apr 22 01:27:37 2014
@@ -4,7 +4,7 @@
unsigned int fmt_ptime2(char *s, struct taia *ta, char sep) {
struct tm *t;
- unsigned long u;
+ time_t u;
if (ta->sec.x < 4611686018427387914ULL) return(0); /* impossible? */
u =ta->sec.x -4611686018427387914ULL;

View File

@ -1,4 +1,4 @@
$OpenBSD: README,v 1.1 2014/11/01 14:54:51 ajacoutot Exp $
$OpenBSD: README,v 1.2 2016/05/08 08:59:16 jca Exp $
+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
@ -10,10 +10,10 @@ You will need to add
to /etc/rc.local in order to have runit start at boot.
The service directory has moved from /service to ${LOCALSTATEDIR}/service.
The service directory has moved back from ${LOCALSTATEDIR}/service to
/service. To keep on using ${LOCALSTATEDIR}/service, a symlink is
enough:
With this version the runsvctrl, runsvstat, svwaitdown, and svwaitup
programs no longer are being installed. The functionality of these
programs has been incorporated into the sv program.
# ln -s /var/service /
Read ${PREFIX}/share/doc/runit/upgrade.html on update.