All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0
@ 2020-09-28  8:00 Leon Anavi
  2020-09-28  8:00 ` [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 Leon Anavi
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 7.5.0:

- Allow passing additional media information through to play_media
- Add support for lists, playQueues, and playlists on Plex
  controller
- Misc spelling changes

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

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
index b444df05d8..adfdbb17b8 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[md5sum] = "7ab862743ff33dafc93206c1435abc5e"
-SRC_URI[sha256sum] = "f594231efb34b86eeb463611662bca21a6962793885d3ad68195286940f7473d"
+SRC_URI[md5sum] = "d35c610f57cae909348ff6c60e5e9256"
+SRC_URI[sha256sum] = "2f346a88ddc27a19cc68bc2d3e8929d89276298cb1c11871b82a87fbdafb95a8"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
@ 2020-09-28  8:00 ` Leon Anavi
  2020-09-30 22:16   ` [oe] " Trevor Gamblin
  2020-09-28  8:00 ` [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0 Leon Anavi
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

- Fixed a bug that caused too many tags to be popped from the tag
  stack during tree building, when encountering a closing tag that
  had no matching opening tag.
- Fixed a bug that inconsistently moved elements over when passing
  a Tag, rather than a list, into Tag.extend().
- Specify the soupsieve dependency in a way that complies with
  PEP 508.
- Change the signatures for BeautifulSoup.insert_before and
  insert_after (which are not implemented) to match
  PageElement.insert_before and insert_after, quieting warnings in
  some IDEs.

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

diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb
rename to meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
index 910de12f8a..fb5fb1a6b8 100644
--- a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING.txt;md5=f2d38d8a40bf73fd4b3d16ca2e5882d1"
 
-SRC_URI[md5sum] = "57502b5b34ccfd97b180260071f5799a"
-SRC_URI[sha256sum] = "73cc4d115b96f79c7d77c1c7f7a0a8d4c57860d1041df407dd1aae7f07a77fd7"
+SRC_URI[md5sum] = "5672f9b9bdfb0c6ab3ef074396bf59aa"
+SRC_URI[sha256sum] = "1edf5e39f3a5bc6e38b235b369128416c7239b34f692acccececb040233032a1"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
  2020-09-28  8:00 ` [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 Leon Anavi
@ 2020-09-28  8:00 ` Leon Anavi
  2020-09-30 22:16   ` [oe] " Trevor Gamblin
  2020-09-28  8:00 ` [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1 Leon Anavi
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.50.0:

- add bar colour option
- for notebook as well as std/CLI
- plain text as well as hex (e.g. 'green' or '#00ff00')
- notebook improvements: split bar description into separate
  widget and improve reset() (handle width and colour)
- fix exceptions when file is closed
- add & update tests
- minor documentation updates
- move and configure issue/pr templates

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

diff --git a/meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb b/meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb
rename to meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
index 26eb1073de..bf0385410e 100644
--- a/meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb
+++ b/meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
@@ -5,8 +5,8 @@ SECTION = "devel/python"
 LICENSE = "MIT & MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=7ea57584e3f8bbde2ae3e1537551de25"
 
-SRC_URI[md5sum] = "c2afde3f1d5aa108376fdd0f4b20821d"
-SRC_URI[sha256sum] = "faf9c671bd3fad5ebaeee366949d969dca2b2be32c872a7092a1e1a9048d105b"
+SRC_URI[md5sum] = "4352d89e2c6d6b017f40f244baddfc51"
+SRC_URI[sha256sum] = "93b7a6a9129fce904f6df4cf3ae7ff431d779be681a95c3344c26f3e6c09abfa"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
  2020-09-28  8:00 ` [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 Leon Anavi
  2020-09-28  8:00 ` [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0 Leon Anavi
@ 2020-09-28  8:00 ` Leon Anavi
  2020-09-30 22:16   ` [oe] " Trevor Gamblin
  2020-09-28  8:00 ` [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1 Leon Anavi
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.12.1:

- Update importlib-metadata dependency version range
- Bash nounset mode fixes

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

diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb
rename to meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
index dd749dd9eb..c14a7eba12 100644
--- a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/kislyuk/argcomplete"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[md5sum] = "47e2a3db821f57165be8f3d3ec1e5259"
-SRC_URI[sha256sum] = "2fbe5ed09fd2c1d727d4199feca96569a5b50d44c71b16da9c742201f7cc295c"
+SRC_URI[md5sum] = "2262d0466a40d42267b424bba5010a0b"
+SRC_URI[sha256sum] = "849c2444c35bb2175aea74100ca5f644c29bf716429399c0f2203bb5d9a8e4e6"
 
 PYPI_PACKAGE = "argcomplete"
 
-- 
2.17.1


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

* [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-09-28  8:00 ` [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1 Leon Anavi
@ 2020-09-28  8:00 ` Leon Anavi
  2020-09-30 22:16   ` [oe] " Trevor Gamblin
  2020-09-28  8:00 ` [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0 Leon Anavi
  2020-09-30 22:15 ` [oe] [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Trevor Gamblin
  5 siblings, 1 reply; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.17.1:

- Add cmdline opt: "pcf8574" and "bitbang_6800" interfaces
- Added --inverse option for ST7735 to cmdline opt
- Allow SPI interface to define reset duration
- Change bitmap_font to be compatible with Pillow < 7.0

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

diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb
rename to meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
index e8a61ad062..9246d1b3a6 100644
--- a/meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb
+++ b/meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "8889ee9eb95c3441ee65b4b5f4a022eb"
-SRC_URI[sha256sum] = "518fe4e3286a4e2a75788713a58de403e6bba6d4c909fa5ce0fe14aceb05b85e"
+SRC_URI[md5sum] = "dea76a83c7130f59b7e807c3b2f1b3b5"
+SRC_URI[sha256sum] = "b4a9f934f4dbf9b1d5c74259f871b4187aaa754b139964153f7702badaaccffd"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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

* [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-09-28  8:00 ` [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1 Leon Anavi
@ 2020-09-28  8:00 ` Leon Anavi
  2020-09-30 22:17   ` [oe] " Trevor Gamblin
  2020-09-30 22:15 ` [oe] [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Trevor Gamblin
  5 siblings, 1 reply; 12+ messages in thread
From: Leon Anavi @ 2020-09-28  8:00 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.6.0:

- Add support for Winstar OLED displays

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

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


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

* Re: [oe] [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0
  2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-09-28  8:00 ` [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0 Leon Anavi
@ 2020-09-30 22:15 ` Trevor Gamblin
  5 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:15 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> Upgrade to release 7.5.0:
>
> - Allow passing additional media information through to play_media
> - Add support for lists, playQueues, and playlists on Plex
>    controller
> - Misc spelling changes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-pychromecast_7.3.0.bb => python3-pychromecast_7.5.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pychromecast_7.3.0.bb => python3-pychromecast_7.5.0.bb} (66%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
> similarity index 66%
> rename from meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
> rename to meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
> index b444df05d8..adfdbb17b8 100644
> --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.5.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
>   
> -SRC_URI[md5sum] = "7ab862743ff33dafc93206c1435abc5e"
> -SRC_URI[sha256sum] = "f594231efb34b86eeb463611662bca21a6962793885d3ad68195286940f7473d"
> +SRC_URI[md5sum] = "d35c610f57cae909348ff6c60e5e9256"
> +SRC_URI[sha256sum] = "2f346a88ddc27a19cc68bc2d3e8929d89276298cb1c11871b82a87fbdafb95a8"
>   
>   PYPI_PACKAGE = "PyChromecast"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2
  2020-09-28  8:00 ` [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 Leon Anavi
@ 2020-09-30 22:16   ` Trevor Gamblin
  0 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:16 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> - Fixed a bug that caused too many tags to be popped from the tag
>    stack during tree building, when encountering a closing tag that
>    had no matching opening tag.
> - Fixed a bug that inconsistently moved elements over when passing
>    a Tag, rather than a list, into Tag.extend().
> - Specify the soupsieve dependency in a way that complies with
>    PEP 508.
> - Change the signatures for BeautifulSoup.insert_before and
>    insert_after (which are not implemented) to match
>    PageElement.insert_before and insert_after, quieting warnings in
>    some IDEs.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...eautifulsoup4_4.9.1.bb => python3-beautifulsoup4_4.9.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-beautifulsoup4_4.9.1.bb => python3-beautifulsoup4_4.9.2.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb
> rename to meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
> index 910de12f8a..fb5fb1a6b8 100644
> --- a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://COPYING.txt;md5=f2d38d8a40bf73fd4b3d16ca2e5882d1"
>   
> -SRC_URI[md5sum] = "57502b5b34ccfd97b180260071f5799a"
> -SRC_URI[sha256sum] = "73cc4d115b96f79c7d77c1c7f7a0a8d4c57860d1041df407dd1aae7f07a77fd7"
> +SRC_URI[md5sum] = "5672f9b9bdfb0c6ab3ef074396bf59aa"
> +SRC_URI[sha256sum] = "1edf5e39f3a5bc6e38b235b369128416c7239b34f692acccececb040233032a1"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0
  2020-09-28  8:00 ` [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0 Leon Anavi
@ 2020-09-30 22:16   ` Trevor Gamblin
  0 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:16 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> Upgrade to release 4.50.0:
>
> - add bar colour option
> - for notebook as well as std/CLI
> - plain text as well as hex (e.g. 'green' or '#00ff00')
> - notebook improvements: split bar description into separate
>    widget and improve reset() (handle width and colour)
> - fix exceptions when file is closed
> - add & update tests
> - minor documentation updates
> - move and configure issue/pr templates
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-tqdm_4.49.0.bb => python3-tqdm_4.50.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-tqdm_4.49.0.bb => python3-tqdm_4.50.0.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb b/meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb
> rename to meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
> index 26eb1073de..bf0385410e 100644
> --- a/meta-python/recipes-devtools/python/python3-tqdm_4.49.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-tqdm_4.50.0.bb
> @@ -5,8 +5,8 @@ SECTION = "devel/python"
>   LICENSE = "MIT & MPL-2.0"
>   LIC_FILES_CHKSUM = "file://LICENCE;md5=7ea57584e3f8bbde2ae3e1537551de25"
>   
> -SRC_URI[md5sum] = "c2afde3f1d5aa108376fdd0f4b20821d"
> -SRC_URI[sha256sum] = "faf9c671bd3fad5ebaeee366949d969dca2b2be32c872a7092a1e1a9048d105b"
> +SRC_URI[md5sum] = "4352d89e2c6d6b017f40f244baddfc51"
> +SRC_URI[sha256sum] = "93b7a6a9129fce904f6df4cf3ae7ff431d779be681a95c3344c26f3e6c09abfa"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1
  2020-09-28  8:00 ` [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1 Leon Anavi
@ 2020-09-30 22:16   ` Trevor Gamblin
  0 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:16 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> Upgrade to release 1.12.1:
>
> - Update importlib-metadata dependency version range
> - Bash nounset mode fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-argcomplete_1.12.0.bb => python3-argcomplete_1.12.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-argcomplete_1.12.0.bb => python3-argcomplete_1.12.1.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb
> rename to meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
> index dd749dd9eb..c14a7eba12 100644
> --- a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.1.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/kislyuk/argcomplete"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=2ee41112a44fe7014dce33e26468ba93"
>   
> -SRC_URI[md5sum] = "47e2a3db821f57165be8f3d3ec1e5259"
> -SRC_URI[sha256sum] = "2fbe5ed09fd2c1d727d4199feca96569a5b50d44c71b16da9c742201f7cc295c"
> +SRC_URI[md5sum] = "2262d0466a40d42267b424bba5010a0b"
> +SRC_URI[sha256sum] = "849c2444c35bb2175aea74100ca5f644c29bf716429399c0f2203bb5d9a8e4e6"
>   
>   PYPI_PACKAGE = "argcomplete"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1
  2020-09-28  8:00 ` [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1 Leon Anavi
@ 2020-09-30 22:16   ` Trevor Gamblin
  0 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:16 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> Upgrade to release 1.17.1:
>
> - Add cmdline opt: "pcf8574" and "bitbang_6800" interfaces
> - Added --inverse option for ST7735 to cmdline opt
> - Allow SPI interface to define reset duration
> - Change bitmap_font to be compatible with Pillow < 7.0
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-luma-core_1.16.2.bb => python3-luma-core_1.17.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-luma-core_1.16.2.bb => python3-luma-core_1.17.1.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb
> rename to meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
> index e8a61ad062..9246d1b3a6 100644
> --- a/meta-python/recipes-devtools/python/python3-luma-core_1.16.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-luma-core_1.17.1.bb
> @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "8889ee9eb95c3441ee65b4b5f4a022eb"
> -SRC_URI[sha256sum] = "518fe4e3286a4e2a75788713a58de403e6bba6d4c909fa5ce0fe14aceb05b85e"
> +SRC_URI[md5sum] = "dea76a83c7130f59b7e807c3b2f1b3b5"
> +SRC_URI[sha256sum] = "b4a9f934f4dbf9b1d5c74259f871b4187aaa754b139964153f7702badaaccffd"
>   
>   CLEANBROKEN = "1"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0
  2020-09-28  8:00 ` [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0 Leon Anavi
@ 2020-09-30 22:17   ` Trevor Gamblin
  0 siblings, 0 replies; 12+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:17 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/28/20 4:00 AM, Leon Anavi wrote:
> Upgrade to release 3.6.0:
>
> - Add support for Winstar OLED displays
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-luma-oled_3.5.0.bb => python3-luma-oled_3.6.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-luma-oled_3.5.0.bb => python3-luma-oled_3.6.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb b/meta-python/recipes-devtools/python/python3-luma-oled_3.6.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
> rename to meta-python/recipes-devtools/python/python3-luma-oled_3.6.0.bb
> index 39bc37fda1..ae14aff366 100644
> --- a/meta-python/recipes-devtools/python/python3-luma-oled_3.5.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.6.0.bb
> @@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c328c862c3335ad464e1c9a3ba574249"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "64436aaa7a05a205430b38d2f9a9bec7"
> -SRC_URI[sha256sum] = "ca62fd7337ee9780b32a8cdc10bcd69879f2cfd97720ab2e17e254a160f6c24f"
> +SRC_URI[md5sum] = "ff45a3067658434339da2586a97e526b"
> +SRC_URI[sha256sum] = "dbd8ebce1c0b10feabb725b321d4a7f9f7353fe16878c8145ca332a173c193c9"
>   
>   CLEANBROKEN = "1"
>   
>
> 
>

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

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

end of thread, other threads:[~2020-09-30 22:17 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28  8:00 [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 Leon Anavi
2020-09-28  8:00 ` [meta-python][PATCH 2/6] python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 Leon Anavi
2020-09-30 22:16   ` [oe] " Trevor Gamblin
2020-09-28  8:00 ` [meta-python][PATCH 3/6] python3-tqdm: Upgrade 4.49.0 -> 4.50.0 Leon Anavi
2020-09-30 22:16   ` [oe] " Trevor Gamblin
2020-09-28  8:00 ` [meta-python][PATCH 4/6] python3-argcomplete: Upgrade 1.12.0 -> 1.12.1 Leon Anavi
2020-09-30 22:16   ` [oe] " Trevor Gamblin
2020-09-28  8:00 ` [meta-python][PATCH 5/6] python3-luma-core: Upgrade 1.16.2 -> 1.17.1 Leon Anavi
2020-09-30 22:16   ` [oe] " Trevor Gamblin
2020-09-28  8:00 ` [meta-python][PATCH 6/6] python3-luma-oled: Upgrade 3.5.0 -> 3.6.0 Leon Anavi
2020-09-30 22:17   ` [oe] " Trevor Gamblin
2020-09-30 22:15 ` [oe] [meta-python][PATCH 1/6] python3-pychromecast: Upgrade 7.3.0 -> 7.5.0 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.