mgorny      15/01/02 00:14:25

  Modified:             ChangeLog python-utils-r1.eclass
  Log:
  Add progress overlay-specific commands and variables to the invalid 
command/variable lists.

Revision  Changes    Path
1.1493               eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1493&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1493&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1492&r2=1.1493

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1492
retrieving revision 1.1493
diff -u -r1.1492 -r1.1493
--- ChangeLog   1 Jan 2015 21:23:03 -0000       1.1492
+++ ChangeLog   2 Jan 2015 00:14:25 -0000       1.1493
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1492 2015/01/01 
21:23:03 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1493 2015/01/02 
00:14:25 mgorny Exp $
+
+  02 Jan 2015; Michał Górny <[email protected]> python-utils-r1.eclass:
+  Add progress overlay-specific commands and variables to the invalid
+  command/variable lists.
 
   01 Jan 2015; Sergei Trofimovich <[email protected]> ghc-package.eclass,
   haskell-cabal.eclass:



1.74                 eclass/python-utils-r1.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.74&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?rev=1.74&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-utils-r1.eclass?r1=1.73&r2=1.74

Index: python-utils-r1.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- python-utils-r1.eclass      28 Dec 2014 18:35:07 -0000      1.73
+++ python-utils-r1.eclass      2 Jan 2015 00:14:25 -0000       1.74
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.73 
2014/12/28 18:35:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.74 
2015/01/02 00:14:25 mgorny Exp $
 
 # @ECLASS: python-utils-r1
 # @MAINTAINER:
@@ -1206,6 +1206,16 @@
        if [[ ${DISTUTILS_DISABLE_TEST_DEPENDENCY} ]]; then
                eqawarn "${v} is invalid for distutils-r1, please take a look @ 
https://wiki.gentoo.org/wiki/Project:Python/Python.eclass_conversion#DISTUTILS_SRC_TEST";
        fi
+
+       # python.eclass::progress
+       for v in PYTHON_BDEPEND PYTHON_MULTIPLE_ABIS PYTHON_ABI_TYPE \
+               PYTHON_RESTRICTED_ABIS PYTHON_TESTS_FAILURES_TOLERANT_ABIS \
+               PYTHON_CFFI_MODULES_GENERATION_COMMANDS
+       do
+               if [[ ${!v} ]]; then
+                       eqawarn "${v} is invalid for python-r1 suite"
+               fi
+       done
 }
 
 python_pkg_setup() {
@@ -1300,5 +1310,31 @@
        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";
 }
 
+# python.eclass::progress
+
+python_abi_depend() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
+python_install_executables() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
+python_get_extension_module_suffix() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
+python_byte-compile_modules() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
+python_clean_byte-compiled_modules() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
+python_generate_cffi_modules() {
+       eqawarn "${FUNCNAME}() is invalid for python-r1 suite"
+}
+
 _PYTHON_UTILS_R1=1
 fi




Reply via email to