Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/virt-manager: ChangeLog virt-manager-0.8.2-r1.ebuild
Date: Thu, 04 Feb 2010 17:48:42
Message-Id: E1Nd5ok-0003TK-Cd@stork.gentoo.org
1 cardoe 10/02/04 17:48:38
2
3 Modified: ChangeLog
4 Added: virt-manager-0.8.2-r1.ebuild
5 Log:
6 fix issue when nc doesn't handle the EOF on socket close correctly. According to upstream Debian has an issue with it but they're patching up their nc to respect EOF better. So, the only solution is to kill the ssh tunnel instead of just assuming it'll close eventually
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 app-emulation/virt-manager/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 23 Dec 2009 17:19:47 -0000 1.24
23 +++ ChangeLog 4 Feb 2010 17:48:37 -0000 1.25
24 @@ -1,6 +1,16 @@
25 # ChangeLog for app-emulation/virt-manager
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.24 2009/12/23 17:19:47 flameeyes Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.25 2010/02/04 17:48:37 cardoe Exp $
30 +
31 +*virt-manager-0.8.2-r1 (04 Feb 2010)
32 +
33 + 04 Feb 2010; Doug Goldstein <cardoe@g.o>
34 + +virt-manager-0.8.2-r1.ebuild,
35 + +files/virt-manager-0.8.2-ssh-tunnel-shutdown.patch:
36 + fix issue when nc doesn't handle the EOF on socket close correctly.
37 + According to upstream Debian has an issue with it but they're patching up
38 + their nc to respect EOF better. So, the only solution is to kill the ssh
39 + tunnel instead of just assuming it'll close eventually
40
41 23 Dec 2009; Diego E. Pettenò <flameeyes@g.o> metadata.xml:
42 Drop unused local flag.
43
44
45
46 1.1 app-emulation/virt-manager/virt-manager-0.8.2-r1.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/virt-manager-0.8.2-r1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/virt-manager-0.8.2-r1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: virt-manager-0.8.2-r1.ebuild
52 ===================================================================
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-0.8.2-r1.ebuild,v 1.1 2010/02/04 17:48:37 cardoe Exp $
56
57 EAPI=2
58
59 # Stop gnome2.eclass from doing stuff on USE=debug
60 GCONF_DEBUG="no"
61
62 inherit eutils gnome2
63
64 DESCRIPTION="A graphical tool for administering virtual machines (KVM/Xen)"
65 HOMEPAGE="http://virt-manager.org/"
66 SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="gnome-keyring"
71 RDEPEND=">=dev-lang/python-2.4.0
72 >=dev-python/pygtk-1.99.12
73 >=app-emulation/libvirt-0.4.5[python]
74 >=dev-libs/libxml2-2.6.23[python]
75 >=app-emulation/virtinst-0.500.1
76 >=gnome-base/librsvg-2
77 >=x11-libs/vte-0.12.2[python]
78 >=net-libs/gtk-vnc-0.3.4[python]
79 >=dev-python/dbus-python-0.61
80 >=dev-python/gconf-python-1.99.11
81 dev-python/libgnome-python
82 gnome-keyring? ( dev-python/gnome-keyring-python )"
83 DEPEND="${RDEPEND}
84 app-text/rarian"
85
86 src_prepare() {
87 epatch "${FILESDIR}"/${P}-ssh-tunnel-shutdown.patch
88 }