From d680a0cb9972946f02153624ef9feaed86eea410 Mon Sep 17 00:00:00 2001 From: James Taliaferro <44253038+taliaferro@users.noreply.github.com> Date: Thu, 11 Apr 2024 11:58:08 -0700 Subject: [PATCH] New package: timew (#43585) * add timewarrior * fix style checks * fix style checks --- .../repos/builtin/packages/timew/package.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 var/spack/repos/builtin/packages/timew/package.py 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")