Re: [pacman-dev] [RFC] Package parser in python

2009-12-11 Thread Sebastian Nowicki
On 01/10/2009, at 10:47 PM, Sebastian Nowicki wrote: On Oct 1, 2009, at 4:32 PM, Allan McRae wrote: Sebastian Nowicki wrote: On Oct 1, 2009, at 2:52 PM, Allan McRae wrote: Hi, This is one part of the makepkg test suite I am working on. It is fairly a simple class that takes a pacman

[pacman-dev] [PATCH] Skip devel_check() when repackaging

2009-12-11 Thread Nezmer
Currently, "makepkg -R" creates a package with a wrong updated $pkgver. Signed-off-by: Nezmer --- scripts/makepkg.sh.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index ceaa8a6..0e18e3f 100644 --- a/scripts/makepkg.sh.i

Re: [pacman-dev] pacman cold caches performance, too much stat()ing

2009-12-11 Thread Nagy Gabor
> Hello list, > > I have been investigating the slow performance of pacman regarding > the cold caches scenario and I'm trying to write some proof of > concept code that improves things a lot for some cases. However I > need your help regarding some facts I might have misunderstood, and > any poin

[pacman-dev] pacman cold caches performance, too much stat()ing

2009-12-11 Thread Dimitrios Apostolou
Hello list, I have been investigating the slow performance of pacman regarding the cold caches scenario and I'm trying to write some proof of concept code that improves things a lot for some cases. However I need your help regarding some facts I might have misunderstood, and any pointers to th

Re: [pacman-dev] makepkg in a constrained environment

2009-12-11 Thread Sebastian Nowicki
On 03/12/2009, at 8:41 AM, Dan McGee wrote: On Wed, Dec 2, 2009 at 2:47 PM, Ciprian Dorin, Craciun wrote: Looking closer at what the mentioned patch introduced: - local sum="$(${integ}sum "$file" | cut -d ' ' -f 1)" + local sum="$(openssl dgst -${integ} "$file" | awk '{print $NF}')" ~