diff options
author | William Hubbs <williamh@gentoo.org> | 2014-03-19 14:56:24 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2014-03-19 14:56:24 +0000 |
commit | 6a90246c0a30a2ec09934259264a6cde0818af0e (patch) | |
tree | c06b5a6c8d5bc226c47cf9fe08ee22975bdf07bc /sys-process/runit | |
parent | add missing dep sourced from Bug #503350 by W. King (diff) | |
download | gentoo-2-6a90246c0a30a2ec09934259264a6cde0818af0e.tar.gz gentoo-2-6a90246c0a30a2ec09934259264a6cde0818af0e.tar.bz2 gentoo-2-6a90246c0a30a2ec09934259264a6cde0818af0e.zip |
remove unstable versions
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8568F528)
Diffstat (limited to 'sys-process/runit')
-rw-r--r-- | sys-process/runit/ChangeLog | 6 | ||||
-rw-r--r-- | sys-process/runit/runit-2.0.0.ebuild | 65 | ||||
-rw-r--r-- | sys-process/runit/runit-2.1.1.ebuild | 58 |
3 files changed, 5 insertions, 124 deletions
diff --git a/sys-process/runit/ChangeLog b/sys-process/runit/ChangeLog index ed1e86d4b237..ecb0cbe59790 100644 --- a/sys-process/runit/ChangeLog +++ b/sys-process/runit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-process/runit # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.45 2014/03/19 13:47:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.46 2014/03/19 14:56:24 williamh Exp $ + + 19 Mar 2014; William Hubbs <williamh@gentoo.org> -runit-2.0.0.ebuild, + -runit-2.1.1.ebuild: + remove unstable versions 19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> runit-2.1.1-r1.ebuild: Stable for alpha, wrt bug #407329 diff --git a/sys-process/runit/runit-2.0.0.ebuild b/sys-process/runit/runit-2.0.0.ebuild deleted file mode 100644 index 99b7d509b5e0..000000000000 --- a/sys-process/runit/runit-2.0.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.0.0.ebuild,v 1.1 2008/12/25 22:24:45 vapier Exp $ - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="A UNIX init scheme with service supervision" -HOMEPAGE="http://smarden.org/runit/" -SRC_URI="http://smarden.org/runit/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" - -DEPEND="" - -S=${WORKDIR}/admin/${P} - -src_unpack() { - unpack ${A} - cd "${S}" - - # we either build everything or nothing static - sed -i -e 's:-static: :' src/Makefile -} - -src_compile() { - cd src - use static && append-ldflags -static - - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld - - emake || die "make failed" -} - -src_install() { - dodir /var - keepdir /etc/runit{,/runsvdir{,/default,/all}} - dosym default /etc/runit/runsvdir/current - dosym ../etc/runit/runsvdir/current /var/service - - cd src - dobin $(<../package/commands) || die "dobin" - dodir /sbin - mv "${D}"/usr/bin/{runit-init,runit,utmpset} "${D}"/sbin/ || die "dosbin" - - cd "${S}" - dodoc package/{CHANGES,README,THANKS,TODO} - dohtml doc/*.html - doman man/*.[18] - - exeinto /etc/runit - doexe "${FILESDIR}"/{1,2,ctrlaltdel} || die - newexe "${FILESDIR}"/3-1.4 3 || die - for tty in tty1 tty2 tty3 tty4 tty5 tty6; do - exeinto /etc/runit/runsvdir/all/getty-$tty/ - for script in run finish; do - newexe "${FILESDIR}"/$script.getty $script - dosed "s:TTY:${tty}:g" /etc/runit/runsvdir/all/getty-$tty/$script - done - dosym ../all/getty-$tty /etc/runit/runsvdir/default/getty-$tty - done -} diff --git a/sys-process/runit/runit-2.1.1.ebuild b/sys-process/runit/runit-2.1.1.ebuild deleted file mode 100644 index e3c69152368b..000000000000 --- a/sys-process/runit/runit-2.1.1.ebuild +++ /dev/null @@ -1,58 +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/runit/runit-2.1.1.ebuild,v 1.2 2011/06/15 18:55:12 flameeyes Exp $ - -EAPI="3" - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="A UNIX init scheme with service supervision" -HOMEPAGE="http://smarden.org/runit/" -SRC_URI="http://smarden.org/runit/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" - -S=${WORKDIR}/admin/${P}/src - -src_prepare() { - # we either build everything or nothing static - sed -i -e 's:-static: :' src/Makefile -} - -src_configure() { - use static && append-ldflags -static - - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld -} - -src_install() { - dodir /var - keepdir /etc/runit{,/runsvdir{,/default,/all}} - dosym default /etc/runit/runsvdir/current - dosym ../etc/runit/runsvdir/current /var/service - - dobin $(<../package/commands) || die "dobin" - dodir /sbin - mv "${D}"/usr/bin/{runit-init,runit,utmpset} "${D}"/sbin/ || die "dosbin" - - cd "${S}"/.. - dodoc package/{CHANGES,README,THANKS,TODO} - dohtml doc/*.html - doman man/*.[18] - - exeinto /etc/runit - doexe "${FILESDIR}"/{1,2,ctrlaltdel} || die - newexe "${FILESDIR}"/3-1.4 3 || die - for tty in tty1 tty2 tty3 tty4 tty5 tty6; do - exeinto /etc/runit/runsvdir/all/getty-$tty/ - for script in run finish; do - newexe "${FILESDIR}"/$script.getty $script - dosed "s:TTY:${tty}:g" /etc/runit/runsvdir/all/getty-$tty/$script - done - dosym ../all/getty-$tty /etc/runit/runsvdir/default/getty-$tty - done -} |