runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit b83856673d02b4e43f22770192d2e05679bef4b1
parent 8256f1e39a1647388d6124a4a12ed30245cf96c7
Author: Gerrit Pape <pape@smarden.org>
Date:   Sun,  8 May 2005 14:46:52 +0000

  * new upstream version.
  * debian/copyright: 2005.
  * debian/control: Suggests: fgetty.
  * debian/getty-tty5.run: use fgetty if available.
  * debian/diff/runsv.8.diff: new; fix typo in man page.
  * debian/rules: target unpack: apply diff.
-1.

Diffstat:
Mdebian/changelog | 10+++++++---
Mdebian/control | 2+-
Adebian/diff/runsv.8.diff | 16++++++++++++++++
Mdebian/getty-tty5.run | 1+
Mdebian/rules | 5+++--
5 files changed, 28 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog @@ -1,9 +1,13 @@ -runit (1.2.1-1) unstable; urgency=low +runit (1.2.3-1) unstable; urgency=low * new upstream version. - * debian/copyright: adapt, 2005. + * debian/copyright: 2005. + * debian/control: Suggests: fgetty. + * debian/getty-tty5.run: use fgetty if available. + * debian/diff/runsv.8.diff: new; fix typo in man page. + * debian/rules: target unpack: apply diff. - -- Gerrit Pape <pape@smarden.org> Sun, 13 Mar 2005 13:57:08 +0000 + -- Gerrit Pape <pape@smarden.org> Sun, 8 May 2005 14:46:16 +0000 runit (1.0.5-3) unstable; urgency=low diff --git a/debian/control b/debian/control @@ -8,7 +8,7 @@ Standards-Version: 3.6.1.0 Package: runit Architecture: any Depends: ${shlibs:Depends} -Suggests: runit-run +Suggests: runit-run, fgetty Description: a UNIX init scheme with service supervision runit is a daemontools alike replacement for SysV-init and other init schemes. runit currently runs on Debian GNU/Linux, OpenBSD, FreeBSD, diff --git a/debian/diff/runsv.8.diff b/debian/diff/runsv.8.diff @@ -0,0 +1,16 @@ +Index: man/runsv.8 +=================================================================== +RCS file: /cvs/runit/man/runsv.8,v +retrieving revision 1.14 +retrieving revision 1.15 +diff -u -r1.14 -r1.15 +--- man/runsv.8 12 Dec 2004 20:14:26 -0000 1.14 ++++ man/runsv.8 29 Apr 2005 08:52:49 -0000 1.15 +@@ -111,6 +111,7 @@ + .B q + Quit. + If the service is running, send it a QUIT signal. ++.TP + .B 1 + User-defined 1. + If the service is running, send it a USR1 signal. diff --git a/debian/getty-tty5.run b/debian/getty-tty5.run @@ -1,2 +1,3 @@ #!/bin/sh +! type fgetty || exec chpst -P fgetty tty5 exec getty 38400 tty5 linux diff --git a/debian/rules b/debian/rules @@ -23,8 +23,9 @@ DIR =$(shell pwd)/debian/runit unpack: deb-checkdir unpack-stamp unpack-stamp: - tar xzf runit-1.2.1.tar.gz - ln -s runit-1.2.1 admin/runit + tar xzf runit-1.2.3.tar.gz + ln -s runit-1.2.3 admin/runit + (cd admin/runit/ && patch -p0) <debian/diff/runsv.8.diff echo '$(CC) $(CFLAGS)' >admin/runit/src/conf-cc echo '$(CC) $(LDFLAGS)' >admin/runit/src/conf-ld touch unpack-stamp