-
Notifications
You must be signed in to change notification settings - Fork 781
{vis}[foss/2025a] ParaView v6.0.1 #23671
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
boegel
merged 9 commits into
easybuilders:develop
from
sara-nl:20250814133121_new_pr_ParaView600
Oct 14, 2025
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
430e9ff
adding easyconfigs: ParaView-6.0.0-foss-2025a.eb
paulmelis 2a11e64
Add matplotlib as dependency
paulmelis c545911
Update LLVM version
paulmelis 10c27c9
Added ospray-based rendering
paulmelis a211c9d
bump Qt6 to 6.9.3 as dependency for ParaView 6.0.0
boegel 10cde4f
only use OSPRay dependency to enable raytracing support on x86_64 sys…
boegel 34e8455
bump ParaView version to 6.0.1
boegel 993e088
Rename ParaView-6.0.0-foss-2025a.eb to ParaView-6.0.1-foss-2025a.eb
branfosj e306424
add missing libxslt dependency for ParaView 6.0.1
boegel 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
74 changes: 74 additions & 0 deletions
74
easybuild/easyconfigs/p/ParaView/ParaView-6.0.1-foss-2025a.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,74 @@ | ||
| easyblock = 'CMakeNinja' | ||
|
|
||
| name = 'ParaView' | ||
| version = '6.0.1' | ||
|
|
||
| homepage = 'https://www.paraview.org' | ||
| description = "ParaView is a scientific parallel visualizer." | ||
|
|
||
| toolchain = {'name': 'foss', 'version': '2025a'} | ||
| toolchainopts = {'pic': True, 'usempi': True} | ||
|
|
||
| local_download_suffix = 'download.php?submit=Download&version=v%(version_major_minor)s&type=source&os=all&downloadFile=' | ||
| source_urls = ['https://www.paraview.org/paraview-downloads/%s' % local_download_suffix] | ||
| sources = ["%(name)s-v%(version)s.tar.gz"] | ||
| checksums = ['4104a210677026923e47470cc0b3ff910de5252e73d7db2d934b85a11036b2d3'] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.31.3'), | ||
| ('Ninja', '1.12.1') | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Boost', '1.88.0'), | ||
| ('Python', '3.13.1'), | ||
| ('SciPy-bundle', '2025.06'), | ||
| ('XZ', '5.6.3'), | ||
| ('HDF5', '1.14.6'), | ||
| ('netCDF', '4.9.3'), | ||
| ('libdrm', '2.4.125'), | ||
| ('Mesa', '25.1.3'), | ||
| ('Qt6', '6.9.3'), | ||
| ('zlib', '1.3.1'), | ||
| ('FFmpeg', '7.1.1'), | ||
| ('Szip', '2.1.1'), | ||
| ('matplotlib', '3.10.3'), # For rendering of latex-format labels | ||
| ('libxslt', '1.1.42'), | ||
| ] | ||
| if ARCH == 'x86_64': | ||
| # Leads to incorrect coloring when using OSPRay 3.x | ||
| dependencies.append(('OSPRay', '2.12.0', '', SYSTEM)) | ||
|
|
||
| _copts = [ | ||
| # Basic configuration | ||
| '-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON', | ||
| '-DPARAVIEW_BUILD_SHARED_LIBS=ON', | ||
| '-DPARAVIEW_USE_MPI=ON', | ||
| '-DPARAVIEW_ENABLE_FFMPEG=ON', | ||
| '-DPARAVIEW_USE_PYTHON=ON', | ||
| # Useful input formats | ||
| '-DPARAVIEW_ENABLE_XDMF2=ON', | ||
| '-DPARAVIEW_ENABLE_XDMF3=ON', | ||
| # EGL, X and Mesa | ||
| '-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s' % SHLIB_EXT, | ||
| '-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include', | ||
| '-DEGL_INCLUDE_DIR=$EBROOTLIBGLVND/include', | ||
| '-DEGL_LIBRARY=$EBROOTLIBGLVND/lib/libEGL.%s' % SHLIB_EXT, | ||
| '-DEGL_opengl_LIBRARY=$EBROOTLIBGLVND/libOpenGL.%s' % SHLIB_EXT, | ||
| '-DVTK_OPENGL_HAS_EGL=ON', | ||
| '-DVTK_USE_X=ON', | ||
| ] | ||
| if ARCH == 'x86_64': | ||
| # requires OSPRay dependency | ||
| _copts.append('-DPARAVIEW_ENABLE_RAYTRACING=ON') | ||
| configopts = ' '.join(_copts) | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/paraview', 'bin/pvserver', 'bin/pvpython', 'bin/pvbatch'], | ||
| 'dirs': ['include/paraview-%(version_major_minor)s', 'lib/python%(pyshortver)s/site-packages'], | ||
| } | ||
|
|
||
| sanity_check_commands = ['python -c "import paraview"'] | ||
|
|
||
|
|
||
| moduleclass = 'vis' | ||
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.