[arch-commits] Commit in qemu-kvm/repos (8 files)
Tobias Powalowski
tpowa at archlinux.org
Mon Oct 24 13:19:43 UTC 2011
Date: Monday, October 24, 2011 @ 09:19:43
Author: tpowa
Revision: 141124
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
qemu-kvm/repos/testing-i686/
qemu-kvm/repos/testing-i686/65-kvm.rules
(from rev 141123, qemu-kvm/trunk/65-kvm.rules)
qemu-kvm/repos/testing-i686/PKGBUILD
(from rev 141123, qemu-kvm/trunk/PKGBUILD)
qemu-kvm/repos/testing-i686/qemu-kvm.install
(from rev 141123, qemu-kvm/trunk/qemu-kvm.install)
qemu-kvm/repos/testing-x86_64/
qemu-kvm/repos/testing-x86_64/65-kvm.rules
(from rev 141123, qemu-kvm/trunk/65-kvm.rules)
qemu-kvm/repos/testing-x86_64/PKGBUILD
(from rev 141123, qemu-kvm/trunk/PKGBUILD)
qemu-kvm/repos/testing-x86_64/qemu-kvm.install
(from rev 141123, qemu-kvm/trunk/qemu-kvm.install)
---------------------------------+
testing-i686/65-kvm.rules | 1
testing-i686/PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++
testing-i686/qemu-kvm.install | 16 ++++++++++
testing-x86_64/65-kvm.rules | 1
testing-x86_64/PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++
testing-x86_64/qemu-kvm.install | 16 ++++++++++
6 files changed, 150 insertions(+)
Copied: qemu-kvm/repos/testing-i686/65-kvm.rules (from rev 141123, qemu-kvm/trunk/65-kvm.rules)
===================================================================
--- testing-i686/65-kvm.rules (rev 0)
+++ testing-i686/65-kvm.rules 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"
Copied: qemu-kvm/repos/testing-i686/PKGBUILD (from rev 141123, qemu-kvm/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+pkgname=qemu-kvm
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation."
+arch=(i686 x86_64)
+license=('GPL2' 'LGPL2.1')
+url="http://www.linux-kvm.org"
+depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
+makedepends=('texi2html' 'perl' 'python2')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu-kvm.install
+conflicts=('qemu')
+provides=('qemu')
+replaces=('kvm')
+source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
+ 65-kvm.rules)
+options=(!strip)
+
+build()
+{
+ cd ${srcdir}/${pkgname}-${pkgver}
+ # fix esound building
+ ./configure --prefix=/usr \
+ --python=/usr/bin/python2 \
+ --sysconfdir=/etc \
+ --audio-drv-list=alsa,sdl,oss \
+ --audio-card-list=ac97,sb16,es1370,hda \
+ --enable-docs
+ make
+}
+package()
+{
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+ # symbolic link for backwards compatibility
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu-kvm
+ # symbolic link for to qemu binary for emulator apps
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu
+ # symbolic link for to qemu binary for emulator apps
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/kvm
+ # fix man page
+ mv ${pkgdir}/usr/share/man/man1/qemu.1 \
+ ${pkgdir}/usr/share/man/man1/qemu-kvm.1
+ # install udev rules
+ install -D -m644 ${srcdir}/65-kvm.rules \
+ ${pkgdir}/lib/udev/rules.d/65-kvm.rules
+ # strip scripts directory
+ find ${pkgdir}/usr/bin -type f -perm -u+w 2>/dev/null | while read binary ; do
+ case "$(file -bi "$binary")" in
+ *application/x-executable*) # Binaries
+ /usr/bin/strip $STRIP_BINARIES "$binary";;
+ esac
+ done
+}
+md5sums=('8800a7d6b3aa4a168ea7f78dc66c0320'
+ 'b316a066d2f1bb57d8f5b7ea1d0d1caf')
Copied: qemu-kvm/repos/testing-i686/qemu-kvm.install (from rev 141123, qemu-kvm/trunk/qemu-kvm.install)
===================================================================
--- testing-i686/qemu-kvm.install (rev 0)
+++ testing-i686/qemu-kvm.install 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1,16 @@
+post_install() {
+ groupadd kvm -f -g 78
+ echo ">>> PLEASE READ FOR KVM USAGE!"
+ echo ">>> Load the correct KVM module, you will need a KVM capable CPU!"
+ echo ">>> Add yourself to the group 'kvm'."
+ echo ">>> Use 'qemu-kvm -enable-kvm' to use KVM."
+ echo ""
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ groupdel kvm
+}
Copied: qemu-kvm/repos/testing-x86_64/65-kvm.rules (from rev 141123, qemu-kvm/trunk/65-kvm.rules)
===================================================================
--- testing-x86_64/65-kvm.rules (rev 0)
+++ testing-x86_64/65-kvm.rules 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"
Copied: qemu-kvm/repos/testing-x86_64/PKGBUILD (from rev 141123, qemu-kvm/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+pkgname=qemu-kvm
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation."
+arch=(i686 x86_64)
+license=('GPL2' 'LGPL2.1')
+url="http://www.linux-kvm.org"
+depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
+makedepends=('texi2html' 'perl' 'python2')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu-kvm.install
+conflicts=('qemu')
+provides=('qemu')
+replaces=('kvm')
+source=(http://downloads.sourceforge.net/kvm/${pkgname}-${pkgver}.tar.gz
+ 65-kvm.rules)
+options=(!strip)
+
+build()
+{
+ cd ${srcdir}/${pkgname}-${pkgver}
+ # fix esound building
+ ./configure --prefix=/usr \
+ --python=/usr/bin/python2 \
+ --sysconfdir=/etc \
+ --audio-drv-list=alsa,sdl,oss \
+ --audio-card-list=ac97,sb16,es1370,hda \
+ --enable-docs
+ make
+}
+package()
+{
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+ # symbolic link for backwards compatibility
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu-kvm
+ # symbolic link for to qemu binary for emulator apps
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu
+ # symbolic link for to qemu binary for emulator apps
+ ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/kvm
+ # fix man page
+ mv ${pkgdir}/usr/share/man/man1/qemu.1 \
+ ${pkgdir}/usr/share/man/man1/qemu-kvm.1
+ # install udev rules
+ install -D -m644 ${srcdir}/65-kvm.rules \
+ ${pkgdir}/lib/udev/rules.d/65-kvm.rules
+ # strip scripts directory
+ find ${pkgdir}/usr/bin -type f -perm -u+w 2>/dev/null | while read binary ; do
+ case "$(file -bi "$binary")" in
+ *application/x-executable*) # Binaries
+ /usr/bin/strip $STRIP_BINARIES "$binary";;
+ esac
+ done
+}
+md5sums=('8800a7d6b3aa4a168ea7f78dc66c0320'
+ 'b316a066d2f1bb57d8f5b7ea1d0d1caf')
Copied: qemu-kvm/repos/testing-x86_64/qemu-kvm.install (from rev 141123, qemu-kvm/trunk/qemu-kvm.install)
===================================================================
--- testing-x86_64/qemu-kvm.install (rev 0)
+++ testing-x86_64/qemu-kvm.install 2011-10-24 13:19:43 UTC (rev 141124)
@@ -0,0 +1,16 @@
+post_install() {
+ groupadd kvm -f -g 78
+ echo ">>> PLEASE READ FOR KVM USAGE!"
+ echo ">>> Load the correct KVM module, you will need a KVM capable CPU!"
+ echo ">>> Add yourself to the group 'kvm'."
+ echo ">>> Use 'qemu-kvm -enable-kvm' to use KVM."
+ echo ""
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ groupdel kvm
+}
More information about the arch-commits
mailing list