Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: python.eclass
Date: Mon, 04 Jul 2011 10:48:15
Message-Id: 20110704104801.E9C872004B@flycatcher.gentoo.org
1 djc 11/07/04 10:48:01
2
3 Modified: python.eclass
4 Log:
5 Delete python_version(), python_mod_exists(), python_tkinter_exists() and
6 python_mod_compile(). (Patch by Arfrever. Backported from python overlay.)
7
8 Revision Changes Path
9 1.111 eclass/python.eclass
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.eclass?rev=1.111&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.eclass?rev=1.111&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.eclass?r1=1.110&r2=1.111
14
15 Index: python.eclass
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/eclass/python.eclass,v
18 retrieving revision 1.110
19 retrieving revision 1.111
20 diff -u -r1.110 -r1.111
21 --- python.eclass 10 Mar 2011 17:49:49 -0000 1.110
22 +++ python.eclass 4 Jul 2011 10:48:01 -0000 1.111
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2011 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.110 2011/03/10 17:49:49 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.111 2011/07/04 10:48:01 djc Exp $
28
29 # @ECLASS: python.eclass
30 # @MAINTAINER:
31 @@ -2833,27 +2833,3 @@
32 # ================================================================================================
33 # ===================================== DEPRECATED FUNCTIONS =====================================
34 # ================================================================================================
35 -
36 -# Scheduled for deletion on 2011-01-01.
37 -python_version() {
38 - eerror "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables."
39 - die "${FUNCNAME}() is banned"
40 -}
41 -
42 -# Scheduled for deletion on 2011-01-01.
43 -python_mod_exists() {
44 - eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()."
45 - die "${FUNCNAME}() is banned"
46 -}
47 -
48 -# Scheduled for deletion on 2011-01-01.
49 -python_tkinter_exists() {
50 - eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()."
51 - die "${FUNCNAME}() is banned"
52 -}
53 -
54 -# Scheduled for deletion on 2011-04-01.
55 -python_mod_compile() {
56 - eerror "Use python_mod_optimize() instead of ${FUNCNAME}()."
57 - die "${FUNCNAME}() is banned"
58 -}