Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-utils-r1.eclass
Date: Sun, 27 Oct 2013 07:27:58
Message-Id: 20131027072752.6ADE020047@flycatcher.gentoo.org
1 mgorny 13/10/27 07:27:52
2
3 Modified: ChangeLog python-utils-r1.eclass
4 Log:
5 Remove deprecated functions.
6
7 Revision Changes Path
8 1.1037 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1037&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1037&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1036&r2=1.1037
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1036
18 retrieving revision 1.1037
19 diff -u -r1.1036 -r1.1037
20 --- ChangeLog 27 Oct 2013 07:21:05 -0000 1.1036
21 +++ ChangeLog 27 Oct 2013 07:27:52 -0000 1.1037
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1036 2013/10/27 07:21:05 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1037 2013/10/27 07:27:52 mgorny Exp $
27 +
28 + 27 Oct 2013; Michał Górny <mgorny@g.o> python-utils-r1.eclass:
29 + Remove deprecated functions.
30
31 27 Oct 2013; Michał Górny <mgorny@g.o> flag-o-matic.eclass:
32 Consider -frecord-gcc-switches a safe flag and do not strip it with
33
34
35
36 1.44 eclass/python-utils-r1.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.44&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.44&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.43&r2=1.44
41
42 Index: python-utils-r1.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
45 retrieving revision 1.43
46 retrieving revision 1.44
47 diff -u -r1.43 -r1.44
48 --- python-utils-r1.eclass 9 Oct 2013 19:08:18 -0000 1.43
49 +++ python-utils-r1.eclass 27 Oct 2013 07:27:52 -0000 1.44
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.43 2013/10/09 19:08:18 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.44 2013/10/27 07:27:52 mgorny Exp $
55
56 # @ECLASS: python-utils-r1
57 # @MAINTAINER:
58 @@ -386,44 +386,6 @@
59 done
60 }
61
62 -# @FUNCTION: python_get_PYTHON
63 -# @USAGE: [<impl>]
64 -# @DESCRIPTION:
65 -# Obtain and print the path to the Python interpreter for the given
66 -# implementation. If no implementation is provided, ${EPYTHON} will
67 -# be used.
68 -#
69 -# If you just need to have PYTHON set (and exported), then it is better
70 -# to use python_export() directly instead.
71 -python_get_PYTHON() {
72 - debug-print-function ${FUNCNAME} "${@}"
73 -
74 - eqawarn '$(python_get_PYTHON) is discouraged since all standard environments' >&2
75 - eqawarn 'have PYTHON exported anyway. Please use ${PYTHON} instead.' >&2
76 - eqawarn 'python_get_PYTHON will be removed on 2013-10-16.' >&2
77 -
78 - python_export "${@}" PYTHON
79 - echo "${PYTHON}"
80 -}
81 -
82 -# @FUNCTION: python_get_EPYTHON
83 -# @USAGE: <impl>
84 -# @DESCRIPTION:
85 -# Obtain and print the EPYTHON value for the given implementation.
86 -#
87 -# If you just need to have EPYTHON set (and exported), then it is better
88 -# to use python_export() directly instead.
89 -python_get_EPYTHON() {
90 - debug-print-function ${FUNCNAME} "${@}"
91 -
92 - eqawarn '$(python_get_EPYTHON) is discouraged since all standard environments' >&2
93 - eqawarn 'have EPYTHON exported anyway. Please use ${EPYTHON} instead.' >&2
94 - eqawarn 'python_get_EPYTHON will be removed on 2013-10-16.' >&2
95 -
96 - python_export "${@}" EPYTHON
97 - echo "${EPYTHON}"
98 -}
99 -
100 # @FUNCTION: python_get_sitedir
101 # @USAGE: [<impl>]
102 # @DESCRIPTION: