All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80
@ 2020-06-26 11:29 Leon Anavi
  2020-06-26 11:29 ` [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0 Leon Anavi
                   ` (11 more replies)
  0 siblings, 12 replies; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.80:

- fix possible race condition when creating instances with
  instancemode "single"
- cython compatibility fix
- removed explicit version checks of dependencies such as serpent.
  This fixes crash error when dealing with prerelease versions
  that didn't match the pattern.
- stick to an older serpent library version to install as a
  dependency when installing on old python versions
- explain the delay and threading in the distributed-computing2
  example

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pyro4_4.77.bb => python3-pyro4_4.80.bb}          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-connectivity/python-pyro4/{python3-pyro4_4.77.bb => python3-pyro4_4.80.bb} (66%)

diff --git a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
similarity index 66%
rename from meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb
rename to meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
index ffe58ee9c..dfea67368 100644
--- a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb
+++ b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
@@ -2,8 +2,8 @@ SUMMARY = "Python Remote Objects"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=cd13dafd4eeb0802bb6efea6b4a4bdbc"
 
-SRC_URI[md5sum] = "21f015ae93cf9ea2bbbc418a2267e9fb"
-SRC_URI[sha256sum] = "2bfe12a22f396474b0e57c898c7e2c561a8f850bf2055d8cf0f7119f0c7a523f"
+SRC_URI[md5sum] = "e31fc077e06de9fc0bb061e357401954"
+SRC_URI[sha256sum] = "46847ca703de3f483fbd0b2d22622f36eff03e6ef7ec7704d4ecaa3964cb2220"
 
 PYPI_PACKAGE = "Pyro4"
 
-- 
2.17.1


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

* [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:51   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1 Leon Anavi
                   ` (10 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.0.0:

- Fix n3 parser exponent syntax of floats with leading dot.
- FIX: Change is comparison to == for tuple
- Added _parseBoolean function to enforce correct Lexical-to-value
  mapping
- SPARQL fix CONSTRUCT resolve with initBindings fixes
- Documentation fixes

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

diff --git a/meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb b/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb
rename to meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
index f7e7f6310..d037a74bf 100644
--- a/meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
@@ -2,8 +2,8 @@ SUMMARY = "RDFLib is a pure Python package for working with RDF"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=68c1a3bb687bd63b8e5552f3ea249840"
 
-SRC_URI[md5sum] = "534fe35b13c5857d53fa1ac5a41eca67"
-SRC_URI[sha256sum] = "da1df14552555c5c7715d8ce71c08f404c988c58a1ecd38552d0da4fc261280d"
+SRC_URI[md5sum] = "80d7c6adc2e4040cdd8dade2e0e61403"
+SRC_URI[sha256sum] = "78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
  2020-06-26 11:29 ` [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:51   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 04/12] python3-cppy: Add new recipe Leon Anavi
                   ` (9 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.18.1:

- explicit build-backend workaround for pip build isolation bug
  "AttributeError: 'module' object has no attribute '__legacy__'"
  on pip install
  https://github.com/httplib2/httplib2/issues/169
- IMPORTANT security vulnerability CWE-93 CRLF injection
  Force %xx quote of space, CR, LF characters in uri.
  https://cwe.mitre.org/data/definitions/93.html

PKG-INFO md5 checksum changed, the license remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-httplib2_0.17.3.bb => python3-httplib2_0.18.1.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-httplib2_0.17.3.bb => python3-httplib2_0.18.1.bb} (52%)

diff --git a/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb b/meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
similarity index 52%
rename from meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
rename to meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
index 57047c9ac..9c9b6c5b0 100644
--- a/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
+++ b/meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
@@ -2,9 +2,9 @@ SUMMARY = "A comprehensive HTTP client library, httplib2 supports many features
 HOMEPAGE = "https://github.com/httplib2/httplib2"
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=4edb3f072a9d815734530f608039a167"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=7e04d1303d64a7b62421751ecb490dc2"
 
-SRC_URI[md5sum] = "5730490cfe83350477b54b0a8a190c8a"
-SRC_URI[sha256sum] = "39dd15a333f67bfb70798faa9de8a6e99c819da6ad82b77f9a259a5c7b1225a2"
+SRC_URI[md5sum] = "0b331f96cdb2ae0e0342d4ea0f5f0502"
+SRC_URI[sha256sum] = "8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 04/12] python3-cppy: Add new recipe
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
  2020-06-26 11:29 ` [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0 Leon Anavi
  2020-06-26 11:29 ` [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:51   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0 Leon Anavi
                   ` (8 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Add cppy release 1.1.0: C++ headers for C extension development.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python3-cppy_1.1.0.bb     | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb b/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
new file mode 100644
index 000000000..79ddbed7c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
@@ -0,0 +1,11 @@
+SUMMARY = "C++ headers for C extension development"
+HOMEPAGE = "https://cppy.readthedocs.io/en/latest/"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0bfb3e39b13587f0028f17baf0e42371"
+
+SRC_URI[md5sum] = "2110891d75aa12551deebba1603428c6"
+SRC_URI[sha256sum] = "4eda6f1952054a270f32dc11df7c5e24b259a09fddf7bfaa5f33df9fb4a29642"
+
+inherit pypi setuptools3
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 04/12] python3-cppy: Add new recipe Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:52   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18 Leon Anavi
                   ` (7 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.2.0:

- make the the c++ part of the code c++11 compliant
- use cppy for Python/C bindings

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python3-kiwisolver_1.1.0.bb        | 16 ---------------
 .../python/python3-kiwisolver_1.2.0.bb        | 20 +++++++++++++++++++
 2 files changed, 20 insertions(+), 16 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb b/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
deleted file mode 100644
index a10830257..000000000
--- a/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "A fast implementation of the Cassowary constraint solver"
-HOMEPAGE = "https://github.com/nucleic/kiwi"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://setup.py;endline=7;md5=1c177d169db050341d3b890c69fb80e3"
-
-SRC_URI[md5sum] = "fc8a614367f7ba0d34a02fd08c535afc"
-SRC_URI[sha256sum] = "53eaed412477c836e1b9522c19858a8557d6e595077830146182225613b11a75"
-
-inherit pypi setuptools3
-
-RDEPENDS_${PN} += "\
-    python3-core \
-    python3-setuptools \
-"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb b/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb
new file mode 100644
index 000000000..94db61142
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb
@@ -0,0 +1,20 @@
+SUMMARY = "A fast implementation of the Cassowary constraint solver"
+HOMEPAGE = "https://github.com/nucleic/kiwi"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://setup.py;endline=7;md5=e54bd74bd9d0a84ae3f8f6d21ada0ab4"
+
+SRC_URI[md5sum] = "9f53fabb361c04d76c5afc688652c814"
+SRC_URI[sha256sum] = "247800260cd38160c362d211dcaf4ed0f7816afb5efe56544748b21d6ad6d17f"
+
+inherit pypi setuptools3
+
+DEPENDS += "\
+    python3-cppy-native \
+"
+
+RDEPENDS_${PN} += "\
+    python3-core \
+    python3-setuptools \
+"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:51   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16 Leon Anavi
                   ` (6 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.18:

- orm: Improve error message when using Query.filter_by() in a
  query where the first entity is not a mapped class.
- orm: Added a new parameter query_expression.default_expr to the
  query_expression() construct, which will be appled to queries
  automatically if the with_expression() option is not used.
- engine: Further refinements to the fixes to the "reset" agent
  fixed in #5326, which now emits a warning when it is not being
  correctly invoked and corrects for the behavior. Additional
  scenarios have been identified and fixed where this warning was
  being emitted.
- engine: Fixed issue in URL object where stringifying the object
  would not URL encode special characters, preventing the URL from
  being re-consumable as a real URL.
- sql: Added a “.schema” parameter to the table() construct,
  allowing ad-hoc table expressions to also include a schema name.
- sql: Introduce IdentityOptions to store common parameters for
  sequences and identity columns.
- schema: Fixed issue where dialect_options were omitted when a
  database object (e.g., Table) was copied using tometadata().

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

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
index b9c58e5b6..a5e1737b0 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
 
-SRC_URI[md5sum] = "478214152b9293bf5652815d7312c890"
-SRC_URI[sha256sum] = "156a27548ba4e1fed944ff9fcdc150633e61d350d673ae7baaf6c25c04ac1f71"
+SRC_URI[md5sum] = "96e085d318297b1ad36ef2685f54287a"
+SRC_URI[sha256sum] = "da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:51   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1 Leon Anavi
                   ` (5 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.4.16:

- Support for DEC Alpha architecture
- Support for Python 3.9
- Support for Python 3.10a0

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

diff --git a/meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb b/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
index f9c862118..4556d499f 100644
--- a/meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb
+++ b/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
@@ -3,7 +3,7 @@ LICENSE = "MIT & PSF"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
                     file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
 
-SRC_URI[md5sum] = "10fa304f673fc18b28fa6d8c6658cb80"
-SRC_URI[sha256sum] = "9416443e219356e3c31f1f918a91badf2e37acf297e2fa13d24d1cc2380f8fbc"
+SRC_URI[md5sum] = "9aebea08f7beb6b87143d0588578c984"
+SRC_URI[sha256sum] = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c"
 
 inherit pypi distutils3
-- 
2.17.1


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

* [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:52   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7 Leon Anavi
                   ` (4 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Inherit class pypi and upgrade to release 1.5.1:

- Use poetry instead of setuptools directly
- Fix: raise exception if package is missing
- Fix version parsing for openssl-like version numbers
- Fix: expose --modversion
- Fix: strip whitespace from variable names
- Fix: do not specify pytest Python version

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-pkgconfig_1.4.0.bb => python3-pkgconfig_1.5.1.bb} | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pkgconfig_1.4.0.bb => python3-pkgconfig_1.5.1.bb} (68%)

diff --git a/meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb
rename to meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
index fc7a47a43..05ca3beec 100644
--- a/meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
@@ -4,16 +4,14 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=faa7f82be8f220bff6156be4790344fc"
 
-SRC_URI = "git://github.com/matze/pkgconfig.git"
-SRCREV ?= "8af0102346847e8873af8e76ab3f34ba9da806e2"
+SRC_URI[md5sum] = "9f9cdb224ec0a1e59efcc7cac4b91972"
+SRC_URI[sha256sum] = "97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f"
 
 RDEPENDS_${PN} = "pkgconfig \
                  ${PYTHON_PN}-shell \
                  "
 
-inherit setuptools3
-
-S = "${WORKDIR}/git"
+inherit pypi setuptools3
 
 BBCLASSEXTEND = "native"
 
-- 
2.17.1


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

* [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (6 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:52   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1 Leon Anavi
                   ` (3 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.7:

- Handle git:// urls more gracefully
- Add final rstrip
- Add another rstrip for checking if it is Github url
- Convert Paths to str for python 3.5 compatibility

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

diff --git a/meta-python/recipes-devtools/python/python3-msm_0.8.3.bb b/meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-msm_0.8.3.bb
rename to meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
index 24e1ccb3b..de930f934 100644
--- a/meta-python/recipes-devtools/python/python3-msm_0.8.3.bb
+++ b/meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MycroftAI/mycroft-skills-manager"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e23fadd6ceef8c618fc1c65191d846fa"
 
-SRC_URI[md5sum] = "d5f580c58389b337f5577cb92f36e788"
-SRC_URI[sha256sum] = "c201785997f3b766ec376a89bbb3367889ac542183ca26733ffe002bb94917b4"
+SRC_URI[md5sum] = "16f755ea554c332cdb666dfc1109f7f2"
+SRC_URI[sha256sum] = "9878eecbf7255d4907637700ecfeeacb9fe586409ee3ae05d406683ad18d7e5e"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (7 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:52   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file Leon Anavi
                   ` (2 subsequent siblings)
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.5.1:

- Drop unused decorator mode for _pulse_get_list wrapper-generator
- volume_get_all_chans: add docstring to indicate that it doesn't
  poll libpulse
- tests: fix tearDownClass for "python setup.py test" operation
- tests: pass PATH= in subprocess environment for proper lookups
  there
- tests: lookup executables in PATH

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

diff --git a/meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb b/meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb
rename to meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
index f0db9682f..df0c8e578 100644
--- a/meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/mk-fg/python-pulse-control"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f1d10048469ff90123263eb5e214061d"
 
-SRC_URI[md5sum] = "07d7a5fddc49f5da22634464aa008003"
-SRC_URI[sha256sum] = "fca9ed501bef2efd551b35773fd24bba36bbd21bc448f402cf8ee13c12423c19"
+SRC_URI[md5sum] = "8de84a0f4005ecad96d2c55a6d7c3a10"
+SRC_URI[sha256sum] = "39b0a0e7974a7d6468d826a838822f78b00ac9c3803f0d7bfa9b1cad08ee22db"
 
 RDEPENDS_${PN} += "pulseaudio"
 
-- 
2.17.1


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

* [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (8 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1 Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:52   ` [oe] " Trevor Gamblin
  2020-06-26 11:29 ` [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0 Leon Anavi
  2020-06-29 14:50 ` [oe] [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Trevor Gamblin
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 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>
---
 meta-python/recipes-devtools/python/python-pybind11.inc  | 7 -------
 .../recipes-devtools/python/python3-pybind11_2.4.3.bb    | 9 ++++++++-
 2 files changed, 8 insertions(+), 8 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-pybind11.inc

diff --git a/meta-python/recipes-devtools/python/python-pybind11.inc b/meta-python/recipes-devtools/python/python-pybind11.inc
deleted file mode 100644
index d1d53e125..000000000
--- a/meta-python/recipes-devtools/python/python-pybind11.inc
+++ /dev/null
@@ -1,7 +0,0 @@
-SUMMARY = "Seamless operability between C++11 and Python"
-HOMEPAGE = "https://github.com/wjakob/pybind11"
-LICENSE = "BSD-2-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
-
-SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
-SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
index 355e28460..9efa2db75 100644
--- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
@@ -1,2 +1,9 @@
+SUMMARY = "Seamless operability between C++11 and Python"
+HOMEPAGE = "https://github.com/wjakob/pybind11"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
+
+SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
+SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
+
 inherit pypi setuptools3
-require python-pybind11.inc
-- 
2.17.1


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

* [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (9 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file Leon Anavi
@ 2020-06-26 11:29 ` Leon Anavi
  2020-06-29 14:53   ` [oe] " Trevor Gamblin
  2020-06-29 14:50 ` [oe] [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Trevor Gamblin
  11 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-26 11:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.5.0:

- Use C++17 fold expressions in type casters, if available. This
  can improve performance during overload resolution when
  functions have multiple arguments.
- Changed include directory resolution in pybind11/__init__.py and
  installation in setup.py. This fixes a number of open issues
  where pybind11 headers could not be found in certain environments.
- C++20 char8_t and u8string support.
- CMake: search for Python 3.9.
- Fixes for MSYS-based build environments.
- STL bindings for std::vector<...>::clear.
- Read-only flag for py::buffer.
- Exception handling during module initialization.
- Support linking against a CPython debug build.
- Fixed issues involving the availability and use of aligned new
  and delete.
- Fixed a resource leak upon interpreter shutdown.
- Fixed error handling in the boolean caster.

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

diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
index 9efa2db75..dc3b8f6ad 100644
--- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
 
-SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
-SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
+SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
+SRC_URI[sha256sum] = "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80
  2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
                   ` (10 preceding siblings ...)
  2020-06-26 11:29 ` [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0 Leon Anavi
@ 2020-06-29 14:50 ` Trevor Gamblin
  11 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:50 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 4.80:
>
> - fix possible race condition when creating instances with
>    instancemode "single"
> - cython compatibility fix
> - removed explicit version checks of dependencies such as serpent.
>    This fixes crash error when dealing with prerelease versions
>    that didn't match the pattern.
> - stick to an older serpent library version to install as a
>    dependency when installing on old python versions
> - explain the delay and threading in the distributed-computing2
>    example
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pyro4_4.77.bb => python3-pyro4_4.80.bb}          | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-connectivity/python-pyro4/{python3-pyro4_4.77.bb => python3-pyro4_4.80.bb} (66%)
>
> diff --git a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
> similarity index 66%
> rename from meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb
> rename to meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
> index ffe58ee9c..dfea67368 100644
> --- a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.77.bb
> +++ b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.80.bb
> @@ -2,8 +2,8 @@ SUMMARY = "Python Remote Objects"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=cd13dafd4eeb0802bb6efea6b4a4bdbc"
>   
> -SRC_URI[md5sum] = "21f015ae93cf9ea2bbbc418a2267e9fb"
> -SRC_URI[sha256sum] = "2bfe12a22f396474b0e57c898c7e2c561a8f850bf2055d8cf0f7119f0c7a523f"
> +SRC_URI[md5sum] = "e31fc077e06de9fc0bb061e357401954"
> +SRC_URI[sha256sum] = "46847ca703de3f483fbd0b2d22622f36eff03e6ef7ec7704d4ecaa3964cb2220"
>   
>   PYPI_PACKAGE = "Pyro4"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0
  2020-06-26 11:29 ` [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0 Leon Anavi
@ 2020-06-29 14:51   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 5.0.0:
>
> - Fix n3 parser exponent syntax of floats with leading dot.
> - FIX: Change is comparison to == for tuple
> - Added _parseBoolean function to enforce correct Lexical-to-value
>    mapping
> - SPARQL fix CONSTRUCT resolve with initBindings fixes
> - Documentation fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-rdflib_4.2.2.bb => python3-rdflib_5.0.0.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-rdflib_4.2.2.bb => python3-rdflib_5.0.0.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb b/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb
> rename to meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
> index f7e7f6310..d037a74bf 100644
> --- a/meta-python/recipes-devtools/python/python3-rdflib_4.2.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-rdflib_5.0.0.bb
> @@ -2,8 +2,8 @@ SUMMARY = "RDFLib is a pure Python package for working with RDF"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=68c1a3bb687bd63b8e5552f3ea249840"
>   
> -SRC_URI[md5sum] = "534fe35b13c5857d53fa1ac5a41eca67"
> -SRC_URI[sha256sum] = "da1df14552555c5c7715d8ce71c08f404c988c58a1ecd38552d0da4fc261280d"
> +SRC_URI[md5sum] = "80d7c6adc2e4040cdd8dade2e0e61403"
> +SRC_URI[sha256sum] = "78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1
  2020-06-26 11:29 ` [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1 Leon Anavi
@ 2020-06-29 14:51   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 0.18.1:
>
> - explicit build-backend workaround for pip build isolation bug
>    "AttributeError: 'module' object has no attribute '__legacy__'"
>    on pip install
>    https://github.com/httplib2/httplib2/issues/169
> - IMPORTANT security vulnerability CWE-93 CRLF injection
>    Force %xx quote of space, CR, LF characters in uri.
>    https://cwe.mitre.org/data/definitions/93.html
>
> PKG-INFO md5 checksum changed, the license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-httplib2_0.17.3.bb => python3-httplib2_0.18.1.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-httplib2_0.17.3.bb => python3-httplib2_0.18.1.bb} (52%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb b/meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
> similarity index 52%
> rename from meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
> rename to meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
> index 57047c9ac..9c9b6c5b0 100644
> --- a/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-httplib2_0.18.1.bb
> @@ -2,9 +2,9 @@ SUMMARY = "A comprehensive HTTP client library, httplib2 supports many features
>   HOMEPAGE = "https://github.com/httplib2/httplib2"
>   SECTION = "devel/python"
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=4edb3f072a9d815734530f608039a167"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=7e04d1303d64a7b62421751ecb490dc2"
>   
> -SRC_URI[md5sum] = "5730490cfe83350477b54b0a8a190c8a"
> -SRC_URI[sha256sum] = "39dd15a333f67bfb70798faa9de8a6e99c819da6ad82b77f9a259a5c7b1225a2"
> +SRC_URI[md5sum] = "0b331f96cdb2ae0e0342d4ea0f5f0502"
> +SRC_URI[sha256sum] = "8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 04/12] python3-cppy: Add new recipe
  2020-06-26 11:29 ` [meta-python][PATCH 04/12] python3-cppy: Add new recipe Leon Anavi
@ 2020-06-29 14:51   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Add cppy release 1.1.0: C++ headers for C extension development.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-cppy_1.1.0.bb     | 11 +++++++++++
>   1 file changed, 11 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb b/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
> new file mode 100644
> index 000000000..79ddbed7c
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
> @@ -0,0 +1,11 @@
> +SUMMARY = "C++ headers for C extension development"
> +HOMEPAGE = "https://cppy.readthedocs.io/en/latest/"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=0bfb3e39b13587f0028f17baf0e42371"
> +
> +SRC_URI[md5sum] = "2110891d75aa12551deebba1603428c6"
> +SRC_URI[sha256sum] = "4eda6f1952054a270f32dc11df7c5e24b259a09fddf7bfaa5f33df9fb4a29642"
> +
> +inherit pypi setuptools3
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18
  2020-06-26 11:29 ` [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18 Leon Anavi
@ 2020-06-29 14:51   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 1.3.18:
>
> - orm: Improve error message when using Query.filter_by() in a
>    query where the first entity is not a mapped class.
> - orm: Added a new parameter query_expression.default_expr to the
>    query_expression() construct, which will be appled to queries
>    automatically if the with_expression() option is not used.
> - engine: Further refinements to the fixes to the "reset" agent
>    fixed in #5326, which now emits a warning when it is not being
>    correctly invoked and corrects for the behavior. Additional
>    scenarios have been identified and fixed where this warning was
>    being emitted.
> - engine: Fixed issue in URL object where stringifying the object
>    would not URL encode special characters, preventing the URL from
>    being re-consumable as a real URL.
> - sql: Added a “.schema” parameter to the table() construct,
>    allowing ad-hoc table expressions to also include a schema name.
> - sql: Introduce IdentityOptions to store common parameters for
>    sequences and identity columns.
> - schema: Fixed issue where dialect_options were omitted when a
>    database object (e.g., Table) was copied using tometadata().
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sqlalchemy_1.3.17.bb => python3-sqlalchemy_1.3.18.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.17.bb => python3-sqlalchemy_1.3.18.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
> rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
> index b9c58e5b6..a5e1737b0 100644
> --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
> +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
>   
> -SRC_URI[md5sum] = "478214152b9293bf5652815d7312c890"
> -SRC_URI[sha256sum] = "156a27548ba4e1fed944ff9fcdc150633e61d350d673ae7baaf6c25c04ac1f71"
> +SRC_URI[md5sum] = "96e085d318297b1ad36ef2685f54287a"
> +SRC_URI[sha256sum] = "da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7"
>   
>   PYPI_PACKAGE = "SQLAlchemy"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16
  2020-06-26 11:29 ` [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16 Leon Anavi
@ 2020-06-29 14:51   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 0.4.16:
>
> - Support for DEC Alpha architecture
> - Support for Python 3.9
> - Support for Python 3.10a0
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-greenlet_0.4.15.bb => python3-greenlet_0.4.16.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-greenlet_0.4.15.bb => python3-greenlet_0.4.16.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb b/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb
> rename to meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
> index f9c862118..4556d499f 100644
> --- a/meta-python/recipes-devtools/python/python3-greenlet_0.4.15.bb
> +++ b/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
> @@ -3,7 +3,7 @@ LICENSE = "MIT & PSF"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
>                       file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
>   
> -SRC_URI[md5sum] = "10fa304f673fc18b28fa6d8c6658cb80"
> -SRC_URI[sha256sum] = "9416443e219356e3c31f1f918a91badf2e37acf297e2fa13d24d1cc2380f8fbc"
> +SRC_URI[md5sum] = "9aebea08f7beb6b87143d0588578c984"
> +SRC_URI[sha256sum] = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c"
>   
>   inherit pypi distutils3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1
  2020-06-26 11:29 ` [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1 Leon Anavi
@ 2020-06-29 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Inherit class pypi and upgrade to release 1.5.1:
>
> - Use poetry instead of setuptools directly
> - Fix: raise exception if package is missing
> - Fix version parsing for openssl-like version numbers
> - Fix: expose --modversion
> - Fix: strip whitespace from variable names
> - Fix: do not specify pytest Python version
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-pkgconfig_1.4.0.bb => python3-pkgconfig_1.5.1.bb} | 8 +++-----
>   1 file changed, 3 insertions(+), 5 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pkgconfig_1.4.0.bb => python3-pkgconfig_1.5.1.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb
> rename to meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
> index fc7a47a43..05ca3beec 100644
> --- a/meta-python/recipes-devtools/python/python3-pkgconfig_1.4.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.1.bb
> @@ -4,16 +4,14 @@ SECTION = "devel/python"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=faa7f82be8f220bff6156be4790344fc"
>   
> -SRC_URI = "git://github.com/matze/pkgconfig.git"
> -SRCREV ?= "8af0102346847e8873af8e76ab3f34ba9da806e2"
> +SRC_URI[md5sum] = "9f9cdb224ec0a1e59efcc7cac4b91972"
> +SRC_URI[sha256sum] = "97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f"
>   
>   RDEPENDS_${PN} = "pkgconfig \
>                    ${PYTHON_PN}-shell \
>                    "
>   
> -inherit setuptools3
> -
> -S = "${WORKDIR}/git"
> +inherit pypi setuptools3
>   
>   BBCLASSEXTEND = "native"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7
  2020-06-26 11:29 ` [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7 Leon Anavi
@ 2020-06-29 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 0.8.7:
>
> - Handle git:// urls more gracefully
> - Add final rstrip
> - Add another rstrip for checking if it is Github url
> - Convert Paths to str for python 3.5 compatibility
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-msm_0.8.3.bb => python3-msm_0.8.7.bb}     | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-msm_0.8.3.bb => python3-msm_0.8.7.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-msm_0.8.3.bb b/meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-msm_0.8.3.bb
> rename to meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
> index 24e1ccb3b..de930f934 100644
> --- a/meta-python/recipes-devtools/python/python3-msm_0.8.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-msm_0.8.7.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MycroftAI/mycroft-skills-manager"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=e23fadd6ceef8c618fc1c65191d846fa"
>   
> -SRC_URI[md5sum] = "d5f580c58389b337f5577cb92f36e788"
> -SRC_URI[sha256sum] = "c201785997f3b766ec376a89bbb3367889ac542183ca26733ffe002bb94917b4"
> +SRC_URI[md5sum] = "16f755ea554c332cdb666dfc1109f7f2"
> +SRC_URI[sha256sum] = "9878eecbf7255d4907637700ecfeeacb9fe586409ee3ae05d406683ad18d7e5e"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0
  2020-06-26 11:29 ` [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0 Leon Anavi
@ 2020-06-29 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 1.2.0:
>
> - make the the c++ part of the code c++11 compliant
> - use cppy for Python/C bindings
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-kiwisolver_1.1.0.bb        | 16 ---------------
>   .../python/python3-kiwisolver_1.2.0.bb        | 20 +++++++++++++++++++
>   2 files changed, 20 insertions(+), 16 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
>   create mode 100644 meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb b/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
> deleted file mode 100644
> index a10830257..000000000
> --- a/meta-python/recipes-devtools/python/python3-kiwisolver_1.1.0.bb
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -SUMMARY = "A fast implementation of the Cassowary constraint solver"
> -HOMEPAGE = "https://github.com/nucleic/kiwi"
> -LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://setup.py;endline=7;md5=1c177d169db050341d3b890c69fb80e3"
> -
> -SRC_URI[md5sum] = "fc8a614367f7ba0d34a02fd08c535afc"
> -SRC_URI[sha256sum] = "53eaed412477c836e1b9522c19858a8557d6e595077830146182225613b11a75"
> -
> -inherit pypi setuptools3
> -
> -RDEPENDS_${PN} += "\
> -    python3-core \
> -    python3-setuptools \
> -"
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb b/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb
> new file mode 100644
> index 000000000..94db61142
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-kiwisolver_1.2.0.bb
> @@ -0,0 +1,20 @@
> +SUMMARY = "A fast implementation of the Cassowary constraint solver"
> +HOMEPAGE = "https://github.com/nucleic/kiwi"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://setup.py;endline=7;md5=e54bd74bd9d0a84ae3f8f6d21ada0ab4"
> +
> +SRC_URI[md5sum] = "9f53fabb361c04d76c5afc688652c814"
> +SRC_URI[sha256sum] = "247800260cd38160c362d211dcaf4ed0f7816afb5efe56544748b21d6ad6d17f"
> +
> +inherit pypi setuptools3
> +
> +DEPENDS += "\
> +    python3-cppy-native \
> +"
> +
> +RDEPENDS_${PN} += "\
> +    python3-core \
> +    python3-setuptools \
> +"
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1
  2020-06-26 11:29 ` [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1 Leon Anavi
@ 2020-06-29 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 20.5.1:
>
> - Drop unused decorator mode for _pulse_get_list wrapper-generator
> - volume_get_all_chans: add docstring to indicate that it doesn't
>    poll libpulse
> - tests: fix tearDownClass for "python setup.py test" operation
> - tests: pass PATH= in subprocess environment for proper lookups
>    there
> - tests: lookup executables in PATH
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-pulsectl_20.2.4.bb => python3-pulsectl_20.5.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pulsectl_20.2.4.bb => python3-pulsectl_20.5.1.bb} (76%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb b/meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
> similarity index 76%
> rename from meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb
> rename to meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
> index f0db9682f..df0c8e578 100644
> --- a/meta-python/recipes-devtools/python/python3-pulsectl_20.2.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-pulsectl_20.5.1.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/mk-fg/python-pulse-control"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=f1d10048469ff90123263eb5e214061d"
>   
> -SRC_URI[md5sum] = "07d7a5fddc49f5da22634464aa008003"
> -SRC_URI[sha256sum] = "fca9ed501bef2efd551b35773fd24bba36bbd21bc448f402cf8ee13c12423c19"
> +SRC_URI[md5sum] = "8de84a0f4005ecad96d2c55a6d7c3a10"
> +SRC_URI[sha256sum] = "39b0a0e7974a7d6468d826a838822f78b00ac9c3803f0d7bfa9b1cad08ee22db"
>   
>   RDEPENDS_${PN} += "pulseaudio"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file
  2020-06-26 11:29 ` [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file Leon Anavi
@ 2020-06-29 14:52   ` Trevor Gamblin
  0 siblings, 0 replies; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 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>
> ---
>   meta-python/recipes-devtools/python/python-pybind11.inc  | 7 -------
>   .../recipes-devtools/python/python3-pybind11_2.4.3.bb    | 9 ++++++++-
>   2 files changed, 8 insertions(+), 8 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-pybind11.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-pybind11.inc b/meta-python/recipes-devtools/python/python-pybind11.inc
> deleted file mode 100644
> index d1d53e125..000000000
> --- a/meta-python/recipes-devtools/python/python-pybind11.inc
> +++ /dev/null
> @@ -1,7 +0,0 @@
> -SUMMARY = "Seamless operability between C++11 and Python"
> -HOMEPAGE = "https://github.com/wjakob/pybind11"
> -LICENSE = "BSD-2-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
> -
> -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
> -SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
> diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
> index 355e28460..9efa2db75 100644
> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
> @@ -1,2 +1,9 @@
> +SUMMARY = "Seamless operability between C++11 and Python"
> +HOMEPAGE = "https://github.com/wjakob/pybind11"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
> +
> +SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
> +SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
> +
>   inherit pypi setuptools3
> -require python-pybind11.inc
>
> 

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

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

* Re: [oe] [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-26 11:29 ` [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0 Leon Anavi
@ 2020-06-29 14:53   ` Trevor Gamblin
  2020-06-29 17:44     ` Philip Balister
  0 siblings, 1 reply; 28+ messages in thread
From: Trevor Gamblin @ 2020-06-29 14:53 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/26/20 7:29 AM, Leon Anavi wrote:
> Upgrade to release 2.5.0:
>
> - Use C++17 fold expressions in type casters, if available. This
>    can improve performance during overload resolution when
>    functions have multiple arguments.
> - Changed include directory resolution in pybind11/__init__.py and
>    installation in setup.py. This fixes a number of open issues
>    where pybind11 headers could not be found in certain environments.
> - C++20 char8_t and u8string support.
> - CMake: search for Python 3.9.
> - Fixes for MSYS-based build environments.
> - STL bindings for std::vector<...>::clear.
> - Read-only flag for py::buffer.
> - Exception handling during module initialization.
> - Support linking against a CPython debug build.
> - Fixed issues involving the availability and use of aligned new
>    and delete.
> - Fixed a resource leak upon interpreter shutdown.
> - Fixed error handling in the boolean caster.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb} (62%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
> similarity index 62%
> rename from meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
> rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
> index 9efa2db75..dc3b8f6ad 100644
> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
>   
> -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
> -SRC_URI[sha256sum] = "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
> +SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
> +SRC_URI[sha256sum] = "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-29 14:53   ` [oe] " Trevor Gamblin
@ 2020-06-29 17:44     ` Philip Balister
  2020-06-30 13:12       ` Leon Anavi
  0 siblings, 1 reply; 28+ messages in thread
From: Philip Balister @ 2020-06-29 17:44 UTC (permalink / raw)
  To: Trevor Gamblin, Leon Anavi, openembedded-devel

I just did some work that needed adding a BBCLASSEXTEND = "native", with
this I had to use cmake to build the packages since pypi doesn't instal
the cmake files for development. There is an open bug about this in the
pybind bug tracker.

Philip

On 6/29/20 10:53 AM, Trevor Gamblin wrote:
> 
> On 6/26/20 7:29 AM, Leon Anavi wrote:
>> Upgrade to release 2.5.0:
>>
>> - Use C++17 fold expressions in type casters, if available. This
>>    can improve performance during overload resolution when
>>    functions have multiple arguments.
>> - Changed include directory resolution in pybind11/__init__.py and
>>    installation in setup.py. This fixes a number of open issues
>>    where pybind11 headers could not be found in certain environments.
>> - C++20 char8_t and u8string support.
>> - CMake: search for Python 3.9.
>> - Fixes for MSYS-based build environments.
>> - STL bindings for std::vector<...>::clear.
>> - Read-only flag for py::buffer.
>> - Exception handling during module initialization.
>> - Support linking against a CPython debug build.
>> - Fixed issues involving the availability and use of aligned new
>>    and delete.
>> - Fixed a resource leak upon interpreter shutdown.
>> - Fixed error handling in the boolean caster.
>>
>> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>> ---
>>   .../{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb}  | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>   rename
>> meta-python/recipes-devtools/python/{python3-pybind11_2.4.3.bb =>
>> python3-pybind11_2.5.0.bb} (62%)
>>
>> diff --git
>> a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>> b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>> similarity index 62%
>> rename from meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>> rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>> index 9efa2db75..dc3b8f6ad 100644
>> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
>>   LICENSE = "BSD-2-Clause"
>>   LIC_FILES_CHKSUM =
>> "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
>>   -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
>> -SRC_URI[sha256sum] =
>> "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
>> +SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
>> +SRC_URI[sha256sum] =
>> "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
>>     inherit pypi setuptools3
>>
>>
> 
> 
> 
> 

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

* Re: [oe] [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-29 17:44     ` Philip Balister
@ 2020-06-30 13:12       ` Leon Anavi
  2020-06-30 22:04         ` Philip Balister
  0 siblings, 1 reply; 28+ messages in thread
From: Leon Anavi @ 2020-06-30 13:12 UTC (permalink / raw)
  To: Philip Balister, Trevor Gamblin, openembedded-devel

Hi Philip,

On 29.06.20 г. 20:44 ч., Philip Balister wrote:
> I just did some work that needed adding a BBCLASSEXTEND = "native", with
> this I had to use cmake to build the packages since pypi doesn't instal
> the cmake files for development. There is an open bug about this in the
> pybind bug tracker.
Should we also add BBCLASSEXTEND = "native" to the recipe in 
meta-python? Could you please share a link to this open bug related to 
cmake?

Thanks,
Leon
>
> Philip
>
> On 6/29/20 10:53 AM, Trevor Gamblin wrote:
>> On 6/26/20 7:29 AM, Leon Anavi wrote:
>>> Upgrade to release 2.5.0:
>>>
>>> - Use C++17 fold expressions in type casters, if available. This
>>>     can improve performance during overload resolution when
>>>     functions have multiple arguments.
>>> - Changed include directory resolution in pybind11/__init__.py and
>>>     installation in setup.py. This fixes a number of open issues
>>>     where pybind11 headers could not be found in certain environments.
>>> - C++20 char8_t and u8string support.
>>> - CMake: search for Python 3.9.
>>> - Fixes for MSYS-based build environments.
>>> - STL bindings for std::vector<...>::clear.
>>> - Read-only flag for py::buffer.
>>> - Exception handling during module initialization.
>>> - Support linking against a CPython debug build.
>>> - Fixed issues involving the availability and use of aligned new
>>>     and delete.
>>> - Fixed a resource leak upon interpreter shutdown.
>>> - Fixed error handling in the boolean caster.
>>>
>>> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
>> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>>> ---
>>>    .../{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb}  | 4 ++--
>>>    1 file changed, 2 insertions(+), 2 deletions(-)
>>>    rename
>>> meta-python/recipes-devtools/python/{python3-pybind11_2.4.3.bb =>
>>> python3-pybind11_2.5.0.bb} (62%)
>>>
>>> diff --git
>>> a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>> b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>> similarity index 62%
>>> rename from meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>> rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>> index 9efa2db75..dc3b8f6ad 100644
>>> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
>>>    LICENSE = "BSD-2-Clause"
>>>    LIC_FILES_CHKSUM =
>>> "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
>>>    -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
>>> -SRC_URI[sha256sum] =
>>> "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
>>> +SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
>>> +SRC_URI[sha256sum] =
>>> "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
>>>      inherit pypi setuptools3
>>>
>>>
>>
>> 
>>
-- 
Leon Anavi
Software Engineer
konsulko.com


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

* Re: [oe] [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-30 13:12       ` Leon Anavi
@ 2020-06-30 22:04         ` Philip Balister
  2020-07-01 14:16           ` Leon Anavi
  0 siblings, 1 reply; 28+ messages in thread
From: Philip Balister @ 2020-06-30 22:04 UTC (permalink / raw)
  To: Leon Anavi, Trevor Gamblin, openembedded-devel

Let's get the version updat ein and I can send in the BBCLASSEXTEND and
switch to building with cmake.

https://github.com/pybind/pybind11/issues/1628
https://github.com/pybind/pybind11/issues/1379

Philip

On 6/30/20 9:12 AM, Leon Anavi wrote:
> Hi Philip,
> 
> On 29.06.20 г. 20:44 ч., Philip Balister wrote:
>> I just did some work that needed adding a BBCLASSEXTEND = "native", with
>> this I had to use cmake to build the packages since pypi doesn't instal
>> the cmake files for development. There is an open bug about this in the
>> pybind bug tracker.
> Should we also add BBCLASSEXTEND = "native" to the recipe in
> meta-python? Could you please share a link to this open bug related to
> cmake?
> 
> Thanks,
> Leon
>>
>> Philip
>>
>> On 6/29/20 10:53 AM, Trevor Gamblin wrote:
>>> On 6/26/20 7:29 AM, Leon Anavi wrote:
>>>> Upgrade to release 2.5.0:
>>>>
>>>> - Use C++17 fold expressions in type casters, if available. This
>>>>     can improve performance during overload resolution when
>>>>     functions have multiple arguments.
>>>> - Changed include directory resolution in pybind11/__init__.py and
>>>>     installation in setup.py. This fixes a number of open issues
>>>>     where pybind11 headers could not be found in certain environments.
>>>> - C++20 char8_t and u8string support.
>>>> - CMake: search for Python 3.9.
>>>> - Fixes for MSYS-based build environments.
>>>> - STL bindings for std::vector<...>::clear.
>>>> - Read-only flag for py::buffer.
>>>> - Exception handling during module initialization.
>>>> - Support linking against a CPython debug build.
>>>> - Fixed issues involving the availability and use of aligned new
>>>>     and delete.
>>>> - Fixed a resource leak upon interpreter shutdown.
>>>> - Fixed error handling in the boolean caster.
>>>>
>>>> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
>>> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>>>> ---
>>>>    .../{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb}  | 4
>>>> ++--
>>>>    1 file changed, 2 insertions(+), 2 deletions(-)
>>>>    rename
>>>> meta-python/recipes-devtools/python/{python3-pybind11_2.4.3.bb =>
>>>> python3-pybind11_2.5.0.bb} (62%)
>>>>
>>>> diff --git
>>>> a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>> b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>> similarity index 62%
>>>> rename from
>>>> meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>> rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>> index 9efa2db75..dc3b8f6ad 100644
>>>> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
>>>>    LICENSE = "BSD-2-Clause"
>>>>    LIC_FILES_CHKSUM =
>>>> "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
>>>>    -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
>>>> -SRC_URI[sha256sum] =
>>>> "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
>>>> +SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
>>>> +SRC_URI[sha256sum] =
>>>> "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
>>>>      inherit pypi setuptools3
>>>>
>>>>
>>>
>>> 
>>>

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

* Re: [oe] [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0
  2020-06-30 22:04         ` Philip Balister
@ 2020-07-01 14:16           ` Leon Anavi
  0 siblings, 0 replies; 28+ messages in thread
From: Leon Anavi @ 2020-07-01 14:16 UTC (permalink / raw)
  To: Philip Balister, Trevor Gamblin, openembedded-devel

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

Hi Philip,

On 1.07.20 г. 1:04 ч., Philip Balister wrote:
> Let's get the version updat ein and I can send in the BBCLASSEXTEND and
> switch to building with cmake.

OK, thanks! This upgrade to 2.5.0 has been already merged in master:
http://git.openembedded.org/meta-openembedded/commit/?id=e8cb41c0866568fa31271ed8bfe96b0335a9456f&h=master

Best regards,
Leon

>
> https://github.com/pybind/pybind11/issues/1628
> https://github.com/pybind/pybind11/issues/1379
>
> Philip
>
> On 6/30/20 9:12 AM, Leon Anavi wrote:
>> Hi Philip,
>>
>> On 29.06.20 г. 20:44 ч., Philip Balister wrote:
>>> I just did some work that needed adding a BBCLASSEXTEND = "native", with
>>> this I had to use cmake to build the packages since pypi doesn't instal
>>> the cmake files for development. There is an open bug about this in the
>>> pybind bug tracker.
>> Should we also add BBCLASSEXTEND = "native" to the recipe in
>> meta-python? Could you please share a link to this open bug related to
>> cmake?
>>
>> Thanks,
>> Leon
>>> Philip
>>>
>>> On 6/29/20 10:53 AM, Trevor Gamblin wrote:
>>>> On 6/26/20 7:29 AM, Leon Anavi wrote:
>>>>> Upgrade to release 2.5.0:
>>>>>
>>>>> - Use C++17 fold expressions in type casters, if available. This
>>>>>      can improve performance during overload resolution when
>>>>>      functions have multiple arguments.
>>>>> - Changed include directory resolution in pybind11/__init__.py and
>>>>>      installation in setup.py. This fixes a number of open issues
>>>>>      where pybind11 headers could not be found in certain environments.
>>>>> - C++20 char8_t and u8string support.
>>>>> - CMake: search for Python 3.9.
>>>>> - Fixes for MSYS-based build environments.
>>>>> - STL bindings for std::vector<...>::clear.
>>>>> - Read-only flag for py::buffer.
>>>>> - Exception handling during module initialization.
>>>>> - Support linking against a CPython debug build.
>>>>> - Fixed issues involving the availability and use of aligned new
>>>>>      and delete.
>>>>> - Fixed a resource leak upon interpreter shutdown.
>>>>> - Fixed error handling in the boolean caster.
>>>>>
>>>>> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
>>>> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>>>>> ---
>>>>>     .../{python3-pybind11_2.4.3.bb => python3-pybind11_2.5.0.bb}  | 4
>>>>> ++--
>>>>>     1 file changed, 2 insertions(+), 2 deletions(-)
>>>>>     rename
>>>>> meta-python/recipes-devtools/python/{python3-pybind11_2.4.3.bb =>
>>>>> python3-pybind11_2.5.0.bb} (62%)
>>>>>
>>>>> diff --git
>>>>> a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>>> b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>>> similarity index 62%
>>>>> rename from
>>>>> meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>>> rename to meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>>> index 9efa2db75..dc3b8f6ad 100644
>>>>> --- a/meta-python/recipes-devtools/python/python3-pybind11_2.4.3.bb
>>>>> +++ b/meta-python/recipes-devtools/python/python3-pybind11_2.5.0.bb
>>>>> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wjakob/pybind11"
>>>>>     LICENSE = "BSD-2-Clause"
>>>>>     LIC_FILES_CHKSUM =
>>>>> "file://LICENSE;md5=beb87117af69fd10fbf9fb14c22a2e62"
>>>>>     -SRC_URI[md5sum] = "23fdca8191b16ce3e7f38fb9e4252b2d"
>>>>> -SRC_URI[sha256sum] =
>>>>> "72e6def53fb491f7f4e92692029d2e7bb5a0783314f20d80222735ff10a75758"
>>>>> +SRC_URI[md5sum] = "5355e1fd05c8eedef19cc9bfd3d82a77"
>>>>> +SRC_URI[sha256sum] =
>>>>> "ea5a4e7a880112915463826f1acbec5892df36dfe102ecb249229ac514fb54ad"
>>>>>       inherit pypi setuptools3
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> 

-- 
Leon Anavi
Software Engineer
konsulko.com


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

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

end of thread, other threads:[~2020-07-01 14:16 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-26 11:29 [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 Leon Anavi
2020-06-26 11:29 ` [meta-python][PATCH 02/12] python3-rdflib: Upgrade 4.2.2 -> 5.0.0 Leon Anavi
2020-06-29 14:51   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 03/12] python3-httplib2: Upgrade 0.17.3 -> 0.18.1 Leon Anavi
2020-06-29 14:51   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 04/12] python3-cppy: Add new recipe Leon Anavi
2020-06-29 14:51   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 05/12] python3-kiwisolver: Upgrade 1.1.0 -> 1.2.0 Leon Anavi
2020-06-29 14:52   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 06/12] python3-sqlalchemy: Upgrade 1.3.17 -> 1.3.18 Leon Anavi
2020-06-29 14:51   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 07/12] python3-greenlet: Upgrade 0.4.15 -> 0.4.16 Leon Anavi
2020-06-29 14:51   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 08/12] python3-pkgconfig: Upgrade 1.4.0 -> 1.5.1 Leon Anavi
2020-06-29 14:52   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 09/12] python3-msm: Upgrade 0.8.3 -> 0.8.7 Leon Anavi
2020-06-29 14:52   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 10/12] python3-pulsectl: Upgrade 20.2.4 -> 20.5.1 Leon Anavi
2020-06-29 14:52   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 11/12] python3-pybind11: Consolidate in a single file Leon Anavi
2020-06-29 14:52   ` [oe] " Trevor Gamblin
2020-06-26 11:29 ` [meta-python][PATCH 12/12] python3-pybind11: Upgrade 2.4.3 -> 2.5.0 Leon Anavi
2020-06-29 14:53   ` [oe] " Trevor Gamblin
2020-06-29 17:44     ` Philip Balister
2020-06-30 13:12       ` Leon Anavi
2020-06-30 22:04         ` Philip Balister
2020-07-01 14:16           ` Leon Anavi
2020-06-29 14:50 ` [oe] [meta-python][PATCH 01/12] python3-pyro4: Upgrade 4.77 -> 4.80 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.