diff options
author | bernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com> | 2021-09-26 10:25:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 10:25:26 +0200 |
commit | 91ce8354a2454727f3388ca1c233a8b93a683340 (patch) | |
tree | e06089e852ccad47119a1872757012a43af5fdf1 | |
parent | c411779c51a812e6fa0e882fc1d942e1ec75413a (diff) | |
download | spack-91ce8354a2454727f3388ca1c233a8b93a683340.tar.gz spack-91ce8354a2454727f3388ca1c233a8b93a683340.tar.bz2 spack-91ce8354a2454727f3388ca1c233a8b93a683340.tar.xz spack-91ce8354a2454727f3388ca1c233a8b93a683340.zip |
cairo: pass tests: devs wrote that other people shouldn't attempt them (#26086)
The cairo test suite is huge, has many backends and the README states
that running and attempting to pass it is not a goal for normal users,
it has so many dependencies into the system, including fonts, that
passing it is not a goal realistically in reach soon:
Skip it, it takes far too long to be practical.
-rw-r--r-- | var/spack/repos/builtin/packages/cairo/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cairo/package.py b/var/spack/repos/builtin/packages/cairo/package.py index df9f1d7e2f..386b20ae1c 100644 --- a/var/spack/repos/builtin/packages/cairo/package.py +++ b/var/spack/repos/builtin/packages/cairo/package.py @@ -13,6 +13,8 @@ class Cairo(AutotoolsPackage): homepage = "https://www.cairographics.org/" url = "https://www.cairographics.org/releases/cairo-1.16.0.tar.xz" + version('1.17.4', sha256='74b24c1ed436bbe87499179a3b27c43f4143b8676d8ad237a6fa787401959705', + url='https://cairographics.org/snapshots/cairo-1.17.4.tar.xz') # Snapshot version('1.17.2', sha256='6b70d4655e2a47a22b101c666f4b29ba746eda4aa8a0f7255b32b2e9408801df', url='https://cairographics.org/snapshots/cairo-1.17.2.tar.xz') # Snapshot version('1.16.0', sha256='5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331', preferred=True) @@ -76,3 +78,7 @@ class Cairo(AutotoolsPackage): args.extend(self.enable_or_disable('fc')) return args + + def check(self): + """The checks are only for the cairo devs: They write others shouldn't bother""" + pass |