summaryrefslogtreecommitdiffstats
path: root/core/openrc
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-06-05 08:37:59 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-06-05 08:37:59 +0000
commitda3316a3321595daefbbd9d399a509ff349af1f8 (patch)
tree16013776fe5ccef114b1237e90aa0ddacfe26dc8 /core/openrc
parent03884e3cbbf391b41eaba6474d76b71902b94e0b (diff)
downloadaports-da3316a3321595daefbbd9d399a509ff349af1f8.tar.bz2
aports-da3316a3321595daefbbd9d399a509ff349af1f8.tar.xz
core/openrc: upgrade to 0.5.0
Diffstat (limited to 'core/openrc')
-rw-r--r--core/openrc/APKBUILD12
-rw-r--r--core/openrc/openrc-gendepends-speedup.patch24
2 files changed, 5 insertions, 31 deletions
diff --git a/core/openrc/APKBUILD b/core/openrc/APKBUILD
index ecf30e07..ae21569a 100644
--- a/core/openrc/APKBUILD
+++ b/core/openrc/APKBUILD
@@ -1,16 +1,15 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=openrc
-pkgver=0.4.3
-pkgrel=4
+pkgver=0.5.0
+pkgrel=0
pkgdesc="OpenRC manages the services, startup and shutdown of a host"
url="http://roy.marples.name/openrc"
license='BSD-2'
-depends="uclibc"
+depends=""
subpackages="$pkgname-doc $pkgname-dev"
install="$pkgname.post-install"
source="http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2
openrc-0.4.3-mkmntdirs.patch
- openrc-gendepends-speedup.patch
hostname.initd
keymaps.initd
modules.initd
@@ -31,7 +30,7 @@ build() {
# we cannot have anything turned on by default
rm -f "$pkgdir"/etc/runlevels/*/*
- rm -f "$pkgdir"/lib/rc/net/* "$pkgdir"/etc/init.d/net.lo
+ #rm -f "$pkgdir"/lib/rc/net/* "$pkgdir"/etc/init.d/net.lo
# we override some of the scripts
for i in ../*.initd; do
@@ -41,9 +40,8 @@ build() {
}
-md5sums="57ca95533e629f06a0775e176e19bdb5 openrc-0.4.3.tar.bz2
+md5sums="9ec7f8425e12abbbd0f7a962aae3fa3c openrc-0.5.0.tar.bz2
8c2c1c2ee0509b63966b7187a2079f4b openrc-0.4.3-mkmntdirs.patch
-dcdcb34591e3d9eaaaf82db736cc5135 openrc-gendepends-speedup.patch
c32e15b0858eef708497e7ee6355a055 hostname.initd
33ca3e558c42cdd17adccbc7807298f7 keymaps.initd
5608e6e3d836ad01b9714e5b41d223cb modules.initd
diff --git a/core/openrc/openrc-gendepends-speedup.patch b/core/openrc/openrc-gendepends-speedup.patch
deleted file mode 100644
index 528b5716..00000000
--- a/core/openrc/openrc-gendepends-speedup.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: sh/gendepends.sh.in
-===================================================================
---- a/sh/gendepends.sh.in (revision 1511)
-+++ b/sh/gendepends.sh.in (working copy)
-@@ -81,6 +81,7 @@
- [ -e @SYSCONFDIR@/rc.conf ] && . @SYSCONFDIR@/rc.conf
-
- if . "${_dir}/${RC_SVCNAME}"; then
-+ _shell_var_RC_SVCNAME=$(shell_var "${RC_SVCNAME}")
- echo "${RC_SVCNAME}" >&3
- depend
-
-@@ -91,9 +92,9 @@
- IFS=:
- set -- ${_deptype}
- unset IFS
-- eval _depends=\$rc_$(shell_var "${RC_SVCNAME}")_$1
-+ eval _depends=\$rc_${_shell_var_RC_SVCNAME}_$1
- [ -z "${_depends}" ] && eval _depends=\$rc_$1
-- [ -z "${_depends}" ] && eval _depends=\$RC_$(shell_var "${RC_SVCNAME}")_$2
-+ [ -z "${_depends}" ] && eval _depends=\$RC_${_shell_var_RC_SVCNAME}_$2
- [ -z "${_depends}" ] && eval _depends=\$RC_$2
-
- $1 ${_depends}