Gentoo Archives: gentoo-commits

From: "Micheal Marineau (marineam)" <marineam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/xen-tools: xen-tools-3.1.0-r1.ebuild ChangeLog
Date: Tue, 02 Oct 2007 00:53:19
Message-Id: E1IcVs3-0003Zf-Qk@stork.gentoo.org
1 marineam 07/10/02 00:44:19
2
3 Modified: xen-tools-3.1.0-r1.ebuild ChangeLog
4 Log:
5 Various xen-tools ebuild fixes.
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.2 app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: xen-tools-3.1.0-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- xen-tools-3.1.0-r1.ebuild 26 Sep 2007 22:43:49 -0000 1.1
22 +++ xen-tools-3.1.0-r1.ebuild 2 Oct 2007 00:44:19 -0000 1.2
23 @@ -1,8 +1,8 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild,v 1.1 2007/09/26 22:43:49 marineam Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-3.1.0-r1.ebuild,v 1.2 2007/10/02 00:44:19 marineam Exp $
28
29 -inherit flag-o-matic distutils eutils multilib
30 +inherit flag-o-matic eutils multilib
31
32 DESCRIPTION="Xend daemon and tools"
33 HOMEPAGE="http://www.xensource.com/xen/xen/"
34 @@ -56,11 +56,6 @@
35 die "USE=hvm is unsupported on this system."
36 fi
37
38 - if [[ "$(scanelf -s __guard -q `which python`)" ]] ; then
39 - ewarn "xend may not work when python is built with stack smashing protection (ssp)."
40 - ewarn "If 'xm create' fails with '<ProtocolError for /RPC2: -1 >', see bug #141866"
41 - fi
42 -
43 if [[ -z ${XEN_TARGET_ARCH} ]] ; then
44 if use x86 && use amd64; then
45 die "Confusion! Both x86 and amd64 are set in your use flags!"
46 @@ -131,7 +126,9 @@
47 use debug && myopt="${myopt} debug=y"
48
49 use custom-cflags || unset CFLAGS
50 - #gcc-specs-ssp && append-flags -fno-stack-protector -fno-stack-protector-all
51 + if test-flag-CC -fno-strict-overflow; then
52 + append-flags -fno-strict-overflow
53 + fi
54
55 if use hvm; then
56 myconf="${myconf} --disable-system --disable-user"
57 @@ -186,10 +183,11 @@
58 }
59
60 pkg_postinst() {
61 - elog "Please visit the Xen and Gentoo wiki:"
62 - elog "http://gentoo-wiki.com/HOWTO_Xen_and_Gentoo"
63 + elog "Official Xen Guide and the unoffical wiki page:"
64 + elog " http://www.gentoo.org/doc/en/xen-guide.xml"
65 + elog " http://gentoo-wiki.com/HOWTO_Xen_and_Gentoo"
66
67 - if [[ "$(scanelf -s __guard -q `which python`)" ]] ; then
68 + if [[ "$(scanelf -s __guard -q $(type -P python))" ]] ; then
69 echo
70 ewarn "xend may not work when python is built with stack smashing protection (ssp)."
71 ewarn "If 'xm create' fails with '<ProtocolError for /RPC2: -1 >', see bug #141866"
72 @@ -202,6 +200,12 @@
73 ewarn "Please rebuild python with USE=ncurses to make use of xenmon.py."
74 fi
75
76 + if built_with_use sys-apps/iproute2 minimal; then
77 + echo
78 + ewarn "Your sys-apps/iproute2 is built with USE=minimal. Networking"
79 + ewarn "will not work until you rebuild iproute2 without USE=minimal."
80 + fi
81 +
82 if ! use hvm; then
83 echo
84 elog "HVM (VT-x and AMD-V) support has been disabled. If you need hvm"
85
86
87
88 1.30 app-emulation/xen-tools/ChangeLog
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/ChangeLog?rev=1.30&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/ChangeLog?rev=1.30&content-type=text/plain
92 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen-tools/ChangeLog?r1=1.29&r2=1.30
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v
97 retrieving revision 1.29
98 retrieving revision 1.30
99 diff -u -r1.29 -r1.30
100 --- ChangeLog 26 Sep 2007 22:43:49 -0000 1.29
101 +++ ChangeLog 2 Oct 2007 00:44:19 -0000 1.30
102 @@ -1,6 +1,12 @@
103 # ChangeLog for app-emulation/xen-tools
104 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.29 2007/09/26 22:43:49 marineam Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.30 2007/10/02 00:44:19 marineam Exp $
107 +
108 + 02 Oct 2007; Michael Marineau <marineam@g.o>
109 + xen-tools-3.1.0-r1.ebuild:
110 + Fix build on gcc 4.2.0, fixes bug #191172.
111 + Warn user if iproute2 was built with USE=minimal, fixes bug #194224.
112 + Minor cleanups, etc.
113
114 *xen-tools-3.1.0-r1 (26 Sep 2007)
115 *xen-tools-3.0.4_p1-r1 (26 Sep 2007)
116
117
118
119 --
120 gentoo-commits@g.o mailing list