[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.0.3-182-g62e8812

2012-04-07 Thread Dan McGee
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, master has been updated via 62e8812fb9002bf2d737375003652bc6becc9f54 (commit) vi

[pacman-dev] [GIT] The official pacman repository annotated tag, v4.0.3, created. v4.0.3

2012-04-07 Thread Dan McGee
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The annotated tag, v4.0.3 has been created at 8f6a4f6c2c94d9bea9aacf7801b72d5e7c5f99b7 (tag) ta

[pacman-dev] [GIT] The official pacman repository branch, maint, updated. v4.0.2-38-gb752561

2012-04-07 Thread Dan McGee
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, maint has been updated via b752561a52a88f8e9cc3bcc9c2079eb685245110 (commit) via

[pacman-dev] [GIT] The official pacman repository branch, maint, updated. v4.0.2-34-g114d121

2012-04-07 Thread Dan McGee
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, maint has been updated via 114d121001d8c3e901d5330b864d58870c6e917b (commit) via

Re: [pacman-dev] [PATCH v4 5/5] pkgdelta/repo-add: quoting fixes

2012-04-07 Thread Dave Reisner
On Sat, Apr 07, 2012 at 02:28:49PM +0200, Florian Pritz wrote: > This removes some unnecessary quotes and adds quotes in a few places to > hopefully work correctly if the tempdir has spaces. > > Signed-off-by: Florian Pritz Ack from me excepting that I haven't checked too thoroughly to make sure

[pacman-dev] [PATCH v4 5/5] pkgdelta/repo-add: quoting fixes

2012-04-07 Thread Florian Pritz
This removes some unnecessary quotes and adds quotes in a few places to hopefully work correctly if the tempdir has spaces. Signed-off-by: Florian Pritz --- scripts/pkgdelta.sh.in |2 +- scripts/repo-add.sh.in | 96 2 files changed, 49 inser

[pacman-dev] [PATCH v4 4/5] pkgdelta: exit 1 upon error

2012-04-07 Thread Florian Pritz
This has been 0 since 9fa18d9a4b4ce5217842c71d8a45676e3fb9d3f4, but it doesn't makes sense because we are raising an error. Signed-off-by: Florian Pritz --- scripts/pkgdelta.sh.in |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.

[pacman-dev] [PATCH v4 3/5] pkgdelta: implement requirments for delta generation

2012-04-07 Thread Florian Pritz
Big deltas or deltas for very small packages are not needed so we should check that and not generate any. Signed-off-by: Florian Pritz --- doc/pkgdelta.8.txt | 12 ++- scripts/pkgdelta.sh.in | 52 +--- 2 files changed, 60 insertions(+),

[pacman-dev] [PATCH v4 2/5] pkgdelta: rework option/argument parser

2012-04-07 Thread Florian Pritz
Signed-off-by: Florian Pritz --- scripts/pkgdelta.sh.in | 45 +++-- 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index 5a2e6a3..0986986 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pk

[pacman-dev] [PATCH v4 1/5] repo-remove: remove deltas file is it becomes empty

2012-04-07 Thread Florian Pritz
Signed-off-by: Florian Pritz --- scripts/repo-add.sh.in |5 + 1 file changed, 5 insertions(+) diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index 043a0b8..5159ea2 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -176,6 +176,11 @@ db_remove_delta() {

[pacman-dev] pkgdelta/repo-add rework

2012-04-07 Thread Florian Pritz
Patch 1 to 4 should be good now, patch 5 is new. Although it should be fine and doesn't cause syntax errors, I'd like a sign off from Dave here.