summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorCarson Woods <carsonwoods@users.noreply.github.com>2023-06-10 12:40:58 -0600
committerGitHub <noreply@github.com>2023-06-10 20:40:58 +0200
commit4188080899288268fc746823984330ea20923e70 (patch)
treeb581712b49d34c74f2fa948cead4187cea1c0ebc /var
parentef6ea2c93f5517dd56b85c243e2a12d8679dc6fd (diff)
downloadspack-4188080899288268fc746823984330ea20923e70.tar.gz
spack-4188080899288268fc746823984330ea20923e70.tar.bz2
spack-4188080899288268fc746823984330ea20923e70.tar.xz
spack-4188080899288268fc746823984330ea20923e70.zip
Add new Podman package versions and fix patch (#38234)
* Add new podman versions and correct the versions which patch is applied to * Replace the existing maintainer with alecbcs at maintainers request
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/podman/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/podman/package.py b/var/spack/repos/builtin/packages/podman/package.py
index 18d9f01081..18f687ede2 100644
--- a/var/spack/repos/builtin/packages/podman/package.py
+++ b/var/spack/repos/builtin/packages/podman/package.py
@@ -11,15 +11,17 @@ class Podman(Package):
homepage = "https://podman.io"
url = "https://github.com/containers/podman/archive/refs/tags/v4.3.1.tar.gz"
- maintainers("bernhardkaindl")
+ maintainers("alecbcs")
+ version("4.5.1", sha256="ee2c8b02b7fe301057f0382637b995a9c6c74e8d530692d6918e4c509ade6e39")
version("4.3.1", sha256="455c29c4ee78cd6365e5d46e20dd31a5ce4e6e1752db6774253d76bd3ca78813")
version("3.4.7", sha256="4af6606dd072fe946960680611ba65201be435b43edbfc5cc635b2a01a899e6e")
version("3.4.2", sha256="b0c4f9a11eb500b1d440d5e51a6c0c632aa4ac458e2dc0362f50f999eb7fbf31")
# See <https://github.com/containers/podman/issues/16996> for the
# respective issue and the suggested patch
- patch("markdown-utf8.diff", when="@4:")
+ # issue was fixed as of 4.4.0
+ patch("markdown-utf8.diff", when="@4:4.3.1")
depends_on("go", type="build")
depends_on("go-md2man", type="build")