diff options
author | James Taliaferro <44253038+taliaferro@users.noreply.github.com> | 2024-04-11 11:58:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 11:58:08 -0700 |
commit | d680a0cb9972946f02153624ef9feaed86eea410 (patch) | |
tree | a75a2d52b453fa97eebabf0972600c7592dc61ed /var | |
parent | efadee26ef3f00d92b8966e1748ca893a6624350 (diff) | |
download | spack-d680a0cb9972946f02153624ef9feaed86eea410.tar.gz spack-d680a0cb9972946f02153624ef9feaed86eea410.tar.bz2 spack-d680a0cb9972946f02153624ef9feaed86eea410.tar.xz spack-d680a0cb9972946f02153624ef9feaed86eea410.zip |
New package: timew (#43585)
* add timewarrior
* fix style checks
* fix style checks
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/timew/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/timew/package.py b/var/spack/repos/builtin/packages/timew/package.py new file mode 100644 index 0000000000..cc88fa2b11 --- /dev/null +++ b/var/spack/repos/builtin/packages/timew/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2024 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.package import * + + +class Timew(CMakePackage): + """ + Timewarrior is Free and Open Source Software that tracks time from the + command line. + """ + + homepage = "https://timewarrior.net/" + url = "https://github.com/GothenburgBitFactory/timewarrior/releases/download/v1.7.1/timew-1.7.1.tar.gz" + + license("MIT", checked_by="taliaferro") + + version("1.7.1", sha256="5e0817fbf092beff12598537c894ec1f34b0a21019f5a3001fe4e6d15c11bd94") |