summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-08-29 12:12:56 +0800
committerGitHub <noreply@github.com>2020-08-28 23:12:56 -0500
commite58c7af1a3879c768edf3b6d1bdc3d8c87702134 (patch)
tree0e0db09bbbb0e501d86f2880316c85d57c91d2cc
parente19f971b7beef11653ed2d06924a1a2a76bff731 (diff)
downloadspack-e58c7af1a3879c768edf3b6d1bdc3d8c87702134.tar.gz
spack-e58c7af1a3879c768edf3b6d1bdc3d8c87702134.tar.bz2
spack-e58c7af1a3879c768edf3b6d1bdc3d8c87702134.tar.xz
spack-e58c7af1a3879c768edf3b6d1bdc3d8c87702134.zip
Add new package: weighttp (#18255)
-rw-r--r--var/spack/repos/builtin/packages/weighttp/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/weighttp/package.py b/var/spack/repos/builtin/packages/weighttp/package.py
new file mode 100644
index 0000000000..f7b1c5adda
--- /dev/null
+++ b/var/spack/repos/builtin/packages/weighttp/package.py
@@ -0,0 +1,23 @@
+# 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 Weighttp(AutotoolsPackage):
+ """A lightweight and simple webserver benchmarking tool"""
+
+ homepage = "http://weighttp.lighttpd.net/"
+ url = "https://github.com/lighttpd/weighttp/archive/weighttp-0.4.tar.gz"
+
+ version('0.4', sha256='b4954f2a1eca118260ffd503a8e3504dd32942e2e61d0fa18ccb6b8166594447')
+ version('0.3', sha256='376e2311af2decb8f6051e4f968d7c0ba92ca60cd563d768beb4868eb9679f45')
+ version('0.2', sha256='bc2b3955126010ce27e0829285720f973df9f144e9cca2568569a657a3d5e634')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('libev')