From 17c3d6ab191845a0f6861c09c35245e218f3f42a Mon Sep 17 00:00:00 2001 From: Gregory Becker Date: Tue, 30 May 2023 16:11:36 -0700 Subject: [PATCH] colima wip --- .../repos/builtin/packages/colima/package.py | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 var/spack/repos/builtin/packages/colima/package.py diff --git a/var/spack/repos/builtin/packages/colima/package.py b/var/spack/repos/builtin/packages/colima/package.py new file mode 100644 index 00000000000..6eff91d69f1 --- /dev/null +++ b/var/spack/repos/builtin/packages/colima/package.py @@ -0,0 +1,39 @@ +# Copyright 2013-2023 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) + +# ---------------------------------------------------------------------------- +# If you submit this package back to Spack as a pull request, +# please first remove this boilerplate and all FIXME comments. +# +# This is a template package file for Spack. We've put "FIXME" +# next to all the things you'll want to change. Once you've handled +# them, you can save this file and test your package like this: +# +# spack install colima +# +# You can edit this file again by typing: +# +# spack edit colima +# +# See the Spack documentation for more information on packaging. +# ---------------------------------------------------------------------------- + +from spack.package import * + + +class Colima(MakefilePackage): + """FIXME: Put a proper description of your package here.""" + + # FIXME: Add a proper url for your package's homepage here. + homepage = "https://www.example.com" + url = "https://github.com/abiosoft/colima/archive/refs/tags/v0.5.4.tar.gz" + + # FIXME: Add a list of GitHub accounts to + # notify when the package is updated. + # maintainers("github_user1", "github_user2") + + version("0.5.4", sha256="9dc25fee68c02a79493d61ecf563832ce483955db102fbca64d112957ae2e6e8") + + depends_on("go")