All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1
@ 2020-07-08  9:46 Leon Anavi
  2020-07-08  9:46 ` [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 7.1.1:

- Add debug prints
- Bump flake8 from 3.7.9 to 3.8.3

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...n3-pychromecast_7.1.0.bb => python3-pychromecast_7.1.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pychromecast_7.1.0.bb => python3-pychromecast_7.1.1.bb} (66%)

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
index 12076adcd..3da979c0f 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[md5sum] = "10483fca4ffa0381c0c49f3647827179"
-SRC_URI[sha256sum] = "30e18e7d79b6ce2097e630d3cab6e6503f759808ae1ae592bec0a8a7591534f3"
+SRC_URI[md5sum] = "897e7acd6ac2c01f3df2e2d6b2e13c11"
+SRC_URI[sha256sum] = "87fa9ad42425edd21e02a9240669e5763e52d975ee259a948a6fe07e6ab977b9"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:37   ` [oe] " Trevor Gamblin
  2020-07-08  9:46 ` [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.9.0:

- More robust loading of FEI SEM data.
- Fix webcam not working on Win10.
- Add a few standard images useful to 3D visualization.
- The timeout used in HTTP requests can now be set with an
  environment variable.
- The DICOM plugin can now used gdcm for compressed transfer
  formats.
- Better support for itk/sitk plugins.
- Test coverage and CI for ARM.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-imageio_2.8.0.bb => python3-imageio_2.9.0.bb}    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-imageio_2.8.0.bb => python3-imageio_2.9.0.bb} (73%)

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb b/meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
index 9ca30f424..fbe5e2c97 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
@@ -6,8 +6,8 @@ LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7b9bbbb543b6af3e6b53f9b7fb68f71d"
 
 
-SRC_URI[md5sum] = "1e270dbf24c0390c2f4e3e4120904ac0"
-SRC_URI[sha256sum] = "fb5fd6d3d17126bbaac9af29fe340e2c97a196eb9416d4f28c0e543744a152cf"
+SRC_URI[md5sum] = "d22757338542e3742a335cea6210e419"
+SRC_URI[sha256sum] = "52ddbaeca2dccf53ba2d6dec5676ca7bc3b2403ef8b37f7da78b7654bb3e10f0"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
  2020-07-08  9:46 ` [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:37   ` [oe] " Trevor Gamblin
  2020-07-08  9:46 ` [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0 Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.5.0:

- Add pt_PT locale

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-humanize_2.4.1.bb => python3-humanize_2.5.0.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-humanize_2.4.1.bb => python3-humanize_2.5.0.bb} (71%)

diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb b/meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
index 3a06a48b1..255933a5c 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[md5sum] = "3d4d25cf84181c55bf7d219dd175dbff"
-SRC_URI[sha256sum] = "4b4ce2fc1c9d79c63f68009ddf5a12ad238aa78e2fceb256b5aa921763551422"
+SRC_URI[md5sum] = "636e2c0fa1465abf8f1ff677d00e11c4"
+SRC_URI[sha256sum] = "8a68bd9bccb899fd9bfb1e6d96c1e84e4475551cc9a5b5bdbd69b9b1cfd19c80"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
  2020-07-08  9:46 ` [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
  2020-07-08  9:46 ` [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0 Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:37   ` [oe] " Trevor Gamblin
  2020-07-08  9:46 ` [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade 0.2.0:

- Add LICENSE and MANIFEST.in
- Pin tinydb<4
- Drop support for EOL Python 2.7, 3.3 and 3.4

Use LICENSE for LIC_FILES_CHKSUM.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-tinyrecord_0.1.5.bb => python3-tinyrecord_0.2.0.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-tinyrecord_0.1.5.bb => python3-tinyrecord_0.2.0.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb b/meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb
rename to meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
index 65df2e1c3..1d99ae2f3 100644
--- a/meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb
+++ b/meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
@@ -6,10 +6,10 @@ then execute architecture which allows us to minimize the time \
 that we are within a thread lock."
 HOMEPAGE = "https://github.com/eugene-eeo/tinyrecord"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://README;md5=31c1dc11b4ae83546538de4c16bceabc"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ee157eec4b228c8d5b7a6e0feab2864a"
 
-SRC_URI[md5sum] = "e47dcfe299686cd3fa7ffaa7cb2ee8b1"
-SRC_URI[sha256sum] = "bc7e6a8e78600df234d7a85c2f5d584130f2c6ffd7cd310f9d3a1d976d3373c8"
+SRC_URI[md5sum] = "cbaae3f4599b12e3bea67ca4a75eca99"
+SRC_URI[sha256sum] = "eb6dc23601be359ee00f5a3d31a46adf3bad0a16f8d60af216cd67982ca75cf4"
 
 PYPI_PACKAGE = "tinyrecord"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-07-08  9:46 ` [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0 Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:37   ` [oe] " Trevor Gamblin
  2020-07-08  9:46 ` [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.5.0:

- Drop support for Python 2.7, only 3.5 or newer is supported now

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-luma-oled_3.4.0.bb => python3-luma-oled_3.5.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-luma-oled_3.4.0.bb => python3-luma-oled_3.5.0.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb b/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
rename to meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
index ee3b00e7f..39bc37fda 100644
--- a/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
@@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c328c862c3335ad464e1c9a3ba574249"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "2944155b2242b9d2ddeb6e139c6083b8"
-SRC_URI[sha256sum] = "2ea2b535e7e2f056a51a8c54ad78aa1f00d5699fc439c01bc7c2902823889552"
+SRC_URI[md5sum] = "64436aaa7a05a205430b38d2f9a9bec7"
+SRC_URI[sha256sum] = "ca62fd7337ee9780b32a8cdc10bcd69879f2cfd97720ab2e17e254a160f6c24f"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-07-08  9:46 ` [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0 Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:37   ` [oe] " Trevor Gamblin
  2020-07-08  9:46 ` [meta-python][PATCH 7/7] python3-jsonref: " Leon Anavi
  2020-07-10 12:36 ` [oe] [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python-pyconnman/python-pyconnman.inc           | 12 ------------
 .../python-pyconnman/python3-pyconnman_0.2.0.bb     | 13 ++++++++++---
 2 files changed, 10 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc

diff --git a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc b/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
deleted file mode 100644
index 8517079bf..000000000
--- a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
+++ /dev/null
@@ -1,12 +0,0 @@
-DESCRIPTION = "Python-based Network Connectivity Management"
-HOMEPAGE = "https://pypi.python.org/pypi/pyconnman/"
-LICENSE = "Apache-2.0"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
-
-SRC_URI[md5sum] = "d60bdffbd9c920f005fdc5e05a8b94cd"
-SRC_URI[sha256sum] = "d3a63a039c82b08a1171b003eafa62c6f128aa4eaa1ce7a55a9401b48f9ad926"
-
-inherit pypi
-
-RDEPENDS_${PN} = "connman"
diff --git a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
index e0f3fdd75..b80c167bb 100644
--- a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
+++ b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
@@ -1,5 +1,12 @@
-require python-pyconnman.inc
+DESCRIPTION = "Python-based Network Connectivity Management"
+HOMEPAGE = "https://pypi.python.org/pypi/pyconnman/"
+LICENSE = "Apache-2.0"
 
-inherit setuptools3
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-RDEPENDS_${PN} += "python3-dbus python3-pprint"
+SRC_URI[md5sum] = "d60bdffbd9c920f005fdc5e05a8b94cd"
+SRC_URI[sha256sum] = "d3a63a039c82b08a1171b003eafa62c6f128aa4eaa1ce7a55a9401b48f9ad926"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} = "connman python3-dbus python3-pprint"
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-jsonref: Consolidate in a single file
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-07-08  9:46 ` [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file Leon Anavi
@ 2020-07-08  9:46 ` Leon Anavi
  2020-07-10 12:38   ` [oe] " Trevor Gamblin
  2020-07-10 12:36 ` [oe] [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-08  9:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python-jsonref/python-jsonref.inc                | 11 -----------
 .../python-jsonref/python3-jsonref_0.2.bb            | 12 +++++++++++-
 2 files changed, 11 insertions(+), 12 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python-jsonref/python-jsonref.inc

diff --git a/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc b/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc
deleted file mode 100644
index 45deb09c7..000000000
--- a/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc
+++ /dev/null
@@ -1,11 +0,0 @@
-SUMMARY = "jsonref is a library for automatic dereferencing of JSON Reference objects for Python"
-HOMEPAGE = "https://github.com/gazpachoking/jsonref"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=a34264f25338d41744dca1abfe4eb18f"
-
-SRC_URI[md5sum] = "42b518b9ccd6852d1d709749bc96cb70"
-SRC_URI[sha256sum] = "f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"
-
-inherit pypi setuptools3
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
index d97893f5a..45deb09c7 100644
--- a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
+++ b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
@@ -1 +1,11 @@
-require python-jsonref.inc
+SUMMARY = "jsonref is a library for automatic dereferencing of JSON Reference objects for Python"
+HOMEPAGE = "https://github.com/gazpachoking/jsonref"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a34264f25338d41744dca1abfe4eb18f"
+
+SRC_URI[md5sum] = "42b518b9ccd6852d1d709749bc96cb70"
+SRC_URI[sha256sum] = "f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"
+
+inherit pypi setuptools3
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1
  2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-07-08  9:46 ` [meta-python][PATCH 7/7] python3-jsonref: " Leon Anavi
@ 2020-07-10 12:36 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Upgrade to release 7.1.1:
>
> - Add debug prints
> - Bump flake8 from 3.7.9 to 3.8.3
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-pychromecast_7.1.0.bb => python3-pychromecast_7.1.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pychromecast_7.1.0.bb => python3-pychromecast_7.1.1.bb} (66%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
> similarity index 66%
> rename from meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
> index 12076adcd..3da979c0f 100644
> --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
>   
> -SRC_URI[md5sum] = "10483fca4ffa0381c0c49f3647827179"
> -SRC_URI[sha256sum] = "30e18e7d79b6ce2097e630d3cab6e6503f759808ae1ae592bec0a8a7591534f3"
> +SRC_URI[md5sum] = "897e7acd6ac2c01f3df2e2d6b2e13c11"
> +SRC_URI[sha256sum] = "87fa9ad42425edd21e02a9240669e5763e52d975ee259a948a6fe07e6ab977b9"
>   
>   PYPI_PACKAGE = "PyChromecast"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0
  2020-07-08  9:46 ` [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
@ 2020-07-10 12:37   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Upgrade to release 2.9.0:
>
> - More robust loading of FEI SEM data.
> - Fix webcam not working on Win10.
> - Add a few standard images useful to 3D visualization.
> - The timeout used in HTTP requests can now be set with an
>    environment variable.
> - The DICOM plugin can now used gdcm for compressed transfer
>    formats.
> - Better support for itk/sitk plugins.
> - Test coverage and CI for ARM.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-imageio_2.8.0.bb => python3-imageio_2.9.0.bb}    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-imageio_2.8.0.bb => python3-imageio_2.9.0.bb} (73%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb b/meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
> similarity index 73%
> rename from meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb
> rename to meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
> index 9ca30f424..fbe5e2c97 100644
> --- a/meta-python/recipes-devtools/python/python3-imageio_2.8.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-imageio_2.9.0.bb
> @@ -6,8 +6,8 @@ LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=7b9bbbb543b6af3e6b53f9b7fb68f71d"
>   
>   
> -SRC_URI[md5sum] = "1e270dbf24c0390c2f4e3e4120904ac0"
> -SRC_URI[sha256sum] = "fb5fd6d3d17126bbaac9af29fe340e2c97a196eb9416d4f28c0e543744a152cf"
> +SRC_URI[md5sum] = "d22757338542e3742a335cea6210e419"
> +SRC_URI[sha256sum] = "52ddbaeca2dccf53ba2d6dec5676ca7bc3b2403ef8b37f7da78b7654bb3e10f0"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0
  2020-07-08  9:46 ` [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0 Leon Anavi
@ 2020-07-10 12:37   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Upgrade to release 2.5.0:
>
> - Add pt_PT locale
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-humanize_2.4.1.bb => python3-humanize_2.5.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-humanize_2.4.1.bb => python3-humanize_2.5.0.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb b/meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
> rename to meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
> index 3a06a48b1..255933a5c 100644
> --- a/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-humanize_2.5.0.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
>   
> -SRC_URI[md5sum] = "3d4d25cf84181c55bf7d219dd175dbff"
> -SRC_URI[sha256sum] = "4b4ce2fc1c9d79c63f68009ddf5a12ad238aa78e2fceb256b5aa921763551422"
> +SRC_URI[md5sum] = "636e2c0fa1465abf8f1ff677d00e11c4"
> +SRC_URI[sha256sum] = "8a68bd9bccb899fd9bfb1e6d96c1e84e4475551cc9a5b5bdbd69b9b1cfd19c80"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0
  2020-07-08  9:46 ` [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0 Leon Anavi
@ 2020-07-10 12:37   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Upgrade 0.2.0:
>
> - Add LICENSE and MANIFEST.in
> - Pin tinydb<4
> - Drop support for EOL Python 2.7, 3.3 and 3.4
>
> Use LICENSE for LIC_FILES_CHKSUM.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-tinyrecord_0.1.5.bb => python3-tinyrecord_0.2.0.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-tinyrecord_0.1.5.bb => python3-tinyrecord_0.2.0.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb b/meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb
> rename to meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
> index 65df2e1c3..1d99ae2f3 100644
> --- a/meta-python/recipes-devtools/python/python3-tinyrecord_0.1.5.bb
> +++ b/meta-python/recipes-devtools/python/python3-tinyrecord_0.2.0.bb
> @@ -6,10 +6,10 @@ then execute architecture which allows us to minimize the time \
>   that we are within a thread lock."
>   HOMEPAGE = "https://github.com/eugene-eeo/tinyrecord"
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://README;md5=31c1dc11b4ae83546538de4c16bceabc"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=ee157eec4b228c8d5b7a6e0feab2864a"
>   
> -SRC_URI[md5sum] = "e47dcfe299686cd3fa7ffaa7cb2ee8b1"
> -SRC_URI[sha256sum] = "bc7e6a8e78600df234d7a85c2f5d584130f2c6ffd7cd310f9d3a1d976d3373c8"
> +SRC_URI[md5sum] = "cbaae3f4599b12e3bea67ca4a75eca99"
> +SRC_URI[sha256sum] = "eb6dc23601be359ee00f5a3d31a46adf3bad0a16f8d60af216cd67982ca75cf4"
>   
>   PYPI_PACKAGE = "tinyrecord"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0
  2020-07-08  9:46 ` [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0 Leon Anavi
@ 2020-07-10 12:37   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Upgrade to release 3.5.0:
>
> - Drop support for Python 2.7, only 3.5 or newer is supported now
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-luma-oled_3.4.0.bb => python3-luma-oled_3.5.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-luma-oled_3.4.0.bb => python3-luma-oled_3.5.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb b/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
> rename to meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
> index ee3b00e7f..39bc37fda 100644
> --- a/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
> @@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c328c862c3335ad464e1c9a3ba574249"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "2944155b2242b9d2ddeb6e139c6083b8"
> -SRC_URI[sha256sum] = "2ea2b535e7e2f056a51a8c54ad78aa1f00d5699fc439c01bc7c2902823889552"
> +SRC_URI[md5sum] = "64436aaa7a05a205430b38d2f9a9bec7"
> +SRC_URI[sha256sum] = "ca62fd7337ee9780b32a8cdc10bcd69879f2cfd97720ab2e17e254a160f6c24f"
>   
>   CLEANBROKEN = "1"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file
  2020-07-08  9:46 ` [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file Leon Anavi
@ 2020-07-10 12:37   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python-pyconnman/python-pyconnman.inc           | 12 ------------
>   .../python-pyconnman/python3-pyconnman_0.2.0.bb     | 13 ++++++++++---
>   2 files changed, 10 insertions(+), 15 deletions(-)
>   delete mode 100644 meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
>
> diff --git a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc b/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
> deleted file mode 100644
> index 8517079bf..000000000
> --- a/meta-python/recipes-connectivity/python-pyconnman/python-pyconnman.inc
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -DESCRIPTION = "Python-based Network Connectivity Management"
> -HOMEPAGE = "https://pypi.python.org/pypi/pyconnman/"
> -LICENSE = "Apache-2.0"
> -
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
> -
> -SRC_URI[md5sum] = "d60bdffbd9c920f005fdc5e05a8b94cd"
> -SRC_URI[sha256sum] = "d3a63a039c82b08a1171b003eafa62c6f128aa4eaa1ce7a55a9401b48f9ad926"
> -
> -inherit pypi
> -
> -RDEPENDS_${PN} = "connman"
> diff --git a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
> index e0f3fdd75..b80c167bb 100644
> --- a/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
> +++ b/meta-python/recipes-connectivity/python-pyconnman/python3-pyconnman_0.2.0.bb
> @@ -1,5 +1,12 @@
> -require python-pyconnman.inc
> +DESCRIPTION = "Python-based Network Connectivity Management"
> +HOMEPAGE = "https://pypi.python.org/pypi/pyconnman/"
> +LICENSE = "Apache-2.0"
>   
> -inherit setuptools3
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
>   
> -RDEPENDS_${PN} += "python3-dbus python3-pprint"
> +SRC_URI[md5sum] = "d60bdffbd9c920f005fdc5e05a8b94cd"
> +SRC_URI[sha256sum] = "d3a63a039c82b08a1171b003eafa62c6f128aa4eaa1ce7a55a9401b48f9ad926"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} = "connman python3-dbus python3-pprint"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-jsonref: Consolidate in a single file
  2020-07-08  9:46 ` [meta-python][PATCH 7/7] python3-jsonref: " Leon Anavi
@ 2020-07-10 12:38   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-10 12:38 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/8/20 5:46 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python-jsonref/python-jsonref.inc                | 11 -----------
>   .../python-jsonref/python3-jsonref_0.2.bb            | 12 +++++++++++-
>   2 files changed, 11 insertions(+), 12 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python-jsonref/python-jsonref.inc
>
> diff --git a/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc b/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc
> deleted file mode 100644
> index 45deb09c7..000000000
> --- a/meta-python/recipes-devtools/python-jsonref/python-jsonref.inc
> +++ /dev/null
> @@ -1,11 +0,0 @@
> -SUMMARY = "jsonref is a library for automatic dereferencing of JSON Reference objects for Python"
> -HOMEPAGE = "https://github.com/gazpachoking/jsonref"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=a34264f25338d41744dca1abfe4eb18f"
> -
> -SRC_URI[md5sum] = "42b518b9ccd6852d1d709749bc96cb70"
> -SRC_URI[sha256sum] = "f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"
> -
> -inherit pypi setuptools3
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
> index d97893f5a..45deb09c7 100644
> --- a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
> +++ b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_0.2.bb
> @@ -1 +1,11 @@
> -require python-jsonref.inc
> +SUMMARY = "jsonref is a library for automatic dereferencing of JSON Reference objects for Python"
> +HOMEPAGE = "https://github.com/gazpachoking/jsonref"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=a34264f25338d41744dca1abfe4eb18f"
> +
> +SRC_URI[md5sum] = "42b518b9ccd6852d1d709749bc96cb70"
> +SRC_URI[sha256sum] = "f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"
> +
> +inherit pypi setuptools3
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

end of thread, other threads:[~2020-07-10 12:38 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-08  9:46 [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 Leon Anavi
2020-07-08  9:46 ` [meta-python][PATCH 2/7] python3-imageio: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
2020-07-10 12:37   ` [oe] " Trevor Gamblin
2020-07-08  9:46 ` [meta-python][PATCH 3/7] python3-humanize: Upgrade 2.4.1 -> 2.5.0 Leon Anavi
2020-07-10 12:37   ` [oe] " Trevor Gamblin
2020-07-08  9:46 ` [meta-python][PATCH 4/7] python3-tinyrecord: Upgrade 0.1.5 -> 0.2.0 Leon Anavi
2020-07-10 12:37   ` [oe] " Trevor Gamblin
2020-07-08  9:46 ` [meta-python][PATCH 5/7] python3-luma-oled: Upgrade 3.4.0 -> 3.5.0 Leon Anavi
2020-07-10 12:37   ` [oe] " Trevor Gamblin
2020-07-08  9:46 ` [meta-python][PATCH 6/7] python3-pyconnman: Consolidate in a single file Leon Anavi
2020-07-10 12:37   ` [oe] " Trevor Gamblin
2020-07-08  9:46 ` [meta-python][PATCH 7/7] python3-jsonref: " Leon Anavi
2020-07-10 12:38   ` [oe] " Trevor Gamblin
2020-07-10 12:36 ` [oe] [meta-python][PATCH 1/7] python3-pychromecast: Upgrade 7.1.0 -> 7.1.1 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.