All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50
@ 2021-02-02 11:26 Leon Anavi
  2021-02-02 11:26 ` [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2021-02-02 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.50:

- dump: Use exception's type and value when calculating hash

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python-meh/{python3-meh_0.49.bb => python3-meh_0.50.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/python-meh/{python3-meh_0.49.bb => python3-meh_0.50.bb} (90%)

diff --git a/meta-python/recipes-extended/python-meh/python3-meh_0.49.bb b/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
similarity index 90%
rename from meta-python/recipes-extended/python-meh/python3-meh_0.49.bb
rename to meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
index 7fba21f7d..64a24ade3 100644
--- a/meta-python/recipes-extended/python-meh/python3-meh_0.49.bb
+++ b/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
@@ -11,7 +11,7 @@ S = "${WORKDIR}/git"
 
 SRC_URI = "git://github.com/rhinstaller/python-meh.git;protocol=https;branch=master \
 "
-SRCREV = "50c09e5c4c76757099d686c316b4bf42f72db71b"
+SRCREV = "11980776c5ad757401ea1d12fd1f331d96428105"
 
 FILES_${PN} += "${datadir}/*"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3
  2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
@ 2021-02-02 11:26 ` Leon Anavi
  2021-02-05 14:00   ` [oe] " Trevor Gamblin
  2021-02-02 11:26 ` [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-02 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.1.3:

- MOF compiler: Fixed bug where MOF compiler did not correctly
  install a CIM schema in a non-default namespace because it tried
  to get the qualifiers from the default namespace.
- Test: Changed dependency to ‘typed-ast’ to match the needs of
  ‘astroid’ and to install it only on CPython. This allows
  re-enabling PyPy3 on Travis.
- Test: Pinned psutil to <=5.6.3 on PyPy2+3 to avoid an
  installation error.
- Test: Increased the minimum version of ‘pyzmq’ on Python 3.9
  to 19.0.0 to avoid an installation error.
- Test: Circumvented unicode issue with
  lxml.etree.fromstring()/XML() on Python 3.9 by passing in binary
  strings.
- Test: Adjusted _format()/_ascii2() testcases to PyPy3 behavior
  with binary vs unicode results.
- Test: Disabled leaktest in travis also on PyPy3 (in addition to
  PyPy2).
- Fixed a DeprecationWarning issued by urllib3 about using the
  whitelist_methods parameter of Retry.
- Fixed issue on GitHub Actions with macos by no longer running
  “brew update” in pywbem_os_setup.sh. (issue #2544)
- Docs: Fixed incorrect attribute name ‘provider_classnames’ in
  method provider example. (issue #2564)
- Mitigated the coveralls HTTP status 422 by pinning
  coveralls-python to <3.0.0.
- Migrated from Travis and Appveyor to GitHub Actions. This
  required several changes in package dependencies for development.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pywbem_1.1.0.bb => python3-pywbem_1.1.3.bb}       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-extended/pywbem/{python3-pywbem_1.1.0.bb => python3-pywbem_1.1.3.bb} (91%)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
similarity index 91%
rename from meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb
rename to meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
index d68ae9abf..fd7341953 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
@@ -16,8 +16,7 @@ HOMEPAGE = "http://pywbem.github.io"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
 
-SRC_URI[md5sum] = "6ade0cda6a997542d61f15713c2dd971"
-SRC_URI[sha256sum] = "4e2baa4b4b88943cca32c7eb588fffff22ce86c748ba7544e01149f9638014fe"
+SRC_URI[sha256sum] = "2abb6443f4debae56af7abefadb9fa5b8af9b53fc9bcf67f6c01a78db1064300"
 
 inherit pypi setuptools3 update-alternatives
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0
  2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
  2021-02-02 11:26 ` [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3 Leon Anavi
@ 2021-02-02 11:26 ` Leon Anavi
  2021-02-05 14:01   ` [oe] " Trevor Gamblin
  2021-02-02 11:26 ` [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-02 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 7.20.0:

- Support for PyQt5 >= 5.11
- %reset remove imports more agressively
- fix the %conda magic
- compatibility with Jedi 0.18, and bump minimum Jedi version

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-ipython_7.19.0.bb => python3-ipython_7.20.0.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-ipython_7.19.0.bb => python3-ipython_7.20.0.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb b/meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb
rename to meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
index d3ce9f5ff..42795b9bf 100644
--- a/meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f"
 
 PYPI_PACKAGE = "ipython"
 
-SRC_URI[md5sum] = "33bdc8287c827aae23699751b0ed3f7a"
-SRC_URI[sha256sum] = "cbb2ef3d5961d44e6a963b9817d4ea4e1fa2eb589c371a470fed14d8d40cbd6a"
+SRC_URI[sha256sum] = "1923af00820a8cf58e91d56b89efc59780a6e81363b94464a0f17c039dffff9e"
 
 RDEPENDS_${PN} = "\
     ${PYTHON_PN}-setuptools \
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6
  2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
  2021-02-02 11:26 ` [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3 Leon Anavi
  2021-02-02 11:26 ` [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0 Leon Anavi
@ 2021-02-02 11:26 ` Leon Anavi
  2021-02-05 14:01   ` [oe] " Trevor Gamblin
  2021-02-02 11:26 ` [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
  2021-02-05 14:00 ` [oe] [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-02 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.6:

- Fix combination of star and invalid expression bugs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-croniter_1.0.5.bb => python3-croniter_1.0.6.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-croniter_1.0.5.bb => python3-croniter_1.0.6.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
rename to meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
index c8af97d7c..d3b6fa1f4 100644
--- a/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
+++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
 
 PYPI_PACKAGE = "croniter"
 
-SRC_URI[sha256sum] = "8636e7f0ce842b4192b7f097cab724fc15bf2459265f1a2bc6cf6eacfa44420e"
+SRC_URI[sha256sum] = "e79bcc9681d2345e71360241aebe19ed6c5475fec40cc59a7998fe1a2ca568d0"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1
  2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-02-02 11:26 ` [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6 Leon Anavi
@ 2021-02-02 11:26 ` Leon Anavi
  2021-02-05 14:01   ` [oe] " Trevor Gamblin
  2021-02-05 14:00 ` [oe] [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-02 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.1:

- Fixed a ValueError on Windows that was raised when the
  connections file was not on the home drive.
- Limit click package to < 8.0 because of a) incompatibility with
  python 2.7, b) incompatibility between click 8.0 and clicl-repl.
- Limit mock package to lt 4.0.3 to avoid issue issue that causes
  test failure.
- Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick
  up fixes.
- Migrated from Travis and Appveyor to GitHub Actions. This required
  several changes in package dependencies for development.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-pywbemtools_0.8.0.bb => python3-pywbemtools_0.8.1.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_0.8.0.bb => python3-pywbemtools_0.8.1.bb} (87%)

diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
similarity index 87%
rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb
rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
index 03caec539..c5cabdb13 100644
--- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb
+++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
@@ -4,8 +4,7 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 
-SRC_URI[md5sum] = "e41ef654a0af0461d6c164752963fdfb"
-SRC_URI[sha256sum] = "b869bb217613cdfee1e97e8afc28fe3f9bf3b88f8fc99e588d03c4be0922c319"
+SRC_URI[sha256sum] = "3cbee091f0a4917394814d7e639ab9fe13ad0859e47288deabf2b09a4382c4ae"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50
  2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-02-02 11:26 ` [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
@ 2021-02-05 14:00 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-05 14:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-02 6:26 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 0.50:
>
> - dump: Use exception's type and value when calculating hash
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python-meh/{python3-meh_0.49.bb => python3-meh_0.50.bb}     | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-extended/python-meh/{python3-meh_0.49.bb => python3-meh_0.50.bb} (90%)
>
> diff --git a/meta-python/recipes-extended/python-meh/python3-meh_0.49.bb b/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
> similarity index 90%
> rename from meta-python/recipes-extended/python-meh/python3-meh_0.49.bb
> rename to meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
> index 7fba21f7d..64a24ade3 100644
> --- a/meta-python/recipes-extended/python-meh/python3-meh_0.49.bb
> +++ b/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
> @@ -11,7 +11,7 @@ S = "${WORKDIR}/git"
>
>   SRC_URI = "git://github.com/rhinstaller/python-meh.git;protocol=https;branch=master \
>   "
> -SRCREV = "50c09e5c4c76757099d686c316b4bf42f72db71b"
> +SRCREV = "11980776c5ad757401ea1d12fd1f331d96428105"
>
>   FILES_${PN} += "${datadir}/*"
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3
  2021-02-02 11:26 ` [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3 Leon Anavi
@ 2021-02-05 14:00   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-05 14:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-02 6:26 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.1.3:
>
> - MOF compiler: Fixed bug where MOF compiler did not correctly
>    install a CIM schema in a non-default namespace because it tried
>    to get the qualifiers from the default namespace.
> - Test: Changed dependency to ‘typed-ast’ to match the needs of
>    ‘astroid’ and to install it only on CPython. This allows
>    re-enabling PyPy3 on Travis.
> - Test: Pinned psutil to <=5.6.3 on PyPy2+3 to avoid an
>    installation error.
> - Test: Increased the minimum version of ‘pyzmq’ on Python 3.9
>    to 19.0.0 to avoid an installation error.
> - Test: Circumvented unicode issue with
>    lxml.etree.fromstring()/XML() on Python 3.9 by passing in binary
>    strings.
> - Test: Adjusted _format()/_ascii2() testcases to PyPy3 behavior
>    with binary vs unicode results.
> - Test: Disabled leaktest in travis also on PyPy3 (in addition to
>    PyPy2).
> - Fixed a DeprecationWarning issued by urllib3 about using the
>    whitelist_methods parameter of Retry.
> - Fixed issue on GitHub Actions with macos by no longer running
>    “brew update” in pywbem_os_setup.sh. (issue #2544)
> - Docs: Fixed incorrect attribute name ‘provider_classnames’ in
>    method provider example. (issue #2564)
> - Mitigated the coveralls HTTP status 422 by pinning
>    coveralls-python to <3.0.0.
> - Migrated from Travis and Appveyor to GitHub Actions. This
>    required several changes in package dependencies for development.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pywbem_1.1.0.bb => python3-pywbem_1.1.3.bb}       | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-extended/pywbem/{python3-pywbem_1.1.0.bb => python3-pywbem_1.1.3.bb} (91%)
>
> diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
> similarity index 91%
> rename from meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb
> rename to meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
> index d68ae9abf..fd7341953 100644
> --- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.0.bb
> +++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.1.3.bb
> @@ -16,8 +16,7 @@ HOMEPAGE = "http://pywbem.github.io"
>   LICENSE = "LGPLv2.1"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
>
> -SRC_URI[md5sum] = "6ade0cda6a997542d61f15713c2dd971"
> -SRC_URI[sha256sum] = "4e2baa4b4b88943cca32c7eb588fffff22ce86c748ba7544e01149f9638014fe"
> +SRC_URI[sha256sum] = "2abb6443f4debae56af7abefadb9fa5b8af9b53fc9bcf67f6c01a78db1064300"
>
>   inherit pypi setuptools3 update-alternatives
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0
  2021-02-02 11:26 ` [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0 Leon Anavi
@ 2021-02-05 14:01   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-05 14:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-02 6:26 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 7.20.0:
>
> - Support for PyQt5 >= 5.11
> - %reset remove imports more agressively
> - fix the %conda magic
> - compatibility with Jedi 0.18, and bump minimum Jedi version
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-ipython_7.19.0.bb => python3-ipython_7.20.0.bb}   | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-ipython_7.19.0.bb => python3-ipython_7.20.0.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb b/meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb
> rename to meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
> index d3ce9f5ff..42795b9bf 100644
> --- a/meta-python/recipes-devtools/python/python3-ipython_7.19.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-ipython_7.20.0.bb
> @@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f"
>
>   PYPI_PACKAGE = "ipython"
>
> -SRC_URI[md5sum] = "33bdc8287c827aae23699751b0ed3f7a"
> -SRC_URI[sha256sum] = "cbb2ef3d5961d44e6a963b9817d4ea4e1fa2eb589c371a470fed14d8d40cbd6a"
> +SRC_URI[sha256sum] = "1923af00820a8cf58e91d56b89efc59780a6e81363b94464a0f17c039dffff9e"
>
>   RDEPENDS_${PN} = "\
>       ${PYTHON_PN}-setuptools \
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6
  2021-02-02 11:26 ` [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6 Leon Anavi
@ 2021-02-05 14:01   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-05 14:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-02 6:26 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.0.6:
>
> - Fix combination of star and invalid expression bugs
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-croniter_1.0.5.bb => python3-croniter_1.0.6.bb}    | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-croniter_1.0.5.bb => python3-croniter_1.0.6.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
> rename to meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
> index c8af97d7c..d3b6fa1f4 100644
> --- a/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
> +++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.6.bb
> @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
>
>   PYPI_PACKAGE = "croniter"
>
> -SRC_URI[sha256sum] = "8636e7f0ce842b4192b7f097cab724fc15bf2459265f1a2bc6cf6eacfa44420e"
> +SRC_URI[sha256sum] = "e79bcc9681d2345e71360241aebe19ed6c5475fec40cc59a7998fe1a2ca568d0"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1
  2021-02-02 11:26 ` [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
@ 2021-02-05 14:01   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-05 14:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-02 6:26 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 0.8.1:
>
> - Fixed a ValueError on Windows that was raised when the
>    connections file was not on the home drive.
> - Limit click package to < 8.0 because of a) incompatibility with
>    python 2.7, b) incompatibility between click 8.0 and clicl-repl.
> - Limit mock package to lt 4.0.3 to avoid issue issue that causes
>    test failure.
> - Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick
>    up fixes.
> - Migrated from Travis and Appveyor to GitHub Actions. This required
>    several changes in package dependencies for development.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-pywbemtools_0.8.0.bb => python3-pywbemtools_0.8.1.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_0.8.0.bb => python3-pywbemtools_0.8.1.bb} (87%)
>
> diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
> similarity index 87%
> rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb
> rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
> index 03caec539..c5cabdb13 100644
> --- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb
> +++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.1.bb
> @@ -4,8 +4,7 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
>
> -SRC_URI[md5sum] = "e41ef654a0af0461d6c164752963fdfb"
> -SRC_URI[sha256sum] = "b869bb217613cdfee1e97e8afc28fe3f9bf3b88f8fc99e588d03c4be0922c319"
> +SRC_URI[sha256sum] = "3cbee091f0a4917394814d7e639ab9fe13ad0859e47288deabf2b09a4382c4ae"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

end of thread, other threads:[~2021-02-05 14:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-02 11:26 [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Leon Anavi
2021-02-02 11:26 ` [meta-python][PATCH 2/5] python3-pywbem: Upgrade 1.1.0 -> 1.1.3 Leon Anavi
2021-02-05 14:00   ` [oe] " Trevor Gamblin
2021-02-02 11:26 ` [meta-python][PATCH 3/5] python3-ipython: Upgrade 7.19.0 -> 7.20.0 Leon Anavi
2021-02-05 14:01   ` [oe] " Trevor Gamblin
2021-02-02 11:26 ` [meta-python][PATCH 4/5] python3-croniter: Upgrade 1.0.5 -> 1.0.6 Leon Anavi
2021-02-05 14:01   ` [oe] " Trevor Gamblin
2021-02-02 11:26 ` [meta-python][PATCH 5/5] python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1 Leon Anavi
2021-02-05 14:01   ` [oe] " Trevor Gamblin
2021-02-05 14:00 ` [oe] [meta-python][PATCH 1/5] python3-meh: Upgrade 0.49 -> 0.50 Trevor Gamblin

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.