summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-06-16 12:08:45 +0800
committerGitHub <noreply@github.com>2020-06-16 06:08:45 +0200
commit6f07f8ae3efe28bb62376a0cf8f51b7effc56c98 (patch)
treee271d79ddad45835e9e29709a0b5c0864672c91f /var
parentd1aa54115c2af1e86cecc558806ae4a3127122e3 (diff)
downloadspack-6f07f8ae3efe28bb62376a0cf8f51b7effc56c98.tar.gz
spack-6f07f8ae3efe28bb62376a0cf8f51b7effc56c98.tar.bz2
spack-6f07f8ae3efe28bb62376a0cf8f51b7effc56c98.tar.xz
spack-6f07f8ae3efe28bb62376a0cf8f51b7effc56c98.zip
netdata: added new package at v1.22.1 (#17094)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/netdata/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/netdata/package.py b/var/spack/repos/builtin/packages/netdata/package.py
new file mode 100644
index 0000000000..830e233452
--- /dev/null
+++ b/var/spack/repos/builtin/packages/netdata/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2020 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 import *
+
+
+class Netdata(AutotoolsPackage):
+ """Real-time performance monitoring, done right!"""
+
+ homepage = "https://www.netdata.cloud/"
+ url = "https://github.com/netdata/netdata/archive/v1.22.1.tar.gz"
+
+ version('1.22.1', sha256='6efd785eab82f98892b4b4017cadfa4ce1688985915499bc75f2f888765a3446')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('libuv')
+ depends_on('libuuid')