Re: [arch-general] New pacman features: +package(), -return 1

2010-09-20 Thread Allan McRae
On 21/09/10 16:01, Vitaliy Berdinskikh wrote: Hi! Where can I read about new features? http://wiki.archlinux.org/index.php/PKGBUILD - nothing http://wiki.archlinux.org/index.php/Pacman - nothing http://www.archlinux.org/news/503/ and http://projects.archlinux.org/pacman.git/tree/NEWS?id=v3.4

Re: [arch-general] New pacman features: +package(), -return 1

2010-09-20 Thread Dan McGee
On Tue, Sep 21, 2010 at 1:01 AM, Vitaliy Berdinskikh wrote: > Hi! > > Where can I read about new features? > > http://wiki.archlinux.org/index.php/PKGBUILD - nothing > http://wiki.archlinux.org/index.php/Pacman - nothing man PKGBUILD perhaps...

[arch-general] New pacman features: +package(), -return 1

2010-09-20 Thread Vitaliy Berdinskikh
Hi! Where can I read about new features? http://wiki.archlinux.org/index.php/PKGBUILD - nothing http://wiki.archlinux.org/index.php/Pacman - nothing -- Виталий Бердинских UR6LAD 73 & 72!

Re: [arch-general] 'Local mirror' page was removed from wiki

2010-09-20 Thread Matthew Gyurgyik
On 09/19/2010 08:02 PM, f...@kokkinizita.net wrote: On Sun, Sep 19, 2010 at 03:22:27PM -0400, Matthew Gyurgyik wrote: I have updated the wiki to include some basic information on setting up a local mirror. I believe it provides enough information to help someone set up local mirror while still

[arch-general] [PATCH] rc.sysinit: Get rid of grep

2010-09-20 Thread Kurt J. Bosch
In my opinion there is no need to use grep in rc.sysinit. From 30b0a63ab9cbc93f79876e2ca7b2526d00ef6107 Mon Sep 17 00:00:00 2001 From: Kurt J. Bosch Date: Mon, 20 Sep 2010 23:31:44 +0200 Subject: [PATCH] rc.sysinit: Get rid of grep --- rc.sysinit |6 +++--- 1 files changed, 3 insertions(+)

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Kurt J. Bosch
2010-09-20 22:51, Dave Reisner: Your echo is redundant. Just quote the expansion and assign it. NAK. Try this: MODULES=( '!foo' '!bar' ) modules="${modul...@]/#\!*}" [[ $modules ]]&& echo "'$modules' is not a null string" ' ' is not a null string modules="${modul...@]/#\!*}" I think we're

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Dave Reisner
> > > >Your echo is redundant. Just quote the expansion and assign it. > > > NAK. Try this: > MODULES=( '!foo' '!bar' ) > modules="${modul...@]/#\!*}" > [[ $modules ]] && echo "'$modules' is not a null string" > ' ' is not a null string > > >modules="${modul...@]/#\!*}" > > > >I think we're a looo

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Kurt J. Bosch
2010-09-20 22:22, Kurt J. Bosch: 2010-09-20 17:56, Dave Reisner: On Mon, Sep 20, 2010 at 05:39:25PM +0200, Kurt J. Bosch wrote: 2010-09-20 04:10, Dave Reisner: On Mon, Sep 20, 2010 at 11:57:06AM +1000, Allan McRae wrote: On 20/09/10 11:54, Dave Reisner wrote: Use modprobe -a and a bash PE to

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Tavian Barnes
On 20 September 2010 16:22, Kurt J. Bosch wrote: > 2010-09-20 17:56, Dave Reisner: >> >> On Mon, Sep 20, 2010 at 05:39:25PM +0200, Kurt J. Bosch wrote: >>> >>> 2010-09-20 04:10, Dave Reisner: On Mon, Sep 20, 2010 at 11:57:06AM +1000, Allan McRae wrote: > > On 20/09/10 11:54, Dave

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Kurt J. Bosch
2010-09-20 17:56, Dave Reisner: On Mon, Sep 20, 2010 at 05:39:25PM +0200, Kurt J. Bosch wrote: 2010-09-20 04:10, Dave Reisner: On Mon, Sep 20, 2010 at 11:57:06AM +1000, Allan McRae wrote: On 20/09/10 11:54, Dave Reisner wrote: Use modprobe -a and a bash PE to filter the MODULES array. Signed

Re: [arch-general] Adobe Releases New 64-bit Flash Plugin For Linux

2010-09-20 Thread Gaurish Sharma
Hi, Unless there a usable alternative present, flash would remain dominant on all platforms. so people stop cribbing.

Re: [arch-general] How to detect when a package is removed from a group in pacman

2010-09-20 Thread F B
> > Hi, > > recently bin86 was removed from base-devel group but > the unique way I > > know to see this change is manually reading the pkg > changelog in the > > arch site. The problem is simple, how to detect this > change in > > pacman? For example, after a gnome upgrade, if a new > package is a

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Dave Reisner
On Mon, Sep 20, 2010 at 05:39:25PM +0200, Kurt J. Bosch wrote: > 2010-09-20 04:10, Dave Reisner: > >On Mon, Sep 20, 2010 at 11:57:06AM +1000, Allan McRae wrote: > >>On 20/09/10 11:54, Dave Reisner wrote: > >>>Use modprobe -a and a bash PE to filter the MODULES array. > >>> > >>>Signed-off-by: Dave

Re: [arch-general] [PATCH] rc.sysinit: only call modprobe once

2010-09-20 Thread Kurt J. Bosch
2010-09-20 04:10, Dave Reisner: On Mon, Sep 20, 2010 at 11:57:06AM +1000, Allan McRae wrote: On 20/09/10 11:54, Dave Reisner wrote: Use modprobe -a and a bash PE to filter the MODULES array. Signed-off-by: Dave Reisner --- rc.sysinit | 12 1 files changed, 4 insertions(+), 8