Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/portage: portage-2.2.8.ebuild portage-9999.ebuild ChangeLog
Date: Mon, 20 Jan 2014 17:41:48
Message-Id: 20140120174131.591F12004C@flycatcher.gentoo.org
1 floppym 14/01/20 17:41:31
2
3 Modified: portage-2.2.8.ebuild portage-9999.ebuild ChangeLog
4 Log:
5 Enforce python_targets on pyxattr dep, bug 498478.
6
7 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.3 sys-apps/portage/portage-2.2.8.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild?r1=1.2&r2=1.3
15
16 Index: portage-2.2.8.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- portage-2.2.8.ebuild 18 Jan 2014 11:37:44 -0000 1.2
23 +++ portage-2.2.8.ebuild 20 Jan 2014 17:41:31 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild,v 1.2 2014/01/18 11:37:44 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.8.ebuild,v 1.3 2014/01/20 17:41:31 floppym Exp $
29
30 # Require EAPI 2 since we now require at least python-2.6 (for python 3
31 # syntax support) which also requires EAPI 2.
32 @@ -69,8 +69,11 @@
33 elibc_glibc? ( >=sys-apps/sandbox-2.2 )
34 elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
35 >=app-misc/pax-utils-0.1.17
36 - xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) )
37 selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] <sys-libs/libselinux-2.0.94 ) )
38 + xattr? ( kernel_linux? (
39 + $(for python_impl in python{2_6,2_7,3_2} pypy2_0; do
40 + echo "python_targets_${python_impl}? ( dev-python/pyxattr[python_targets_${python_impl}] )"
41 + done) ) )
42 !<app-shells/bash-3.2_p17
43 !<app-admin/logrotate-3.8.0"
44 PDEPEND="
45
46
47
48 1.92 sys-apps/portage/portage-9999.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?rev=1.92&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?rev=1.92&content-type=text/plain
52 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?r1=1.91&r2=1.92
53
54 Index: portage-9999.ebuild
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v
57 retrieving revision 1.91
58 retrieving revision 1.92
59 diff -u -r1.91 -r1.92
60 --- portage-9999.ebuild 13 Jan 2014 23:25:48 -0000 1.91
61 +++ portage-9999.ebuild 20 Jan 2014 17:41:31 -0000 1.92
62 @@ -1,6 +1,6 @@
63 # Copyright 1999-2014 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v 1.91 2014/01/13 23:25:48 floppym Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v 1.92 2014/01/20 17:41:31 floppym Exp $
67
68 EAPI=3
69 PYTHON_COMPAT=(
70 @@ -66,8 +66,11 @@
71 elibc_glibc? ( >=sys-apps/sandbox-2.2 )
72 elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
73 >=app-misc/pax-utils-0.1.17
74 - xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) )
75 selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] <sys-libs/libselinux-2.0.94 ) )
76 + xattr? ( kernel_linux? (
77 + $(for python_impl in python{2_6,2_7,3_2} pypy2_0; do
78 + echo "python_targets_${python_impl}? ( dev-python/pyxattr[python_targets_${python_impl}] )"
79 + done) ) )
80 !<app-shells/bash-3.2_p17
81 !<app-admin/logrotate-3.8.0"
82 PDEPEND="
83
84
85
86 1.1380 sys-apps/portage/ChangeLog
87
88 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1380&view=markup
89 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1380&content-type=text/plain
90 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?r1=1.1379&r2=1.1380
91
92 Index: ChangeLog
93 ===================================================================
94 RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v
95 retrieving revision 1.1379
96 retrieving revision 1.1380
97 diff -u -r1.1379 -r1.1380
98 --- ChangeLog 18 Jan 2014 11:37:44 -0000 1.1379
99 +++ ChangeLog 20 Jan 2014 17:41:31 -0000 1.1380
100 @@ -1,6 +1,10 @@
101 # ChangeLog for sys-apps/portage
102 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
103 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1379 2014/01/18 11:37:44 vapier Exp $
104 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1380 2014/01/20 17:41:31 floppym Exp $
105 +
106 + 20 Jan 2014; Mike Gilbert <floppym@g.o> portage-2.2.8.ebuild,
107 + portage-9999.ebuild:
108 + Enforce python_targets on pyxattr dep, bug 498478.
109
110 18 Jan 2014; Mike Frysinger <vapier@g.o> portage-2.2.7.ebuild,
111 portage-2.2.8.ebuild: