Fix missing dependency in Mono (#17208)

* Add missing dependency on Python for Mono.

At build time

* Adding version 6.8.0.123 for mono
This commit is contained in:
cedricchevalier19 2020-06-25 05:22:40 +02:00 committed by GitHub
parent eee56295ce
commit a928f44fc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,10 @@ class Mono(AutotoolsPackage):
depends_on('cmake~openssl', type=('build')) depends_on('cmake~openssl', type=('build'))
depends_on('iconv') depends_on('iconv')
depends_on('perl', type=('build')) depends_on('perl', type=('build'))
depends_on('python', type=('build'))
version('6.8.0.123', sha256='e2e42d36e19f083fc0d82f6c02f7db80611d69767112af353df2f279744a2ac5',
url='https://download.mono-project.com/sources/mono/mono-6.8.0.123.tar.xz')
version('6.8.0.105', sha256='578799c44c3c86a9eb5daf6dec6c60a24341940fd376371956d4a46cf8612178', version('6.8.0.105', sha256='578799c44c3c86a9eb5daf6dec6c60a24341940fd376371956d4a46cf8612178',
url='https://download.mono-project.com/sources/mono/mono-6.8.0.105.tar.xz') url='https://download.mono-project.com/sources/mono/mono-6.8.0.105.tar.xz')
version('5.18.0.240', sha256='143e80eb00519ff496742e78ee07403a3c3629437f3a498eee539de8108da895') version('5.18.0.240', sha256='143e80eb00519ff496742e78ee07403a3c3629437f3a498eee539de8108da895')