diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-04-23 00:23:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 11:23:40 -0500 |
commit | b874b3e1fe90d48bdcb0058b35082114a81b9e21 (patch) | |
tree | 0436aab79e8591c2b5d02aa5cfa0eee8763c7a6f /var | |
parent | 169b9bebd88b16ab4374271d12ace035417a8811 (diff) | |
download | spack-b874b3e1fe90d48bdcb0058b35082114a81b9e21.tar.gz spack-b874b3e1fe90d48bdcb0058b35082114a81b9e21.tar.bz2 spack-b874b3e1fe90d48bdcb0058b35082114a81b9e21.tar.xz spack-b874b3e1fe90d48bdcb0058b35082114a81b9e21.zip |
Add new package: isc-dhcp (#16230)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/isc-dhcp/package.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/isc-dhcp/package.py b/var/spack/repos/builtin/packages/isc-dhcp/package.py new file mode 100644 index 0000000000..9a5ab76455 --- /dev/null +++ b/var/spack/repos/builtin/packages/isc-dhcp/package.py @@ -0,0 +1,32 @@ +# 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 IscDhcp(AutotoolsPackage): + """ISC DHCP offers a complete open source solution for + implementing DHCP servers, relay agents, and clients. ISC + DHCP supports both IPv4 and IPv6, and is suitable for use + in high-volume and high-reliability applications.""" + + homepage = "https://www.isc.org/dhcp/" + url = "https://downloads.isc.org/isc/dhcp/4.4.2/dhcp-4.4.2.tar.gz" + list_url = "https://downloads.isc.org/isc/dhcp" + list_depth = 1 + + parallel = False + + version('4.4.2', sha256='1a7ccd64a16e5e68f7b5e0f527fd07240a2892ea53fe245620f4f5f607004521') + version('4.4.1', sha256='2a22508922ab367b4af4664a0472dc220cc9603482cf3c16d9aff14f3a76b608') + version('4.4.0', sha256='4a90be0f22ad81c987f5584661b60a594f1b21c581b82bfba3ae60f89ae44397') + version('4.3.6', sha256='a41eaf6364f1377fe065d35671d9cf82bbbc8f21207819b2b9f33f652aec6f1b') + version('4.3.5', sha256='eb95936bf15d2393c55dd505bc527d1d4408289cec5a9fa8abb99f7577e7f954') + + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('bind9', type='build') |