diff options
author | James Taliaferro <44253038+taliaferro@users.noreply.github.com> | 2024-04-18 10:05:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-18 10:05:15 -0700 |
commit | 5cbb59f2b8bc97107092af769e3e5bc7ecbd81fd (patch) | |
tree | d21af6df7968e617d75575ab035625bf8cf881e6 /var | |
parent | f29fa1cfdf2874e981c1682e89423050347e5552 (diff) | |
download | spack-5cbb59f2b8bc97107092af769e3e5bc7ecbd81fd.tar.gz spack-5cbb59f2b8bc97107092af769e3e5bc7ecbd81fd.tar.bz2 spack-5cbb59f2b8bc97107092af769e3e5bc7ecbd81fd.tar.xz spack-5cbb59f2b8bc97107092af769e3e5bc7ecbd81fd.zip |
New package: editorconfig (#43670)
* New package: editorconfig
* remove FIXMEs
* add description for editorconfig
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/editorconfig/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/editorconfig/package.py b/var/spack/repos/builtin/packages/editorconfig/package.py new file mode 100644 index 0000000000..a6c2fd8131 --- /dev/null +++ b/var/spack/repos/builtin/packages/editorconfig/package.py @@ -0,0 +1,22 @@ +# 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 Editorconfig(CMakePackage): + """ + EditorConfig helps maintain consistent coding styles for multiple + developers working on the same project across various editors and IDEs. + """ + + homepage = "https://editorconfig.org/" + url = "https://github.com/editorconfig/editorconfig-core-c/archive/refs/tags/v0.12.7.tar.gz" + + license("BSD-2-Clause", checked_by="taliaferro") + + version("0.12.7", sha256="f89d2e144fd67bdf0d7acfb2ac7618c6f087e1b3f2c3a707656b4180df422195") + + depends_on("pcre2") |