All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0
@ 2021-02-01 12:45 Leon Anavi
  2021-02-01 12:45 ` [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2021-02-01 12:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.0:

- Fixed bug where setting always_show_hint=True did not show a
  hint when completing Settables
- Fixed bug in editor detection logic on Linux systems that do not
  have which
- Fixed bug in table creator where column headers with tabs would
  result in an incorrect width calculation
- Fixed FileNotFoundError which occurred when running history
  --clear and no history file existed.
- Added silent_startup_script option to cmd2.Cmd.__init__(). If
  True, then the startup script's output will be suppressed.
  Anything written to stderr will still display.
- cmd2 now uses pyreadline3 when running Python 3.8 or greater
  on Windows
- This is the last release planned to support Python 3.5

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

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
index dfe493bd2..18c7a6699 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
@@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-SRC_URI[md5sum] = "520afccc1d46f833d117a23fab76ed8f"
-SRC_URI[sha256sum] = "e59fa932418603af4e046a96c8985812b05af8a73bfd9d7a386cd1b02c6ab687"
+SRC_URI[sha256sum] = "701a8c9975c4abc45e5d13906ab149f959f812869106347323a3f89ac0e82a62"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3
  2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
@ 2021-02-01 12:45 ` Leon Anavi
  2021-02-02 22:09   ` [oe] " Trevor Gamblin
  2021-02-01 12:45 ` [meta-python][PATCH 3/5] python3-croniter: Upgrade 1.0.4 -> 1.0.5 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-01 12:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.1.3:

- Extend tests for XPath 2.0 with minor fixes
- Fix fn:round-half-to-even

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

diff --git a/meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb b/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb
rename to meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
index f47f15222..2cba4fb5c 100644
--- a/meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/elementpath"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5dbb7fb7d72da3921202dd7b995d3ecf"
 
-SRC_URI[md5sum] = "887f60e9c4fb9b0804a38372b2798101"
-SRC_URI[sha256sum] = "23e1fed8d196d9a6cc4d220ef11fbe7eb8cff3a27848621c447e9d96134b2085"
+SRC_URI[sha256sum] = "b729d9376cc0f76479c9b0cef30cc0d3c9082ccb4507caa0da1a5e4964926960"
 
 PYPI_PACKAGE = "elementpath"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-croniter: Upgrade 1.0.4 -> 1.0.5
  2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
  2021-02-01 12:45 ` [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3 Leon Anavi
@ 2021-02-01 12:45 ` Leon Anavi
  2021-02-02 22:10   ` [oe] " Trevor Gamblin
  2021-02-01 12:45 ` [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-01 12:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.5:

- Security fix: fix overflow when using cron ranges

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

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


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

* [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0
  2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
  2021-02-01 12:45 ` [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3 Leon Anavi
  2021-02-01 12:45 ` [meta-python][PATCH 3/5] python3-croniter: Upgrade 1.0.4 -> 1.0.5 Leon Anavi
@ 2021-02-01 12:45 ` Leon Anavi
  2021-02-02 22:10   ` [oe] " Trevor Gamblin
  2021-02-01 12:45 ` [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3 Leon Anavi
  2021-02-02 22:09 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-01 12:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 8.0.0:

- Infer contentType from playQueue items
- Lint example scripts
- Revert "Lint example scripts"
- Lint example scripts
- Bump pylint to 2.6.0
- Remove unintended 'async' from listener interfaces
- Update BubbleUPNP example
- Refactor listeners and controllers as ABCs
- Add more google devices to consts
- Make current_time optional when loading or queing media

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-pychromecast_7.7.2.bb => python3-pychromecast_8.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pychromecast_7.7.2.bb => python3-pychromecast_8.0.0.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb b/meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
index c0ff58cfd..939db5768 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[sha256sum] = "aad4b145cb8c76b629c700877e49c418810aaabb26ace5035c49940f9657f2f0"
+SRC_URI[sha256sum] = "21e9295b2e8088a7f19f82b22c7abcc07ab329914d647cc5dcac08790a7c9d36"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3
  2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-02-01 12:45 ` [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0 Leon Anavi
@ 2021-02-01 12:45 ` Leon Anavi
  2021-02-02 22:10   ` [oe] " Trevor Gamblin
  2021-02-02 22:09 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-01 12:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.3:

- Changed the default ordering of “CREATE” and “DROP” statements
  indexes and unique constraints within the autogenerate process,
  so that for example in an upgrade() operation, a particular
  index or constraint that is to be replaced such as for a casing
  convention change will not produce any naming conflicts. For
  foreign key constraint objects, this is already how constraints
  are ordered, and for table objects, users would normally want to
  use Operations.rename_table() in any case.
- Fixed assorted autogenerate issues with SQL Server.
- Fixed issue where autogenerate rendering of op.alter_column()
  would fail to include MySQL existing_nullable=False if the column
  were part of a primary key constraint within the table metadata.

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

diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb b/meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb
rename to meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
index 9e30cc131..c263300cd 100644
--- a/meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "a4de8d3525a95a96d59342e14b95cab5956c25b0907dce1549bb4e3e7958f4c2"
+SRC_URI[sha256sum] = "04608b6904a6e6bd1af83e1a48f73f50ba214aeddef44b92d498df33818654a8"
 
 PYPI_PACKAGE = "alembic"
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0
  2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-02-01 12:45 ` [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3 Leon Anavi
@ 2021-02-02 22:09 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-02 22:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-01 7:45 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.5.0:
>
> - Fixed bug where setting always_show_hint=True did not show a
>    hint when completing Settables
> - Fixed bug in editor detection logic on Linux systems that do not
>    have which
> - Fixed bug in table creator where column headers with tabs would
>    result in an incorrect width calculation
> - Fixed FileNotFoundError which occurred when running history
>    --clear and no history file existed.
> - Added silent_startup_script option to cmd2.Cmd.__init__(). If
>    True, then the startup script's output will be suppressed.
>    Anything written to stderr will still display.
> - cmd2 now uses pyreadline3 when running Python 3.8 or greater
>    on Windows
> - This is the last release planned to support Python 3.5
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cmd2_1.4.0.bb => python3-cmd2_1.5.0.bb}    | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cmd2_1.4.0.bb => python3-cmd2_1.5.0.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
> rename to meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
> index dfe493bd2..18c7a6699 100644
> --- a/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-cmd2_1.5.0.bb
> @@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
>
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>
> -SRC_URI[md5sum] = "520afccc1d46f833d117a23fab76ed8f"
> -SRC_URI[sha256sum] = "e59fa932418603af4e046a96c8985812b05af8a73bfd9d7a386cd1b02c6ab687"
> +SRC_URI[sha256sum] = "701a8c9975c4abc45e5d13906ab149f959f812869106347323a3f89ac0e82a62"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3
  2021-02-01 12:45 ` [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3 Leon Anavi
@ 2021-02-02 22:09   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-02 22:09 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-01 7:45 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.1.3:
>
> - Extend tests for XPath 2.0 with minor fixes
> - Fix fn:round-half-to-even
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-elementpath_2.1.2.bb => python3-elementpath_2.1.3.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-elementpath_2.1.2.bb => python3-elementpath_2.1.3.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb b/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb
> rename to meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
> index f47f15222..2cba4fb5c 100644
> --- a/meta-python/recipes-devtools/python/python3-elementpath_2.1.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/elementpath"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5dbb7fb7d72da3921202dd7b995d3ecf"
>
> -SRC_URI[md5sum] = "887f60e9c4fb9b0804a38372b2798101"
> -SRC_URI[sha256sum] = "23e1fed8d196d9a6cc4d220ef11fbe7eb8cff3a27848621c447e9d96134b2085"
> +SRC_URI[sha256sum] = "b729d9376cc0f76479c9b0cef30cc0d3c9082ccb4507caa0da1a5e4964926960"
>
>   PYPI_PACKAGE = "elementpath"
>   inherit pypi setuptools3
> --
> 2.17.1
>
>
> 
>

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

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

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

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


On 2021-02-01 7:45 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.0.5:
>
> - Security fix: fix overflow when using cron ranges
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-croniter_1.0.4.bb => python3-croniter_1.0.5.bb}    | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-croniter_1.0.4.bb => python3-croniter_1.0.5.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.4.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-croniter_1.0.4.bb
> rename to meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
> index 8328cf6d3..c8af97d7c 100644
> --- a/meta-python/recipes-devtools/python/python3-croniter_1.0.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.5.bb
> @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
>
>   PYPI_PACKAGE = "croniter"
>
> -SRC_URI[sha256sum] = "7f861f4a896b2b43069ef218d2b999d2c9f760598c2592a6b842cb04bc75562e"
> +SRC_URI[sha256sum] = "8636e7f0ce842b4192b7f097cab724fc15bf2459265f1a2bc6cf6eacfa44420e"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0
  2021-02-01 12:45 ` [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0 Leon Anavi
@ 2021-02-02 22:10   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-02 22:10 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-01 7:45 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 8.0.0:
>
> - Infer contentType from playQueue items
> - Lint example scripts
> - Revert "Lint example scripts"
> - Lint example scripts
> - Bump pylint to 2.6.0
> - Remove unintended 'async' from listener interfaces
> - Update BubbleUPNP example
> - Refactor listeners and controllers as ABCs
> - Add more google devices to consts
> - Make current_time optional when loading or queing media
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-pychromecast_7.7.2.bb => python3-pychromecast_8.0.0.bb} | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pychromecast_7.7.2.bb => python3-pychromecast_8.0.0.bb} (76%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb b/meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
> similarity index 76%
> rename from meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb
> rename to meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
> index c0ff58cfd..939db5768 100644
> --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-pychromecast_8.0.0.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
>
> -SRC_URI[sha256sum] = "aad4b145cb8c76b629c700877e49c418810aaabb26ace5035c49940f9657f2f0"
> +SRC_URI[sha256sum] = "21e9295b2e8088a7f19f82b22c7abcc07ab329914d647cc5dcac08790a7c9d36"
>
>   PYPI_PACKAGE = "PyChromecast"
>
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3
  2021-02-01 12:45 ` [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3 Leon Anavi
@ 2021-02-02 22:10   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-02 22:10 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-01 7:45 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.5.3:
>
> - Changed the default ordering of “CREATE” and “DROP” statements
>    indexes and unique constraints within the autogenerate process,
>    so that for example in an upgrade() operation, a particular
>    index or constraint that is to be replaced such as for a casing
>    convention change will not produce any naming conflicts. For
>    foreign key constraint objects, this is already how constraints
>    are ordered, and for table objects, users would normally want to
>    use Operations.rename_table() in any case.
> - Fixed assorted autogenerate issues with SQL Server.
> - Fixed issue where autogenerate rendering of op.alter_column()
>    would fail to include MySQL existing_nullable=False if the column
>    were part of a primary key constraint within the table metadata.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-alembic_1.5.2.bb => python3-alembic_1.5.3.bb}      | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-alembic_1.5.2.bb => python3-alembic_1.5.3.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb b/meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb
> rename to meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
> index 9e30cc131..c263300cd 100644
> --- a/meta-python/recipes-devtools/python/python3-alembic_1.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-alembic_1.5.3.bb
> @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
>
>   inherit pypi setuptools3
>
> -SRC_URI[sha256sum] = "a4de8d3525a95a96d59342e14b95cab5956c25b0907dce1549bb4e3e7958f4c2"
> +SRC_URI[sha256sum] = "04608b6904a6e6bd1af83e1a48f73f50ba214aeddef44b92d498df33818654a8"
>
>   PYPI_PACKAGE = "alembic"
>
> --
> 2.17.1
>
>
> 
>

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

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

end of thread, other threads:[~2021-02-02 22:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-01 12:45 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.5.0 Leon Anavi
2021-02-01 12:45 ` [meta-python][PATCH 2/5] python3-elementpath: Upgrade 2.1.2 -> 2.1.3 Leon Anavi
2021-02-02 22:09   ` [oe] " Trevor Gamblin
2021-02-01 12:45 ` [meta-python][PATCH 3/5] python3-croniter: Upgrade 1.0.4 -> 1.0.5 Leon Anavi
2021-02-02 22:10   ` [oe] " Trevor Gamblin
2021-02-01 12:45 ` [meta-python][PATCH 4/5] python3-pychromecast: Upgrade 7.7.2 -> 8.0.0 Leon Anavi
2021-02-02 22:10   ` [oe] " Trevor Gamblin
2021-02-01 12:45 ` [meta-python][PATCH 5/5] python3-alembic: Upgrade 1.5.2 -> 1.5.3 Leon Anavi
2021-02-02 22:10   ` [oe] " Trevor Gamblin
2021-02-02 22:09 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.4.0 -> 1.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.