Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-9999.ebuild metadata.xml ChangeLog
Date: Mon, 06 Jul 2015 13:28:03
Message-Id: 20150706132754.78C00753@oystercatcher.gentoo.org
1 vapier 15/07/06 13:27:54
2
3 Modified: qemu-9999.ebuild metadata.xml ChangeLog
4 Log:
5 Add USE=vte to control the dep explicitly and fix SLOT handling for diff gtk versions #545158 by nzqr.
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.101 app-emulation/qemu/qemu-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?rev=1.101&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?rev=1.101&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?r1=1.100&r2=1.101
15
16 Index: qemu-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v
19 retrieving revision 1.100
20 retrieving revision 1.101
21 diff -u -r1.100 -r1.101
22 --- qemu-9999.ebuild 16 May 2015 04:40:40 -0000 1.100
23 +++ qemu-9999.ebuild 6 Jul 2015 13:27:54 -0000 1.101
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.100 2015/05/16 04:40:40 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.101 2015/07/06 13:27:54 vapier Exp $
29
30 EAPI=5
31
32 @@ -34,7 +34,7 @@
33 +png pulseaudio python \
34 rbd sasl +seccomp sdl sdl2 selinux smartcard snappy spice ssh static static-softmmu
35 static-user systemtap tci test +threads tls usb usbredir +uuid vde +vhost-net \
36 -virtfs +vnc xattr xen xfs"
37 +virtfs +vnc vte xattr xen xfs"
38
39 COMMON_TARGETS="aarch64 alpha arm cris i386 m68k microblaze microblazeel mips
40 mips64 mips64el mipsel or32 ppc ppc64 s390x sh4 sh4eb sparc sparc64 unicore32
41 @@ -58,7 +58,8 @@
42 sdl2? ( sdl )
43 static? ( static-softmmu static-user )
44 static-softmmu? ( !alsa !pulseaudio !bluetooth !opengl !gtk !gtk2 )
45 - virtfs? ( xattr )"
46 + virtfs? ( xattr )
47 + vte? ( gtk )"
48
49 # Yep, you need both libcap and libcap-ng since virtfs only uses libcap.
50 #
51 @@ -119,9 +120,14 @@
52 alsa? ( >=media-libs/alsa-lib-1.0.13 )
53 bluetooth? ( net-wireless/bluez )
54 gtk? (
55 - gtk2? ( x11-libs/gtk+:2 )
56 - !gtk2? ( x11-libs/gtk+:3 )
57 - x11-libs/vte:2.90
58 + gtk2? (
59 + x11-libs/gtk+:2
60 + vte? ( x11-libs/vte:0 )
61 + )
62 + !gtk2? (
63 + x11-libs/gtk+:3
64 + vte? ( x11-libs/vte:2.90 )
65 + )
66 )
67 iscsi? ( net-libs/libiscsi )
68 opengl? (
69 @@ -363,6 +369,7 @@
70 $(conf_softmmu vhost-net)
71 $(conf_softmmu virtfs)
72 $(conf_softmmu vnc)
73 + $(conf_softmmu vte)
74 $(conf_softmmu xen)
75 $(conf_softmmu xen xen-pci-passthrough)
76 $(conf_softmmu xfs xfsctl)
77
78
79
80 1.38 app-emulation/qemu/metadata.xml
81
82 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/metadata.xml?rev=1.38&view=markup
83 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/metadata.xml?rev=1.38&content-type=text/plain
84 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/metadata.xml?r1=1.37&r2=1.38
85
86 Index: metadata.xml
87 ===================================================================
88 RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/metadata.xml,v
89 retrieving revision 1.37
90 retrieving revision 1.38
91 diff -u -r1.37 -r1.38
92 --- metadata.xml 13 May 2015 23:30:55 -0000 1.37
93 +++ metadata.xml 6 Jul 2015 13:27:54 -0000 1.38
94 @@ -47,6 +47,7 @@
95 <flag name='vde'>Enable VDE-based networking</flag>
96 <flag name='vhost-net'>Enable accelerated networking using vhost-net, see http://www.linux-kvm.org/page/VhostNet</flag>
97 <flag name='virtfs'>Enable VirtFS via virtio-9p-pci / fsdev. See http://wiki.qemu.org/Documentation/9psetup</flag>
98 + <flag name='vte'>Enable terminal support (<pkg>x11-libs/vte</pkg>) in the GTK+ interface</flag>
99 <flag name='xattr'>Add support for getting and setting POSIX extended attributes, through
100 <pkg>sys-apps/attr</pkg>. Requisite for the virtfs backend.
101 </flag>
102
103
104
105 1.334 app-emulation/qemu/ChangeLog
106
107 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.334&view=markup
108 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.334&content-type=text/plain
109 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.333&r2=1.334
110
111 Index: ChangeLog
112 ===================================================================
113 RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
114 retrieving revision 1.333
115 retrieving revision 1.334
116 diff -u -r1.333 -r1.334
117 --- ChangeLog 6 Jul 2015 12:17:32 -0000 1.333
118 +++ ChangeLog 6 Jul 2015 13:27:54 -0000 1.334
119 @@ -1,6 +1,11 @@
120 # ChangeLog for app-emulation/qemu
121 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
122 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.333 2015/07/06 12:17:32 ago Exp $
123 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.334 2015/07/06 13:27:54 vapier Exp $
124 +
125 + 06 Jul 2015; Mike Frysinger <vapier@g.o> metadata.xml,
126 + qemu-9999.ebuild:
127 + Add USE=vte to control the dep explicitly and fix SLOT handling for diff gtk
128 + versions #545158 by nzqr.
129
130 06 Jul 2015; Agostino Sarubbo <ago@g.o> qemu-2.3.0-r2.ebuild:
131 Stable for x86, wrt bug #551752