summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-08-30 00:52:09 +0800
committerGitHub <noreply@github.com>2020-08-29 11:52:09 -0500
commitcf170b5ff1406c3bb7458cb82f92c5f7acf01aa7 (patch)
treea7c94f121faabd1810dd761abdbe9b52a810b22a /var
parent8b212c78458d7cd4efcf255141057df0a3b2781f (diff)
downloadspack-cf170b5ff1406c3bb7458cb82f92c5f7acf01aa7.tar.gz
spack-cf170b5ff1406c3bb7458cb82f92c5f7acf01aa7.tar.bz2
spack-cf170b5ff1406c3bb7458cb82f92c5f7acf01aa7.tar.xz
spack-cf170b5ff1406c3bb7458cb82f92c5f7acf01aa7.zip
Add new package: varnish-cache (#18258)
* Add new package: varnish-cache * Add dependency: python
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/varnish-cache/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/varnish-cache/package.py b/var/spack/repos/builtin/packages/varnish-cache/package.py
new file mode 100644
index 0000000000..8d5c02f6cc
--- /dev/null
+++ b/var/spack/repos/builtin/packages/varnish-cache/package.py
@@ -0,0 +1,29 @@
+# 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 VarnishCache(AutotoolsPackage):
+ """This is Varnish Cache, the high-performance HTTP accelerator."""
+
+ homepage = "https://www.varnish-cache.org/"
+ url = "https://github.com/varnishcache/varnish-cache/archive/varnish-6.4.0.tar.gz"
+
+ version('6.4.0', sha256='d9702c2c689c5d4ecd911886f769ddf22f46ac0722e275bee4033928cab09243')
+ version('6.3.2', sha256='e50f3dd4e26d5669c5b73657cdb0d5ddac7dcc3cfa1761a983afa24b659f3785')
+ version('6.3.1', sha256='8cc57360c1db36e8c77fc51304a935803a06247f6d6120fa47e8345efadf17a9')
+ version('6.3.0', sha256='c7170d4bc57f1d2454da046fc5e43e2d19a804448d2dd839fa5c33f76bd677bb')
+ version('6.2.3', sha256='64cd273aa155c78c21e74def53622be5920c8a7d952fee74f0663e57a01c9a9d')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('pcre')
+ depends_on('readline')
+ depends_on('python', type=('build', 'run'))
+ depends_on('py-sphinx', type=('build', 'run'))
+ depends_on('py-docutils', type=('build', 'run'))