Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] GIT changes to master grimoire by Vasil Yonkov (841eaf9752db304c80e2a637cbda9898ba3b5fdd)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <eric AT sandall.us>
  • To: sm-commit AT lists.ibiblio.org
  • Cc: "Yonkov, Vasil" <spirtbrat AT sourcemage.org>
  • Subject: Re: [SM-Commit] GIT changes to master grimoire by Vasil Yonkov (841eaf9752db304c80e2a637cbda9898ba3b5fdd)
  • Date: Wed, 10 Feb 2010 16:28:38 -0800

Quoting Ladislav Hagara <ladislav.hagara AT unob.cz>:


This change causes qemu to not be downloadable:

$ gaze version qemu
Grimoire Section Spell Grimoire Version Installed Version
-------- ------- ----- ---------------- -----------------
test utils qemu - 0.10.6

# cast --queue
...
Downloading source file qemu-.tar.gz
--2010-02-09 17:58:32-- http://savannah.inetbridge.net/qemu/qemu-.tar.gz
Resolving savannah.inetbridge.net (savannah.inetbridge.net)... 69.73.144.20
Connecting to savannah.inetbridge.net
(savannah.inetbridge.net)|69.73.144.20|:80... connected.
HTTP request sent, awaiting response... 500 Internal Server Error
2010-02-09 17:58:33 ERROR 500: Internal Server Error.

--2010-02-09 17:58:33--
http://download.savannah.gnu.org/releases/qemu/qemu-.tar.gz
Resolving download.savannah.gnu.org (download.savannah.gnu.org)...
140.186.70.73
Connecting to download.savannah.gnu.org
(download.savannah.gnu.org)|140.186.70.73|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://mirror.its.uidaho.edu/pub/savannah/qemu/qemu-.tar.gz
[following]
--2010-02-09 17:58:33--
http://mirror.its.uidaho.edu/pub/savannah/qemu/qemu-.tar.gz
Resolving mirror.its.uidaho.edu (mirror.its.uidaho.edu)... 129.101.198.59
Connecting to mirror.its.uidaho.edu
(mirror.its.uidaho.edu)|129.101.198.59|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2010-02-09 17:58:33 ERROR 404: Not Found.



Fixed in test.

When? This is with test as of yesterday. If I do a `cast -r qemu` it then works, but just doing a `cast --queue` does not.

commit fe68b59a7695f7c56a32be4ab2139b5321dcff47
Author: Vasil Yonkov <spirtbrat AT sourcemage.org>
Date: Wed Feb 3 12:34:21 2010 +0200

qemu: added a default version

diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index e0f8602..4544bae 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -1,5 +1,9 @@
SPELL=qemu

+if [[ -z $QEMU_VER ]]; then
+ QEMU_VER="0.10"
+fi
+
case $QEMU_VER in
0.10)
VERSION=0.10.6
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 0717fb7..f92c8ec 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,6 +1,7 @@
2010-02-03 Vasil Yonkov <spirtbrat AT sourcemage.org>
* BUILD, DEPENDS, DETAILS, PREPARE: made QEMU_VER referring to
a branch, not to a concrete version
+ * DETAILS: added a default version

The proper fix (untested) is more:
diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index 4544bae..fcf1a12 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -1,19 +1,15 @@
SPELL=qemu
-
-if [[ -z $QEMU_VER ]]; then
- QEMU_VER="0.10"
-fi
-
case $QEMU_VER in
- 0.10)
- VERSION=0.10.6
- ;;
0.11)
VERSION=0.11.1
;;
0.12)
VERSION=0.12.2
;;
+ 0.10)
+ *)
+ VERSION=0.10.6
+ ;;
esac

Doesn't seem to fix it.

-sandalle

--
Eric Sandall | Source Mage GNU/Linux Developer
eric AT sandall.us PGP: 0xA8EFDD61 | http://www.sourcemage.org/
http://eric.sandall.us/ | http://counter.li.org/ #196285




Archive powered by MHonArc 2.6.24.

Top of Page