podman: New version 4.3.1 (#34817)
This commit is contained in:
parent
9c56b97aa9
commit
9687491568
20
var/spack/repos/builtin/packages/podman/markdown-utf8.diff
Normal file
20
var/spack/repos/builtin/packages/podman/markdown-utf8.diff
Normal file
@ -0,0 +1,20 @@
|
||||
--- a/hack/markdown-preprocess
|
||||
+++ b/hack/markdown-preprocess
|
||||
@@ -36,7 +36,7 @@
|
||||
outfile = os.path.splitext(infile)[0]
|
||||
outfile_tmp = outfile + '.tmp.' + str(os.getpid())
|
||||
|
||||
- with open(infile, 'r') as fh_in, open(outfile_tmp, 'w') as fh_out:
|
||||
+ with open(infile, 'r', encoding='utf-8') as fh_in, open(outfile_tmp, 'w', encoding='utf-8') as fh_out:
|
||||
for line in fh_in:
|
||||
# '@@option foo' -> include file options/foo.md
|
||||
if line.startswith('@@option '):
|
||||
@@ -63,7 +63,7 @@
|
||||
# treats them as one line and will unwantedly render the
|
||||
# comment in its output.
|
||||
fh_out.write("\n[//]: # (BEGIN included file " + path + ")\n")
|
||||
- with open(path, 'r') as fh_included:
|
||||
+ with open(path, 'r', encoding='utf-8') as fh_included:
|
||||
for opt_line in fh_included:
|
||||
opt_line = self.replace_type(opt_line)
|
||||
opt_line = opt_line.replace('<<subcommand>>', self.podman_subcommand())
|
@ -13,8 +13,13 @@ class Podman(Package):
|
||||
url = "https://github.com/containers/podman/archive/v3.4.2.tar.gz"
|
||||
maintainers = ["bernhardkaindl"]
|
||||
|
||||
version("4.3.1", sha256="455c29c4ee78cd6365e5d46e20dd31a5ce4e6e1752db6774253d76bd3ca78813")
|
||||
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:")
|
||||
|
||||
depends_on("go", type="build")
|
||||
depends_on("go-md2man", type="build")
|
||||
depends_on("pkgconfig", type="build")
|
||||
|
Loading…
Reference in New Issue
Block a user