From 60f6a250016004320c2ccfccbe6ef7f500ed2d2d Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sun, 25 Nov 2012 21:36:59 +0100 Subject: aic: import packaging rules and the license --- arch/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ arch/initscripts.install | 26 ++++++++++++++++++++++++++ arch/split-hwclock-calls.diff | 21 +++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 arch/PKGBUILD create mode 100644 arch/initscripts.install create mode 100644 arch/split-hwclock-calls.diff (limited to 'arch') diff --git a/arch/PKGBUILD b/arch/PKGBUILD new file mode 100644 index 0000000..3c336b3 --- /dev/null +++ b/arch/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 168542 2012-10-13 09:29:55Z thomas $ +# Maintainer: Tom Gundersen +# Contributor: Thomas Bächler +# Contributor: Aaron Griffin + +pkgname=initscripts +pkgver=2012.10.1 +pkgrel=1 +pkgdesc="System initialization/bootup scripts" +arch=('any') +url="http://www.archlinux.org" +license=('GPL2') +provides=('initscripts-systemd') +conflicts=('initscripts-systemd') +replaces=('initscripts-systemd') +backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown) +depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 'findutils' 'sysvinit-tools') +optdepends=('dhcpcd: DHCP network configuration' + 'bridge-utils: Legacy network bridging support' + 'net-tools: Legacy network support' + 'wireless_tools: Legacy wireless networking' + 'sysvinit: Legacy init support') +makedepends=(asciidoc) +install=initscripts.install +source=("ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz") + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} +md5sums=('a4a747e73819b81f2218cf5b9bd53703') diff --git a/arch/initscripts.install b/arch/initscripts.install new file mode 100644 index 0000000..03519cb --- /dev/null +++ b/arch/initscripts.install @@ -0,0 +1,26 @@ +post_upgrade() { + if [ "$(vercmp $2 2011.06.1)" -lt 0 ]; then + echo "Blacklisting of modules is no longer supported in rc.conf," + echo "please add blacklist entries to /etc/modprobe.d/ instead." + fi + if [ "$(vercmp $2 2011.07.2)" -lt 0 ]; then + echo "VERBOSE= in rc.conf no longer has any effect." + echo "Please append 'quiet' to your kernel command line." + fi + if [ "$(vercmp $2 2011.10.1)" -lt 0 ]; then + echo "If using non-bash-compatible shell, please set LANG in /etc/locale.conf," + echo "as LOCALE in /etc/rc.conf no longer works." + fi + if [ "$(vercmp $2 2012.08.1)" -lt 0 ]; then + echo "----" + echo "> initscripts now ships a compatibility layer to make systemd use DAEMONS" + echo "> from rc.conf; and run rc.local and rc.local.shutdown on boot and" + echo "> shutdown, respectively. Refer to arch-modules-load(8) and arch-daemons(8)." + echo "----" + fi + if [ "$(vercmp $2 2012.10.1)" -lt 0 ]; then + echo "----" + echo "> systemd no longer reads MODULES from rc.conf." + echo "----" + fi +} diff --git a/arch/split-hwclock-calls.diff b/arch/split-hwclock-calls.diff new file mode 100644 index 0000000..c0a6a4f --- /dev/null +++ b/arch/split-hwclock-calls.diff @@ -0,0 +1,21 @@ +diff --git a/rc.sysinit b/rc.sysinit +index eb49e2b..8f9727b 100755 +--- a/rc.sysinit ++++ b/rc.sysinit +@@ -34,7 +34,6 @@ bootlogd -p /run/bootlogd.pid + + run_hook sysinit_start + +-HWCLOCK_PARAMS="--systz" + case $HARDWARECLOCK in + "") ;; + UTC) HWCLOCK_PARAMS+=" --utc --noadjfile";; +@@ -54,7 +53,7 @@ if [[ $HWCLOCK_PARAMS ]]; then + + [[ $TIMEZONE ]] && export TZ=$TIMEZONE + +- hwclock $HWCLOCK_PARAMS && stat_done || stat_fail ++ { hwclock $HWCLOCK_PARAMS && hwclock --systz; } && stat_done || stat_fail + + unset TZ + fi -- cgit v1.2.3