All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4
@ 2020-10-01  8:20 Leon Anavi
  2020-10-01  8:20 ` [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2020-10-01  8:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.5.4:

- In rare cases isort changes the content of multiline strings
  after a yield statement.
- Support case where known_SECTION points to a section not listed
  in sections.

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

diff --git a/meta-python/recipes-devtools/python/python3-isort_5.5.3.bb b/meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-isort_5.5.3.bb
rename to meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
index 00978ec59d..0c5842790f 100644
--- a/meta-python/recipes-devtools/python/python3-isort_5.5.3.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
@@ -4,8 +4,8 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "5200f5b09a2a648775d0e8dbf0c0d3c8"
-SRC_URI[sha256sum] = "6187a9f1ce8784cbc6d1b88790a43e6083a6302f03e9ae482acc0f232a98c843"
+SRC_URI[md5sum] = "6b90dd55851a8ccb3a19fe2cb82cb82f"
+SRC_URI[sha256sum] = "ba040c24d20aa302f78f4747df549573ae1eaf8e1084269199154da9c483f07f"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0
  2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
@ 2020-10-01  8:20 ` Leon Anavi
  2020-10-04 13:37   ` [oe] " Trevor Gamblin
  2020-10-01  8:20 ` [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-01  8:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.2.0:

- Final version tested with Python 2.7 and 3.5
- README: Announce deprecation of Python 2.7, 3.5
- README: More detail and examples
- Bugfix: Fix segfault on loading huge arrays with C-backend
- Build system: Allow packagers to force C-backend building or
  disable using env var
- Feature: :module:`cbor2.tool` Command line diagnostic tool
- Feature: Ignore semantic tag used for file magic 55799 AKA
  "Self-Described CBOR"

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

diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb
rename to meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
index c65be72261..cc067c41a9 100644
--- a/meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
@@ -4,8 +4,8 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
 
-SRC_URI[sha256sum] = "91759bd0ee5ef0d4fa24144dfa551670730baeca8cf2fff1cc59f734ecd21de6"
-SRC_URI[md5sum] = "693c1bd6635bee8a591a70ea924ad676"
+SRC_URI[sha256sum] = "a33aa2e5534fd74401ac95686886e655e3b2ce6383b3f958199b6e70a87c94bf"
+SRC_URI[md5sum] = "0940aa8bfd1a07f06a983bb6dc78f1ca"
 
 inherit pypi setuptools3 ptest
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0
  2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
  2020-10-01  8:20 ` [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0 Leon Anavi
@ 2020-10-01  8:20 ` Leon Anavi
  2020-10-04 13:37   ` [oe] " Trevor Gamblin
  2020-10-01  8:20 ` [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-01  8:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.0.0:

- Add explicit setuptools dependency for pkg_resources
- Drop support for Python 3.5
- pdate minimum_unit handling of naturaldelta and naturaltime
- Internationalise a previously hardcoded 'and'
- Update docs

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

diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb b/meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb
rename to meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
index de1e985742..386fb1e136 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[md5sum] = "de3a507d9274912a3a177849a9349edb"
-SRC_URI[sha256sum] = "8ee358ea6c23de896b9d1925ebe6a8504bb2ba7e98d5ccf4d07ab7f3b28f3819"
+SRC_URI[md5sum] = "779b291ac40b73a0fd6006c0485c1794"
+SRC_URI[sha256sum] = "db08acbd8e31954f146467a213a112c4b80a5b8e319e06b76aa184a679bd8b48"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0
  2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
  2020-10-01  8:20 ` [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0 Leon Anavi
  2020-10-01  8:20 ` [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0 Leon Anavi
@ 2020-10-01  8:20 ` Leon Anavi
  2020-10-04 13:37   ` [oe] " Trevor Gamblin
  2020-10-01  8:20 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0 Leon Anavi
  2020-10-04 13:37 ` [oe] [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-01  8:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.0:

- add initial support for python 3.7 and 3.8
- added options StandardOutputFile, StandardOutputFileToAppend,
  StandardErrorFile and StandardErrorFileToAppend to known unit
  signatures.
- Added type stubs for pystemd.daemon, pystemd.dbuslib,
  pystemd.systemd1.Unit and pystemd.systemd1.Manager because we
  still "support python 3.4.
- fix issue when char is unsigned, and <char *> -1 returns 255.
- added slice_ option to pystemd.run to specify the cgroup where
  the unit is created.

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

diff --git a/meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb b/meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb
rename to meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
index 66f026cae2..e09b633f90 100644
--- a/meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
@@ -2,8 +2,8 @@ SUMMARY = "Python bindings for interacting with systemd over DBus"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c"
 
-SRC_URI[md5sum] = "f493c3e54457e49fe3c160274b863bac"
-SRC_URI[sha256sum] = "f5dc49d02995ab96335d9e94f9fe036673d89b8cc9907e7a0ac83c06665f2430"
+SRC_URI[md5sum] = "f993739eca645749f18d4ccfd4a0fbf3"
+SRC_URI[sha256sum] = "cac2e42043ab28d43adf33dab493c6a3cf8a99794f824ae8af6d9cd6458b9972"
 
 DEPENDS = "systemd"
 REQUIRED_DISTRO_FEATURES = "systemd"
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0
  2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-10-01  8:20 ` [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0 Leon Anavi
@ 2020-10-01  8:20 ` Leon Anavi
  2020-10-04 13:37   ` [oe] " Trevor Gamblin
  2020-10-04 13:37 ` [oe] [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-10-01  8:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.18.0:

- Breaking change: The no_proxy environment variable is now
  honored when inferring proxy settings from the system.
- Added Performance/Tracing support for AWS and GCP functions.
- Fix an issue with Django instrumentation where the SDK modified
  resolver_match.callback and broke user code.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-sentry-sdk_0.17.8.bb => python3-sentry-sdk_0.18.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.17.8.bb => python3-sentry-sdk_0.18.0.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
index 99ddbe64d9..e4ab9f33d6 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
@@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[md5sum] = "17ad6e414d77026e264152bd4cc11400"
-SRC_URI[sha256sum] = "e159f7c919d19ae86e5a4ff370fccc45149fab461fbeb93fb5a735a0b33a9cb1"
+SRC_URI[md5sum] = "d6a85d958aea9277c1728c77dcf063a1"
+SRC_URI[sha256sum] = "1d91a0059d2d8bb980bec169578035c2f2d4b93cd8a4fb5b85c81904d33e221a"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4
  2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-10-01  8:20 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0 Leon Anavi
@ 2020-10-04 13:37 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-04 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/1/20 4:20 AM, Leon Anavi wrote:
> Upgrade to release 5.5.4:
>
> - In rare cases isort changes the content of multiline strings
>    after a yield statement.
> - Support case where known_SECTION points to a section not listed
>    in sections.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-isort_5.5.3.bb => python3-isort_5.5.4.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-isort_5.5.3.bb => python3-isort_5.5.4.bb} (73%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-isort_5.5.3.bb b/meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
> similarity index 73%
> rename from meta-python/recipes-devtools/python/python3-isort_5.5.3.bb
> rename to meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
> index 00978ec59d..0c5842790f 100644
> --- a/meta-python/recipes-devtools/python/python3-isort_5.5.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-isort_5.5.4.bb
> @@ -4,8 +4,8 @@ LICENSE = "MIT"
>   SECTION = "devel/python"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
>   
> -SRC_URI[md5sum] = "5200f5b09a2a648775d0e8dbf0c0d3c8"
> -SRC_URI[sha256sum] = "6187a9f1ce8784cbc6d1b88790a43e6083a6302f03e9ae482acc0f232a98c843"
> +SRC_URI[md5sum] = "6b90dd55851a8ccb3a19fe2cb82cb82f"
> +SRC_URI[sha256sum] = "ba040c24d20aa302f78f4747df549573ae1eaf8e1084269199154da9c483f07f"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0
  2020-10-01  8:20 ` [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0 Leon Anavi
@ 2020-10-04 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-04 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/1/20 4:20 AM, Leon Anavi wrote:
> Upgrade to release 5.2.0:
>
> - Final version tested with Python 2.7 and 3.5
> - README: Announce deprecation of Python 2.7, 3.5
> - README: More detail and examples
> - Bugfix: Fix segfault on loading huge arrays with C-backend
> - Build system: Allow packagers to force C-backend building or
>    disable using env var
> - Feature: :module:`cbor2.tool` Command line diagnostic tool
> - Feature: Ignore semantic tag used for file magic 55799 AKA
>    "Self-Described CBOR"
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cbor2_5.1.2.bb => python3-cbor2_5.2.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cbor2_5.1.2.bb => python3-cbor2_5.2.0.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb
> rename to meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
> index c65be72261..cc067c41a9 100644
> --- a/meta-python/recipes-devtools/python/python3-cbor2_5.1.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-cbor2_5.2.0.bb
> @@ -4,8 +4,8 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
>   
> -SRC_URI[sha256sum] = "91759bd0ee5ef0d4fa24144dfa551670730baeca8cf2fff1cc59f734ecd21de6"
> -SRC_URI[md5sum] = "693c1bd6635bee8a591a70ea924ad676"
> +SRC_URI[sha256sum] = "a33aa2e5534fd74401ac95686886e655e3b2ce6383b3f958199b6e70a87c94bf"
> +SRC_URI[md5sum] = "0940aa8bfd1a07f06a983bb6dc78f1ca"
>   
>   inherit pypi setuptools3 ptest
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0
  2020-10-01  8:20 ` [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0 Leon Anavi
@ 2020-10-04 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-04 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/1/20 4:20 AM, Leon Anavi wrote:
> Upgrade to release 3.0.0:
>
> - Add explicit setuptools dependency for pkg_resources
> - Drop support for Python 3.5
> - pdate minimum_unit handling of naturaldelta and naturaltime
> - Internationalise a previously hardcoded 'and'
> - Update docs
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-humanize_2.6.0.bb => python3-humanize_3.0.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-humanize_2.6.0.bb => python3-humanize_3.0.0.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb b/meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb
> rename to meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
> index de1e985742..386fb1e136 100644
> --- a/meta-python/recipes-devtools/python/python3-humanize_2.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-humanize_3.0.0.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
>   
> -SRC_URI[md5sum] = "de3a507d9274912a3a177849a9349edb"
> -SRC_URI[sha256sum] = "8ee358ea6c23de896b9d1925ebe6a8504bb2ba7e98d5ccf4d07ab7f3b28f3819"
> +SRC_URI[md5sum] = "779b291ac40b73a0fd6006c0485c1794"
> +SRC_URI[sha256sum] = "db08acbd8e31954f146467a213a112c4b80a5b8e319e06b76aa184a679bd8b48"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0
  2020-10-01  8:20 ` [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0 Leon Anavi
@ 2020-10-04 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-04 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/1/20 4:20 AM, Leon Anavi wrote:
> Upgrade to release 0.8.0:
>
> - add initial support for python 3.7 and 3.8
> - added options StandardOutputFile, StandardOutputFileToAppend,
>    StandardErrorFile and StandardErrorFileToAppend to known unit
>    signatures.
> - Added type stubs for pystemd.daemon, pystemd.dbuslib,
>    pystemd.systemd1.Unit and pystemd.systemd1.Manager because we
>    still "support python 3.4.
> - fix issue when char is unsigned, and <char *> -1 returns 255.
> - added slice_ option to pystemd.run to specify the cgroup where
>    the unit is created.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pystemd_0.7.0.bb => python3-pystemd_0.8.0.bb}    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pystemd_0.7.0.bb => python3-pystemd_0.8.0.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb b/meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb
> rename to meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
> index 66f026cae2..e09b633f90 100644
> --- a/meta-python/recipes-devtools/python/python3-pystemd_0.7.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pystemd_0.8.0.bb
> @@ -2,8 +2,8 @@ SUMMARY = "Python bindings for interacting with systemd over DBus"
>   LICENSE = "LGPLv2.1"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c"
>   
> -SRC_URI[md5sum] = "f493c3e54457e49fe3c160274b863bac"
> -SRC_URI[sha256sum] = "f5dc49d02995ab96335d9e94f9fe036673d89b8cc9907e7a0ac83c06665f2430"
> +SRC_URI[md5sum] = "f993739eca645749f18d4ccfd4a0fbf3"
> +SRC_URI[sha256sum] = "cac2e42043ab28d43adf33dab493c6a3cf8a99794f824ae8af6d9cd6458b9972"
>   
>   DEPENDS = "systemd"
>   REQUIRED_DISTRO_FEATURES = "systemd"
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0
  2020-10-01  8:20 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0 Leon Anavi
@ 2020-10-04 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-10-04 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 10/1/20 4:20 AM, Leon Anavi wrote:
> Upgrade to release 0.18.0:
>
> - Breaking change: The no_proxy environment variable is now
>    honored when inferring proxy settings from the system.
> - Added Performance/Tracing support for AWS and GCP functions.
> - Fix an issue with Django instrumentation where the SDK modified
>    resolver_match.callback and broke user code.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sentry-sdk_0.17.8.bb => python3-sentry-sdk_0.18.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.17.8.bb => python3-sentry-sdk_0.18.0.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
> index 99ddbe64d9..e4ab9f33d6 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.8.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.18.0.bb
> @@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
>   
> -SRC_URI[md5sum] = "17ad6e414d77026e264152bd4cc11400"
> -SRC_URI[sha256sum] = "e159f7c919d19ae86e5a4ff370fccc45149fab461fbeb93fb5a735a0b33a9cb1"
> +SRC_URI[md5sum] = "d6a85d958aea9277c1728c77dcf063a1"
> +SRC_URI[sha256sum] = "1d91a0059d2d8bb980bec169578035c2f2d4b93cd8a4fb5b85c81904d33e221a"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 
>

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

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

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

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-01  8:20 [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 Leon Anavi
2020-10-01  8:20 ` [meta-python][PATCH 2/5] python3-cbor2: Upgrade 5.1.2 -> 5.2.0 Leon Anavi
2020-10-04 13:37   ` [oe] " Trevor Gamblin
2020-10-01  8:20 ` [meta-python][PATCH 3/5] python3-humanize: Upgrade 2.6.0 -> 3.0.0 Leon Anavi
2020-10-04 13:37   ` [oe] " Trevor Gamblin
2020-10-01  8:20 ` [meta-python][PATCH 4/5] python3-pystemd: Upgrade 0.7.0 -> 0.8.0 Leon Anavi
2020-10-04 13:37   ` [oe] " Trevor Gamblin
2020-10-01  8:20 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0 Leon Anavi
2020-10-04 13:37   ` [oe] " Trevor Gamblin
2020-10-04 13:37 ` [oe] [meta-python][PATCH 1/5] python3-isort: Upgrade 5.5.3 -> 5.5.4 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.