All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0
@ 2019-12-02 19:27 Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 1/3] python-docker-pycreds: uprev to 0.4.0 Ming Liu
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Ming Liu @ 2019-12-02 19:27 UTC (permalink / raw)
  To: meta-virtualization; +Cc: stefan.agner, Qi.Chen, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

This patch set mainly aims to uprev docker-compose to 1.25.0 and also
upgrade some of its dependencies to the latest release version.

Test on a colibri-imx8x machine against:
https://docs.docker.com/compose/gettingstarted/

Ming Liu (3):
  python-docker-pycreds: uprev to 0.4.0
  python-docker: uprev to 4.1.0
  python3-docker-compose: uprev to 1.25.0

 ...up.py-remove-maximum-version-requirements.patch | 33 +++++++++++----------
 .../python3-docker-compose_1.21.2.bb               | 31 --------------------
 .../python3-docker-compose_1.25.0.bb               | 34 ++++++++++++++++++++++
 recipes-devtools/python/python-docker-pycreds.inc  |  4 +--
 ...eds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} |  0
 recipes-devtools/python/python-docker.inc          |  4 +--
 ...thon-docker_3.4.0.bb => python-docker_4.1.0.bb} |  0
 ...ds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} |  0
 ...on3-docker_3.4.0.bb => python3-docker_4.1.0.bb} |  0
 9 files changed, 55 insertions(+), 51 deletions(-)
 delete mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
 create mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb
 rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} (100%)
 rename recipes-devtools/python/{python-docker_3.4.0.bb => python-docker_4.1.0.bb} (100%)
 rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} (100%)
 rename recipes-devtools/python/{python3-docker_3.4.0.bb => python3-docker_4.1.0.bb} (100%)

-- 
2.7.4


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

* [meta-virtualization] [PATCH 1/3] python-docker-pycreds: uprev to 0.4.0
  2019-12-02 19:27 [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0 Ming Liu
@ 2019-12-02 19:27 ` Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 2/3] python-docker: uprev to 4.1.0 Ming Liu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Ming Liu @ 2019-12-02 19:27 UTC (permalink / raw)
  To: meta-virtualization; +Cc: stefan.agner, Qi.Chen, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 recipes-devtools/python/python-docker-pycreds.inc                     | 4 ++--
 ...{python-docker-pycreds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} | 0
 ...ython3-docker-pycreds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} (100%)
 rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} (100%)

diff --git a/recipes-devtools/python/python-docker-pycreds.inc b/recipes-devtools/python/python-docker-pycreds.inc
index ca0995f..4bfa05f 100644
--- a/recipes-devtools/python/python-docker-pycreds.inc
+++ b/recipes-devtools/python/python-docker-pycreds.inc
@@ -3,5 +3,5 @@ HOMEPAGE = "https://github.com/shin-/dockerpy-creds"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[md5sum] = "2370ea3b62198b788a26231ab58844af"
-SRC_URI[sha256sum] = "8b0e956c8d206f832b06aa93a710ba2c3bcbacb5a314449c040b0b814355bbff"
+SRC_URI[md5sum] = "322f570cea6b4661c6ac335683988e18"
+SRC_URI[sha256sum] = "6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4"
diff --git a/recipes-devtools/python/python-docker-pycreds_0.3.0.bb b/recipes-devtools/python/python-docker-pycreds_0.4.0.bb
similarity index 100%
rename from recipes-devtools/python/python-docker-pycreds_0.3.0.bb
rename to recipes-devtools/python/python-docker-pycreds_0.4.0.bb
diff --git a/recipes-devtools/python/python3-docker-pycreds_0.3.0.bb b/recipes-devtools/python/python3-docker-pycreds_0.4.0.bb
similarity index 100%
rename from recipes-devtools/python/python3-docker-pycreds_0.3.0.bb
rename to recipes-devtools/python/python3-docker-pycreds_0.4.0.bb
-- 
2.7.4


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

* [meta-virtualization] [PATCH 2/3] python-docker: uprev to 4.1.0
  2019-12-02 19:27 [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0 Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 1/3] python-docker-pycreds: uprev to 0.4.0 Ming Liu
@ 2019-12-02 19:27 ` Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 3/3] python3-docker-compose: uprev to 1.25.0 Ming Liu
  2019-12-06 19:08 ` [meta-virtualization] [PATCH 0/3] Uprev docker-compose " Bruce Ashfield
  3 siblings, 0 replies; 8+ messages in thread
From: Ming Liu @ 2019-12-02 19:27 UTC (permalink / raw)
  To: meta-virtualization; +Cc: stefan.agner, Qi.Chen, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 recipes-devtools/python/python-docker.inc                             | 4 ++--
 .../python/{python-docker_3.4.0.bb => python-docker_4.1.0.bb}         | 0
 .../python/{python3-docker_3.4.0.bb => python3-docker_4.1.0.bb}       | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename recipes-devtools/python/{python-docker_3.4.0.bb => python-docker_4.1.0.bb} (100%)
 rename recipes-devtools/python/{python3-docker_3.4.0.bb => python3-docker_4.1.0.bb} (100%)

diff --git a/recipes-devtools/python/python-docker.inc b/recipes-devtools/python/python-docker.inc
index a0ba60b..cb7c523 100644
--- a/recipes-devtools/python/python-docker.inc
+++ b/recipes-devtools/python/python-docker.inc
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/docker/docker-py"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=34f3846f940453127309b920eeb89660"
 
-SRC_URI[md5sum] = "02491d168c048cdb99cc20d0b352ea0f"
-SRC_URI[sha256sum] = "e9cc39e24905e67ba9e2df14c94488f5cf030fb72ae1c60de505ce5ea90503f7"
+SRC_URI[md5sum] = "e1e8dc73e3220fe9eec1faf80b0290de"
+SRC_URI[sha256sum] = "6e06c5e70ba4fad73e35f00c55a895a448398f3ada7faae072e2bb01348bafc1"
 
 RDEPENDS_${PN} += " \
 	${PYTHON_PN}-misc \
diff --git a/recipes-devtools/python/python-docker_3.4.0.bb b/recipes-devtools/python/python-docker_4.1.0.bb
similarity index 100%
rename from recipes-devtools/python/python-docker_3.4.0.bb
rename to recipes-devtools/python/python-docker_4.1.0.bb
diff --git a/recipes-devtools/python/python3-docker_3.4.0.bb b/recipes-devtools/python/python3-docker_4.1.0.bb
similarity index 100%
rename from recipes-devtools/python/python3-docker_3.4.0.bb
rename to recipes-devtools/python/python3-docker_4.1.0.bb
-- 
2.7.4


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

* [meta-virtualization] [PATCH 3/3] python3-docker-compose: uprev to 1.25.0
  2019-12-02 19:27 [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0 Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 1/3] python-docker-pycreds: uprev to 0.4.0 Ming Liu
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 2/3] python-docker: uprev to 4.1.0 Ming Liu
@ 2019-12-02 19:27 ` Ming Liu
  2019-12-06 19:08 ` [meta-virtualization] [PATCH 0/3] Uprev docker-compose " Bruce Ashfield
  3 siblings, 0 replies; 8+ messages in thread
From: Ming Liu @ 2019-12-02 19:27 UTC (permalink / raw)
  To: meta-virtualization; +Cc: stefan.agner, Qi.Chen, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 ...up.py-remove-maximum-version-requirements.patch | 33 +++++++++++----------
 .../python3-docker-compose_1.21.2.bb               | 31 --------------------
 .../python3-docker-compose_1.25.0.bb               | 34 ++++++++++++++++++++++
 3 files changed, 51 insertions(+), 47 deletions(-)
 delete mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
 create mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb

diff --git a/recipes-containers/docker-compose/files/0001-setup.py-remove-maximum-version-requirements.patch b/recipes-containers/docker-compose/files/0001-setup.py-remove-maximum-version-requirements.patch
index 54835ff..8d204a7 100644
--- a/recipes-containers/docker-compose/files/0001-setup.py-remove-maximum-version-requirements.patch
+++ b/recipes-containers/docker-compose/files/0001-setup.py-remove-maximum-version-requirements.patch
@@ -9,12 +9,13 @@ require old version recipes.
 Upstream-Status: Inappropriate [OE Specific]
 
 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
+Signed-off-by: Ming Liu <liu.ming50@gmail.com>
 ---
  setup.py | 22 +++++++++++-----------
  1 file changed, 11 insertions(+), 11 deletions(-)
 
 diff --git a/setup.py b/setup.py
-index 422ba54..c2b4556 100644
+index 23ae08a..eef2825 100644
 --- a/setup.py
 +++ b/setup.py
 @@ -30,16 +30,16 @@ def find_version(*file_paths):
@@ -22,37 +23,37 @@ index 422ba54..c2b4556 100644
  
  install_requires = [
 -    'cached-property >= 1.2.0, < 2',
--    'docopt >= 0.6.1, < 0.7',
--    'PyYAML >= 3.10, < 4',
--    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.19',
--    'texttable >= 0.9.0, < 0.10',
--    'websocket-client >= 0.32.0, < 1.0',
--    'docker >= 3.3.0, < 4.0',
--    'dockerpty >= 0.4.1, < 0.5',
+-    'docopt >= 0.6.1, < 1',
+-    'PyYAML >= 3.10, < 5',
+-    'requests >= 2.20.0, < 3',
+-    'texttable >= 0.9.0, < 2',
+-    'websocket-client >= 0.32.0, < 1',
+-    'docker[ssh] >= 3.7.0, < 5',
+-    'dockerpty >= 0.4.1, < 1',
 -    'six >= 1.3.0, < 2',
--    'jsonschema >= 2.5.1, < 3',
+-    'jsonschema >= 2.5.1, < 4',
 +    'cached-property >= 1.2.0',
 +    'docopt >= 0.6.1',
 +    'PyYAML >= 3.10',
-+    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0',
++    'requests >= 2.20.0',
 +    'texttable >= 0.9.0',
 +    'websocket-client >= 0.32.0',
-+    'docker >= 3.3.0',
++    'docker[ssh] >= 3.7.0',
 +    'dockerpty >= 0.4.1',
 +    'six >= 1.3.0',
 +    'jsonschema >= 2.5.1',
  ]
  
  
-@@ -56,7 +56,7 @@ extras_require = {
-     ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
-     ':python_version < "3.3"': ['ipaddress >= 1.0.16'],
-     ':sys_platform == "win32"': ['colorama >= 0.3.9, < 0.4'],
+@@ -58,7 +58,7 @@ extras_require = {
+     ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0',
+                                 'ipaddress >= 1.0.16, < 2'],
+     ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
 -    'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
 +    'socks': ['PySocks >= 1.5.6, != 1.5.7'],
  }
  
  
 -- 
-2.17.1
+2.7.4
 
diff --git a/recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb b/recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
deleted file mode 100644
index a895005..0000000
--- a/recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
+++ /dev/null
@@ -1,31 +0,0 @@
-SUMMARY = "Multi-container orchestration for Docker"
-HOMEPAGE = "https://www.docker.com/"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8"
-
-SRC_URI += "file://0001-setup.py-remove-maximum-version-requirements.patch"
-
-inherit pypi setuptools3
-
-SRC_URI[md5sum] = "a243f59b2d286c41ff6ed1c4d4b50996"
-SRC_URI[sha256sum] = "68b07193755440d5f8d4f47e6f3484212afc255d5b785a81353ea1e9298c1c2c"
-
-RDEPENDS_${PN} = "\
-  ${PYTHON_PN}-cached-property \
-  ${PYTHON_PN}-certifi \
-  ${PYTHON_PN}-chardet \
-  ${PYTHON_PN}-colorama \
-  ${PYTHON_PN}-docker \
-  ${PYTHON_PN}-docker-pycreds \
-  ${PYTHON_PN}-dockerpty \
-  ${PYTHON_PN}-docopt \
-  ${PYTHON_PN}-idna \
-  ${PYTHON_PN}-jsonschema \
-  ${PYTHON_PN}-pyyaml \
-  ${PYTHON_PN}-requests \
-  ${PYTHON_PN}-six \
-  ${PYTHON_PN}-terminal \
-  ${PYTHON_PN}-texttable \
-  ${PYTHON_PN}-urllib3 \
-  ${PYTHON_PN}-websocket-client \
-  "
diff --git a/recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb b/recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb
new file mode 100644
index 0000000..36e2417
--- /dev/null
+++ b/recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb
@@ -0,0 +1,34 @@
+SUMMARY = "Multi-container orchestration for Docker"
+HOMEPAGE = "https://www.docker.com/"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8"
+
+inherit pypi setuptools3
+
+SRC_URI[md5sum] = "275b32cffdad6b9816dc8b4c7e55600a"
+SRC_URI[sha256sum] = "2c5fcbfd3ff445b6f3eebb549cb167ef1d8f70c5806aab8f309fc8fa74cd977e"
+
+SRC_URI += "file://0001-setup.py-remove-maximum-version-requirements.patch"
+
+RDEPENDS_${PN} = "\
+    ${PYTHON_PN}-cached-property \
+    ${PYTHON_PN}-certifi \
+    ${PYTHON_PN}-chardet \
+    ${PYTHON_PN}-colorama \
+    ${PYTHON_PN}-docker \
+    ${PYTHON_PN}-docker-pycreds \
+    ${PYTHON_PN}-dockerpty \
+    ${PYTHON_PN}-docopt \
+    ${PYTHON_PN}-fcntl \
+    ${PYTHON_PN}-idna \
+    ${PYTHON_PN}-jsonschema \
+    ${PYTHON_PN}-misc \
+    ${PYTHON_PN}-paramiko \
+    ${PYTHON_PN}-pyyaml \
+    ${PYTHON_PN}-requests \
+    ${PYTHON_PN}-six \
+    ${PYTHON_PN}-terminal \
+    ${PYTHON_PN}-texttable \
+    ${PYTHON_PN}-urllib3 \
+    ${PYTHON_PN}-websocket-client \
+"
-- 
2.7.4


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

* Re: [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0
  2019-12-02 19:27 [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0 Ming Liu
                   ` (2 preceding siblings ...)
  2019-12-02 19:27 ` [meta-virtualization] [PATCH 3/3] python3-docker-compose: uprev to 1.25.0 Ming Liu
@ 2019-12-06 19:08 ` Bruce Ashfield
  2019-12-07 13:25   ` Ming Liu
  3 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2019-12-06 19:08 UTC (permalink / raw)
  To: Ming Liu; +Cc: meta-virtualization, Stefan Agner, ChenQi

merged

Bruce

On Mon, Dec 2, 2019 at 2:27 PM Ming Liu <liu.ming50@gmail.com> wrote:
>
> From: Ming Liu <liu.ming50@gmail.com>
>
> This patch set mainly aims to uprev docker-compose to 1.25.0 and also
> upgrade some of its dependencies to the latest release version.
>
> Test on a colibri-imx8x machine against:
> https://docs.docker.com/compose/gettingstarted/
>
> Ming Liu (3):
>   python-docker-pycreds: uprev to 0.4.0
>   python-docker: uprev to 4.1.0
>   python3-docker-compose: uprev to 1.25.0
>
>  ...up.py-remove-maximum-version-requirements.patch | 33 +++++++++++----------
>  .../python3-docker-compose_1.21.2.bb               | 31 --------------------
>  .../python3-docker-compose_1.25.0.bb               | 34 ++++++++++++++++++++++
>  recipes-devtools/python/python-docker-pycreds.inc  |  4 +--
>  ...eds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} |  0
>  recipes-devtools/python/python-docker.inc          |  4 +--
>  ...thon-docker_3.4.0.bb => python-docker_4.1.0.bb} |  0
>  ...ds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} |  0
>  ...on3-docker_3.4.0.bb => python3-docker_4.1.0.bb} |  0
>  9 files changed, 55 insertions(+), 51 deletions(-)
>  delete mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
>  create mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb
>  rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} (100%)
>  rename recipes-devtools/python/{python-docker_3.4.0.bb => python-docker_4.1.0.bb} (100%)
>  rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} (100%)
>  rename recipes-devtools/python/{python3-docker_3.4.0.bb => python3-docker_4.1.0.bb} (100%)
>
> --
> 2.7.4
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
>
> View/Reply Online (#4799): https://lists.yoctoproject.org/g/meta-virtualization/message/4799
> Mute This Topic: https://lists.yoctoproject.org/mt/65175066/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub  [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

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

* Re: [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0
  2019-12-06 19:08 ` [meta-virtualization] [PATCH 0/3] Uprev docker-compose " Bruce Ashfield
@ 2019-12-07 13:25   ` Ming Liu
  2019-12-10  7:11     ` Bruce Ashfield
  0 siblings, 1 reply; 8+ messages in thread
From: Ming Liu @ 2019-12-07 13:25 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization, Stefan Agner, ChenQi

[-- Attachment #1: Type: text/plain, Size: 2899 bytes --]

Hi, Bruce:

I think I had introduced a regression for this "python3-docker-compose:
uprev to 1.25.0" commit, it depends on python3-paramiko and python3-nacl
but I forgot to add them, sorry for that.

I have just sent two more patches to add them in.

//Ming Liu

Bruce Ashfield <bruce.ashfield@gmail.com> 於 2019年12月6日 週五 下午8:08寫道:

> merged
>
> Bruce
>
> On Mon, Dec 2, 2019 at 2:27 PM Ming Liu <liu.ming50@gmail.com> wrote:
> >
> > From: Ming Liu <liu.ming50@gmail.com>
> >
> > This patch set mainly aims to uprev docker-compose to 1.25.0 and also
> > upgrade some of its dependencies to the latest release version.
> >
> > Test on a colibri-imx8x machine against:
> > https://docs.docker.com/compose/gettingstarted/
> >
> > Ming Liu (3):
> >   python-docker-pycreds: uprev to 0.4.0
> >   python-docker: uprev to 4.1.0
> >   python3-docker-compose: uprev to 1.25.0
> >
> >  ...up.py-remove-maximum-version-requirements.patch | 33
> +++++++++++----------
> >  .../python3-docker-compose_1.21.2.bb               | 31
> --------------------
> >  .../python3-docker-compose_1.25.0.bb               | 34
> ++++++++++++++++++++++
> >  recipes-devtools/python/python-docker-pycreds.inc  |  4 +--
> >  ...eds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} |  0
> >  recipes-devtools/python/python-docker.inc          |  4 +--
> >  ...thon-docker_3.4.0.bb => python-docker_4.1.0.bb} |  0
> >  ...ds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} |  0
> >  ...on3-docker_3.4.0.bb => python3-docker_4.1.0.bb} |  0
> >  9 files changed, 55 insertions(+), 51 deletions(-)
> >  delete mode 100644 recipes-containers/docker-compose/
> python3-docker-compose_1.21.2.bb
> >  create mode 100644 recipes-containers/docker-compose/
> python3-docker-compose_1.25.0.bb
> >  rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb =>
> python-docker-pycreds_0.4.0.bb} (100%)
> >  rename recipes-devtools/python/{python-docker_3.4.0.bb =>
> python-docker_4.1.0.bb} (100%)
> >  rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb =>
> python3-docker-pycreds_0.4.0.bb} (100%)
> >  rename recipes-devtools/python/{python3-docker_3.4.0.bb =>
> python3-docker_4.1.0.bb} (100%)
> >
> > --
> > 2.7.4
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> >
> > View/Reply Online (#4799):
> https://lists.yoctoproject.org/g/meta-virtualization/message/4799
> > Mute This Topic: https://lists.yoctoproject.org/mt/65175066/1050810
> > Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> > Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub
> [bruce.ashfield@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>

[-- Attachment #2: Type: text/html, Size: 5841 bytes --]

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

* Re: [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0
  2019-12-07 13:25   ` Ming Liu
@ 2019-12-10  7:11     ` Bruce Ashfield
  2019-12-10  9:15       ` Ming Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2019-12-10  7:11 UTC (permalink / raw)
  To: Ming Liu; +Cc: meta-virtualization, Stefan Agner, ChenQi

On Sat, Dec 7, 2019 at 8:25 AM Ming Liu <liu.ming50@gmail.com> wrote:
>
> Hi, Bruce:
>
> I think I had introduced a regression for this "python3-docker-compose: uprev to 1.25.0" commit, it depends on python3-paramiko and python3-nacl but I forgot to add them, sorry for that.
>
> I have just sent two more patches to add them in.

And they are now merged.

Bruce

>
> //Ming Liu
>
> Bruce Ashfield <bruce.ashfield@gmail.com> 於 2019年12月6日 週五 下午8:08寫道:
>>
>> merged
>>
>> Bruce
>>
>> On Mon, Dec 2, 2019 at 2:27 PM Ming Liu <liu.ming50@gmail.com> wrote:
>> >
>> > From: Ming Liu <liu.ming50@gmail.com>
>> >
>> > This patch set mainly aims to uprev docker-compose to 1.25.0 and also
>> > upgrade some of its dependencies to the latest release version.
>> >
>> > Test on a colibri-imx8x machine against:
>> > https://docs.docker.com/compose/gettingstarted/
>> >
>> > Ming Liu (3):
>> >   python-docker-pycreds: uprev to 0.4.0
>> >   python-docker: uprev to 4.1.0
>> >   python3-docker-compose: uprev to 1.25.0
>> >
>> >  ...up.py-remove-maximum-version-requirements.patch | 33 +++++++++++----------
>> >  .../python3-docker-compose_1.21.2.bb               | 31 --------------------
>> >  .../python3-docker-compose_1.25.0.bb               | 34 ++++++++++++++++++++++
>> >  recipes-devtools/python/python-docker-pycreds.inc  |  4 +--
>> >  ...eds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} |  0
>> >  recipes-devtools/python/python-docker.inc          |  4 +--
>> >  ...thon-docker_3.4.0.bb => python-docker_4.1.0.bb} |  0
>> >  ...ds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} |  0
>> >  ...on3-docker_3.4.0.bb => python3-docker_4.1.0.bb} |  0
>> >  9 files changed, 55 insertions(+), 51 deletions(-)
>> >  delete mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.21.2.bb
>> >  create mode 100644 recipes-containers/docker-compose/python3-docker-compose_1.25.0.bb
>> >  rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} (100%)
>> >  rename recipes-devtools/python/{python-docker_3.4.0.bb => python-docker_4.1.0.bb} (100%)
>> >  rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} (100%)
>> >  rename recipes-devtools/python/{python3-docker_3.4.0.bb => python3-docker_4.1.0.bb} (100%)
>> >
>> > --
>> > 2.7.4
>> >
>> > -=-=-=-=-=-=-=-=-=-=-=-
>> > Links: You receive all messages sent to this group.
>> >
>> > View/Reply Online (#4799): https://lists.yoctoproject.org/g/meta-virtualization/message/4799
>> > Mute This Topic: https://lists.yoctoproject.org/mt/65175066/1050810
>> > Group Owner: meta-virtualization+owner@lists.yoctoproject.org
>> > Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub  [bruce.ashfield@gmail.com]
>> > -=-=-=-=-=-=-=-=-=-=-=-
>>
>>
>>
>> --
>> - Thou shalt not follow the NULL pointer, for chaos and madness await
>> thee at its end
>> - "Use the force Harry" - Gandalf, Star Trek II



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

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

* Re: [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0
  2019-12-10  7:11     ` Bruce Ashfield
@ 2019-12-10  9:15       ` Ming Liu
  0 siblings, 0 replies; 8+ messages in thread
From: Ming Liu @ 2019-12-10  9:15 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization, Stefan Agner, ChenQi

[-- Attachment #1: Type: text/plain, Size: 3514 bytes --]

Great, thanks!

//Ming Liu

Bruce Ashfield <bruce.ashfield@gmail.com> 於 2019年12月10日 週二 上午8:11寫道:

> On Sat, Dec 7, 2019 at 8:25 AM Ming Liu <liu.ming50@gmail.com> wrote:
> >
> > Hi, Bruce:
> >
> > I think I had introduced a regression for this "python3-docker-compose:
> uprev to 1.25.0" commit, it depends on python3-paramiko and python3-nacl
> but I forgot to add them, sorry for that.
> >
> > I have just sent two more patches to add them in.
>
> And they are now merged.
>
> Bruce
>
> >
> > //Ming Liu
> >
> > Bruce Ashfield <bruce.ashfield@gmail.com> 於 2019年12月6日 週五 下午8:08寫道:
> >>
> >> merged
> >>
> >> Bruce
> >>
> >> On Mon, Dec 2, 2019 at 2:27 PM Ming Liu <liu.ming50@gmail.com> wrote:
> >> >
> >> > From: Ming Liu <liu.ming50@gmail.com>
> >> >
> >> > This patch set mainly aims to uprev docker-compose to 1.25.0 and also
> >> > upgrade some of its dependencies to the latest release version.
> >> >
> >> > Test on a colibri-imx8x machine against:
> >> > https://docs.docker.com/compose/gettingstarted/
> >> >
> >> > Ming Liu (3):
> >> >   python-docker-pycreds: uprev to 0.4.0
> >> >   python-docker: uprev to 4.1.0
> >> >   python3-docker-compose: uprev to 1.25.0
> >> >
> >> >  ...up.py-remove-maximum-version-requirements.patch | 33
> +++++++++++----------
> >> >  .../python3-docker-compose_1.21.2.bb               | 31
> --------------------
> >> >  .../python3-docker-compose_1.25.0.bb               | 34
> ++++++++++++++++++++++
> >> >  recipes-devtools/python/python-docker-pycreds.inc  |  4 +--
> >> >  ...eds_0.3.0.bb => python-docker-pycreds_0.4.0.bb} |  0
> >> >  recipes-devtools/python/python-docker.inc          |  4 +--
> >> >  ...thon-docker_3.4.0.bb => python-docker_4.1.0.bb} |  0
> >> >  ...ds_0.3.0.bb => python3-docker-pycreds_0.4.0.bb} |  0
> >> >  ...on3-docker_3.4.0.bb => python3-docker_4.1.0.bb} |  0
> >> >  9 files changed, 55 insertions(+), 51 deletions(-)
> >> >  delete mode 100644 recipes-containers/docker-compose/
> python3-docker-compose_1.21.2.bb
> >> >  create mode 100644 recipes-containers/docker-compose/
> python3-docker-compose_1.25.0.bb
> >> >  rename recipes-devtools/python/{python-docker-pycreds_0.3.0.bb =>
> python-docker-pycreds_0.4.0.bb} (100%)
> >> >  rename recipes-devtools/python/{python-docker_3.4.0.bb =>
> python-docker_4.1.0.bb} (100%)
> >> >  rename recipes-devtools/python/{python3-docker-pycreds_0.3.0.bb =>
> python3-docker-pycreds_0.4.0.bb} (100%)
> >> >  rename recipes-devtools/python/{python3-docker_3.4.0.bb =>
> python3-docker_4.1.0.bb} (100%)
> >> >
> >> > --
> >> > 2.7.4
> >> >
> >> > -=-=-=-=-=-=-=-=-=-=-=-
> >> > Links: You receive all messages sent to this group.
> >> >
> >> > View/Reply Online (#4799):
> https://lists.yoctoproject.org/g/meta-virtualization/message/4799
> >> > Mute This Topic: https://lists.yoctoproject.org/mt/65175066/1050810
> >> > Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> >> > Unsubscribe:
> https://lists.yoctoproject.org/g/meta-virtualization/unsub  [
> bruce.ashfield@gmail.com]
> >> > -=-=-=-=-=-=-=-=-=-=-=-
> >>
> >>
> >>
> >> --
> >> - Thou shalt not follow the NULL pointer, for chaos and madness await
> >> thee at its end
> >> - "Use the force Harry" - Gandalf, Star Trek II
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>

[-- Attachment #2: Type: text/html, Size: 6958 bytes --]

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

end of thread, other threads:[~2019-12-10  9:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-02 19:27 [meta-virtualization] [PATCH 0/3] Uprev docker-compose to 1.25.0 Ming Liu
2019-12-02 19:27 ` [meta-virtualization] [PATCH 1/3] python-docker-pycreds: uprev to 0.4.0 Ming Liu
2019-12-02 19:27 ` [meta-virtualization] [PATCH 2/3] python-docker: uprev to 4.1.0 Ming Liu
2019-12-02 19:27 ` [meta-virtualization] [PATCH 3/3] python3-docker-compose: uprev to 1.25.0 Ming Liu
2019-12-06 19:08 ` [meta-virtualization] [PATCH 0/3] Uprev docker-compose " Bruce Ashfield
2019-12-07 13:25   ` Ming Liu
2019-12-10  7:11     ` Bruce Ashfield
2019-12-10  9:15       ` Ming Liu

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.