summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMathew Cleveland <clevelam@lanl.gov>2023-03-22 14:57:49 -0600
committerGitHub <noreply@github.com>2023-03-22 16:57:49 -0400
commit37fbfcf7fe610f7ce3f7cc2c0af82bac80aae807 (patch)
treea4ac8bd09452ab18fcb326302a547aefcbbe0af7 /var
parent311d3be18e5b86afab9c7efc962de010f9eef3d6 (diff)
downloadspack-37fbfcf7fe610f7ce3f7cc2c0af82bac80aae807.tar.gz
spack-37fbfcf7fe610f7ce3f7cc2c0af82bac80aae807.tar.bz2
spack-37fbfcf7fe610f7ce3f7cc2c0af82bac80aae807.tar.xz
spack-37fbfcf7fe610f7ce3f7cc2c0af82bac80aae807.zip
Add opppy-0_1_6 and opppy-0_1_7 releases to the spack recipes (#36326)
* add opppy-0_1_6 and opppy-0_1_7 releases to the spack recipes * update urls * remove sphinx from the dependency list * cleanup OPPPY versions to capture OPPPY-0_1_1 tag descrepency * one more attempt at fixing the url for opppy-0_1_1 (simpler fix) --------- Co-authored-by: Cleveland <cleveland@lanl.gov> Co-authored-by: clevelam <clevelam@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-opppy/package.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-opppy/package.py b/var/spack/repos/builtin/packages/py-opppy/package.py
index 00c66d4429..538960874f 100644
--- a/var/spack/repos/builtin/packages/py-opppy/package.py
+++ b/var/spack/repos/builtin/packages/py-opppy/package.py
@@ -11,20 +11,25 @@ class PyOpppy(PythonPackage):
analysis library designed to extract, store, and plot information from
output and dump files generated by scientific software packages."""
- homepage = "https://github.com/lanl/opppy"
- url = "https://github.com/lanl/OPPPY/archive/opppy-0_1_2.tar.gz"
- git = "https://github.com/lanl/opppy.git"
+ homepage = "https://github.com/lanl/OPPPY"
+ url = "https://github.com/lanl/OPPPY/archive/refs/tags/opppy-0_1_2.tar.gz"
+ git = "https://github.com/lanl/OPPPY.git"
maintainers("clevelam")
version("master", branch="master")
+ version("0_1_7", sha256="6ef17e289de2c469ac931288fc5debee77583b300e35fa72080ee06d0e27f7af")
+ version("0_1_6", sha256="1f385ffa39c90d3b338aceb563c5f4952d01041fff0ec94084c84e9e1107023e")
version("0_1_5", sha256="d9df166d347c18d4f145059b4c2fb23dbfbecf0dd5a3398f29e52d3e261844b0")
version("0_1_4", sha256="22d81a64856f4c12f8079440c837d7d1f45153e68c405b45bed8b6d35831e948")
version("0_1_3", sha256="c3ca97f2ff8ab319b5c7257baa8cab852387dc00d426b4534c06f0894363c541")
version("0_1_2", sha256="ef3795d3164fa0aa7ea7da7e223d6d0a48d2960aefd03a7d90cdb8b8f480cd4c")
- version("0_1_1", sha256="505c023853e75552abc65de9777a125ecb6a99a1cb4e605a4f702af837e3168b")
+ version(
+ "0_1_1",
+ sha256="505c023853e75552abc65de9777a125ecb6a99a1cb4e605a4f702af837e3168b",
+ url="https://github.com/lanl/OPPPY/archive/refs/tags/OPPPY-0_1_1.tar.gz",
+ )
depends_on("py-setuptools", type=("build"))
- depends_on("py-sphinx", type=("build"))
depends_on("py-numpy@1.6:", type=("build", "run"))
depends_on("python@3:", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"))