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: Fri, 02 Jan 2015 00:14:30
Message-Id: 20150102001425.10BF8EAB3@oystercatcher.gentoo.org
1 mgorny 15/01/02 00:14:25
2
3 Modified: ChangeLog python-utils-r1.eclass
4 Log:
5 Add progress overlay-specific commands and variables to the invalid command/variable lists.
6
7 Revision Changes Path
8 1.1493 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1493&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1493&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1492&r2=1.1493
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1492
18 retrieving revision 1.1493
19 diff -u -r1.1492 -r1.1493
20 --- ChangeLog 1 Jan 2015 21:23:03 -0000 1.1492
21 +++ ChangeLog 2 Jan 2015 00:14:25 -0000 1.1493
22 @@ -1,6 +1,10 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1492 2015/01/01 21:23:03 slyfox Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1493 2015/01/02 00:14:25 mgorny Exp $
27 +
28 + 02 Jan 2015; Michał Górny <mgorny@g.o> python-utils-r1.eclass:
29 + Add progress overlay-specific commands and variables to the invalid
30 + command/variable lists.
31
32 01 Jan 2015; Sergei Trofimovich <slyfox@g.o> ghc-package.eclass,
33 haskell-cabal.eclass:
34
35
36
37 1.74 eclass/python-utils-r1.eclass
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.74&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.74&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.73&r2=1.74
42
43 Index: python-utils-r1.eclass
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
46 retrieving revision 1.73
47 retrieving revision 1.74
48 diff -u -r1.73 -r1.74
49 --- python-utils-r1.eclass 28 Dec 2014 18:35:07 -0000 1.73
50 +++ python-utils-r1.eclass 2 Jan 2015 00:14:25 -0000 1.74
51 @@ -1,6 +1,6 @@
52 -# Copyright 1999-2014 Gentoo Foundation
53 +# Copyright 1999-2015 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.73 2014/12/28 18:35:07 mgorny Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.74 2015/01/02 00:14:25 mgorny Exp $
57
58 # @ECLASS: python-utils-r1
59 # @MAINTAINER:
60 @@ -1206,6 +1206,16 @@
61 if [[ ${DISTUTILS_DISABLE_TEST_DEPENDENCY} ]]; then
62 eqawarn "${v} is invalid for distutils-r1, please take a look @ https://wiki.gentoo.org/wiki/Project:Python/Python.eclass_conversion#DISTUTILS_SRC_TEST"
63 fi
64 +
65 + # python.eclass::progress
66 + for v in PYTHON_BDEPEND PYTHON_MULTIPLE_ABIS PYTHON_ABI_TYPE \
67 + PYTHON_RESTRICTED_ABIS PYTHON_TESTS_FAILURES_TOLERANT_ABIS \
68 + PYTHON_CFFI_MODULES_GENERATION_COMMANDS
69 + do
70 + if [[ ${!v} ]]; then
71 + eqawarn "${v} is invalid for python-r1 suite"
72 + fi
73 + done
74 }
75
76 python_pkg_setup() {
77 @@ -1300,5 +1310,31 @@
78 eqawarn "${FUNCNAME}() is invalid for python-r1 suite, please take a look @ https://wiki.gentoo.org/wiki/Project:Python/Python.eclass_conversion#Python_byte-code_compilation"
79 }
80
81 +# python.eclass::progress
82 +
83 +python_abi_depend() {
84 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
85 +}
86 +
87 +python_install_executables() {
88 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
89 +}
90 +
91 +python_get_extension_module_suffix() {
92 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
93 +}
94 +
95 +python_byte-compile_modules() {
96 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
97 +}
98 +
99 +python_clean_byte-compiled_modules() {
100 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
101 +}
102 +
103 +python_generate_cffi_modules() {
104 + eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
105 +}
106 +
107 _PYTHON_UTILS_R1=1
108 fi