Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Ciprian Dorin, Craciun
On Sat, Nov 14, 2009 at 8:44 AM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote:    Hy everybody!    While building some custom packages for a stripped down Linux server, I've hit the following problems:    * the cause of the problems is from the pact that my packages

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Ciprian Dorin, Craciun
On Sat, Nov 14, 2009 at 10:02 AM, Ciprian Dorin, Craciun ciprian.crac...@gmail.com wrote: On Sat, Nov 14, 2009 at 8:44 AM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote:    Hy everybody!    While building some custom packages for a stripped down Linux server, I've hit

Re: [pacman-dev] [PATCH] Print error on duplicated database entries

2009-11-14 Thread Nagy Gabor
Dan McGee wrote: On Fri, Nov 13, 2009 at 11:33 PM, Allan McRae al...@archlinux.org wrote: Nagy Gabor wrote: Some users reported duplicated database entries in /var/lib/pacman/local/, for example, both foo-1.0-1 and foo-2.0-1 subdirectories existed. (Bogus 3rd-party scripts, backup?) In

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Allan McRae
Ciprian Dorin, Craciun wrote: One quick note. I've tried what you've suggested (`package/*/...`) and it doesn't work (as expected `*` expands before anything is in the current dir). It does not expand it until it actually uses the value in the array. i.e. when it goes to do the man

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Allan McRae
Ciprian Dorin, Craciun wrote: On Sat, Nov 14, 2009 at 12:40 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote: One quick note. I've tried what you've suggested (`package/*/...`) and it doesn't work (as expected `*` expands before anything is in the current dir). It

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Ciprian Dorin, Craciun
On Sat, Nov 14, 2009 at 12:40 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote:    One quick note. I've tried what you've suggested (`package/*/...`) and it doesn't work (as expected `*` expands before anything is in the current dir). It does not expand it until it

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Ciprian Dorin, Craciun
On Sat, Nov 14, 2009 at 2:15 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote: On Sat, Nov 14, 2009 at 12:40 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote:   One quick note. I've tried what you've suggested (`package/*/...`) and it doesn't

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Allan McRae
Ciprian Dorin, Craciun wrote: Sorry, indeed it works, but, the find invocation is still odd: ++ printf ' - Compressing man and info pages...\n' - Compressing man and info pages... ++ local manpage ext file link hardlinks hl ++ read manpage ++ find usr/man usr/info usr/share/man

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Ciprian Dorin, Craciun
On Sat, Nov 14, 2009 at 4:39 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote:    Sorry, indeed it works, but, the find invocation is still odd: ++ printf '  - Compressing man and info pages...\n'  - Compressing man and info pages... ++ local manpage ext file

[pacman-dev] [translation]

2009-11-14 Thread Manuel Tortosa
Hello, today i start the CATALAN translation of Pacman. Manuel Tortosa manutort...@gmail.com The Catalan KDE translation Team

[pacman-dev] [PATCH] pacman.conf : enable resuming for curl

2009-11-14 Thread Xavier Chantry
Signed-off-by: Xavier Chantry shinin...@gmail.com --- etc/pacman.conf.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/etc/pacman.conf.in b/etc/pacman.conf.in index fc841b7..3207119 100644 --- a/etc/pacman.conf.in +++ b/etc/pacman.conf.in @@ -17,7 +17,7 @@ HoldPkg

Re: [pacman-dev] [PATCH] pacman.conf : enable resuming for curl

2009-11-14 Thread Xavier
On Sat, Nov 14, 2009 at 5:13 PM, Xavier Chantry shinin...@gmail.com wrote: Signed-off-by: Xavier Chantry shinin...@gmail.com ---  etc/pacman.conf.in |    2 +-  1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/etc/pacman.conf.in b/etc/pacman.conf.in index fc841b7..3207119 100644

Re: [pacman-dev] [PATCH] download: major refactor to address lingering issues

2009-11-14 Thread Dario Freddi
First of all, the patch and the idea behind it looks great, even if it's not BC. The code looks fine to me, I had some doubts about the force parameter being useful, but if that is supposed to tell the frontend hey, wipe away the partially downloaded file if there's one, then it's completely

Re: [pacman-dev] [PATCH] download: major refactor to address lingering issues

2009-11-14 Thread Xavier
On Sat, Nov 14, 2009 at 7:29 PM, Dario Freddi drf54...@gmail.com wrote: First of all, the patch and the idea behind it looks great, even if it's not BC. The code looks fine to me, I had some doubts about the force parameter being useful, but if that is supposed to tell the frontend hey, wipe

[pacman-dev] [PATCH 2/2] More consistent printing of off_t and time_t

2009-11-14 Thread Xavier Chantry
%ld for type_t %PRId64 for off_t Signed-off-by: Xavier Chantry shinin...@gmail.com --- lib/libalpm/add.c |7 +++ lib/libalpm/be_files.c | 12 ++-- lib/libalpm/delta.c|6 +++--- lib/libalpm/dload.c|4 ++-- lib/libalpm/sync.c |6 +++--- 5 files

Re: [pacman-dev] [translation]

2009-11-14 Thread Laszlo Papp
On Sat, Nov 14, 2009 at 4:07 PM, Manuel Tortosa manutort...@gmail.com wrote: Hello, today i start the CATALAN translation of Pacman. Hello! Nice to hear that :) I hope you will finish it, and it will be the valuable part of Archlinux contributions. Best Regards, Laszlo Papp

Re: [pacman-dev] makepkg enhancements: globstar and variable expansions in PURGE_TARGETS, MAN_DIRS, etc.

2009-11-14 Thread Allan McRae
Ciprian Dorin, Craciun wrote: On Sat, Nov 14, 2009 at 4:39 PM, Allan McRae al...@archlinux.org wrote: Ciprian Dorin, Craciun wrote: Sorry, indeed it works, but, the find invocation is still odd: ++ printf ' - Compressing man and info pages...\n' - Compressing man and info pages...

[pacman-dev] [PATCH 1/2] Changing [ to [[ and (( - Part One - Amended

2009-11-14 Thread Isaac Good
From f29298f8d9b947ce64d33d40d91f485396bb54eb Mon Sep 17 00:00:00 2001 From: Isaac Good pac...@isaac.otherinbox.com Date: Thu, 12 Nov 2009 15:07:34 -0500 Subject: [PATCH 1/2] Changing [ to [[ and (( - Part One - Amended First half of makepkg This replaces any prior patches of mine Includes stuff

[pacman-dev] [PATCH 2/2] Changing [ to [[ and (( - Part Two - Amended

2009-11-14 Thread Isaac Good
From e3e5bb93cb2b33315a8d6eff8956aa5b6c74d28d Mon Sep 17 00:00:00 2001 From: Isaac Good pac...@isaac.otherinbox.com Date: Thu, 12 Nov 2009 15:09:05 -0500 Subject: [PATCH 2/2] Changing [ to [[ and (( - Part Two - Amended Second half of makepkg This replaces any prior patches of mine Includes stuff

Re: [pacman-dev] [PATCH] pacman.conf : enable resuming for curl

2009-11-14 Thread Allan McRae
Xavier wrote: On Sat, Nov 14, 2009 at 5:13 PM, Xavier Chantry shinin...@gmail.com wrote: Signed-off-by: Xavier Chantry shinin...@gmail.com --- etc/pacman.conf.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/etc/pacman.conf.in b/etc/pacman.conf.in index

Re: [pacman-dev] [PATCH] makepkg: fix abortion after sourcing /etc/profile

2009-11-14 Thread Allan McRae
Xavier wrote: On Tue, Nov 10, 2009 at 8:47 PM, Cedric Staniewski ced...@gmx.ca wrote: The source command triggers / might trigger the ERR trap which makes makepkg abort right after a successful installation of missing dependencies. Thanks to Xavier Chantry shinin...@gmail.com for finding this

Re: [pacman-dev] [PATCH 2/2] Changing [ to [[ and (( - Part Two - Amended

2009-11-14 Thread Allan McRae
Isaac Good wrote: From e3e5bb93cb2b33315a8d6eff8956aa5b6c74d28d Mon Sep 17 00:00:00 2001 From: Isaac Good pac...@isaac.otherinbox.com Date: Thu, 12 Nov 2009 15:09:05 -0500 Subject: [PATCH 2/2] Changing [ to [[ and (( - Part Two - Amended Second half of makepkg This replaces any prior patches