-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also support python >= 3.12 Fix #28 Co-authored-by: Thomas Padioleau <[email protected]>
- Loading branch information
1 parent
9cbfb80
commit 2ef9c38
Showing
9 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ class Pdi(CMakePackage): | |
maintainers = ['jbigot'] | ||
|
||
version('develop', branch='main', no_cache=True) | ||
version('1.8.1', sha256='43f0c0b2bda5515ecf99da7be1600af2c1f669d6c73e3f309275b14940c7e35c') | ||
version('1.8.0', sha256='5d353bfa64f45ee4715b88bd30330030f79f2020cd6bede0ad9b8f9beddadea9') | ||
version('1.7.1', sha256='d67e3a498bfe4491c4e9aeb40015b32481a7902b122f087dcebf05451a3d9ce1') | ||
version('1.6.0', sha256='ae45d388c98c5e33d552d5e3216c1f92bf97d5dd01c669107084c1f3202fcd5a') | ||
|
@@ -54,29 +55,30 @@ class Pdi(CMakePackage): | |
variant('python', default=True, description='Enable Python support') | ||
|
||
depends_on('[email protected]:', type=('link'), when='@1.5:1.7 +benchs') | ||
depends_on('[email protected]:', type=('build')) | ||
depends_on('[email protected]:', type=('build'), when='+docs') | ||
depends_on('[email protected]:', type=('build'), when='+tests') | ||
depends_on('[email protected]:', type=('build'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build')) | ||
depends_on('[email protected]:', type=('build'), when='+docs') | ||
depends_on('[email protected]:', type=('build'), when='+tests') | ||
depends_on('[email protected]:', type=('build'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build'), when='@1.8:') | ||
depends_on('[email protected]:', type=('build'), when='+docs') | ||
depends_on('[email protected]:', type=('build'), when='@1.4.3: +docs') | ||
depends_on('[email protected]:', type=('build'), when='@1.8: +docs') | ||
depends_on('[email protected]:', type=('link'), when='@1.5') | ||
depends_on('[email protected]: +gmock', type=('link'), when='@:1.7 +tests') | ||
depends_on('paraconf@1:', type=('link', 'run'), when='@1.6:') | ||
depends_on('[email protected]:', type=('link', 'run'), when='@1.5:') | ||
depends_on('paraconf +fortran', type=('link', 'run'), when='+fortran') | ||
depends_on('paraconf@1:', type=('link', 'run'), when='@1.6:') | ||
depends_on('[email protected]:', type=('link', 'run'), when='@1.5:') | ||
depends_on('paraconf +fortran', type=('link', 'run'), when='+fortran') | ||
depends_on('[email protected]: +shared', type=('link', 'run')) | ||
depends_on('pkgconfig', type=('build')) | ||
depends_on('[email protected]:', type=('build', 'link', 'run'), when='+python') | ||
depends_on('[email protected]:', type=('build', 'link', 'run'), when='@1.8: +python') | ||
depends_on('[email protected]:2', type=('link'), when='+python') | ||
depends_on('py-pybind11@:2.11', type=('link'), when='@:1.6 +python') | ||
depends_on('[email protected]:2', type=('link'), when='+python') | ||
depends_on('py-pybind11@:2.11', type=('link'), when='@:1.6 +python') | ||
depends_on('[email protected]:', type=('link'), when='@1.8: +python') | ||
depends_on('py-setuptools', type=('build'), when='+python^[email protected]:') | ||
depends_on('[email protected]:1', type=('link', 'run')) | ||
depends_on('[email protected]:', type=('link'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build'), when='@:1.7 +fortran') | ||
depends_on('[email protected]:', type=('link'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build'), when='@:1.7 +fortran') | ||
depends_on('[email protected]:', type=('build'), when='@1.5:1.7 +fortran') | ||
|
||
root_cmakelists_dir = 'pdi' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ class PdipluginPycall(CMakePackage): | |
maintainers = ['jbigot'] | ||
|
||
version('develop', branch='main', no_cache=True) | ||
version('1.8.1', sha256='43f0c0b2bda5515ecf99da7be1600af2c1f669d6c73e3f309275b14940c7e35c') | ||
version('1.8.0', sha256='5d353bfa64f45ee4715b88bd30330030f79f2020cd6bede0ad9b8f9beddadea9') | ||
version('1.7.1', sha256='d67e3a498bfe4491c4e9aeb40015b32481a7902b122f087dcebf05451a3d9ce1') | ||
version('1.6.0', sha256='ae45d388c98c5e33d552d5e3216c1f92bf97d5dd01c669107084c1f3202fcd5a') | ||
|
@@ -45,8 +46,8 @@ class PdipluginPycall(CMakePackage): | |
variant('tests', default=False, description='Build tests') | ||
|
||
depends_on('[email protected]:', type=('build'), when='@1.8:') | ||
depends_on('[email protected]:', type=('build'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build'), when='@:1.4.3') | ||
depends_on('[email protected]:', type=('build'), when='@1.5:') | ||
depends_on('[email protected]:', type=('build'), when='@:1.4.3') | ||
depends_on('pdi+python@develop', type=('link', 'run'), when='@develop') | ||
depends_on('[email protected]', type=('link', 'run'), when='@1.8.0') | ||
depends_on('[email protected]', type=('link', 'run'), when='@1.7.1') | ||
|
@@ -70,7 +71,8 @@ class PdipluginPycall(CMakePackage): | |
depends_on('[email protected]', type=('link', 'run'), when='@1.0.1') | ||
depends_on('[email protected]', type=('link', 'run'), when='@1.0.0') | ||
depends_on('[email protected]', type=('link', 'run'), when='@0.6.5') | ||
depends_on('pkgconfig', type=('build')) | ||
depends_on('py-setuptools', type=('build'), when='+python^[email protected]:') | ||
depends_on('pkgconfig', type=('build')) | ||
|
||
root_cmakelists_dir = 'plugins/pycall' | ||
|
||
|
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