summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2021-03-21 02:23:04 +0800
committerGitHub <noreply@github.com>2021-03-20 18:23:04 +0000
commit5a30e5795f70119b12910ca89f2d331b412d6c51 (patch)
treed6f12a32fe7bf05e7b3cfb6eab6602c5bdcbeae4
parent4bdd014c821aea292958527738c6eb7d74f06776 (diff)
downloadspack-5a30e5795f70119b12910ca89f2d331b412d6c51.tar.gz
spack-5a30e5795f70119b12910ca89f2d331b412d6c51.tar.bz2
spack-5a30e5795f70119b12910ca89f2d331b412d6c51.tar.xz
spack-5a30e5795f70119b12910ca89f2d331b412d6c51.zip
libapreq2: add package at v2.13 (#22136)
-rw-r--r--var/spack/repos/builtin/packages/libapreq2/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libapreq2/package.py b/var/spack/repos/builtin/packages/libapreq2/package.py
new file mode 100644
index 0000000000..f8ffde6ab2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libapreq2/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2021 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 Libapreq2(AutotoolsPackage):
+ """httpd-apreq is subproject of the Apache HTTP Server Project
+ whose committers develop and maintain the libapreq C library
+ and its language bindings for Perl (contributions for additional
+ language bindings are most welcome)."""
+
+ homepage = "https://github.com/gitpan/libapreq2"
+ url = "https://github.com/gitpan/libapreq2/archive/gitpan_version/2.13.tar.gz"
+
+ version('2.13', sha256='477ce8207e89869e1e4520286697a56d4bd6af348899849ecef43c88bf0872d1')
+ version('2.12', sha256='75cc1daa60e781270178c8f9fbe9c68231a7bc96bcc5c7a970cfce75d784b568')
+ version('2.08', sha256='9f491588957415ebe0decdf6758fcb5c0d3eaf05a573bdd51de499ae111ffc53')
+
+ depends_on('apr')
+ depends_on('apr-util')
+ depends_on('httpd')
+ depends_on('perl', type='build')