summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2022-10-13 13:22:09 -0500
committerGitHub <noreply@github.com>2022-10-13 12:22:09 -0600
commit8ce1574e0cd88cfa14391cf3c9362813109e9363 (patch)
tree5c391f32e65e5de483cbd183dbb69bd90ac2660a
parent7f24ab9b0a9de3673688e3b54e681d6a66663894 (diff)
downloadspack-8ce1574e0cd88cfa14391cf3c9362813109e9363.tar.gz
spack-8ce1574e0cd88cfa14391cf3c9362813109e9363.tar.bz2
spack-8ce1574e0cd88cfa14391cf3c9362813109e9363.tar.xz
spack-8ce1574e0cd88cfa14391cf3c9362813109e9363.zip
py-meson: remove package (#33295)
-rw-r--r--var/spack/repos/builtin/packages/py-meson-python/package.py2
-rw-r--r--var/spack/repos/builtin/packages/py-meson/package.py26
2 files changed, 1 insertions, 27 deletions
diff --git a/var/spack/repos/builtin/packages/py-meson-python/package.py b/var/spack/repos/builtin/packages/py-meson-python/package.py
index eba4d613f9..323a997074 100644
--- a/var/spack/repos/builtin/packages/py-meson-python/package.py
+++ b/var/spack/repos/builtin/packages/py-meson-python/package.py
@@ -17,7 +17,7 @@ class PyMesonPython(PythonPackage):
version("0.7.0", sha256="9fcfa350f44ca80dd4f5f9c3d251725434acf9a07d9618f382e6cc4629dcbe84")
depends_on("python@3.7:", type=("build", "run"))
- depends_on("py-meson@0.62:", type=("build", "run"))
+ depends_on("meson@0.62:", type=("build", "run"))
depends_on("py-ninja", type=("build", "run"))
depends_on("py-pyproject-metadata@0.5:", type=("build", "run"))
depends_on("py-tomli@1:", type=("build", "run"))
diff --git a/var/spack/repos/builtin/packages/py-meson/package.py b/var/spack/repos/builtin/packages/py-meson/package.py
deleted file mode 100644
index 0c71dc6887..0000000000
--- a/var/spack/repos/builtin/packages/py-meson/package.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2013-2022 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 PyMeson(PythonPackage):
- """A high performance build system.
-
- Meson is a cross-platform build system designed to be both as fast and as user
- friendly as possible. It supports many languages and compilers, including GCC,
- Clang, PGI, Intel, and Visual Studio. Its build definitions are written in a simple
- non-Turing complete DSL.
- """
-
- homepage = "https://mesonbuild.com/"
- pypi = "meson/meson-0.62.2.tar.gz"
-
- maintainers = ["eli-schwartz", "adamjstewart"]
-
- version("0.62.2", sha256="a7669e4c4110b06b743d57cc5d6432591a6677ef2402139fe4f3d42ac13380b0")
-
- depends_on("python@3.7:", type=("build", "run"))
- depends_on("py-setuptools@42:", type="build")