Re: [meta-virtualization] [PATCH 3/4] runc-opencontainers: Drop unnecessary branch spec from SRC_URI

2017-04-03 Thread Paul Barker
On Mon, 3 Apr 2017 07:11:37 -0400 Bruce Ashfield wrote: > unnecessary, but I prefer it. since we are not always on master for > this recipe. > > I'll test the rest of the series, but I'll pass on this patch. > > Bruce > No problem, it's an aesthetic thing. I'm not

Re: [meta-virtualization] [PATCHv1 1/1] docker: fix dependency issues with deb packaging

2017-04-03 Thread Bruce Ashfield
IMHO the deb backend (or a class to translate things) needs to happen here. With this change, I can no longer do a preferred provider and have the exclusion of the opencontainer and docker variants. So unless the above functionality can be provided, I don't see how I can merge this change.

Re: [meta-virtualization] [PATCH 3/4] runc-opencontainers: Drop unnecessary branch spec from SRC_URI

2017-04-03 Thread Bruce Ashfield
unnecessary, but I prefer it. since we are not always on master for this recipe. I'll test the rest of the series, but I'll pass on this patch. Bruce On Mon, Apr 3, 2017 at 6:27 AM, Paul Barker wrote: > From: Paul Barker > > Signed-off-by: Paul

[meta-virtualization] [PATCH 0/4] Updates for runc & associated tools

2017-04-03 Thread Paul Barker
I've finally got back to playing around with runc and associated tools :) These patches have been tested on a raspberrypi3 and allow successful creation of a guest container using runc, netns and cgroup-lite. Paul Barker (4): netns: Update to latest HEAD runc-opencontainers: Update to

[meta-virtualization] [PATCH 2/4] runc-opencontainers: Update to v1.0.0-rc3

2017-04-03 Thread Paul Barker
From: Paul Barker Signed-off-by: Paul Barker --- recipes-containers/runc/runc-opencontainers_git.bb | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/recipes-containers/runc/runc-opencontainers_git.bb

[meta-virtualization] [PATCH 1/4] netns: Update to latest HEAD

2017-04-03 Thread Paul Barker
There have been a couple of fixes and new features upstream, let's bring them in. The upstream URL has also changed slightly. Signed-off-by: Paul Barker --- recipes-networking/netns/netns_git.bb | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[meta-virtualization] [PATCH 3/4] runc-opencontainers: Drop unnecessary branch spec from SRC_URI

2017-04-03 Thread Paul Barker
From: Paul Barker Signed-off-by: Paul Barker --- recipes-containers/runc/runc-opencontainers_git.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes-containers/runc/runc-opencontainers_git.bb

[meta-virtualization] [PATCH 4/4] cgroup-lite: Inherit allarch

2017-04-03 Thread Paul Barker
This recipe just installs a pair of shell scripts. Signed-off-by: Paul Barker --- recipes-containers/cgroup-lite/cgroup-lite_1.11.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-containers/cgroup-lite/cgroup-lite_1.11.bb

[meta-virtualization] [PATCHv1 1/1] docker: fix dependency issues with deb packaging

2017-04-03 Thread Adrian Calianu
dpkg-deb does not accept RDEPENDS += "virtual/" 'Provides' field, invalid package name 'virtual/containerd': character '/' not allowed (only letters, digits and characters '-+._') Signed-off-by: Adrian Calianu ---