[arch-commits] Commit in initscripts/repos (4 files)

2012-10-07 Thread Tom Gundersen
Date: Sunday, October 7, 2012 @ 18:14:40
  Author: tomegun
Revision: 168286

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 168285, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 168285, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/split-hwclock-calls.diff
(from rev 168285, initscripts/trunk/split-hwclock-calls.diff)

--+
 PKGBUILD |   32 
 initscripts.install  |   26 ++
 split-hwclock-calls.diff |   21 +
 3 files changed, 79 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 168285, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-10-07 22:14:40 UTC (rev 168286)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+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')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 168285, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-10-07 22:14:40 UTC (rev 168286)
@@ -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
+}

Copied: initscripts/repos/testing-any/split-hwclock-calls.diff (from rev 
168285, initscripts/trunk/split-hwclock-calls.diff)
===
--- testing-any/split-hwclock-calls.diff(rev 0)
+++ testing-any/split-hwclock-calls.diff2012-10-07 22:14:40 UTC (rev 
168286)
@@ -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



[arch-commits] Commit in initscripts/repos (4 files)

2012-10-02 Thread Tom Gundersen
Date: Tuesday, October 2, 2012 @ 17:32:58
  Author: tomegun
Revision: 167675

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 167674, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 167674, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/split-hwclock-calls.diff
(from rev 167674, initscripts/trunk/split-hwclock-calls.diff)

--+
 PKGBUILD |   32 
 initscripts.install  |   26 ++
 split-hwclock-calls.diff |   21 +
 3 files changed, 79 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 167674, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-10-02 21:32:58 UTC (rev 167675)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.09.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+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')
+optdepends=('dhcpcd: DHCP network configuration'
+'bridge-utils: Legacy network bridging support'
+'net-tools: Legacy network support'
+'wireless_tools: Legacy wireless networking')
+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=('c42b34a386859d16f69507ca80ee0486')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 167674, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-10-02 21:32:58 UTC (rev 167675)
@@ -0,0 +1,26 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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 
MODULES and
+echo  DAEMONS 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
+}

Copied: initscripts/repos/testing-any/split-hwclock-calls.diff (from rev 
167674, initscripts/trunk/split-hwclock-calls.diff)
===
--- testing-any/split-hwclock-calls.diff(rev 0)
+++ testing-any/split-hwclock-calls.diff2012-10-02 21:32:58 UTC (rev 
167675)
@@ -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



[arch-commits] Commit in initscripts/repos (4 files)

2012-09-09 Thread Dave Reisner
Date: Sunday, September 9, 2012 @ 14:23:32
  Author: dreisner
Revision: 166531

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 166530, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 166530, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/split-hwclock-calls.diff
(from rev 166530, initscripts/trunk/split-hwclock-calls.diff)

--+
 PKGBUILD |   43 +++
 initscripts.install  |   26 ++
 split-hwclock-calls.diff |   21 +
 3 files changed, 90 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 166530, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-09-09 18:23:32 UTC (rev 166531)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.08.3
+pkgrel=3
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+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')
+optdepends=('dhcpcd: DHCP network configuration'
+'bridge-utils: Legacy network bridging support'
+'net-tools: Legacy network support'
+'wireless_tools: Legacy wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'split-hwclock-calls.diff')
+md5sums=('b5e8de40bf798637cb1634a1555d0f1f'
+ 'd381ed1fbdc3780496317844241b0568')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # 
http://mailman.archlinux.org/pipermail/arch-projects/2012-September/003252.html
+  # patch based on master does not apply, so this is the exact patch posted to
+  # the bug report it fixes (FS#31416).
+  patch -Np1 $srcdir/split-hwclock-calls.diff
+
+  make DESTDIR=${pkgdir} install
+
+  # moved to filesystem
+  rm -rf ${pkgdir}/etc/profile.d
+  rm ${pkgdir}/usr/share/man/man7/archlinux.7
+}

Copied: initscripts/repos/testing-any/initscripts.install (from rev 166530, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-09-09 18:23:32 UTC (rev 166531)
@@ -0,0 +1,26 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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 
MODULES and
+echo  DAEMONS 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
+}

Copied: initscripts/repos/testing-any/split-hwclock-calls.diff (from rev 
166530, initscripts/trunk/split-hwclock-calls.diff)
===
--- testing-any/split-hwclock-calls.diff(rev 0)
+++ testing-any/split-hwclock-calls.diff2012-09-09 18:23:32 UTC (rev 
166531)
@@ -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 || 

[arch-commits] Commit in initscripts/repos (4 files)

2012-08-27 Thread Tom Gundersen
Date: Monday, August 27, 2012 @ 16:36:11
  Author: tomegun
Revision: 165640

db-move: moved initscripts from [staging] to [testing] (any)

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 165637, initscripts/repos/staging-any/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 165637, initscripts/repos/staging-any/initscripts.install)
Deleted:
  initscripts/repos/staging-any/

-+
 PKGBUILD|   35 +++
 initscripts.install |   26 ++
 2 files changed, 61 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 165637, 
initscripts/repos/staging-any/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-08-27 20:36:11 UTC (rev 165640)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.08.3
+pkgrel=2
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+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')
+optdepends=('dhcpcd: DHCP network configuration'
+'bridge-utils: Legacy network bridging support'
+'net-tools: Legacy network support'
+'wireless_tools: Legacy wireless networking')
+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
+
+  # moved to filesystem
+  rm -rf ${pkgdir}/etc/profile.d
+  rm ${pkgdir}/usr/share/man/man7/archlinux.7
+}
+md5sums=('b5e8de40bf798637cb1634a1555d0f1f')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 165637, 
initscripts/repos/staging-any/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-08-27 20:36:11 UTC (rev 165640)
@@ -0,0 +1,26 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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 
MODULES and
+echo  DAEMONS 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
+}



[arch-commits] Commit in initscripts/repos (4 files)

2012-07-20 Thread Tom Gundersen
Date: Friday, July 20, 2012 @ 19:43:55
  Author: tomegun
Revision: 163826

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 163825, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 163825, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 163825, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   28 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 59 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 163825, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-07-20 23:43:55 UTC (rev 163826)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.07.3
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
+depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 
'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+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=('41595cf7786fb836b3e510c53d2c426a')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 163825, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-07-20 23:43:55 UTC (rev 163826)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 163825, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-07-20 23:43:55 UTC (rev 163826)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-06-29 Thread Tom Gundersen
Date: Friday, June 29, 2012 @ 09:32:29
  Author: tomegun
Revision: 162752

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 162751, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 162751, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 162751, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   31 +++
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 62 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 162751, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.06.3
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 
'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('34493c768b587ac59c6ee7e14f275c1d'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 162751, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 162751, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-06-22 Thread Tom Gundersen
Date: Friday, June 22, 2012 @ 17:42:17
  Author: tomegun
Revision: 162181

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 162180, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 162180, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 162180, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 162180, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-22 21:42:17 UTC (rev 162181)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.06.1
+pkgrel=2
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'systemd-tools' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('2fc09991157978d86eba2e042b60f6c7'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 162180, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-06-22 21:42:17 UTC (rev 162181)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 162180, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-06-22 21:42:17 UTC (rev 162181)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-06-06 Thread Tom Gundersen
Date: Wednesday, June 6, 2012 @ 19:03:34
  Author: tomegun
Revision: 160915

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 160914, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 160914, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 160914, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 160914, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-06 23:03:34 UTC (rev 160915)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.06.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'systemd-tools' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('2fc09991157978d86eba2e042b60f6c7'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 160914, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-06-06 23:03:34 UTC (rev 160915)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 160914, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-06-06 23:03:34 UTC (rev 160915)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-05-28 Thread Tom Gundersen
Date: Monday, May 28, 2012 @ 10:53:37
  Author: tomegun
Revision: 160052

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 160051, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 160051, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 160051, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 160051, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-05-28 14:53:37 UTC (rev 160052)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.05.1
+pkgrel=2
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'systemd-tools' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('13cff6a6638f12351892d7085d7e6fb9'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 160051, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-05-28 14:53:37 UTC (rev 160052)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 160051, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-05-28 14:53:37 UTC (rev 160052)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-05-05 Thread Tom Gundersen
Date: Saturday, May 5, 2012 @ 10:34:50
  Author: tomegun
Revision: 158657

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 158656, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 158656, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 158656, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 158656, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-05-05 14:34:50 UTC (rev 158657)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.05.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=182' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('13cff6a6638f12351892d7085d7e6fb9'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 158656, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-05-05 14:34:50 UTC (rev 158657)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 158656, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-05-05 14:34:50 UTC (rev 158657)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-04-30 Thread Tom Gundersen
Date: Monday, April 30, 2012 @ 08:12:57
  Author: tomegun
Revision: 157977

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 157976, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 157976, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 157976, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 157976, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-04-30 12:12:57 UTC (rev 157977)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.04.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=182' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('acbe71e13c270914ae4b2822a0c62119'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 157976, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-04-30 12:12:57 UTC (rev 157977)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 157976, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-04-30 12:12:57 UTC (rev 157977)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-03-21 Thread Tom Gundersen
Date: Wednesday, March 21, 2012 @ 09:46:43
  Author: tomegun
Revision: 154012

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 154011, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 154011, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 154011, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 154011, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-03-21 13:46:43 UTC (rev 154012)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.03.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=181' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('bc96e3969c61652048008ee4a798cf1f'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 154011, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-03-21 13:46:43 UTC (rev 154012)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 154011, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-03-21 13:46:43 UTC (rev 154012)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-02-10 Thread Tom Gundersen
Date: Friday, February 10, 2012 @ 08:45:21
  Author: tomegun
Revision: 149763

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 149762, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 149762, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 149762, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 149762, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-02-10 13:45:21 UTC (rev 149763)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.02.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=181' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('79c81d2567ebc33b6f39394c9349e619'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 149762, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-02-10 13:45:21 UTC (rev 149763)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 149762, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-02-10 13:45:21 UTC (rev 149763)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2012-01-19 Thread Tom Gundersen
Date: Thursday, January 19, 2012 @ 13:38:17
  Author: tomegun
Revision: 146967

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 146966, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 146966, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 146966, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 146966, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-01-19 18:38:17 UTC (rev 146967)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.01.3
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=174' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('3d4e02ddefb0c7e8ae7000161ae89448'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 146966, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-01-19 18:38:17 UTC (rev 146967)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 146966, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-01-19 18:38:17 UTC (rev 146967)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2011-12-31 Thread Tom Gundersen
Date: Saturday, December 31, 2011 @ 13:58:51
  Author: tomegun
Revision: 145785

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 145784, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 145784, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 145784, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 145784, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-31 18:58:51 UTC (rev 145785)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.01.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=174' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('2a27e5b27d1acce30738bbeb476898e8'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 145784, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2011-12-31 18:58:51 UTC (rev 145785)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 145784, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2011-12-31 18:58:51 UTC (rev 145785)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2011-12-13 Thread Tom Gundersen
Date: Tuesday, December 13, 2011 @ 10:27:11
  Author: tomegun
Revision: 144990

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 144989, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 144989, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 144989, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 144989, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-13 15:27:11 UTC (rev 144990)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2011.12.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=174' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('83337d7825d4cd6cd6da105c9ca04c99'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 144989, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2011-12-13 15:27:11 UTC (rev 144990)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 144989, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2011-12-13 15:27:11 UTC (rev 144990)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



[arch-commits] Commit in initscripts/repos (4 files)

2011-11-07 Thread Tom Gundersen
Date: Tuesday, November 8, 2011 @ 02:15:08
  Author: tomegun
Revision: 142304

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 142303, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 142303, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 142303, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   32 
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 63 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 142303, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-11-08 07:15:08 UTC (rev 142304)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2011.11.1
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'grep' 'coreutils' 'udev=174' 'iproute2'
+ 'ncurses' 'kbd' 'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('7204c9bd994a33095bca0a699efd24d0'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 142303, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2011-11-08 07:15:08 UTC (rev 142304)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  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
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 142303, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2011-11-08 07:15:08 UTC (rev 142304)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+