[aur-dev] [PATCH] rm_rf: pull fullpath into a local variable

2008-10-24 Thread Dan McGee
From: Dan McGee <[EMAIL PROTECTED]> Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- web/lib/aur.inc |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/web/lib/aur.inc b/web/lib/aur.inc index 81ffde2..b243cc4 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -378

[aur-dev] [PATCH] Add new chmod_group function

2008-10-24 Thread Dan McGee
From: Dan McGee <[EMAIL PROTECTED]> This will chmod a given directory and all its contents to the correct group-writeable permissions. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- web/lib/aur.inc | 27 +++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --gi

[aur-dev] [PATCH] pkgsubmit: correctly set group permssions on extracted files

2008-10-24 Thread Dan McGee
From: Dan McGee <[EMAIL PROTECTED]> Use the new chmod_group() function to do so. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- NOTE: *completely* untested. I'll let you experienced AUR guys tell me this patch is completely crap. -Dan web/html/pkgsubmit.php | 34 +-

[aur-dev] [PATCH] Revert "Use system rm in rm_rf function."

2008-10-24 Thread Dan McGee
This reverts commit 5c3f01909301f641f57b2ffe8b59609de6be2256. Falling back to a system function is really dumb when all we need to do is fix the ordering of things in this function. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- Guys, I sent the last patches based off of the master branch- loo

[aur-dev] [PATCH] rm_rf: pull fullpath into a local variable and fix symlink deletion

2008-10-24 Thread Dan McGee
Fix FS#11187 *correctly*. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- web/lib/aur.inc | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/lib/aur.inc b/web/lib/aur.inc index ade5b82..d0c2bc2 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -377,11 +377,

[aur-dev] [PATCH] Add new chmod_group function

2008-10-24 Thread Dan McGee
This will chmod a given directory and all its contents to the correct group-writeable permissions. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- web/lib/aur.inc | 27 +++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/web/lib/aur.inc b/web/lib/aur.inc

[aur-dev] [PATCH] pkgsubmit: correctly set group permssions on extracted files

2008-10-24 Thread Dan McGee
Use the new chmod_group() function to do so. Signed-off-by: Dan McGee <[EMAIL PROTECTED]> --- web/html/pkgsubmit.php |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 78d6e50..3612403 100644 --- a/web/html/pkgsub

Re: [aur-dev] [PATCH] Revert "Use system rm in rm_rf function."

2008-10-24 Thread Loui
On Fri, Oct 24, 2008 at 04:29:01PM -0500, Dan McGee wrote: > This reverts commit 5c3f01909301f641f57b2ffe8b59609de6be2256. Falling back > to a system function is really dumb when all we need to do is fix the > ordering of things in this function. Falling back on a system function can be dumb, but

Re: [aur-dev] [PATCH] Revert "Use system rm in rm_rf function."

2008-10-24 Thread Dan McGee
On Fri, Oct 24, 2008 at 6:46 PM, Loui <[EMAIL PROTECTED]> wrote: > On Fri, Oct 24, 2008 at 04:29:01PM -0500, Dan McGee wrote: >> This reverts commit 5c3f01909301f641f57b2ffe8b59609de6be2256. Falling back >> to a system function is really dumb when all we need to do is fix the >> ordering of things