Bugfix: Simplify preferred-test versions; set checksum defaults (#28026)

* Simplify preferred-test versions; set checksum defaults

* Fix test_preferred failure
This commit is contained in:
Tamara Dahlgren
2021-12-15 21:55:28 -08:00
committed by GitHub
parent 89044ff5d5
commit 9240614928
5 changed files with 17 additions and 19 deletions

View File

@@ -7,11 +7,9 @@
class PreferredTest(Package):
"""Dummy package with develop version and preffered version"""
homepage = "http://www.openblas.net"
url = "http://github.com/xianyi/OpenBLAS/archive/v0.2.15.tar.gz"
"""Dummy package with develop version and preferred version"""
homepage = "https://github.com/LLNL/mpileaks"
url = "https://github.com/LLNL/mpileaks/releases/download/v1.0/mpileaks-1.0.tar.gz"
version('develop', git='https://github.com/dummy/repo.git')
version('0.2.16', 'b1190f3d3471685f17cfd1ec1d252ac9')
version('0.2.15', 'b1190f3d3471685f17cfd1ec1d252ac9', preferred=True)
version('0.2.14', 'b1190f3d3471685f17cfd1ec1d252ac9')
version('develop', git='https://github.com/LLNL/mpileaks.git')
version('1.0', sha256='2e34cc4505556d1c1f085758e26f2f8eea0972db9382f051b2dcfb1d7d9e1825', preferred=True)