python-utils-r1.eclass: _python_set_impls, add integrity check
authorMichał Górny <mgorny@gentoo.org>
Wed, 1 Mar 2017 08:20:12 +0000 (09:20 +0100)
committerMichał Górny <mgorny@gentoo.org>
Wed, 8 Mar 2017 07:35:43 +0000 (08:35 +0100)
Add integrity check for multi-inherits, i.e. ensure that PYTHON_COMPAT
has not changed between successive calls to _python_set_impls. If it did
(e.g. because of eclass+ebuild setting different values), then we abort
not to give surprising results to the user.

eclass/python-utils-r1.eclass

index a6f197bd418f285cd42ac86bc1d023084c069657..c75c4678e310b680f4a59ece68b25eacd029294e 100644 (file)
@@ -128,9 +128,25 @@ _python_set_impls() {
                die "No supported implementation in PYTHON_COMPAT."
        fi
 
-       _PYTHON_SUPPORTED_IMPLS=( "${supp[@]}" )
-       _PYTHON_UNSUPPORTED_IMPLS=( "${unsupp[@]}" )
-       readonly _PYTHON_SUPPORTED_IMPLS _PYTHON_UNSUPPORTED_IMPLS
+       if [[ ${_PYTHON_SUPPORTED_IMPLS[@]} ]]; then
+               # set once already, verify integrity
+               if [[ ${_PYTHON_SUPPORTED_IMPLS[@]} != ${supp[@]} ]]; then
+                       eerror "Supported impls (PYTHON_COMPAT) changed between inherits!"
+                       eerror "Before: ${_PYTHON_SUPPORTED_IMPLS[*]}"
+                       eerror "Now   : ${supp[*]}"
+                       die "_PYTHON_SUPPORTED_IMPLS integrity check failed"
+               fi
+               if [[ ${_PYTHON_UNSUPPORTED_IMPLS[@]} != ${unsupp[@]} ]]; then
+                       eerror "Unsupported impls changed between inherits!"
+                       eerror "Before: ${_PYTHON_UNSUPPORTED_IMPLS[*]}"
+                       eerror "Now   : ${unsupp[*]}"
+                       die "_PYTHON_UNSUPPORTED_IMPLS integrity check failed"
+               fi
+       else
+               _PYTHON_SUPPORTED_IMPLS=( "${supp[@]}" )
+               _PYTHON_UNSUPPORTED_IMPLS=( "${unsupp[@]}" )
+               readonly _PYTHON_SUPPORTED_IMPLS _PYTHON_UNSUPPORTED_IMPLS
+       fi
 }
 
 # @ECLASS-VARIABLE: PYTHON