summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2013-04-17 16:03:26 +0000
committerWilliam Hubbs <williamh@gentoo.org>2013-04-17 16:03:26 +0000
commita342d8b143ffd76cd3edb40160fce1a224492985 (patch)
tree00b81f7411902913f437902126bff6e25cb9d8e4 /sys-fs/udev-init-scripts
parentStable for HPPA (bug #449298). (diff)
downloadgentoo-2-a342d8b143ffd76cd3edb40160fce1a224492985.tar.gz
gentoo-2-a342d8b143ffd76cd3edb40160fce1a224492985.tar.bz2
gentoo-2-a342d8b143ffd76cd3edb40160fce1a224492985.zip
remove old version that never went stable
(Portage version: 2.2.0_alpha173/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'sys-fs/udev-init-scripts')
-rw-r--r--sys-fs/udev-init-scripts/ChangeLog5
-rw-r--r--sys-fs/udev-init-scripts/udev-init-scripts-24.ebuild85
2 files changed, 4 insertions, 86 deletions
diff --git a/sys-fs/udev-init-scripts/ChangeLog b/sys-fs/udev-init-scripts/ChangeLog
index 526994abf6af..f180b5cbb922 100644
--- a/sys-fs/udev-init-scripts/ChangeLog
+++ b/sys-fs/udev-init-scripts/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/udev-init-scripts
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.69 2013/04/15 09:52:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.70 2013/04/17 16:03:26 williamh Exp $
+
+ 17 Apr 2013; William Hubbs <williamh@gentoo.org> -udev-init-scripts-24.ebuild:
+ remove old version that never went stable
15 Apr 2013; Jeroen Roovers <jer@gentoo.org> udev-init-scripts-25.ebuild:
Stable for HPPA (bug #463614).
diff --git a/sys-fs/udev-init-scripts/udev-init-scripts-24.ebuild b/sys-fs/udev-init-scripts/udev-init-scripts-24.ebuild
deleted file mode 100644
index 7fe2ea2b8997..000000000000
--- a/sys-fs/udev-init-scripts/udev-init-scripts-24.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-24.ebuild,v 1.1 2013/03/13 20:08:16 williamh Exp $
-
-EAPI=4
-
-inherit eutils
-
-if [ "${PV}" = "9999" ]; then
- EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/udev-gentoo-scripts.git"
- inherit git-2
-fi
-
-DESCRIPTION="udev startup scripts for openrc"
-HOMEPAGE="http://www.gentoo.org"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-fi
-
-RESTRICT="test"
-
-DEPEND="virtual/pkgconfig"
-RDEPEND=">=virtual/udev-180
- sys-apps/openrc
- !<sys-fs/udev-186"
-
-src_prepare()
-{
- epatch_user
-}
-
-pkg_postinst()
-{
- # Add udev and udev-mount to the sysinit runlevel automatically if this is
- # the first install of this package.
- if [[ -z ${REPLACING_VERSIONS} ]]
- then
- if [[ -x "${ROOT}"etc/init.d/udev \
- && -d "${ROOT}"etc/runlevels/sysinit ]]
- then
- ln -s /etc/init.d/udev "${ROOT}"/etc/runlevels/sysinit/udev
- fi
- if [[ -x "${ROOT}"etc/init.d/udev-mount \
- && -d "${ROOT}"etc/runlevels/sysinit ]]
- then
- ln -s /etc/init.d/udev-mount \
- "${ROOT}"etc/runlevels/sysinit/udev-mount
- fi
- fi
-
- # Warn the user about adding the scripts to their sysinit runlevel
- if [[ -e "${ROOT}"etc/runlevels/sysinit ]]
- then
- if [[ ! -e "${ROOT}"etc/runlevels/sysinit/udev ]]
- then
- ewarn
- ewarn "You need to add udev to the sysinit runlevel."
- ewarn "If you do not do this,"
- ewarn "your system will not be able to boot!"
- ewarn "Run this command:"
- ewarn "\trc-update add udev sysinit"
- fi
- if [[ ! -e "${ROOT}"etc/runlevels/sysinit/udev-mount ]]
- then
- ewarn
- ewarn "You need to add udev-mount to the sysinit runlevel."
- ewarn "If you do not do this,"
- ewarn "your system will not be able to boot!"
- ewarn "Run this command:"
- ewarn "\trc-update add udev-mount sysinit"
- fi
- fi
-
- if [[ -x $(type -P rc-update) ]] && rc-update show | grep udev-postmount | grep -qs 'boot\|default\|sysinit'; then
- ewarn "The udev-postmount service has been removed because the reasons for"
- ewarn "its existance have been removed upstream."
- ewarn "Please remove it from your runlevels."
- fi
-}