Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/xen: xen-4.2.0-r2.ebuild xen-4.2.1-r2.ebuild ChangeLog
Date: Wed, 27 Feb 2013 08:03:25
Message-Id: 20130227080321.5E79E2171D@flycatcher.gentoo.org
1 idella4 13/02/27 08:03:21
2
3 Modified: xen-4.2.0-r2.ebuild xen-4.2.1-r2.ebuild ChangeLog
4 Log:
5 install fixed if IUSE efi for both sub-versions, thx to lejonet and Zorry wrt Bug #45897
6
7 (Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.3 app-emulation/xen/xen-4.2.0-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild?r1=1.2&r2=1.3
15
16 Index: xen-4.2.0-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- xen-4.2.0-r2.ebuild 25 Feb 2013 17:43:21 -0000 1.2
23 +++ xen-4.2.0-r2.ebuild 27 Feb 2013 08:03:21 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild,v 1.2 2013/02/25 17:43:21 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.0-r2.ebuild,v 1.3 2013/02/27 08:03:21 idella4 Exp $
29
30 EAPI=5
31
32 @@ -26,7 +26,7 @@
33 SLOT="0"
34 IUSE="custom-cflags debug efi flask pae xsm"
35
36 -RDEPEND="efi? ( >=sys-devel/binutils-2.22[multitarget] )"
37 +DEPEND="efi? ( >=sys-devel/binutils-2.22[multitarget] )"
38 PDEPEND="~app-emulation/xen-tools-${PV}[${PYTHON_USEDEP}]"
39
40 RESTRICT="test"
41 @@ -122,8 +122,11 @@
42 local myopt
43 use debug && myopt="${myopt} debug=y"
44 use pae && myopt="${myopt} pae=y"
45 +
46 #The 'make install' doesn't 'mkdir -p' the subdirs
47 - use efi && mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die
48 + if use efi; then
49 + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die
50 + fi
51
52 emake LDFLAGS="$(raw-ldflags)" DESTDIR="${D}" -C xen ${myopt} install
53 }
54
55
56
57 1.2 app-emulation/xen/xen-4.2.1-r2.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild?rev=1.2&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild?rev=1.2&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild?r1=1.1&r2=1.2
62
63 Index: xen-4.2.1-r2.ebuild
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild,v
66 retrieving revision 1.1
67 retrieving revision 1.2
68 diff -u -r1.1 -r1.2
69 --- xen-4.2.1-r2.ebuild 24 Feb 2013 08:23:59 -0000 1.1
70 +++ xen-4.2.1-r2.ebuild 27 Feb 2013 08:03:21 -0000 1.2
71 @@ -1,6 +1,6 @@
72 # Copyright 1999-2013 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild,v 1.1 2013/02/24 08:23:59 idella4 Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.2.1-r2.ebuild,v 1.2 2013/02/27 08:03:21 idella4 Exp $
76
77 EAPI=5
78
79 @@ -113,8 +113,11 @@
80 local myopt
81 use debug && myopt="${myopt} debug=y"
82 use pae && myopt="${myopt} pae=y"
83 +
84 #The 'make install' doesn't 'mkdir -p' the subdirs
85 - use efi && mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die
86 + if use efi; then
87 + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die
88 + fi
89
90 emake LDFLAGS="$(raw-ldflags)" DESTDIR="${D}" -C xen ${myopt} install
91 }
92
93
94
95 1.112 app-emulation/xen/ChangeLog
96
97 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/ChangeLog?rev=1.112&view=markup
98 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/ChangeLog?rev=1.112&content-type=text/plain
99 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/xen/ChangeLog?r1=1.111&r2=1.112
100
101 Index: ChangeLog
102 ===================================================================
103 RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v
104 retrieving revision 1.111
105 retrieving revision 1.112
106 diff -u -r1.111 -r1.112
107 --- ChangeLog 25 Feb 2013 17:43:21 -0000 1.111
108 +++ ChangeLog 27 Feb 2013 08:03:21 -0000 1.112
109 @@ -1,6 +1,11 @@
110 # ChangeLog for app-emulation/xen
111 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
112 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.111 2013/02/25 17:43:21 idella4 Exp $
113 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.112 2013/02/27 08:03:21 idella4 Exp $
114 +
115 + 27 Feb 2013; Ian Delaney <idella4@g.o> xen-4.2.0-r2.ebuild,
116 + xen-4.2.1-r2.ebuild:
117 + install fixed if IUSE efi for both sub-versions, thx to lejonet and Zorry wrt
118 + Bug #45897
119
120 25 Feb 2013; Ian Delaney <idella4@g.o> xen-4.2.0-r2.ebuild:
121 Add the intended dep to support efi in 4.2.0-r2