All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11
@ 2020-03-11 23:15 Stefan Agner
  2020-03-11 23:15 ` [meta-virtualization][PATCH 2/3] podman: bump to the latest version 1.8.1 Stefan Agner
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Stefan Agner @ 2020-03-11 23:15 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Stefan Agner

From: Stefan Agner <stefan.agner@toradex.com>

Bump to latest version 2.0.11 of conmon.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
---
 recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} (93%)

diff --git a/recipes-containers/conmon/conmon_2.0.9.bb b/recipes-containers/conmon/conmon_2.0.11.bb
similarity index 93%
rename from recipes-containers/conmon/conmon_2.0.9.bb
rename to recipes-containers/conmon/conmon_2.0.11.bb
index af7847b..a5bd527 100644
--- a/recipes-containers/conmon/conmon_2.0.9.bb
+++ b/recipes-containers/conmon/conmon_2.0.11.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
 
 DEPENDS = "glib-2.0"
 
-SRCREV = "60b42f20f222df9da07a01ee444327348b9f54ee"
+SRCREV = "ff9d97a08d7a4b58267ac03719786e4e7258cecf"
 SRC_URI = "\
     git://github.com/containers/conmon.git \
 "
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-virtualization][PATCH 2/3] podman: bump to the latest version 1.8.1
  2020-03-11 23:15 [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Stefan Agner
@ 2020-03-11 23:15 ` Stefan Agner
  2020-03-11 23:15 ` [meta-virtualization][PATCH 3/3] podman: add system service for podman Stefan Agner
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Agner @ 2020-03-11 23:15 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Stefan Agner

From: Stefan Agner <stefan.agner@toradex.com>

Bump to the newest podman release 1.8.1. Many new networking features
and a new HTTP API has been added since 1.6.1.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
---
 recipes-containers/podman/podman_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb
index 5db9ed2..c996028 100644
--- a/recipes-containers/podman/podman_git.bb
+++ b/recipes-containers/podman/podman_git.bb
@@ -24,7 +24,7 @@ python __anonymous() {
         raise bb.parse.SkipRecipe(msg)
 }
 
-SRCREV = "b7ce1157b00af09f4a09e39b377aa3abff46ee05"
+SRCREV = "444a19cdd2e6108c75f6c1aadc1a2a9138a8bd73"
 SRC_URI = " \
     git://github.com/containers/libpod.git;branch=master \
 "
@@ -36,7 +36,7 @@ GO_IMPORT = "import"
 
 S = "${WORKDIR}/git"
 
-PV = "1.7.0+git${SRCREV}"
+PV = "1.8.1+git${SRCREV}"
 
 PACKAGES =+ "${PN}-contrib"
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-virtualization][PATCH 3/3] podman: add system service for podman
  2020-03-11 23:15 [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Stefan Agner
  2020-03-11 23:15 ` [meta-virtualization][PATCH 2/3] podman: bump to the latest version 1.8.1 Stefan Agner
@ 2020-03-11 23:15 ` Stefan Agner
  2020-03-14  1:53 ` [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Bruce Ashfield
  2020-03-14  1:54 ` Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Agner @ 2020-03-11 23:15 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Stefan Agner

From: Stefan Agner <stefan.agner@toradex.com>

Add system service for podman which starts a podman instance allow to
access the new HTTP based API (apiv2).

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
---
 recipes-containers/podman/podman_git.bb | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb
index c996028..aa6b25b 100644
--- a/recipes-containers/podman/podman_git.bb
+++ b/recipes-containers/podman/podman_git.bb
@@ -97,6 +97,12 @@ do_install() {
 	if ${@bb.utils.contains('PACKAGECONFIG', 'docker', 'true', 'false', d)}; then
 		oe_runmake install.docker DESTDIR="${D}"
 	fi
+	if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+		install -d ${D}${systemd_unitdir}/system
+		install -m 644 ${S}/src/import/contrib/systemd/system/podman.service ${D}/${systemd_unitdir}/system
+		install -m 644 ${S}/src/import/contrib/systemd/system/podman.socket ${D}/${systemd_unitdir}/system
+		rm -f ${D}/${systemd_unitdir}/system/docker.service.rpm
+	fi
 }
 
 FILES_${PN} += " \
@@ -106,6 +112,8 @@ FILES_${PN} += " \
     ${sysconfdir}/cni \
 "
 
+SYSTEMD_SERVICE_${PN} = "podman.service podman.socket"
+
 RDEPENDS_${PN} += "conmon virtual/runc iptables cni skopeo"
 RRECOMMENDS_${PN} += "slirp4netns"
 RCONFLICTS_${PN} = "${@bb.utils.contains('PACKAGECONFIG', 'docker', 'docker', '', d)}"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11
  2020-03-11 23:15 [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Stefan Agner
  2020-03-11 23:15 ` [meta-virtualization][PATCH 2/3] podman: bump to the latest version 1.8.1 Stefan Agner
  2020-03-11 23:15 ` [meta-virtualization][PATCH 3/3] podman: add system service for podman Stefan Agner
@ 2020-03-14  1:53 ` Bruce Ashfield
  2020-03-14  1:54 ` Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2020-03-14  1:53 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

merged.

Bruce

In message: [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11
on 11/03/2020 Stefan Agner wrote:

> From: Stefan Agner <stefan.agner@toradex.com>
> 
> Bump to latest version 2.0.11 of conmon.
> 
> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
> ---
>  recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} (93%)
> 
> diff --git a/recipes-containers/conmon/conmon_2.0.9.bb b/recipes-containers/conmon/conmon_2.0.11.bb
> similarity index 93%
> rename from recipes-containers/conmon/conmon_2.0.9.bb
> rename to recipes-containers/conmon/conmon_2.0.11.bb
> index af7847b..a5bd527 100644
> --- a/recipes-containers/conmon/conmon_2.0.9.bb
> +++ b/recipes-containers/conmon/conmon_2.0.11.bb
> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
>  
>  DEPENDS = "glib-2.0"
>  
> -SRCREV = "60b42f20f222df9da07a01ee444327348b9f54ee"
> +SRCREV = "ff9d97a08d7a4b58267ac03719786e4e7258cecf"
>  SRC_URI = "\
>      git://github.com/containers/conmon.git \
>  "
> -- 
> 2.17.1
> 

> 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11
  2020-03-11 23:15 [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Stefan Agner
                   ` (2 preceding siblings ...)
  2020-03-14  1:53 ` [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Bruce Ashfield
@ 2020-03-14  1:54 ` Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2020-03-14  1:54 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

merged.

Bruce

In message: [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11
on 11/03/2020 Stefan Agner wrote:

> From: Stefan Agner <stefan.agner@toradex.com>
> 
> Bump to latest version 2.0.11 of conmon.
> 
> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
> ---
>  recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename recipes-containers/conmon/{conmon_2.0.9.bb => conmon_2.0.11.bb} (93%)
> 
> diff --git a/recipes-containers/conmon/conmon_2.0.9.bb b/recipes-containers/conmon/conmon_2.0.11.bb
> similarity index 93%
> rename from recipes-containers/conmon/conmon_2.0.9.bb
> rename to recipes-containers/conmon/conmon_2.0.11.bb
> index af7847b..a5bd527 100644
> --- a/recipes-containers/conmon/conmon_2.0.9.bb
> +++ b/recipes-containers/conmon/conmon_2.0.11.bb
> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
>  
>  DEPENDS = "glib-2.0"
>  
> -SRCREV = "60b42f20f222df9da07a01ee444327348b9f54ee"
> +SRCREV = "ff9d97a08d7a4b58267ac03719786e4e7258cecf"
>  SRC_URI = "\
>      git://github.com/containers/conmon.git \
>  "
> -- 
> 2.17.1
> 

> 



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-03-14  1:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-11 23:15 [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Stefan Agner
2020-03-11 23:15 ` [meta-virtualization][PATCH 2/3] podman: bump to the latest version 1.8.1 Stefan Agner
2020-03-11 23:15 ` [meta-virtualization][PATCH 3/3] podman: add system service for podman Stefan Agner
2020-03-14  1:53 ` [meta-virtualization][PATCH 1/3] conmon: bump to version 2.0.11 Bruce Ashfield
2020-03-14  1:54 ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.