diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-03-20 22:14:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 15:14:40 +0100 |
commit | 17e51b2989887bb618224a915c4d1479fcde52e9 (patch) | |
tree | 678dc5f70b3f9ecdca66415fba299295b5992852 /var | |
parent | 806f02438d9039b17ae789d65587f70f1b9a7abc (diff) | |
download | spack-17e51b2989887bb618224a915c4d1479fcde52e9.tar.gz spack-17e51b2989887bb618224a915c4d1479fcde52e9.tar.bz2 spack-17e51b2989887bb618224a915c4d1479fcde52e9.tar.xz spack-17e51b2989887bb618224a915c4d1479fcde52e9.zip |
args: add new package at v6.2.3 (#22132)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/args/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/args/package.py b/var/spack/repos/builtin/packages/args/package.py new file mode 100644 index 0000000000..c6c3727b8c --- /dev/null +++ b/var/spack/repos/builtin/packages/args/package.py @@ -0,0 +1,20 @@ +# 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 Args(CMakePackage): + """A simple header-only C++ argument parser library. Supposed to be + flexible and powerful, and attempts to be compatible with the + functionality of the Python standard argparse library (though not + necessarily the API).""" + + homepage = "https://taywee.github.io/args" + url = "https://github.com/Taywee/args/archive/6.2.3.tar.gz" + + version('6.2.3', sha256='c202d15fc4b30519a08bae7df9e6f4fdc40ac2434ba65d83a108ebbf6e4822c2') + version('6.2.2', sha256='8016fb0fc079d746433be3df9cf662e3e931e730aaf9f69f2287eac79ac643c1') + version('6.2.1', sha256='699b91fae4509b09974274838e2038612da24eeae89e62d0bc580457a9e261b0') |