diff options
author | Quinn <quinnm@missouri.edu> | 2019-06-08 15:32:58 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-06-08 13:32:57 -0700 |
commit | 58b797632e62b78ada84ae2ba2ddc274411c6f23 (patch) | |
tree | 3695f5af914460eced11a3548dc20de6ae28ee84 | |
parent | 20e5f816539a06069fbaefcce0c353368006bef7 (diff) | |
download | spack-58b797632e62b78ada84ae2ba2ddc274411c6f23.tar.gz spack-58b797632e62b78ada84ae2ba2ddc274411c6f23.tar.bz2 spack-58b797632e62b78ada84ae2ba2ddc274411c6f23.tar.xz spack-58b797632e62b78ada84ae2ba2ddc274411c6f23.zip |
dateutils: new package (#11623)
* Adding the dateutils package
* Removing superfluous dependencies
-rw-r--r-- | var/spack/repos/builtin/packages/dateutils/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dateutils/package.py b/var/spack/repos/builtin/packages/dateutils/package.py new file mode 100644 index 0000000000..f921865b87 --- /dev/null +++ b/var/spack/repos/builtin/packages/dateutils/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2019 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 Dateutils(AutotoolsPackage): + """Dateutils are a bunch of tools that revolve around fiddling with dates + and times in the command line with a strong focus on use cases that arise + when dealing with large amounts of financial data.""" + + homepage = "http://www.fresse.org/dateutils/" + url = "https://github.com/hroptatyr/dateutils/releases/download/v0.4.6/dateutils-0.4.6.tar.xz" + + version('0.4.6', sha256='26a071317ae5710f226a3e6ba9a54d3764cd9efe3965aecc18e75372088757cd') + version('0.4.5', sha256='16d6a0fe7b7d49ddbb303f33538dd7304a0d4af5a0369bcbf275db6a5060cbde') + + build_directory = 'spack-build' |