-
Notifications
You must be signed in to change notification settings - Fork 797
{lib}[gfbf/2025b] SymEngine-python v0.14.0 #25229
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
Crivella
merged 12 commits into
easybuilders:develop
from
AlvaroHuanay:2026-Symengine-Python
Jun 15, 2026
+49
−0
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
aad13be
chore: SymEngine-Python ready
AlvaroHuanay 0d479cd
chore: SymEngine-python changed filename to be sync with upstream
AlvaroHuanay a92d21b
Update easybuild/easyconfigs/s/SymEngine-python/SymEngine-python-0.14…
AlvaroHuanay 74c0e6a
Update easybuild/easyconfigs/s/SymEngine-python/SymEngine-python-0.14…
AlvaroHuanay fea0da9
chore: SymEngine-python changed filename patch
AlvaroHuanay 64a8fcf
chore: SymEngine-python fixed --check-style
AlvaroHuanay d887178
Changed Symengine-python easyblock
AlvaroHuanay 6344c5d
Changed Symengine-python easyblock
AlvaroHuanay 83f425b
Changed Symengine-python patch name
AlvaroHuanay 5f19894
Fixed 'name' field
AlvaroHuanay 19d8f91
Apply suggestion from @Micket
Micket 5fa8f78
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
Crivella 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
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/s/SymEngine-python/SymEngine-python-0.14.0-gfbf-2025b.eb
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,38 @@ | ||
| easyblock = 'PythonBundle' | ||
|
|
||
| name = 'SymEngine-Python' | ||
| version = '0.14.0' | ||
|
|
||
| homepage = 'https://github.com/symengine/symengine.py' | ||
| description = "Python wrappers to the C++ library SymEngine, a fast C++ symbolic manipulation library." | ||
|
|
||
| toolchain = {'name': 'gfbf', 'version': '2025b'} | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '4.0.3'), | ||
| ('Cython', '3.1.2'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '3.13.5'), | ||
| ('Python-bundle-PyPI', '2025.07'), | ||
| ('SymEngine', '0.14.0'), | ||
| ] | ||
|
|
||
| exts_list = [ | ||
| ('symengine', version, { | ||
| 'source_urls': ['https://github.com/symengine/symengine.py/archive/refs/tags/'], | ||
| 'source_tmpl': 'v%(version)s.tar.gz', | ||
| 'patches': ['symengine-cmake-policy.patch'], | ||
|
AlvaroHuanay marked this conversation as resolved.
Outdated
|
||
| 'checksums': [ | ||
| {'v%(version)s.tar.gz': | ||
| '38e742a9b3d03b36f07b2ccba39e7e3d626e37557c26bb03ce575b95cfbd9cc4'}, | ||
| {'symengine-cmake-policy.patch': | ||
| 'c1aa1d1028de8d57d5d95f0881632afa6d9ea09a46279bfd76a4f96ab883c3c1'}, | ||
| ], | ||
| }), | ||
| ] | ||
|
|
||
| options = {'modulename': 'symengine'} | ||
|
AlvaroHuanay marked this conversation as resolved.
Outdated
|
||
|
|
||
| moduleclass = 'lib' | ||
13 changes: 13 additions & 0 deletions
13
easybuild/easyconfigs/s/SymEngine-python/SymEngine-python-0.14.0_cmake-policy.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,13 @@ | ||
| # Patch to allow Symengine repo to detect CMake/4.0.3 | ||
| --- setup.py.orig 2026-02-04 11:24:01.844143000 +0100 | ||
| +++ setup.py 2026-02-04 11:25:12.923643376 +0100 | ||
| @@ -42,7 +42,8 @@ | ||
| from distutils.command.build import build as _build | ||
|
|
||
| cmake_opts = [("PYTHON_BIN", sys.executable), | ||
| - ("CMAKE_INSTALL_RPATH_USE_LINK_PATH", "yes")] | ||
| + ("CMAKE_INSTALL_RPATH_USE_LINK_PATH", "yes"), | ||
| + ("CMAKE_POLICY_VERSION_MINIMUM", "3.5")] | ||
| cmake_generator = [None] | ||
| cmake_build_type = ["Release"] | ||
|
|
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.