forked from bazelbuild/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pycross: Add patching support to py_wheel_library
This patch adds a few arguments to `py_wheel_library` to simulate how `http_archive` accepts patch-related arguments. I also amended the existing test to validate the behaviour at a very high level. References: bazelbuild#1360
- Loading branch information
Showing
5 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
tests/pycross/0001-Add-new-file-for-testing-patch-support.patch
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,17 @@ | ||
From b2ebe6fe67ff48edaf2ae937d24b1f0b67c16f81 Mon Sep 17 00:00:00 2001 | ||
From: Philipp Schrader <[email protected]> | ||
Date: Thu, 28 Sep 2023 09:02:44 -0700 | ||
Subject: [PATCH] Add new file for testing patch support | ||
|
||
--- | ||
site-packages/numpy/file_added_via_patch.txt | 1 + | ||
1 file changed, 1 insertion(+) | ||
create mode 100644 site-packages/numpy/file_added_via_patch.txt | ||
|
||
diff --git a/site-packages/numpy/file_added_via_patch.txt b/site-packages/numpy/file_added_via_patch.txt | ||
new file mode 100644 | ||
index 0000000..9d947a4 | ||
--- /dev/null | ||
+++ b/site-packages/numpy/file_added_via_patch.txt | ||
@@ -0,0 +1 @@ | ||
+Hello from a patch! |
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