diff options
author | 2024-06-16 20:49:19 +0200 | |
---|---|---|
committer | 2024-07-22 17:09:32 +0200 | |
commit | 191e1f16757e17e76fb31c93b2f4fb5cdbe49903 (patch) | |
tree | 769d9c0151894cc623ddcf36de3b7f036f959900 /eclass/distutils-r1.eclass | |
parent | distutils-r1.eclass: Fix QA to ignore non-generic "pure" wheels (diff) | |
download | gentoo-191e1f16757e17e76fb31c93b2f4fb5cdbe49903.tar.gz gentoo-191e1f16757e17e76fb31c93b2f4fb5cdbe49903.tar.bz2 gentoo-191e1f16757e17e76fb31c93b2f4fb5cdbe49903.zip |
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@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
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 |