summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libpulsar/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libpulsar/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libpulsar/package.py23
1 files changed, 11 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/libpulsar/package.py b/var/spack/repos/builtin/packages/libpulsar/package.py
index 838321df49..84e9b9c496 100644
--- a/var/spack/repos/builtin/packages/libpulsar/package.py
+++ b/var/spack/repos/builtin/packages/libpulsar/package.py
@@ -9,29 +9,28 @@ from spack.pkg.builtin.boost import Boost
class Libpulsar(CMakePackage):
"""libpulsar is a C/C++ client library implementation of the Apache Pulsar
- protocol."""
+ protocol."""
homepage = "https://github.com/apache/pulsar"
- url = "https://github.com/apache/pulsar/archive/v2.7.0.tar.gz"
+ url = "https://github.com/apache/pulsar/archive/v2.7.0.tar.gz"
- maintainers = ['aahmed-se']
+ maintainers = ["aahmed-se"]
- version('2.7.0',
- sha256='5bf8e5115075e12c848a9e4474cd47067c3200f7ff13c45f624f7383287e8e5e')
+ version("2.7.0", sha256="5bf8e5115075e12c848a9e4474cd47067c3200f7ff13c45f624f7383287e8e5e")
- depends_on('zstd')
+ depends_on("zstd")
# TODO: replace this with an explicit list of components of Boost,
# for instance depends_on('boost +filesystem')
# See https://github.com/spack/spack/pull/22303 for reference
depends_on(Boost.with_default_variants)
- depends_on('protobuf')
- depends_on('pkgconfig')
- depends_on('openssl')
- depends_on('cmake @3.14:', type='build')
- depends_on('curl', type=('build', 'link'))
+ depends_on("protobuf")
+ depends_on("pkgconfig")
+ depends_on("openssl")
+ depends_on("cmake @3.14:", type="build")
+ depends_on("curl", type=("build", "link"))
- root_cmakelists_dir = 'pulsar-client-cpp'
+ root_cmakelists_dir = "pulsar-client-cpp"
def cmake_args(self):
args = ["-DBUILD_PYTHON_WRAPPER=OFF", "-DBUILD_TESTS=OFF"]