diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-03-09 16:36:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 09:36:13 +0100 |
commit | bf4c4e9b325dbbeb6e076a3a4c8bc96db6a983bc (patch) | |
tree | 22dd11a99a5047474602789730ca662e5d970153 | |
parent | 4e185d48d118d3678e5eff507f085acf1930bb98 (diff) | |
download | spack-bf4c4e9b325dbbeb6e076a3a4c8bc96db6a983bc.tar.gz spack-bf4c4e9b325dbbeb6e076a3a4c8bc96db6a983bc.tar.bz2 spack-bf4c4e9b325dbbeb6e076a3a4c8bc96db6a983bc.tar.xz spack-bf4c4e9b325dbbeb6e076a3a4c8bc96db6a983bc.zip |
ike-scan: new package at v1.9 (#22160)
-rw-r--r-- | var/spack/repos/builtin/packages/ike-scan/package.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ike-scan/package.py b/var/spack/repos/builtin/packages/ike-scan/package.py new file mode 100644 index 0000000000..ec7eaaadb2 --- /dev/null +++ b/var/spack/repos/builtin/packages/ike-scan/package.py @@ -0,0 +1,15 @@ +# 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 IkeScan(AutotoolsPackage): + """Discover and fingerprint IKE hosts (IPsec VPN Servers).""" + + homepage = "https://github.com/royhills/ike-scan" + url = "https://github.com/royhills/ike-scan/releases/download/1.9/ike-scan-1.9.tar.gz" + + version('1.9', sha256='05d15c7172034935d1e46b01dacf1101a293ae0d06c0e14025a4507656f1a7b6') |