[arch-commits] Commit in hwdetect/trunk (PKGBUILD hwdetect)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:21:26
  Author: tpowa
Revision: 127132

upgpkg: hwdetect 2011.06-1
update to new blacklisting, cleanup some modules

Modified:
  hwdetect/trunk/PKGBUILD
  hwdetect/trunk/hwdetect

--+
 PKGBUILD |4 +-
 hwdetect |   89 ++---
 2 files changed, 53 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-10 23:09:01 UTC (rev 127131)
+++ PKGBUILD2011-06-11 06:21:26 UTC (rev 127132)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=hwdetect
-pkgver=2011.03
+pkgver=2011.06
 pkgrel=1
 pkgdesc=Hardware detection script with loading modules and mkinitcpio.conf / 
rc.conf support
 arch=(any)
@@ -16,4 +16,4 @@
 build() {
   install -D -m 755 ${srcdir}/hwdetect ${pkgdir}/sbin/hwdetect
 }
-md5sums=('3310641a9b9dbc9b828e7608c4e263aa')
+md5sums=('6ed80288fe8a76ae1827a552d40a6e8a')

Modified: hwdetect
===
--- hwdetect2011-06-10 23:09:01 UTC (rev 127131)
+++ hwdetect2011-06-11 06:21:26 UTC (rev 127132)
@@ -59,6 +59,7 @@
echo --usbhost  show usb hostcontroller MODULES
echo --modules  show all detected MODULES
echo --modules-not-loaded   show all detected MODULES but not 
actually loaded
+   echo --blacklistactivates blacklisting for net,sound 
and usbhost
echo 
exit 1
 }
@@ -117,6 +118,9 @@
 # vmware switch
 [ $(echo $* | grep '\-hooks') ]  HOOKS=1
 
+# blacklist switch
+[ $(echo $* | grep '\-blacklist') ]  BLACKLIST=1
+
 ADVANCED=
 # root device check
 if ! [ $ROOTDEVICE =  ]; then
@@ -257,11 +261,7 @@
[ $devid ] || continue

modprobe -i --set-version=$KERNEL_VERSION --show-depends 
pnp:d${devid}  /tmp/modules-plain 2/dev/null
-   
[ $devid = PNP0800 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends pcspkr  /tmp/modules-plain  
2/dev/null
-   [ $devid = PNP0b00 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends rtc_proc  /tmp/modules-plain  
2/dev/null
-   [ $devid = PNP0b00 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends rtc_sysfs  /tmp/modules-plain 
2/dev/null
-   [ $devid = PNP0b00 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends rtc_dev  /tmp/modules-plain 
2/dev/null
[ $devid = PNP0510 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends irtty-sir  /tmp/modules-plain 
2/dev/null
[ $devid = PNP0511 ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends irtty-sir  /tmp/modules-plain 
2/dev/null
[ $devid = PNPb02f ]  modprobe -i 
--set-version=$KERNEL_VERSION --show-depends analog  /tmp/modules-plain 
2/dev/null
@@ -292,14 +292,6 @@
modprobe -i --set-version=$KERNEL_VERSION --show-depends ppdev  
/tmp/modules-plain 2/dev/null
 fi
 
-# Sound OSS compat modules
-if [ $(grep 'snd-pcm' /tmp/modules-plain) ]; then
-   modprobe -i --set-version=$KERNEL_VERSION --show-depends snd-pcm-oss  
/tmp/modules-plain 2/dev/null
-fi
-if [ $(grep 'snd-seq' /tmp/modules-plain) ]; then
-   modprobe -i --set-version=$KERNEL_VERSION --show-depends snd-seq-oss  
/tmp/modules-plain 2/dev/null
-fi
-
 sort -u /tmp/modules-plain  /tmp/modules-stripped
 
 # OTHER modules loading first for speed up!
@@ -502,44 +494,65 @@
;;
--net)  if [ $(showlist2 MODULES  \($(listmods drivers/net/ 
irda ppp_generic slhc) $(listmods drivers/usb/net/) $(listmods 
drivers/staging/) \) | sed -e 's/(\ /(/g' -e 's/\ )/)/g' -e 's/\ \ /\ /g' | 
grep '8139cp') ] ; then
if [ $(dmesg | grep 'use 8139too') ]; then
-   MODULES_EXPORTED=$MODULES_EXPORTED 
$(listmods drivers/net/ irda ppp_generic slhc) $(listmods drivers/usb/net/) 
$(listmods drivers/staging/)
-   MODULES_EXPORTED=$(echo 
$MODULES_EXPORTED | sed -e 's/8139cp//g')
-   BLACKLIST_UDEV=!8139cp
-   for i in $MODULES_EXPORTED; do
-   BLACKLIST_UDEV=$BLACKLIST_UDEV 
!$i
+   NET_EXPORTED=$(echo $(listmods 
drivers/net/ irda ppp_generic slhc) $(listmods drivers/usb/net/) $(listmods 
drivers/staging/) | sed -e 's/8139cp//g')
+   MODULES_EXPORTED=$MODULES_EXPORTED 
$NET_EXPORTED
+   BLACKLIST_UDEV=8139cp
+   for i in $NET_EXPORTED; do
+   BLACKLIST_UDEV=$BLACKLIST_UDEV 
$i
done
-   showlist2 

[arch-commits] Commit in hwdetect/repos (extra-any)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:21:32
  Author: tpowa
Revision: 127133

archrelease: remove extra-any

Deleted:
  hwdetect/repos/extra-any/



[arch-commits] Commit in hwdetect/repos (extra-any)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:21:48
  Author: tpowa
Revision: 127134

archrelease: copy trunk to extra-any

Added:
  hwdetect/repos/extra-any/



[arch-commits] Commit in kernel26/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:26
  Author: tpowa
Revision: 127135

db-move: kernel26 removed by tpowa for move to [core] (i686)

Deleted:
  kernel26/repos/core-i686/



[arch-commits] Commit in kernel26/repos (core-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:27
  Author: tpowa
Revision: 127136

db-move: moved kernel26 from [testing] to [core] (i686)

Added:
  kernel26/repos/core-i686/
Deleted:
  kernel26/repos/testing-i686/



[arch-commits] Commit in kernel26/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:27
  Author: tpowa
Revision: 127137

db-move: kernel26 removed by tpowa for move to [core] (x86_64)

Deleted:
  kernel26/repos/core-x86_64/



[arch-commits] Commit in kernel26/repos (core-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:28
  Author: tpowa
Revision: 127138

db-move: moved kernel26 from [testing] to [core] (x86_64)

Added:
  kernel26/repos/core-x86_64/
Deleted:
  kernel26/repos/testing-x86_64/



[arch-commits] Commit in kernel26-lts/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:30
  Author: tpowa
Revision: 127139

db-move: kernel26-lts removed by tpowa for move to [core] (i686)

Deleted:
  kernel26-lts/repos/core-i686/



[arch-commits] Commit in kernel26-lts/repos (core-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:31
  Author: tpowa
Revision: 127140

db-move: moved kernel26-lts from [testing] to [core] (i686)

Added:
  kernel26-lts/repos/core-i686/
Deleted:
  kernel26-lts/repos/testing-i686/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:32
  Author: tpowa
Revision: 127141

db-move: kernel26-lts removed by tpowa for move to [core] (x86_64)

Deleted:
  kernel26-lts/repos/core-x86_64/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:27:33
  Author: tpowa
Revision: 127142

db-move: moved kernel26-lts from [testing] to [core] (x86_64)

Added:
  kernel26-lts/repos/core-x86_64/
Deleted:
  kernel26-lts/repos/testing-x86_64/



[arch-commits] Commit in nvidia/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:25
  Author: tpowa
Revision: 127143

db-move: nvidia removed by tpowa for move to [extra] (i686)

Deleted:
  nvidia/repos/extra-i686/



[arch-commits] Commit in nvidia/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:26
  Author: tpowa
Revision: 127144

db-move: moved nvidia from [testing] to [extra] (i686)

Added:
  nvidia/repos/extra-i686/
Deleted:
  nvidia/repos/testing-i686/



[arch-commits] Commit in nvidia/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:27
  Author: tpowa
Revision: 127145

db-move: nvidia removed by tpowa for move to [extra] (x86_64)

Deleted:
  nvidia/repos/extra-x86_64/



[arch-commits] Commit in nvidia/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:27
  Author: tpowa
Revision: 127146

db-move: moved nvidia from [testing] to [extra] (x86_64)

Added:
  nvidia/repos/extra-x86_64/
Deleted:
  nvidia/repos/testing-x86_64/



[arch-commits] Commit in nvidia-173xx/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:28
  Author: tpowa
Revision: 127147

db-move: nvidia-173xx removed by tpowa for move to [extra] (i686)

Deleted:
  nvidia-173xx/repos/extra-i686/



[arch-commits] Commit in nvidia-173xx/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:29
  Author: tpowa
Revision: 127148

db-move: moved nvidia-173xx from [testing] to [extra] (i686)

Added:
  nvidia-173xx/repos/extra-i686/
Deleted:
  nvidia-173xx/repos/testing-i686/



[arch-commits] Commit in nvidia-173xx/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:31
  Author: tpowa
Revision: 127149

db-move: nvidia-173xx removed by tpowa for move to [extra] (x86_64)

Deleted:
  nvidia-173xx/repos/extra-x86_64/



[arch-commits] Commit in nvidia-173xx/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:33
  Author: tpowa
Revision: 127150

db-move: moved nvidia-173xx from [testing] to [extra] (x86_64)

Added:
  nvidia-173xx/repos/extra-x86_64/
Deleted:
  nvidia-173xx/repos/testing-x86_64/



[arch-commits] Commit in lirc/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:34
  Author: tpowa
Revision: 127151

db-move: lirc removed by tpowa for move to [extra] (i686)

Deleted:
  lirc/repos/extra-i686/



[arch-commits] Commit in lirc/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:35
  Author: tpowa
Revision: 127152

db-move: moved lirc from [testing] to [extra] (i686)

Added:
  lirc/repos/extra-i686/
Deleted:
  lirc/repos/testing-i686/



[arch-commits] Commit in lirc/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:36
  Author: tpowa
Revision: 127153

db-move: lirc removed by tpowa for move to [extra] (x86_64)

Deleted:
  lirc/repos/extra-x86_64/



[arch-commits] Commit in lirc/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:37
  Author: tpowa
Revision: 127154

db-move: moved lirc from [testing] to [extra] (x86_64)

Added:
  lirc/repos/extra-x86_64/
Deleted:
  lirc/repos/testing-x86_64/



[arch-commits] Commit in fcpci/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:38
  Author: tpowa
Revision: 127155

db-move: fcpci removed by tpowa for move to [extra] (i686)

Deleted:
  fcpci/repos/extra-i686/



[arch-commits] Commit in fcpci/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:39
  Author: tpowa
Revision: 127156

db-move: moved fcpci from [testing] to [extra] (i686)

Added:
  fcpci/repos/extra-i686/
Deleted:
  fcpci/repos/testing-i686/



[arch-commits] Commit in fcpci/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:41
  Author: tpowa
Revision: 127158

db-move: moved fcpci from [testing] to [extra] (x86_64)

Added:
  fcpci/repos/extra-x86_64/
Deleted:
  fcpci/repos/testing-x86_64/



[arch-commits] Commit in fcpcmcia/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:42
  Author: tpowa
Revision: 127159

db-move: fcpcmcia removed by tpowa for move to [extra] (i686)

Deleted:
  fcpcmcia/repos/extra-i686/



[arch-commits] Commit in fcpci/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:40
  Author: tpowa
Revision: 127157

db-move: fcpci removed by tpowa for move to [extra] (x86_64)

Deleted:
  fcpci/repos/extra-x86_64/



[arch-commits] Commit in fcpcmcia/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:42
  Author: tpowa
Revision: 127160

db-move: moved fcpcmcia from [testing] to [extra] (i686)

Added:
  fcpcmcia/repos/extra-i686/
Deleted:
  fcpcmcia/repos/testing-i686/



[arch-commits] Commit in fcpcmcia/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:43
  Author: tpowa
Revision: 127161

db-move: fcpcmcia removed by tpowa for move to [extra] (x86_64)

Deleted:
  fcpcmcia/repos/extra-x86_64/



[arch-commits] Commit in fcpcmcia/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:44
  Author: tpowa
Revision: 127162

db-move: moved fcpcmcia from [testing] to [extra] (x86_64)

Added:
  fcpcmcia/repos/extra-x86_64/
Deleted:
  fcpcmcia/repos/testing-x86_64/



[arch-commits] Commit in nvidia-lts/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:45
  Author: tpowa
Revision: 127163

db-move: nvidia-lts removed by tpowa for move to [extra] (i686)

Deleted:
  nvidia-lts/repos/extra-i686/



[arch-commits] Commit in nvidia-lts/repos (extra-i686 testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:46
  Author: tpowa
Revision: 127164

db-move: moved nvidia-lts from [testing] to [extra] (i686)

Added:
  nvidia-lts/repos/extra-i686/
Deleted:
  nvidia-lts/repos/testing-i686/



[arch-commits] Commit in nvidia-lts/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:47
  Author: tpowa
Revision: 127165

db-move: nvidia-lts removed by tpowa for move to [extra] (x86_64)

Deleted:
  nvidia-lts/repos/extra-x86_64/



[arch-commits] Commit in nvidia-lts/repos (extra-x86_64 testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:28:49
  Author: tpowa
Revision: 127166

db-move: moved nvidia-lts from [testing] to [extra] (x86_64)

Added:
  nvidia-lts/repos/extra-x86_64/
Deleted:
  nvidia-lts/repos/testing-x86_64/



[arch-commits] Commit in tiacx/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:30:53
  Author: tpowa
Revision: 127167

db-remove: tiacx removed by tpowa

Deleted:
  tiacx/repos/core-i686/



[arch-commits] Commit in tiacx-lts/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:30:59
  Author: tpowa
Revision: 127168

db-remove: tiacx-lts removed by tpowa

Deleted:
  tiacx-lts/repos/core-i686/



[arch-commits] Commit in tiacx/repos (testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:31:20
  Author: tpowa
Revision: 127169

db-remove: tiacx removed by tpowa

Deleted:
  tiacx/repos/testing-i686/



[arch-commits] Commit in ndiswrapper/repos (testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:31:38
  Author: tpowa
Revision: 127170

db-remove: ndiswrapper removed by tpowa

Deleted:
  ndiswrapper/repos/testing-i686/



[arch-commits] Commit in ndiswrapper/repos (testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:31:52
  Author: tpowa
Revision: 127171

db-remove: ndiswrapper removed by tpowa

Deleted:
  ndiswrapper/repos/testing-x86_64/



[arch-commits] Commit in tiacx/repos (testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:32:04
  Author: tpowa
Revision: 127172

db-remove: tiacx removed by tpowa

Deleted:
  tiacx/repos/testing-x86_64/



[arch-commits] Commit in tiacx/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:32:11
  Author: tpowa
Revision: 127173

db-remove: tiacx removed by tpowa

Deleted:
  tiacx/repos/core-x86_64/



[arch-commits] Commit in tiacx-lts/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:32:23
  Author: tpowa
Revision: 127174

db-remove: tiacx-lts removed by tpowa

Deleted:
  tiacx-lts/repos/core-x86_64/



[arch-commits] Commit in ndiswrapper-lts/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:32:41
  Author: tpowa
Revision: 127175

db-remove: ndiswrapper-lts removed by tpowa

Deleted:
  ndiswrapper-lts/repos/core-x86_64/



[arch-commits] Commit in ndiswrapper-lts/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:32:46
  Author: tpowa
Revision: 127176

db-remove: ndiswrapper-lts removed by tpowa

Deleted:
  ndiswrapper-lts/repos/core-i686/



[arch-commits] Commit in ndiswrapper-utils/repos (core-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:33:03
  Author: tpowa
Revision: 127177

db-remove: ndiswrapper-utils removed by tpowa

Deleted:
  ndiswrapper-utils/repos/core-i686/



[arch-commits] Commit in ndiswrapper-utils/repos (core-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:33:10
  Author: tpowa
Revision: 127178

db-remove: ndiswrapper-utils removed by tpowa

Deleted:
  ndiswrapper-utils/repos/core-x86_64/



[arch-commits] Commit in intel-536ep/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:34:21
  Author: tpowa
Revision: 127179

db-remove: intel-536ep removed by tpowa

Deleted:
  intel-536ep/repos/extra-i686/



[arch-commits] Commit in intel-537/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:34:34
  Author: tpowa
Revision: 127180

db-remove: intel-537 removed by tpowa

Deleted:
  intel-537/repos/extra-i686/



[arch-commits] Commit in martian/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:34:49
  Author: tpowa
Revision: 127181

db-remove: martian removed by tpowa

Deleted:
  martian/repos/extra-i686/



[arch-commits] Commit in madwifi/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:35:13
  Author: tpowa
Revision: 127182

db-remove: madwifi removed by tpowa

Deleted:
  madwifi/repos/extra-x86_64/



[arch-commits] Commit in madwifi/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:35:25
  Author: tpowa
Revision: 127183

db-remove: madwifi removed by tpowa

Deleted:
  madwifi/repos/extra-i686/



[arch-commits] Commit in madwifi/repos (testing-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:35:50
  Author: tpowa
Revision: 127184

db-remove: madwifi removed by tpowa

Deleted:
  madwifi/repos/testing-i686/



[arch-commits] Commit in madwifi/repos (testing-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:35:58
  Author: tpowa
Revision: 127185

db-remove: madwifi removed by tpowa

Deleted:
  madwifi/repos/testing-x86_64/



[arch-commits] Commit in aufs2/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:36:34
  Author: tpowa
Revision: 127186

db-remove: aufs2 removed by tpowa

Deleted:
  aufs2/repos/extra-i686/



[arch-commits] Commit in aufs2-util/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:37:53
  Author: tpowa
Revision: 127189

db-remove: aufs2-util removed by tpowa

Deleted:
  aufs2-util/repos/extra-i686/



[arch-commits] Commit in intel-536ep-utils/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:38:39
  Author: tpowa
Revision: 127190

db-remove: intel-536ep-utils removed by tpowa

Deleted:
  intel-536ep-utils/repos/extra-i686/



[arch-commits] Commit in intel-537-utils/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:39:04
  Author: tpowa
Revision: 127191

db-remove: intel-537-utils removed by tpowa

Deleted:
  intel-537-utils/repos/extra-i686/



[arch-commits] Commit in madwifi-utils/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:39:26
  Author: tpowa
Revision: 127192

db-remove: madwifi-utils removed by tpowa

Deleted:
  madwifi-utils/repos/extra-i686/



[arch-commits] Commit in madwifi-utils/repos (extra-x86_64)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:39:42
  Author: tpowa
Revision: 127193

db-remove: madwifi-utils removed by tpowa

Deleted:
  madwifi-utils/repos/extra-x86_64/



[arch-commits] Commit in martian-utils/repos (extra-i686)

2011-06-11 Thread Tobias Powalowski
Date: Saturday, June 11, 2011 @ 02:41:08
  Author: tpowa
Revision: 127194

db-remove: martian-utils removed by tpowa

Deleted:
  martian-utils/repos/extra-i686/



[arch-commits] Commit in ethtool/trunk (PKGBUILD)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 04:04:12
  Author: ibiru
Revision: 127195

update to 2.6.39

Modified:
  ethtool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 06:41:08 UTC (rev 127194)
+++ PKGBUILD2011-06-11 08:04:12 UTC (rev 127195)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal p...@archlinux.org
 # Contributer: Martin Kemp mdk...@elys.com
 pkgname=ethtool
-pkgver=2.6.38
+pkgver=2.6.39
 pkgrel=1
 epoch=1
 pkgdesc=gkernel ethtool
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('glibc')
 
source=(http://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('4cc35c59e4fd0defff768f9f59fa41ad')
+md5sums=('97211a1e3a496bc3bd0b75849d0fbae9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in ethtool/repos (extra-i686)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 04:05:31
  Author: ibiru
Revision: 127196

archrelease: remove extra-i686

Deleted:
  ethtool/repos/extra-i686/



[arch-commits] Commit in ethtool/repos (extra-i686)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 04:05:46
  Author: ibiru
Revision: 127197

archrelease: copy trunk to extra-i686

Added:
  ethtool/repos/extra-i686/



[arch-commits] Commit in ethtool/repos (extra-x86_64)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 04:05:49
  Author: ibiru
Revision: 127198

archrelease: remove extra-x86_64

Deleted:
  ethtool/repos/extra-x86_64/



[arch-commits] Commit in ethtool/repos (extra-x86_64)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 04:06:06
  Author: ibiru
Revision: 127199

archrelease: copy trunk to extra-x86_64

Added:
  ethtool/repos/extra-x86_64/



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 04:26:52
  Author: remy
Revision: 127200

Upstream update (3.11.5)

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 08:06:06 UTC (rev 127199)
+++ PKGBUILD2011-06-11 08:26:52 UTC (rev 127200)
@@ -3,7 +3,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.11.3
+pkgver=3.11.5
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -24,6 +24,7 @@
 options=('!libtool')
 install=hplip.install
 source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz)
+md5sums=('0a3d0f46ec89857b4c0feea6923864f1')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
@@ -58,4 +59,4 @@
  # fix sysfs rules
  sed -i -e s|SYSFS|ATTRS|g -e s|sysfs|attrs|g 
$pkgdir/lib/udev/rules.d/56-hpmud_support.rules
 }
-md5sums=('9a2f39cb02214ee0def550defac0d240')
+



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 04:34:09
  Author: remy
Revision: 127201

Fix FS#24554

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 08:26:52 UTC (rev 127200)
+++ PKGBUILD2011-06-11 08:34:09 UTC (rev 127201)
@@ -57,6 +57,9 @@
  # remove lp user, it's not used on archlinux
  sed -i 's|OWNER=lp, ||g' $pkgdir/lib/udev/rules.d/40-hplip.rules
  # fix sysfs rules
- sed -i -e s|SYSFS|ATTRS|g -e s|sysfs|attrs|g 
$pkgdir/lib/udev/rules.d/56-hpmud_support.rules
+ sed -i -e s|SYSFS|ATTR|g \
+-e s|sysfs|attr|g \
+-e 's|bin/sh|/bin/sh|g' \
+   $pkgdir/lib/udev/rules.d/56-hpmud_support.rules
 }
 



[arch-commits] Commit in glibc/trunk (PKGBUILD glibc-2.14-revert-4462fad3.patch)

2011-06-11 Thread Allan McRae
Date: Saturday, June 11, 2011 @ 04:46:22
  Author: allan
Revision: 127202

upgpkg: glibc 2.14-2
fix crash - FS#24615

Added:
  glibc/trunk/glibc-2.14-revert-4462fad3.patch
Modified:
  glibc/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 glibc-2.14-revert-4462fad3.patch |   37 +
 2 files changed, 45 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 08:34:09 UTC (rev 127201)
+++ PKGBUILD2011-06-11 08:46:22 UTC (rev 127202)
@@ -6,7 +6,7 @@
 
 pkgname=glibc
 pkgver=2.14
-pkgrel=1
+pkgrel=2
 _glibcdate=20110605
 pkgdesc=GNU C Library
 arch=('i686' 'x86_64')
@@ -27,6 +27,7 @@
 glibc-2.12.2-ignore-origin-of-privileged-program.patch
 glibc-2.13-futex.patch
 glibc-2.14-libdl-crash.patch
+glibc-2.14-revert-4462fad3.patch
 nscd
 locale.gen.txt
 locale-gen)
@@ -38,6 +39,7 @@
  'b042647ea7d6f22ad319e12e796bd13e'
  '7d0154b7e17ea218c9fa953599d24cc4'
  'cea62cc6b903d222c5f26e05a3c0e0e6'
+ '46e56492cccb1c9172ed3a235cf43c6c'
  'b587ee3a70c9b3713099295609afde49'
  '07ac979b6ab5eeb778d55f041529d623'
  '476e9113489f93b348b21e144b6a8fcf')
@@ -79,6 +81,10 @@
   # http://sourceware.org/ml/libc-alpha/2011-06/msg6.html
   patch -Np1 -i ${srcdir}/glibc-2.14-libdl-crash.patch
 
+  # revert fix for http://sourceware.org/bugzilla/show_bug.cgi?id=12684
+  # as it causes crashes  (FS#24615)
+  patch -Np1 -i ${srcdir}/glibc-2.14-revert-4462fad3.patch
+
   install -dm755 ${pkgdir}/etc
   touch ${pkgdir}/etc/ld.so.conf
 
@@ -165,8 +171,5 @@
   
lib/libnss_{compat,dns,files,hesiod,nis,nisplus}-${pkgver}.so \
   
lib/{libdl,libm,libnsl,libresolv,librt,libutil}-${pkgver}.so \
   lib/{libmemusage,libpcprofile,libSegFault}.so \
-  usr/lib/{pt_chown,gconv/*.so}
-
-# add usr/lib/audit/sotruss-lib.so, usr/bin/sotruss
-
+  usr/lib/{pt_chown,{audit,gconv}/*.so}
 }

Added: glibc-2.14-revert-4462fad3.patch
===
--- glibc-2.14-revert-4462fad3.patch(rev 0)
+++ glibc-2.14-revert-4462fad3.patch2011-06-11 08:46:22 UTC (rev 127202)
@@ -0,0 +1,37 @@
+diff -Naur glibc-orig//resolv/res_send.c glibc/resolv/res_send.c
+--- glibc-orig//resolv/res_send.c  2011-06-10 18:59:03.041436996 +1000
 glibc/resolv/res_send.c2011-06-10 19:08:09.379309323 +1000
+@@ -549,7 +549,7 @@
+   ns, ansp, ansp2, nansp2, resplen2);
+   if (n  0)
+   return (-1);
+-  if (n == 0  (buf2 == NULL || resplen2 == 0))
++  if (n == 0)
+   goto next_ns;
+   } else {
+   /* Use datagrams. */
+@@ -559,7 +559,7 @@
+   ansp2, nansp2, resplen2);
+   if (n  0)
+   return (-1);
+-  if (n == 0  (buf2 == NULL || resplen2 == 0))
++  if (n == 0)
+   goto next_ns;
+   if (v_circuit)
+ // XXX Check whether both requests failed or
+@@ -1275,14 +1275,10 @@
+   (*thisresplenp  *thisanssizp)
+   ? *thisanssizp : *thisresplenp);
+ 
+-  if (recvresp1 || (buf2 != NULL  recvresp2)) {
+-*resplen2 = 0;
++  if (recvresp1 || (buf2 != NULL  recvresp2))
+ return resplen;
+-  }
+   if (buf2 != NULL)
+ {
+-  /* No data from the first reply.  */
+-  resplen = 0;
+   /* We are waiting for a possible second reply.  */
+   if (hp-id == anhp-id)
+ recvresp1 = 1;



[arch-commits] Commit in glibc/repos (testing-i686)

2011-06-11 Thread Allan McRae
Date: Saturday, June 11, 2011 @ 04:46:28
  Author: allan
Revision: 127203

archrelease: remove testing-i686

Deleted:
  glibc/repos/testing-i686/



[arch-commits] Commit in glibc/repos (testing-x86_64)

2011-06-11 Thread Allan McRae
Date: Saturday, June 11, 2011 @ 04:47:22
  Author: allan
Revision: 127206

archrelease: copy trunk to testing-x86_64

Added:
  glibc/repos/testing-x86_64/



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 05:02:04
  Author: remy
Revision: 127207

Upstream update

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 08:47:22 UTC (rev 127206)
+++ PKGBUILD2011-06-11 09:02:04 UTC (rev 127207)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer : Tobias Powalowski tp...@archlinux.org
+# Maintainer : Rémy Oudompheng r...@archlinux.org
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
@@ -19,7 +19,8 @@
 'python-notify: for Desktop notification support'
 'rpcbind: for network support'
 'python2-qt: for running hp-toolbox'
-'pygobject: for running hp-toolbox')
+'pygobject: for running hp-toolbox'
+'hplip-plugin: binary blobs for specific devices')
 replaces=('hpijs')
 options=('!libtool')
 install=hplip.install
@@ -28,6 +29,7 @@
 
 build() {
  cd $srcdir/$pkgname-$pkgver
+ export PYTHON=python2
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
  ./configure --prefix=/usr \
  --enable-qt4 \



[arch-commits] Commit in hplip/repos (extra-i686)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 05:02:07
  Author: remy
Revision: 127208

archrelease: remove extra-i686

Deleted:
  hplip/repos/extra-i686/



[arch-commits] Commit in hplip/repos (extra-i686)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 05:02:21
  Author: remy
Revision: 127209

archrelease: copy trunk to extra-i686

Added:
  hplip/repos/extra-i686/



[arch-commits] Commit in hplip/repos (extra-x86_64)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 05:02:24
  Author: remy
Revision: 127210

archrelease: remove extra-x86_64

Deleted:
  hplip/repos/extra-x86_64/



[arch-commits] Commit in exo/trunk (PKGBUILD)

2011-06-11 Thread andyrtr
Date: Saturday, June 11, 2011 @ 05:02:27
  Author: andyrtr
Revision: 127211

upgpkg: exo 0.6.2-1
upstream update 0.6.2

Modified:
  exo/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 09:02:24 UTC (rev 127210)
+++ PKGBUILD2011-06-11 09:02:27 UTC (rev 127211)
@@ -4,7 +4,7 @@
 # Contributor: Aurelien Foret orel...@chez.com
 
 pkgname=exo
-pkgver=0.6.1
+pkgver=0.6.2
 pkgrel=1
 pkgdesc=Extensions to Xfce by os-cillation
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('!libtool')
 install=${pkgname}.install
 
source=(http://archive.xfce.org/src/xfce/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('2ae3d9a9dedc3adebb748fa8724e02ce')
+md5sums=('e25333df350abc30999cd16fe96ab690')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in exo/repos (extra-i686)

2011-06-11 Thread andyrtr
Date: Saturday, June 11, 2011 @ 05:02:35
  Author: andyrtr
Revision: 127212

archrelease: remove extra-i686

Deleted:
  exo/repos/extra-i686/



[arch-commits] Commit in hplip/repos (extra-x86_64)

2011-06-11 Thread Rémy Oudompheng
Date: Saturday, June 11, 2011 @ 05:02:39
  Author: remy
Revision: 127213

archrelease: copy trunk to extra-x86_64

Added:
  hplip/repos/extra-x86_64/



[arch-commits] Commit in exo/repos (extra-i686)

2011-06-11 Thread andyrtr
Date: Saturday, June 11, 2011 @ 05:02:55
  Author: andyrtr
Revision: 127214

archrelease: copy trunk to extra-i686

Added:
  exo/repos/extra-i686/



[arch-commits] Commit in exo/repos (extra-x86_64)

2011-06-11 Thread andyrtr
Date: Saturday, June 11, 2011 @ 05:03:01
  Author: andyrtr
Revision: 127215

archrelease: remove extra-x86_64

Deleted:
  exo/repos/extra-x86_64/



[arch-commits] Commit in exo/repos (extra-x86_64)

2011-06-11 Thread andyrtr
Date: Saturday, June 11, 2011 @ 05:03:18
  Author: andyrtr
Revision: 127216

archrelease: copy trunk to extra-x86_64

Added:
  exo/repos/extra-x86_64/



[arch-commits] Commit in lirc/trunk (PKGBUILD)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 05:10:14
  Author: ibiru
Revision: 127217

upgpkg: lirc 0.9.0-4
rebuild against core

Modified:
  lirc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 09:03:18 UTC (rev 127216)
+++ PKGBUILD2011-06-11 09:10:14 UTC (rev 127217)
@@ -4,7 +4,7 @@
 pkgbase=lirc
 pkgname=('lirc' 'lirc-utils')
 pkgver=0.9.0
-pkgrel=3
+pkgrel=4
 epoch=1
 _kernver=2.6.39-ARCH
 arch=('i686' 'x86_64')



[arch-commits] Commit in lirc/repos (extra-i686)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 05:10:16
  Author: ibiru
Revision: 127218

archrelease: remove extra-i686

Deleted:
  lirc/repos/extra-i686/



[arch-commits] Commit in lirc/repos (extra-i686)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 05:10:29
  Author: ibiru
Revision: 127219

archrelease: copy trunk to extra-i686

Added:
  lirc/repos/extra-i686/



[arch-commits] Commit in lirc/repos (extra-x86_64)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 05:10:33
  Author: ibiru
Revision: 127220

archrelease: remove extra-x86_64

Deleted:
  lirc/repos/extra-x86_64/



[arch-commits] Commit in lirc/repos (extra-x86_64)

2011-06-11 Thread Ionut Biru
Date: Saturday, June 11, 2011 @ 05:10:44
  Author: ibiru
Revision: 127221

archrelease: copy trunk to extra-x86_64

Added:
  lirc/repos/extra-x86_64/



[arch-commits] Commit in subversion/trunk (PKGBUILD)

2011-06-11 Thread Andrea Scarpino
Date: Saturday, June 11, 2011 @ 05:32:25
  Author: andrea
Revision: 127222

bump pkgrel to fix the missing deps (FS#24250)

Modified:
  subversion/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-11 09:10:44 UTC (rev 127221)
+++ PKGBUILD2011-06-11 09:32:25 UTC (rev 127222)
@@ -4,7 +4,7 @@
 
 pkgname=subversion
 pkgver=1.6.17
-pkgrel=3
+pkgrel=4
 pkgdesc=Replacement for CVS, another versioning system (SVN)
 arch=('i686' 'x86_64')
 license=('apache' 'bsd')



[arch-commits] Commit in subversion/repos (testing-i686)

2011-06-11 Thread Andrea Scarpino
Date: Saturday, June 11, 2011 @ 05:35:42
  Author: andrea
Revision: 127223

archrelease: remove testing-i686

Deleted:
  subversion/repos/testing-i686/



[arch-commits] Commit in subversion/repos (testing-i686)

2011-06-11 Thread Andrea Scarpino
Date: Saturday, June 11, 2011 @ 05:35:56
  Author: andrea
Revision: 127224

archrelease: copy trunk to testing-i686

Added:
  subversion/repos/testing-i686/



[arch-commits] Commit in subversion/repos (testing-x86_64)

2011-06-11 Thread Andrea Scarpino
Date: Saturday, June 11, 2011 @ 05:35:58
  Author: andrea
Revision: 127225

archrelease: remove testing-x86_64

Deleted:
  subversion/repos/testing-x86_64/



[arch-commits] Commit in subversion/repos (testing-x86_64)

2011-06-11 Thread Andrea Scarpino
Date: Saturday, June 11, 2011 @ 05:36:12
  Author: andrea
Revision: 127226

archrelease: copy trunk to testing-x86_64

Added:
  subversion/repos/testing-x86_64/



[arch-commits] Commit in coreutils/repos (core-i686)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:32
  Author: bisson
Revision: 127227

db-move: coreutils removed by bisson for move to [core] (i686)

Deleted:
  coreutils/repos/core-i686/



[arch-commits] Commit in coreutils/repos (core-i686 testing-i686)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:33
  Author: bisson
Revision: 127228

db-move: moved coreutils from [testing] to [core] (i686)

Added:
  coreutils/repos/core-i686/
Deleted:
  coreutils/repos/testing-i686/



[arch-commits] Commit in coreutils/repos (core-x86_64)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:34
  Author: bisson
Revision: 127229

db-move: coreutils removed by bisson for move to [core] (x86_64)

Deleted:
  coreutils/repos/core-x86_64/



[arch-commits] Commit in coreutils/repos (core-x86_64 testing-x86_64)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:34
  Author: bisson
Revision: 127230

db-move: moved coreutils from [testing] to [core] (x86_64)

Added:
  coreutils/repos/core-x86_64/
Deleted:
  coreutils/repos/testing-x86_64/



[arch-commits] Commit in initscripts/repos (core-i686)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:35
  Author: bisson
Revision: 127231

db-move: initscripts removed by bisson for move to [core] (i686)

Deleted:
  initscripts/repos/core-i686/



[arch-commits] Commit in initscripts/repos (core-i686 testing-i686)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:37
  Author: bisson
Revision: 127232

db-move: moved initscripts from [testing] to [core] (i686)

Added:
  initscripts/repos/core-i686/
Deleted:
  initscripts/repos/testing-i686/



[arch-commits] Commit in initscripts/repos (core-x86_64)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:39
  Author: bisson
Revision: 127233

db-move: initscripts removed by bisson for move to [core] (x86_64)

Deleted:
  initscripts/repos/core-x86_64/



[arch-commits] Commit in initscripts/repos (core-x86_64 testing-x86_64)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:42
  Author: bisson
Revision: 127234

db-move: moved initscripts from [testing] to [core] (x86_64)

Added:
  initscripts/repos/core-x86_64/
Deleted:
  initscripts/repos/testing-x86_64/



[arch-commits] Commit in net-tools/repos (core-x86_64 testing-x86_64)

2011-06-11 Thread Gaetan Bisson
Date: Saturday, June 11, 2011 @ 07:30:46
  Author: bisson
Revision: 127238

db-move: moved net-tools from [testing] to [core] (x86_64)

Added:
  net-tools/repos/core-x86_64/
Deleted:
  net-tools/repos/testing-x86_64/



  1   2   >