R. Dale Thomas wrote:
>       [snip]
>
> Well, I made the following changes to speed it up by 40%:
>
> 39c39
> < pacman -Sl > $pkglist
> ---
>  > pacman -Sl | grep "^$1" > $pkglist
> 42c42
> <   match=$(grep -m1 " $pkg " $pkglist | grep "^$1")
> ---
>  >   match=$(grep -m1 " $pkg " $pkglist)
>
>   

The problem with those changes is if a package is in [testing] and 
[core] you only want to match it to the first repo in your pacman.conf 
(i.e. [testing] in this case).  Your change would match it in both repos.

Allan



_______________________________________________
pacman-dev mailing list
pacman-dev@archlinux.org
http://archlinux.org/mailman/listinfo/pacman-dev

Reply via email to