diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2020-01-15 21:54:14 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-02-03 17:12:40 -0500 |
commit | 3ab5647d7cfa9d46a155be80934e0bc8a44dbf4b (patch) | |
tree | 767bbbe0b6fec7e7106f3e94dbfdb2e83c2f612b | |
parent | 002acb526310415a8e46d3e1d020622324e103cc (diff) | |
download | meta-virtualization-3ab5647d7cfa9d46a155be80934e0bc8a44dbf4b.tar.gz |
podman: bump to latest release 1.6.4
Bump to latest podman release 1.6.4. The changelog lists some new
features but mostly bugfixes between 1.6.1 and 1.6.4.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/podman/files/0001-Makefile-Fix-docker-documentation-install-and-genera.patch | 43 | ||||
-rw-r--r-- | recipes-containers/podman/podman_git.bb | 7 |
2 files changed, 47 insertions, 3 deletions
diff --git a/recipes-containers/podman/files/0001-Makefile-Fix-docker-documentation-install-and-genera.patch b/recipes-containers/podman/files/0001-Makefile-Fix-docker-documentation-install-and-genera.patch new file mode 100644 index 00000000..59224aff --- /dev/null +++ b/recipes-containers/podman/files/0001-Makefile-Fix-docker-documentation-install-and-genera.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | From 9558797fb7bb019810d18f7acdde93adc35d02cc Mon Sep 17 00:00:00 2001 | ||
2 | From: Morten Linderud <morten@linderud.pw> | ||
3 | Date: Sat, 2 Nov 2019 12:58:38 +0100 | ||
4 | Subject: [PATCH] [Makefile] Fix docker documentation install and generation | ||
5 | |||
6 | The final versions of the documentation has been shifted from `docs/` to | ||
7 | `docs/build/man`. Most of the Makefile has been changed accordingly, but | ||
8 | the docker documentation generation was not. | ||
9 | |||
10 | Introduced by #4354 | ||
11 | |||
12 | Signed-off-by: Morten Linderud <morten@linderud.pw> | ||
13 | Upstream-Status: Backport | ||
14 | Signed-off-by: Stefan Agner <stefan.agner@toradex.com> | ||
15 | --- | ||
16 | Makefile | 4 ++-- | ||
17 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
18 | |||
19 | diff --git a/Makefile b/Makefile | ||
20 | index 98b7bbdf..feb8e0ca 100644 | ||
21 | --- a/src/import/Makefile | ||
22 | +++ b/src/import/Makefile | ||
23 | @@ -376,7 +376,7 @@ podman-remote-%-release: | ||
24 | $(MAKE) podman-remote-v$(RELEASE_NUMBER)-$*.zip | ||
25 | |||
26 | docker-docs: docs | ||
27 | - (cd docs; ./dckrman.sh *.1) | ||
28 | + (cd docs; ./dckrman.sh ./build/man/*.1) | ||
29 | |||
30 | changelog: ## Generate changelog | ||
31 | @echo "Creating changelog from $(CHANGELOG_BASE) to $(CHANGELOG_TARGET)" | ||
32 | @@ -425,7 +425,7 @@ install.cni: | ||
33 | install.docker: docker-docs | ||
34 | install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1 | ||
35 | install ${SELINUXOPT} -m 755 docker $(DESTDIR)$(BINDIR)/docker | ||
36 | - install ${SELINUXOPT} -m 644 docs/docker*.1 -t $(DESTDIR)$(MANDIR)/man1 | ||
37 | + install ${SELINUXOPT} -m 644 docs/build/man/docker*.1 -t $(DESTDIR)$(MANDIR)/man1 | ||
38 | |||
39 | install.systemd: | ||
40 | install ${SELINUXOPT} -m 755 -d ${DESTDIR}${SYSTEMDDIR} ${DESTDIR}${USERSYSTEMDDIR} ${DESTDIR}${TMPFILESDIR} | ||
41 | -- | ||
42 | 2.17.1 | ||
43 | |||
diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb index 50d07eab..8a5a13a1 100644 --- a/recipes-containers/podman/podman_git.bb +++ b/recipes-containers/podman/podman_git.bb | |||
@@ -24,9 +24,10 @@ python __anonymous() { | |||
24 | raise bb.parse.SkipRecipe(msg) | 24 | raise bb.parse.SkipRecipe(msg) |
25 | } | 25 | } |
26 | 26 | ||
27 | SRCREV = "233d95f4f0a815f11d1c1ae9aba16781c4eb2700" | 27 | SRCREV = "5cc92849f7fc9dd734ca2fd8f3ae8830b9a7eb26" |
28 | SRC_URI = " \ | 28 | SRC_URI = " \ |
29 | git://github.com/containers/libpod.git;branch=master \ | 29 | git://github.com/containers/libpod.git;branch=v1.6 \ |
30 | file://0001-Makefile-Fix-docker-documentation-install-and-genera.patch \ | ||
30 | " | 31 | " |
31 | 32 | ||
32 | LICENSE = "Apache-2.0" | 33 | LICENSE = "Apache-2.0" |
@@ -36,7 +37,7 @@ GO_IMPORT = "import" | |||
36 | 37 | ||
37 | S = "${WORKDIR}/git" | 38 | S = "${WORKDIR}/git" |
38 | 39 | ||
39 | PV = "1.6.1+git${SRCREV}" | 40 | PV = "1.6.4+git${SRCREV}" |
40 | 41 | ||
41 | PACKAGES =+ "${PN}-contrib" | 42 | PACKAGES =+ "${PN}-contrib" |
42 | 43 | ||