ninja: drop python as a run dep (#11347)
* ninja: Make python a build-only dependency * ninja, ninja-fortran: allow the packages to provide eachother
This commit is contained in:
parent
65ff6ed8f6
commit
251f3f5058
@ -36,6 +36,8 @@ packages:
|
|||||||
mpe: [mpe2]
|
mpe: [mpe2]
|
||||||
mpi: [openmpi, mpich]
|
mpi: [openmpi, mpich]
|
||||||
mysql-client: [mysql, mariadb-c-client]
|
mysql-client: [mysql, mariadb-c-client]
|
||||||
|
ninja: [ninja, ninja-fortran]
|
||||||
|
ninja-fortran: [ninja-fortran, ninja@kitware]
|
||||||
opencl: [pocl]
|
opencl: [pocl]
|
||||||
openfoam: [openfoam-com, openfoam-org, foam-extend]
|
openfoam: [openfoam-com, openfoam-org, foam-extend]
|
||||||
pil: [py-pillow]
|
pil: [py-pillow]
|
||||||
|
@ -25,7 +25,9 @@ class NinjaFortran(Package):
|
|||||||
version('1.7.2.0.gcc0ea', '3982f508c415c0abaca34cb5e92e711a')
|
version('1.7.2.0.gcc0ea', '3982f508c415c0abaca34cb5e92e711a')
|
||||||
version('1.7.1.0.g7ca7f', '187a8d15c1e20e5e9b00c5c3f227ca8a')
|
version('1.7.1.0.g7ca7f', '187a8d15c1e20e5e9b00c5c3f227ca8a')
|
||||||
|
|
||||||
depends_on('python', type=('build', 'run'))
|
depends_on('python', type='build')
|
||||||
|
|
||||||
|
provides('ninja')
|
||||||
|
|
||||||
phases = ['configure', 'install']
|
phases = ['configure', 'install']
|
||||||
|
|
||||||
|
@ -22,7 +22,9 @@ class Ninja(Package):
|
|||||||
version('1.7.2', '7b482218757acbaeac4d4d54a3cd94e1')
|
version('1.7.2', '7b482218757acbaeac4d4d54a3cd94e1')
|
||||||
version('1.6.0', '254133059f2da79d8727f654d7198f43')
|
version('1.6.0', '254133059f2da79d8727f654d7198f43')
|
||||||
|
|
||||||
depends_on('python', type=('build', 'run'))
|
depends_on('python', type='build')
|
||||||
|
|
||||||
|
provides('ninja-fortran', when='@kitware')
|
||||||
|
|
||||||
phases = ['configure', 'install']
|
phases = ['configure', 'install']
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user