summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-14 21:59:09 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-14 21:59:09 +0000
commit3e823453eed1adc73bcd2d41d9ae4eed7aa3eecc (patch)
tree954e234a79150f2fadd8ae3a483fb58818710115 /sys-process
parentRemove old. (diff)
downloadgentoo-2-3e823453eed1adc73bcd2d41d9ae4eed7aa3eecc.tar.gz
gentoo-2-3e823453eed1adc73bcd2d41d9ae4eed7aa3eecc.tar.bz2
gentoo-2-3e823453eed1adc73bcd2d41d9ae4eed7aa3eecc.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/daemontools-encore/ChangeLog9
-rw-r--r--sys-process/daemontools-encore/daemontools-encore-1.06.ebuild51
-rw-r--r--sys-process/daemontools-encore/files/svscan.init-1.0232
3 files changed, 6 insertions, 86 deletions
diff --git a/sys-process/daemontools-encore/ChangeLog b/sys-process/daemontools-encore/ChangeLog
index a62fa89c9e6c..d42ba2961136 100644
--- a/sys-process/daemontools-encore/ChangeLog
+++ b/sys-process/daemontools-encore/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-process/daemontools-encore
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/daemontools-encore/ChangeLog,v 1.7 2014/09/22 08:36:38 polynomial-c Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/daemontools-encore/ChangeLog,v 1.8 2015/04/14 21:59:09 mrueg Exp $
+
+ 14 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -daemontools-encore-1.06.ebuild,
+ -files/svscan.init-1.02:
+ Remove old.
*daemontools-encore-1.10 (22 Sep 2014)
@@ -40,4 +44,3 @@
05 Jan 2011; Thilo Bangert <bangert@gentoo.org> +files/svscan.init-1.02,
+daemontools-encore-1.02.ebuild, +metadata.xml:
initial release (#334481)
-
diff --git a/sys-process/daemontools-encore/daemontools-encore-1.06.ebuild b/sys-process/daemontools-encore/daemontools-encore-1.06.ebuild
deleted file mode 100644
index 27b8aa4946d5..000000000000
--- a/sys-process/daemontools-encore/daemontools-encore-1.06.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/daemontools-encore/daemontools-encore-1.06.ebuild,v 1.1 2013/10/18 09:26:46 chainsaw Exp $
-
-EAPI=3
-
-inherit flag-o-matic qmail
-
-DESCRIPTION="Collection of tools for managing UNIX services"
-HOMEPAGE="http://untroubled.org/daemontools-encore/"
-SRC_URI="${HOMEPAGE}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="selinux static"
-
-DEPEND=""
-RDEPEND="selinux? ( sec-policy/selinux-daemontools )
- !sys-process/daemontools
- !app-doc/daemontools-man"
-
-src_compile() {
- use static && append-ldflags -static
- qmail_set_cc
- emake || die
-}
-
-src_install() {
- keepdir /service
-
- echo ${D}/usr/bin >conf-bin
- echo ${D}/usr/share/man >conf-man
- dodir /usr/bin
- dodir /usr/share/man
- emake install || die
-
- dodoc ChangeLog CHANGES CHANGES.djb README TODO
-
- newinitd "${FILESDIR}"/svscan.init-1.02 svscan || die
-}
-
-pkg_postinst() {
- einfo
- einfo "You can run daemontools using the svscan init.d script,"
- einfo "or you could run it through inittab."
- einfo "To use inittab, emerge supervise-scripts and run:"
- einfo "svscan-add-to-inittab"
- einfo "Then you can hup init with the command telinit q"
- einfo
-}
diff --git a/sys-process/daemontools-encore/files/svscan.init-1.02 b/sys-process/daemontools-encore/files/svscan.init-1.02
deleted file mode 100644
index 8a35ebebf4c1..000000000000
--- a/sys-process/daemontools-encore/files/svscan.init-1.02
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/daemontools-encore/files/svscan.init-1.02,v 1.1 2011/01/05 12:32:39 bangert Exp $
-
-depend() {
- use net
- before ntpd ntp-client spamd apache apache2
-}
-
-start() {
- ebegin "Starting service scan"
- setsid start-stop-daemon --start --exec /usr/bin/svscan \
- --background --make-pidfile \
- --pidfile /var/run/svscan.pid -- /service
- eend $?
-}
-
-stop() {
- ebegin "Stopping service scan"
- start-stop-daemon --stop --exec /usr/bin/svscan \
- --pidfile /var/run/svscan.pid
- eend $?
-
- ebegin "Stopping service scan services"
- svc -dx /service/* 2>/dev/null
- eend $?
-
- ebegin "Stopping service scan logging"
- svc -dx /service/*/log 2>/dev/null
- eend $?
-}