Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b22373a4636bd45cce65c7baa3b27cebce244e43)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b22373a4636bd45cce65c7baa3b27cebce244e43)
  • Date: Thu, 17 May 2012 05:37:39 -0500

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

utils/qemu/DETAILS | 22 +++++++++++-----------
utils/qemu/HISTORY | 4 ++++
utils/qemu/PREPARE | 6 +++---
3 files changed, 18 insertions(+), 14 deletions(-)

New commits:
commit b22373a4636bd45cce65c7baa3b27cebce244e43
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

qemu: Add branch 1.1, and rename 1.00 to 1.0

commit 4ca52cc46b2a489885a339cdf9454832ceb2f293
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

qemu: Cut $QEMU_VER at the last dot

diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index c334171..fef629b 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -1,10 +1,5 @@
SPELL=qemu
-
-if [[ -z $QEMU_VER ]]; then
- QEMU_VER="1.00"
-fi
-
-case ${QEMU_VER:0:4} in
+case $QEMU_VER in
0.12)
VERSION=0.12.5
;;
@@ -17,18 +12,23 @@ case ${QEMU_VER:0:4} in
0.15)
VERSION=0.15.1
;;
- 1.00)
+ 1.0)
VERSION=1.0.1
;;
+ *)
+ VERSION=1.1-rc2
+ ;;
esac
-
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
-if [[ $QEMU_VER == "0.12" ]] || [[ $QEMU_VER == "0.14" ]]; then
+case $QEMU_VER in
+ 0.12|0.14)
SOURCE_URL[0]=http://download.savannah.gnu.org/releases/$SPELL/$SOURCE
-else
+ ;;
+ *)
SOURCE_URL[0]=http://wiki.qemu.org/download/$SOURCE
-fi
+ ;;
+esac
SOURCE2=$SOURCE.sig
SOURCE2_URL[0]=$SOURCE_URL.sig
SOURCE_GPG="qemu.gpg:${SOURCE2}:UPSTREAM_KEY"
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 66eb921..538e856 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,7 @@
+2012-05-17 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS, PREPARE: Added branch 1.1, and renamed 1.00 to 1.0
+ * PREPARE: Cut $QEMU_VER at the last dot
+
2012-02-18 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.0.1

diff --git a/utils/qemu/PREPARE b/utils/qemu/PREPARE
index 49b63ee..a322469 100755
--- a/utils/qemu/PREPARE
+++ b/utils/qemu/PREPARE
@@ -1,6 +1,6 @@
-if [[ ${#QEMU_VER} -eq 6 ]]; then
- QEMU_VER=${QEMU_VER:0:4}
+if [[ ${#QEMU_VER} -gt 4 ]]; then
+ QEMU_VER=${QEMU_VER%.*}
fi

config_query_list QEMU_VER "Which branch to build?" \
- 1.00 0.15 0.14 0.13 0.12
+ 1.1 1.0 0.15 0.14 0.13 0.12



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b22373a4636bd45cce65c7baa3b27cebce244e43), Ismael Luceno, 05/17/2012

Archive powered by MHonArc 2.6.24.

Top of Page