summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-22 20:33:07 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-22 20:33:07 +0000
commit1cf3e3b471a8dc19e6a2ccc9a2b2e8417f699f00 (patch)
tree017d64ee979daaaaddb1980e2fd65722ed587eaf /sys-process
parentRemove old. (diff)
downloadgentoo-2-1cf3e3b471a8dc19e6a2ccc9a2b2e8417f699f00.tar.gz
gentoo-2-1cf3e3b471a8dc19e6a2ccc9a2b2e8417f699f00.tar.bz2
gentoo-2-1cf3e3b471a8dc19e6a2ccc9a2b2e8417f699f00.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/supervise-scripts/ChangeLog9
-rw-r--r--sys-process/supervise-scripts/files/supervise-scripts-3.5-head-tails-syntax.patch19
-rw-r--r--sys-process/supervise-scripts/supervise-scripts-3.5.ebuild45
3 files changed, 7 insertions, 66 deletions
diff --git a/sys-process/supervise-scripts/ChangeLog b/sys-process/supervise-scripts/ChangeLog
index f6fa750ae857..a0494620266d 100644
--- a/sys-process/supervise-scripts/ChangeLog
+++ b/sys-process/supervise-scripts/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-process/supervise-scripts
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/supervise-scripts/ChangeLog,v 1.13 2011/02/27 13:51:48 ranger Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/supervise-scripts/ChangeLog,v 1.14 2015/07/22 20:33:07 mrueg Exp $
+
+ 22 Jul 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/supervise-scripts-3.5-head-tails-syntax.patch,
+ -supervise-scripts-3.5.ebuild:
+ Remove old.
27 Feb 2011; Brent Baude <ranger@gentoo.org> supervise-scripts-4.0.ebuild:
stable ppc, bug 353386
diff --git a/sys-process/supervise-scripts/files/supervise-scripts-3.5-head-tails-syntax.patch b/sys-process/supervise-scripts/files/supervise-scripts-3.5-head-tails-syntax.patch
deleted file mode 100644
index 6a38a544724a..000000000000
--- a/sys-process/supervise-scripts/files/supervise-scripts-3.5-head-tails-syntax.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-fixheadtails.eclass can't handle shell scripts so we need to fix ourselves
-
-http://bugs.gentoo.org/152307
-
---- svscan-add-to-inittab.in
-+++ svscan-add-to-inittab.in
-@@ -53,10 +53,10 @@
-
- # Splice the new lines into the old file
- {
-- catit | head -$(($lineno-1))
-+ catit | head -n $(($lineno-1))
- echo "SV:2345:respawn:$conf_bin/svscan-start /service"
- echo "SX:S016:wait:$conf_bin/svscan-stopall /service"
-- catit | tail +$lineno
-+ catit | tail -n +$lineno
- } >"$tmpfile"
-
- # And move it over the existing file
diff --git a/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild b/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild
deleted file mode 100644
index 6162e962b52f..000000000000
--- a/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/supervise-scripts/supervise-scripts-3.5.ebuild,v 1.7 2011/01/29 23:14:00 bangert Exp $
-
-inherit eutils fixheadtails toolchain-funcs
-
-DESCRIPTION="Starting and stopping daemontools managed services"
-HOMEPAGE="http://untroubled.org/supervise-scripts/"
-SRC_URI="http://untroubled.org/supervise-scripts/archive/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc sparc x86"
-IUSE=""
-
-RDEPEND="virtual/daemontools"
-DEPEND="${RDEPEND}
- dev-libs/bglibs"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- echo '/usr/bin' > conf-bin
- echo '/usr/lib/bglibs/lib' > conf-bglibs
- echo '/usr/lib/bglibs/include' > conf-bgincs
- echo "$(tc-getCC) ${CFLAGS}" > conf-cc
- echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
- ht_fix_file svscan-add-to-inittab.in Makefile
- epatch "${FILESDIR}"/${P}-head-tails-syntax.patch #152307
-}
-
-src_compile() {
- # does NOT support parallel make
- emake -j1 || die
-}
-
-src_install() {
- dobin svc-add svc-isdown svc-isup svc-remove \
- svc-start svc-status svc-stop svc-restart \
- svc-waitdown svc-waitup svscan-add-to-inittab \
- svscan-add-to-inittab svscan-start svscan-stopall \
- || die
- dodoc ANNOUNCEMENT ChangeLog NEWS README TODO VERSION
- doman *.[0-9]
-}