summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorWouter Deconinck <wdconinc@gmail.com>2023-04-07 11:36:22 -0500
committerGitHub <noreply@github.com>2023-04-07 09:36:22 -0700
commit65ee864232ae3c0c2802c3d210c4fc618b8e96f2 (patch)
treee73da98a047aeabd1a51a2c84ba7a32ede386bb7 /var
parent4703c3bcb8527a6d783bc76f50bf3d0fddf5f5b0 (diff)
downloadspack-65ee864232ae3c0c2802c3d210c4fc618b8e96f2.tar.gz
spack-65ee864232ae3c0c2802c3d210c4fc618b8e96f2.tar.bz2
spack-65ee864232ae3c0c2802c3d210c4fc618b8e96f2.tar.xz
spack-65ee864232ae3c0c2802c3d210c4fc618b8e96f2.zip
cppzmq: new versions 4.8.1, 4.9.0 (updated cmake dependency) (#36699)
* cppzmq: new versions 4.8.1, 4.9.0 (updated cmake dependency) No important changes in the build system, https://github.com/zeromq/cppzmq/compare/v4.7.1...v4.9.0, other than the more recent cmake required starting with 4.8.0. There is also a patch version 4.8.0, but presumably 4.8.1 is preferred. * cppzmq: add maintainer
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/cppzmq/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cppzmq/package.py b/var/spack/repos/builtin/packages/cppzmq/package.py
index 9bccfd66fb..6e52c55ef0 100644
--- a/var/spack/repos/builtin/packages/cppzmq/package.py
+++ b/var/spack/repos/builtin/packages/cppzmq/package.py
@@ -13,7 +13,11 @@ class Cppzmq(CMakePackage):
url = "https://github.com/zeromq/cppzmq/archive/v4.2.2.tar.gz"
git = "https://github.com/zeromq/cppzmq.git"
+ maintainers("wdconinc")
+
version("master", branch="master")
+ version("4.9.0", sha256="3fdf5b100206953f674c94d40599bdb3ea255244dcc42fab0d75855ee3645581")
+ version("4.8.1", sha256="7a23639a45f3a0049e11a188e29aaedd10b2f4845f0000cf3e22d6774ebde0af")
version("4.7.1", sha256="9853e0437d834cbed5d3c223bf1d755cadee70e7c964c6e42c4c6783dee5d02c")
version("4.6.0", sha256="e9203391a0b913576153a2ad22a2dc1479b1ec325beb6c46a3237c669aef5a52")
version("4.5.0", sha256="64eb4e58eaf0c77505391c6c9a606cffcb57c6086f3431567a1ef4a25b01fa36")
@@ -26,6 +30,7 @@ class Cppzmq(CMakePackage):
variant("drafts", default=False, description="Build and install draft classes and methods")
depends_on("cmake@3.0.0:", type="build")
+ depends_on("cmake@3.11:", type="build", when="@4.8:")
depends_on("libzmq")
depends_on("libzmq@4.2.2", when="@4.2.2:4.2.3")
depends_on("libzmq+drafts", when="+drafts")