diff options
author | Valentin Volkl <valentin.volkl@cern.ch> | 2021-04-27 19:56:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 10:56:18 -0700 |
commit | 07e50c1732e1f0aef81f4e54d488826bf17625fa (patch) | |
tree | ee6a39e18b707f2b76495e1325156eaab86e7212 /var | |
parent | 303e506f2ba232e72ec3254a2e1eed8d8ee8c2bc (diff) | |
download | spack-07e50c1732e1f0aef81f4e54d488826bf17625fa.tar.gz spack-07e50c1732e1f0aef81f4e54d488826bf17625fa.tar.bz2 spack-07e50c1732e1f0aef81f4e54d488826bf17625fa.tar.xz spack-07e50c1732e1f0aef81f4e54d488826bf17625fa.zip |
prmon: add version 2.2.0 (#23207)
Switched to .zip source archives to avoid problems with spack checksum finding binary assets when excluding versions.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/prmon/package.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/prmon/package.py b/var/spack/repos/builtin/packages/prmon/package.py index b56b043e82..4bb686e8f6 100644 --- a/var/spack/repos/builtin/packages/prmon/package.py +++ b/var/spack/repos/builtin/packages/prmon/package.py @@ -11,14 +11,15 @@ class Prmon(CMakePackage): """Standalone monitor for process resource consumption.""" homepage = "https://github.com/HSF/prmon/" - url = "https://github.com/HSF/prmon/archive/v1.1.1.tar.gz" + url = "https://github.com/HSF/prmon/archive/refs/tags/v2.2.0.zip" git = "https://github.com/HSF/prmon.git" maintainers = ['vvolkl'] version("master", branch="master") - version('2.1.1', sha256='b3d9327717caa857dfda5bee2308375c0c000817275160ed09970d805a1ec9d6') - version('1.1.1', sha256='5f074b05af2a12e2726c33f6a6e9e8e59ee0c4fb5fe056deb38abacd1bb6bf03') + version('2.2.0', sha256='7b3b887c679279f0e666e8c8c58ca1a22a328b8b94ecff09e61795a6a83e8ce5') + version('2.1.1', sha256='302d7a3fc5a403143d794e16dca1949e3d13e46cf9857dfaad4e374f4a468df2') + version('1.1.1', sha256='a6e6486bbc4d6cddf73affe07d9ff7948a424c9a02b3cdd5bbe5c6cafa06af2e') variant('plot', default=True, description='Make use of plotting scripts') |