summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJoão Marcos <joao.marcossantos@outlook.com>2022-09-12 03:44:05 -0300
committerGitHub <noreply@github.com>2022-09-12 08:44:05 +0200
commit7382a3ca8976c3aaebeb0dd0aca25eb6e254c658 (patch)
treedafaba81631f7b0039f5dc2e508fdc7bc1b102ad /var
parentd4ec0da49acab19621bd113a1acb7054eae04869 (diff)
downloadspack-7382a3ca8976c3aaebeb0dd0aca25eb6e254c658.tar.gz
spack-7382a3ca8976c3aaebeb0dd0aca25eb6e254c658.tar.bz2
spack-7382a3ca8976c3aaebeb0dd0aca25eb6e254c658.tar.xz
spack-7382a3ca8976c3aaebeb0dd0aca25eb6e254c658.zip
distbench: add new package (#32605)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/distbench/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/distbench/package.py b/var/spack/repos/builtin/packages/distbench/package.py
new file mode 100644
index 0000000000..6c4f499d4b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/distbench/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2022 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 Distbench(MakefilePackage):
+ """Distbench is a tool for synthesizing a variety of network traffic patterns used in
+ distributed systems, and evaluating their performance across multiple networking stacks."""
+
+ homepage = "https://github.com/google/distbench"
+ url = "https://github.com/google/distbench/archive/refs/tags/v1.0rc4.tar.gz"
+
+ version("1.0rc4", sha256="adc8da85890219800207d0d4cd7ffd63193d2c4007dba7c44cf545cc13675ff7")
+
+ depends_on("bazel", type="build")