Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (f0f4f69082bb4008f91ff34b1cfd88398bc423d0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (f0f4f69082bb4008f91ff34b1cfd88398bc423d0)
  • Date: Sat, 10 Jul 2010 05:07:28 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

dev/null |binary
libs/libvirt/DEPENDS | 5 +++++
libs/libvirt/DETAILS | 2 +-
libs/libvirt/HISTORY | 4 ++++
libs/libvirt/libvirt-0.8.1.tar.gz.sig | 0
libs/libvirt/libvirt-0.8.2.tar.gz.sig |binary
utils/qemu/DEPENDS | 16 ++++++++++++++++
utils/qemu/DETAILS | 2 +-
utils/qemu/HISTORY | 8 ++++++++
utils/qemu/PREPARE | 2 +-
10 files changed, 36 insertions(+), 3 deletions(-)

New commits:
commit f0f4f69082bb4008f91ff34b1cfd88398bc423d0
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

qemu: Depend on esound if ESD is selected in QEMU_AUDIO

commit 7890a910590a8b88a8412133fe38f5838d2a8774
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

qemu: Depend on pulseaudio if PulseAudio is selected in QEMU_AUDIO

commit 812d3b844beebbf5fbc220e7ebdcebbbe5f843b9
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

qemu: Depend on sdl if SDL is selected in QEMU_AUDIO

commit 2d01c2a751664dc905b547b98b8ee1de290fc86a
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

qemu: Depend on alsa-lib if ALSA is selected in QEMU_AUDIO

commit 0f1612417ac8a7fbd07b9dc0c6d40867a62fde15
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libvirt: Updated to 0.8.2
Optionally depends on libnl

commit ae8693ee6a3ba77da022a5da04282a481d8065a0
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

qemu: Use and list 0.12 first (default, latest stable)

diff --git a/libs/libvirt/DEPENDS b/libs/libvirt/DEPENDS
index d0bee9e..da507a7 100755
--- a/libs/libvirt/DEPENDS
+++ b/libs/libvirt/DEPENDS
@@ -73,6 +73,11 @@ optional_depends 'libpcap' \
'--without-libpcap' \
'for a packet filtering mechanism' &&

+optional_depends 'libnl' \
+ '--with-macvtap' \
+ '--without-macvtap' \
+ 'for MAC virtual TAP via netlink' &&
+
suggest_depends nc '' '' 'for remote SSH tunneling' &&
suggest_depends 'bridge-utils' '' '' 'for creating TUN/TAP bridges' &&
suggest_depends 'iproute2' '' '' 'for routing between TUN/TAP interfaces' &&
diff --git a/libs/libvirt/DETAILS b/libs/libvirt/DETAILS
index c7648b6..789c051 100755
--- a/libs/libvirt/DETAILS
+++ b/libs/libvirt/DETAILS
@@ -1,5 +1,5 @@
SPELL=libvirt
- VERSION=0.8.1
+ VERSION=0.8.2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/libs/libvirt/HISTORY b/libs/libvirt/HISTORY
index f846e23..0a59318 100644
--- a/libs/libvirt/HISTORY
+++ b/libs/libvirt/HISTORY
@@ -1,3 +1,7 @@
+2010-07-10 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 0.8.2
+ * DEPENDS: Optionally depends on libnl
+
2010-06-08 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Depends on libpciaccess (Bug #15739)

diff --git a/libs/libvirt/libvirt-0.8.1.tar.gz.sig
b/libs/libvirt/libvirt-0.8.1.tar.gz.sig
deleted file mode 100644
index 401920d..0000000
Binary files a/libs/libvirt/libvirt-0.8.1.tar.gz.sig and /dev/null differ
diff --git a/libs/libvirt/libvirt-0.8.2.tar.gz.sig
b/libs/libvirt/libvirt-0.8.2.tar.gz.sig
new file mode 100644
index 0000000..6ce25d6
Binary files /dev/null and b/libs/libvirt/libvirt-0.8.2.tar.gz.sig differ
diff --git a/utils/qemu/DEPENDS b/utils/qemu/DEPENDS
index d1d3754..9008247 100755
--- a/utils/qemu/DEPENDS
+++ b/utils/qemu/DEPENDS
@@ -1,3 +1,19 @@
+if list_find "alsa" $QEMU_AUDIO; then
+ depends alsa-lib
+fi &&
+
+if list_find "sdl" $QEMU_AUDIO; then
+ depends sdl
+fi &&
+
+if list_find "pa" $QEMU_AUDIO; then
+ depends pulseaudio
+fi &&
+
+if list_find "esd" $QEMU_AUDIO; then
+ depends esound
+fi &&
+
case $QEMU_VER in
0.10)
optional_depends sdl \
diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index fde8101..9b74624 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -1,7 +1,7 @@
SPELL=qemu

if [[ -z $QEMU_VER ]]; then
- QEMU_VER="0.10"
+ QEMU_VER="0.12"
fi

case ${QEMU_VER:0:4} in
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 85f98e7..6d0c322 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,11 @@
+2010-07-10 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Use 0.12 (latest stable) if nothing selected
+ * PREPARE: List 0.12 first (default, latest stable)
+ * DEPENDS: Depend on alsa-lib if ALSA is selected in QEMU_AUDIO
+ Depend on sdl if SDL is selected in QEMU_AUDIO
+ Depend on pulseaudio if PulseAudio is selected in QEMU_AUDIO
+ Depend on esound if ESD is selected in QEMU_AUDIO
+
2010-06-13 Donald Johnson <minozake AT codemages.net>
* DETAILS: Changed to mirror of qemu's sources, since all downloads
seem to
have moved.
diff --git a/utils/qemu/PREPARE b/utils/qemu/PREPARE
index 46ed694..af231fe 100755
--- a/utils/qemu/PREPARE
+++ b/utils/qemu/PREPARE
@@ -3,4 +3,4 @@ if [[ ${#QEMU_VER} -eq 6 ]]; then
fi

config_query_list QEMU_VER "Which branch to build?" \
- 0.10 0.11 0.12
+ 0.12 0.11 0.10



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (f0f4f69082bb4008f91ff34b1cfd88398bc423d0), Eric Sandall, 07/10/2010

Archive powered by MHonArc 2.6.24.

Top of Page