-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bzlmod): support patching 'whl' distributions (#1393)
Before that the users had to rely on patching the actual wheel files and uploading them as different versions to internal artifact stores if they needed to modify the wheel dependencies. This is very common when breaking dependency cycles in `pytorch` or `apache-airflow` packages. With this feature we can support patching external PyPI dependencies via pip.override tag class to fix package dependencies and/or a broken `RECORD` metadata file. Overall design: * Split the `whl_installer` CLI into two parts - downloading and extracting. Merged in #1487. * Add a starlark function which extracts the downloaded wheel applies patches and repackages a wheel (so that the extraction part works as before). * Add a `override` tag_class to the `pip` extension and allow users to pass patches to be applied to specific wheel files. * Only the root module is allowed to apply patches. This is to avoid far away modules modifying the code of other modules and conflicts between modules and their patches. Patches have to be in `unified-diff` format. Related #1076, #1166, #1120
- Loading branch information
Showing
19 changed files
with
593 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
exports_files( | ||
srcs = glob(["*.patch"]), | ||
visibility = ["//visibility:public"], | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --unified --recursive a/requests-2.25.1.dist-info/METADATA b/requests-2.25.1.dist-info/METADATA | ||
--- a/requests-2.25.1.dist-info/METADATA 2020-12-16 19:37:50.000000000 +0900 | ||
+++ b/requests-2.25.1.dist-info/METADATA 2023-09-30 20:31:50.079863410 +0900 | ||
@@ -1,7 +1,7 @@ | ||
Metadata-Version: 2.1 | ||
Name: requests | ||
Version: 2.25.1 | ||
-Summary: Python HTTP for Humans. | ||
+Summary: Python HTTP for Humans. Patched. | ||
Home-page: https://requests.readthedocs.io | ||
Author: Kenneth Reitz | ||
Author-email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/requests-2.25.1.dist-info/RECORD | ||
+++ b/requests-2.25.1.dist-info/RECORD | ||
@@ -17,7 +17,7 @@ | ||
requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 | ||
requests/utils.py,sha256=_K9AgkN6efPe-a-zgZurXzds5PBC0CzDkyjAE2oCQFQ,30529 | ||
requests-2.25.1.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142 | ||
-requests-2.25.1.dist-info/METADATA,sha256=RuNh38uN0IMsRT3OwaTNB_WyGx6RMwwQoMwujXfkUVM,4168 | ||
+requests-2.25.1.dist-info/METADATA,sha256=fRSAA0u0Bi0heD4zYq91wdNUTJlbzhK6_iDOcRRNDx4,4177 | ||
requests-2.25.1.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110 | ||
requests-2.25.1.dist-info/top_level.txt,sha256=fMSVmHfb5rbGOo6xv-O_tUX6j-WyixssE-SnwcDRxNQ,9 | ||
requests-2.25.1.dist-info/RECORD,, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 2023 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
""" | ||
A starlark implementation of a Wheel filename parsing. | ||
""" | ||
|
||
def parse_whl_name(file): | ||
"""Parse whl file name into a struct of constituents. | ||
Args: | ||
file (str): The file name of a wheel | ||
Returns: | ||
A struct with the following attributes: | ||
distribution: the distribution name | ||
version: the version of the distribution | ||
build_tag: the build tag for the wheel. None if there was no | ||
build_tag in the given string. | ||
python_tag: the python tag for the wheel | ||
abi_tag: the ABI tag for the wheel | ||
platform_tag: the platform tag | ||
""" | ||
if not file.endswith(".whl"): | ||
fail("not a valid wheel: {}".format(file)) | ||
|
||
file = file[:-len(".whl")] | ||
|
||
# Parse the following | ||
# {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.whl | ||
# | ||
# For more info, see the following standards: | ||
# https://packaging.python.org/en/latest/specifications/binary-distribution-format/#binary-distribution-format | ||
# https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/ | ||
head, _, platform_tag = file.rpartition("-") | ||
if not platform_tag: | ||
fail("cannot extract platform tag from the whl filename: {}".format(file)) | ||
head, _, abi_tag = head.rpartition("-") | ||
if not abi_tag: | ||
fail("cannot extract abi tag from the whl filename: {}".format(file)) | ||
head, _, python_tag = head.rpartition("-") | ||
if not python_tag: | ||
fail("cannot extract python tag from the whl filename: {}".format(file)) | ||
head, _, version = head.rpartition("-") | ||
if not version: | ||
fail("cannot extract version from the whl filename: {}".format(file)) | ||
distribution, _, maybe_version = head.partition("-") | ||
|
||
if maybe_version: | ||
version, build_tag = maybe_version, version | ||
else: | ||
build_tag = None | ||
|
||
return struct( | ||
distribution = distribution, | ||
version = version, | ||
build_tag = build_tag, | ||
python_tag = python_tag, | ||
abi_tag = abi_tag, | ||
platform_tag = platform_tag, | ||
) |
Oops, something went wrong.