commit: 191e1f16757e17e76fb31c93b2f4fb5cdbe49903 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Jun 16 18:49:19 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Jul 22 15:09:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191e1f16
distutils-r1.eclass: Allow wheel reuse by default Enable wheel reuse by default, since no issues were revealed during the testing so far. The option to disable them remains available, as it can be useful e.g. to verify that reproducible wheels are actually produced across implementation. Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/distutils-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 8227466b4d4c..645b5df5a6e5 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -195,7 +195,6 @@ esac # @CODE # @ECLASS_VARIABLE: DISTUTILS_ALLOW_WHEEL_REUSE -# @DEFAULT_UNSET # @USER_VARIABLE # @DESCRIPTION: # If set to a non-empty value, the eclass is allowed to reuse a wheel @@ -205,6 +204,7 @@ esac # This is an optimization that can avoid the overhead of calling into # the build system in pure Python packages and packages using the stable # Python ABI. +DISTUTILS_ALLOW_WHEEL_REUSE=1 # @ECLASS_VARIABLE: BUILD_DIR # @OUTPUT_VARIABLE
