Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (c8509002ac04facf4629d0f9b26620a21d187ee0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (c8509002ac04facf4629d0f9b26620a21d187ee0)
  • Date: Sat, 29 Aug 2009 09:29:21 -0500

GIT changes to master sorcery by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

ChangeLog | 1 +
var/lib/sorcery/modules/dl_handlers/dl_aria2 | 2 +-
var/lib/sorcery/modules/dl_handlers/dl_wget | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit c8509002ac04facf4629d0f9b26620a21d187ee0
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

dl_wget, dl_aria2: rename the download to the expected name #15097

diff --git a/ChangeLog b/ChangeLog
index f8322b6..8bb5e56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* libtime: simplified the awk in compute_mean and compute_median
* libtriggers: added real_on_pre_cast #15352
* libdepends: fixed real_show_up_depends regression #15357
+ * dl_wget, dl_aria2: rename the download to the expected name #15097

2009-07-19 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* config: made BUILD_DIRECTORY ignore INSTALL_ROOT and user
changeable,
diff --git a/var/lib/sorcery/modules/dl_handlers/dl_aria2
b/var/lib/sorcery/modules/dl_handlers/dl_aria2
index 201f4d2..66d0c7b 100755
--- a/var/lib/sorcery/modules/dl_handlers/dl_aria2
+++ b/var/lib/sorcery/modules/dl_handlers/dl_aria2
@@ -60,7 +60,7 @@ function dl_aria2_call_aria2() {
debug 'dl_aria2' "$funcname -- $@"

rm -f $FILE
- aria2c $ARIA2_OPTIONS $URL_LIST 2>&1 &&
+ aria2c $ARIA2_OPTIONS -o "$FILE" $URL_LIST 2>&1 &&
if ! test -f "$FILE" ; then
# stupid http site trying to be nice and re-direct us, this is a failure
# even though aria2 doesnt notice it...
diff --git a/var/lib/sorcery/modules/dl_handlers/dl_wget
b/var/lib/sorcery/modules/dl_handlers/dl_wget
index c61a6a5..4d4e528 100755
--- a/var/lib/sorcery/modules/dl_handlers/dl_wget
+++ b/var/lib/sorcery/modules/dl_handlers/dl_wget
@@ -63,7 +63,7 @@ function dl_wget_call_wget() {
debug 'dl_wget' "$funcname -- $@"

rm -f $FILE
- wget $WGET_OPTIONS "$URL" 2>&1 &&
+ wget $WGET_OPTIONS -O "$FILE" "$URL" 2>&1 &&
if ! test -f "$FILE" ; then
# stupid http site trying to be nice and re-direct us, this is a failure
# even though wget doesnt notice it...



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (c8509002ac04facf4629d0f9b26620a21d187ee0), Jaka Kranjc, 08/29/2009

Archive powered by MHonArc 2.6.24.

Top of Page