-
Notifications
You must be signed in to change notification settings - Fork 82
Use Rocky Linux 8 for building Python packages #4842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e86052a
WIP: Use Rocky Linux 8 for building Python packages
oitel 132da90
Remove obsolete config
oitel 49c500d
Merge branch 'master' into feature/pip_manylinux_rockylinux8
oitel 4980501
Use custom minimal OpenCASCADE build
oitel 7fb9564
Update CI
oitel 38222b3
Update CI
oitel aef62e9
Update CI
oitel 2ba095a
Revert excess changes
oitel 32a55d1
Add comment
oitel ec07f0f
Add comment
oitel f6fce11
Add readme
oitel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,9 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
Helper script for retrieving non-system Python distribution info (libpython3 path, pkg-config path, etc.) | ||
""" | ||
import sysconfig | ||
|
||
if __name__ == '__main__': | ||
import sys | ||
print(sysconfig.get_config_var(sys.argv[1])) |
This file contains hidden or 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
24 changes: 24 additions & 0 deletions
24
thirdparty/vcpkg/ports/opencascade-minimal/csf-redifinition.patch
This file contains hidden or 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,24 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 17bc7f1638..c4283c3c4d 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -473,6 +473,9 @@ OCCT_IS_PRODUCT_REQUIRED (CSF_EIGEN CAN_USE_EIGEN) | ||
|
||
set (OCCT_3RDPARTY_CMAKE_LIST) | ||
|
||
+# define CSF variable | ||
+OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_csf") | ||
+ | ||
# Tcl (mandatory for Draw Harness) | ||
if (USE_TCL) | ||
message (STATUS "Info: TCL is used by OCCT") | ||
@@ -769,9 +772,6 @@ file(COPY ${CMAKE_SOURCE_DIR}/.clang-format DESTINATION ${CMAKE_SOURCE_DIR}) | ||
OCCT_MAKE_OS_WITH_BITNESS() | ||
OCCT_MAKE_COMPILER_SHORT_NAME() | ||
|
||
-# define CSF variable | ||
-OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_csf") | ||
- | ||
# do not define INSTALL_DIR_BIN for win. | ||
# Leave library structure for win: <prefix>/win64/vc10/bin(d) | ||
if (NOT DEFINED INSTALL_DIR_BIN) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mb add comment what is it and why is it needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.