diff options
author | bernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com> | 2021-09-26 10:25:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 10:25:50 +0200 |
commit | 919a893c0855239d4c108145dfb9c6127e78e65a (patch) | |
tree | f5385c1f659180e7da54fa52f30cc1f91e0da885 /var | |
parent | 91ce8354a2454727f3388ca1c233a8b93a683340 (diff) | |
download | spack-919a893c0855239d4c108145dfb9c6127e78e65a.tar.gz spack-919a893c0855239d4c108145dfb9c6127e78e65a.tar.bz2 spack-919a893c0855239d4c108145dfb9c6127e78e65a.tar.xz spack-919a893c0855239d4c108145dfb9c6127e78e65a.zip |
mountpointattr: Fix checksum of 1.1.1 and fix build(patch is only for 1.1) (#26087)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/mount-point-attributes/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/mount-point-attributes/package.py b/var/spack/repos/builtin/packages/mount-point-attributes/package.py index bb0d70e701..8b3be9557e 100644 --- a/var/spack/repos/builtin/packages/mount-point-attributes/package.py +++ b/var/spack/repos/builtin/packages/mount-point-attributes/package.py @@ -16,11 +16,11 @@ class MountPointAttributes(AutotoolsPackage): maintainers = ['lee218llnl'] version('master', branch='master') - version('1.1.1', sha256='397de583a99e60aae8b4485d3decac6e23f50c658a6353fea149d6dd50d3ecee', url="https://github.com/LLNL/MountPointAttributes/releases/download/v1.1.1/mountpointattr-1.1.1.tar.gz") + version('1.1.1', sha256='c58967fde59974407b4fee3e490b2e7d922d947e726faf2291c6c886b95abf78', url="https://github.com/LLNL/MountPointAttributes/releases/download/v1.1.1/mountpointattr-1.1.1.tar.gz") version('1.1', sha256='bff84c75c47b74ea09b6cff949dd699b185ddba0463cb1ff39ab138003c96e02') depends_on('autoconf', type='build', when='@master') depends_on('automake', type='build', when='@master') depends_on('libtool', type='build', when='@master') - patch('mpa_type_conversion.patch', when='@1.1') + patch('mpa_type_conversion.patch', when='@1.1:1.1.0') |