-
Notifications
You must be signed in to change notification settings - Fork 54
Wheels: 0.17.0 #1833
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
Open
ax3l
wants to merge
19
commits into
openPMD:wheels
Choose a base branch
from
ax3l:wheels-0.17.0
base: wheels
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+202
−38
Open
Wheels: 0.17.0 #1833
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
aba9532
ADIOS2: 2.11.0 & Campaigns
ax3l c21a835
openPMD-api: 0.17.0
ax3l 3289c1f
macOS 13 -> 14/15
ax3l 953ace5
Build SQLite3
ax3l 6e5c9d5
Windows h_errno patch
franzpoeschel 3ef0b01
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] a82aeb5
GTKorvo patch
franzpoeschel 912c59f
Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks"
franzpoeschel 8b93824
Exclude patches from pre-commit
franzpoeschel 34d8829
Wrong path..
franzpoeschel 9c4a794
Use a better patch for GTKorvo upstream
franzpoeschel 4b309ed
Fix Windows paths
franzpoeschel 28b8035
Debug error
franzpoeschel 061f8b2
tmp: Use master branch of ADIOS2
franzpoeschel c4f9f07
more paths
franzpoeschel 49cacd9
Try Greg's suggestion
franzpoeschel 4e3b632
Unix: `-DFFS_USE_DILL=FALSE`
ax3l cd29e48
Ouch
ax3l e4ff045
Ouch
ax3l 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| From c1b900ff5c674f282463a8dfeb897a39dbc2c454 Mon Sep 17 00:00:00 2001 | ||
| From: =?UTF-8?q?Franz=20P=C3=B6schel?= <franz.poeschel@gmail.com> | ||
| Date: Fri, 23 Jan 2026 14:42:21 +0100 | ||
| Subject: [PATCH] Fix h_errno declarations for Windows | ||
|
|
||
| --- | ||
| thirdparty/EVPath/EVPath/ip_config.c | 2 ++ | ||
| thirdparty/EVPath/EVPath/qual_hostname.c | 2 ++ | ||
| 2 files changed, 4 insertions(+) | ||
|
|
||
| diff --git a/thirdparty/EVPath/EVPath/ip_config.c b/thirdparty/EVPath/EVPath/ip_config.c | ||
| index f058c320d..aba640864 100644 | ||
| --- a/thirdparty/EVPath/EVPath/ip_config.c | ||
| +++ b/thirdparty/EVPath/EVPath/ip_config.c | ||
| @@ -387,7 +387,9 @@ get_qual_hostname(char *buf, int len, attr_list attrs, | ||
| if (buf[0] == 0) { | ||
| /* bloody hell, what do you have to do? */ | ||
| struct in_addr IP; | ||
| +#ifndef HAVE_WINDOWS_H | ||
| extern int h_errno; | ||
| +#endif | ||
| char *iface; | ||
| if (get_string_attr(attrs, CM_IP_INTERFACE, &iface)){ | ||
| IP.s_addr = htonl(get_self_ip_iface(trace_func, trace_data, iface)); | ||
| diff --git a/thirdparty/EVPath/EVPath/qual_hostname.c b/thirdparty/EVPath/EVPath/qual_hostname.c | ||
| index 138dde170..52cb8c6e0 100644 | ||
| --- a/thirdparty/EVPath/EVPath/qual_hostname.c | ||
| +++ b/thirdparty/EVPath/EVPath/qual_hostname.c | ||
| @@ -342,7 +342,9 @@ get_qual_hostname(void *cm, char *buf, int len, CMtrans_services svc, attr_list | ||
| if (buf[0] == 0) { | ||
| /* bloody hell, what do you have to do? */ | ||
| struct in_addr IP; | ||
| +#ifndef HAVE_WINDOWS_H | ||
| extern int h_errno; | ||
| +#endif | ||
| IP.s_addr = htonl(get_self_ip_addr(cm, svc)); | ||
| svc->trace_out(cm, "CM<transport> - No hostname yet, trying gethostbyaddr on IP %lx", IP); | ||
| if (!is_private_IP(ntohl(IP.s_addr))) { | ||
| -- | ||
| 2.51.2 | ||
|
|
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,29 @@ | ||
| From 176fd3197c1702c8aa9dc6f7bf667729ae6bd2d2 Mon Sep 17 00:00:00 2001 | ||
| From: =?UTF-8?q?Franz=20P=C3=B6schel?= <franz.poeschel@gmail.com> | ||
| Date: Fri, 23 Jan 2026 18:10:23 +0100 | ||
| Subject: [PATCH] Try another fix | ||
|
|
||
| --- | ||
| thirdparty/ffs/CMakeLists.txt | 6 +++++- | ||
| 1 file changed, 5 insertions(+), 1 deletion(-) | ||
|
|
||
| diff --git a/thirdparty/ffs/CMakeLists.txt b/thirdparty/ffs/CMakeLists.txt | ||
| index e47512f58..f02868257 100644 | ||
| --- a/thirdparty/ffs/CMakeLists.txt | ||
| +++ b/thirdparty/ffs/CMakeLists.txt | ||
| @@ -4,7 +4,11 @@ set(BUILD_TESTING OFF) | ||
| set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_CMAKEDIR}/thirdparty") | ||
|
|
||
| set(FFS_USE_ATL ON CACHE INTERNAL "") | ||
| -set(FFS_USE_DILL ON CACHE INTERNAL "") | ||
| +if(TARGET dill::dill) | ||
| + set(FFS_USE_DILL ON CACHE INTERNAL "") | ||
| +else() | ||
| + set(FFS_USE_DILL OFF CACHE INTERNAL "") | ||
| +endif() | ||
| set(FFS_LIBRARIES_ONLY ON CACHE INTERNAL "") | ||
| set(FFS_QUIET ON CACHE INTERNAL "") | ||
| set(FFS_LIBRARY_PREFIX adios2${ADIOS2_LIBRARY_SUFFIX}_ CACHE INTERNAL "") | ||
| -- | ||
| 2.51.2 | ||
|
|
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
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.
Uh oh!
There was an error while loading. Please reload this page.