public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Doug Goldstein (cardoe)" <cardoe@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/qemu-kvm: ChangeLog qemu-kvm-1.0-r3.ebuild
Date: Thu,  8 Mar 2012 18:20:32 +0000 (UTC)	[thread overview]
Message-ID: <20120308182032.E68712004B@flycatcher.gentoo.org> (raw)

cardoe      12/03/08 18:20:32

  Modified:             ChangeLog qemu-kvm-1.0-r3.ebuild
  Log:
  Remove the backslash gluing which was causing odd spacing. Make KVM optional in the kernel for mgorny.
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.108                app-emulation/qemu-kvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	8 Mar 2012 16:40:50 -0000	1.107
+++ ChangeLog	8 Mar 2012 18:20:32 -0000	1.108
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/qemu-kvm
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/ChangeLog,v 1.107 2012/03/08 16:40:50 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/ChangeLog,v 1.108 2012/03/08 18:20:32 cardoe Exp $
+
+  08 Mar 2012; Doug Goldstein <cardoe@gentoo.org> qemu-kvm-1.0-r3.ebuild:
+  Remove the backslash gluing which was causing odd spacing. Make KVM optional
+  in the kernel for mgorny.
 
   08 Mar 2012; Doug Goldstein <cardoe@gentoo.org> qemu-kvm-1.0-r3.ebuild:
   Warn about KVM_INTEL and KVM_AMD and don't require both to be present bug



1.9                  app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild?r1=1.8&r2=1.9

Index: qemu-kvm-1.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qemu-kvm-1.0-r3.ebuild	8 Mar 2012 16:40:50 -0000	1.8
+++ qemu-kvm-1.0-r3.ebuild	8 Mar 2012 18:20:32 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild,v 1.8 2012/03/08 16:40:50 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0-r3.ebuild,v 1.9 2012/03/08 18:20:32 cardoe Exp $
 
 #BACKPORTS=1
 
@@ -144,20 +144,20 @@
 		if ! linux_config_exists; then
 			eerror "Unable to check your kernel for KVM support"
 		else
-			CONFIG_CHECK="KVM ~KVM_AMD ~KVM_INTEL ~TUN ~BRIDGE"
+			CONFIG_CHECK="~KVM ~KVM_AMD ~KVM_INTEL ~TUN ~BRIDGE"
 			ERROR_KVM="You must enable KVM in your kernel to continue"
-			ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in \
-				your kernel configuration."
-			ERROR_KVM_INTEL="If you have an Intel CPU, you must enable \
-				KVM_INTEL in your kernel configuration."
-			ERROR_TUN="You will need the Universal TUN/TAP driver compiled \
-				into your kernel or loaded as a module to use the virtual \
-				network device if using -net tap."
-			ERROR_BRIDGE="You will also need support for 802.1d \
-				Ethernet Bridging for some network configurations."
+			ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in "
+			ERROR_KVM_AMD+="your kernel configuration."
+			ERROR_KVM_INTEL="If you have an Intel CPU, you must enable "
+			ERROR_KVM_INTEL+="KVM_INTEL in your kernel configuration."
+			ERROR_TUN="You will need the Universal TUN/TAP driver compiled "
+			ERROR_TUN+="into your kernel or loaded as a module to use the "
+			ERROR_TUN+="virtual network device if using -net tap."
+			ERROR_BRIDGE="You will also need support for 802.1d "
+			ERROR_BRIDGE+="Ethernet Bridging for some network configurations."
 			use vhost-net && CHECK_CHECK+="~VHOST_NET"
-			ERROR_VHOST_NET="You must enable VHOST_NET to have vhost-net \
-				support"
+			ERROR_VHOST_NET="You must enable VHOST_NET to have vhost-net "
+			ERROR_VHOST_NET+="support"
 
 			# Now do the actual checks setup above
 			check_extra_config






             reply	other threads:[~2012-03-08 18:20 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-08 18:20 Doug Goldstein (cardoe) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-07-21 23:02 [gentoo-commits] gentoo-x86 commit in app-emulation/qemu-kvm: ChangeLog qemu-kvm-1.0-r3.ebuild Doug Goldstein (cardoe)
2012-03-15 12:28 Agostino Sarubbo (ago)
2012-03-08 23:05 Doug Goldstein (cardoe)
2012-03-08 18:26 Doug Goldstein (cardoe)
2012-03-08 16:40 Doug Goldstein (cardoe)
2012-03-08  1:16 Doug Goldstein (cardoe)
2012-03-06 23:33 Doug Goldstein (cardoe)
2012-02-25 20:57 Doug Goldstein (cardoe)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120308182032.E68712004B@flycatcher.gentoo.org \
    --to=cardoe@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox