summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ps-lite/package.py
blob: 84360da87822ad87290c6c6d00dda2c486499c8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PsLite(CMakePackage):
    """ps-lite is A light and efficient implementation
    of the parameter server framework."""

    homepage = "https://github.com/dmlc/ps-lite"
    git = "https://github.com/dmlc/ps-lite.git"

    license("Apache-2.0")

    version("master", branch="master")
    version("20170328", commit="acdb698fa3bb80929ef83bb37c705f025e119b82")

    depends_on("protobuf@3:")
    depends_on("libzmq")

    patch("cmake.patch")