All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file
@ 2020-06-15 10:30 Leon Anavi
  2020-06-15 10:30 ` [meta-python][PATCH 2/7] python3-isodate: " Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 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>
---
 .../recipes-devtools/python/python-iso8601.inc   | 14 --------------
 .../python/python3-iso8601_0.1.12.bb             | 16 +++++++++++++++-
 2 files changed, 15 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-iso8601.inc

diff --git a/meta-python/recipes-devtools/python/python-iso8601.inc b/meta-python/recipes-devtools/python/python-iso8601.inc
deleted file mode 100644
index a70843ead..000000000
--- a/meta-python/recipes-devtools/python/python-iso8601.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "Simple module to parse ISO 8601 dates"
-HOMEPAGE = "http://pyiso8601.readthedocs.org/"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844"
-
-SRC_URI[md5sum] = "4de940f691c5ea759fb254384c8ddcf6"
-SRC_URI[sha256sum] = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82"
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-datetime \
-    ${PYTHON_PN}-numbers \
-"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb b/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
index 4a332b53b..74b5bdcb8 100644
--- a/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
+++ b/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
@@ -1,2 +1,16 @@
+SUMMARY = "Simple module to parse ISO 8601 dates"
+HOMEPAGE = "http://pyiso8601.readthedocs.org/"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844"
+
+SRC_URI[md5sum] = "4de940f691c5ea759fb254384c8ddcf6"
+SRC_URI[sha256sum] = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82"
+
 inherit pypi setuptools3
-require python-iso8601.inc
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-datetime \
+    ${PYTHON_PN}-numbers \
+"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-isodate: Consolidate in a single file
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:07   ` [oe] " Trevor Gamblin
  2020-06-15 10:30 ` [meta-python][PATCH 3/7] python3-incremental: " Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 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>
---
 .../recipes-devtools/python/python-isodate.inc   | 14 --------------
 .../python/python3-isodate_0.6.0.bb              | 16 ++++++++++++++--
 2 files changed, 14 insertions(+), 16 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-isodate.inc

diff --git a/meta-python/recipes-devtools/python/python-isodate.inc b/meta-python/recipes-devtools/python/python-isodate.inc
deleted file mode 100644
index 8c128919e..000000000
--- a/meta-python/recipes-devtools/python/python-isodate.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "ISO 8601 date/time parser"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
-
-SRC_URI[md5sum] = "0e1203fce27ce65e2d01c5f21c4d428f"
-SRC_URI[sha256sum] = "2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8"
-
-inherit pypi
-
-RDEPENDS_${PN} += " \
-    ${PYTHON_PN}-six \
-"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb b/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
index 0e79ae995..2aa64d08d 100644
--- a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
@@ -1,2 +1,14 @@
-inherit setuptools3
-require python-isodate.inc
+SUMMARY = "ISO 8601 date/time parser"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
+
+SRC_URI[md5sum] = "0e1203fce27ce65e2d01c5f21c4d428f"
+SRC_URI[sha256sum] = "2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-six \
+"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-incremental: Consolidate in a single file
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
  2020-06-15 10:30 ` [meta-python][PATCH 2/7] python3-isodate: " Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:07   ` [oe] " Trevor Gamblin
  2020-06-15 10:30 ` [meta-python][PATCH 4/7] python3-itsdangerous: " Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

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

diff --git a/meta-python/recipes-devtools/python/python-incremental.inc b/meta-python/recipes-devtools/python/python-incremental.inc
deleted file mode 100644
index ef5e903fb..000000000
--- a/meta-python/recipes-devtools/python/python-incremental.inc
+++ /dev/null
@@ -1,20 +0,0 @@
-DESCRIPTION = "Incremental is a small library that versions your Python projects"
-HOMEPAGE = "https://github.com/twisted/incremental"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6ca9b07f08e2c72d48c74d363d1e0e15"
-
-SRC_URI[md5sum] = "602746e0d438e075a5a9e0678140bba2"
-SRC_URI[sha256sum] = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"
-
-inherit pypi
-
-RDEPENDS_${PN} += " \
-    ${PYTHON_PN}-twisted \
-    ${PYTHON_PN}-click \
-"
-
-# -native is needed to build python[3]-twisted, however, we need to take steps to
-# prevent a circular dependency. The build apparently does not use the part of
-# python-incremental which uses python-twisted, so this hack is OK.
-RDEPENDS_${PYTHON_PN}-incremental-native_remove = "${PYTHON_PN}-twisted-native"
-BBCLASSEXTEND = "native"
diff --git a/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb b/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
index 0f04df4a6..568ba1989 100644
--- a/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
@@ -1,2 +1,20 @@
-inherit setuptools3
-require python-incremental.inc
+DESCRIPTION = "Incremental is a small library that versions your Python projects"
+HOMEPAGE = "https://github.com/twisted/incremental"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=6ca9b07f08e2c72d48c74d363d1e0e15"
+
+SRC_URI[md5sum] = "602746e0d438e075a5a9e0678140bba2"
+SRC_URI[sha256sum] = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-twisted \
+    ${PYTHON_PN}-click \
+"
+
+# -native is needed to build python[3]-twisted, however, we need to take steps to
+# prevent a circular dependency. The build apparently does not use the part of
+# python-incremental which uses python-twisted, so this hack is OK.
+RDEPENDS_${PYTHON_PN}-incremental-native_remove = "${PYTHON_PN}-twisted-native"
+BBCLASSEXTEND = "native"
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-itsdangerous: Consolidate in a single file
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
  2020-06-15 10:30 ` [meta-python][PATCH 2/7] python3-isodate: " Leon Anavi
  2020-06-15 10:30 ` [meta-python][PATCH 3/7] python3-incremental: " Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:08   ` [oe] " Trevor Gamblin
  2020-06-15 10:30 ` [meta-python][PATCH 5/7] python3-importlib-metadata: " Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

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

diff --git a/meta-python/recipes-devtools/python/python-itsdangerous.inc b/meta-python/recipes-devtools/python/python-itsdangerous.inc
deleted file mode 100644
index 241786a7c..000000000
--- a/meta-python/recipes-devtools/python/python-itsdangerous.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "Various helpers to pass trusted data to untrusted environments and back."
-HOMEPAGE = "http://github.com/mitsuhiko/itsdangerous"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=370799bf709a1e4a6a369fa089ac73a6"
-
-SRC_URI[md5sum] = "9b7f5afa7f1e3acfb7786eeca3d99307"
-SRC_URI[sha256sum] = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"
-
-CLEANBROKEN = "1"
-
-RDEPENDS_${PN} += " \
-    ${PYTHON_PN}-simplejson \
-    ${PYTHON_PN}-netclient \
-"
diff --git a/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb b/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
index a71c20f0e..7f50641c8 100644
--- a/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
@@ -1,6 +1,17 @@
+SUMMARY = "Various helpers to pass trusted data to untrusted environments and back."
+HOMEPAGE = "http://github.com/mitsuhiko/itsdangerous"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=370799bf709a1e4a6a369fa089ac73a6"
+
+SRC_URI[md5sum] = "9b7f5afa7f1e3acfb7786eeca3d99307"
+SRC_URI[sha256sum] = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"
+
 inherit pypi setuptools3
-require python-itsdangerous.inc
+
+CLEANBROKEN = "1"
 
 RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-simplejson \
+    ${PYTHON_PN}-netclient \
     ${PYTHON_PN}-compression \
 "
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-importlib-metadata: Consolidate in a single file
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-15 10:30 ` [meta-python][PATCH 4/7] python3-itsdangerous: " Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:08   ` [oe] " Trevor Gamblin
  2020-06-15 10:30 ` [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1 Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python-importlib-metadata.inc          | 14 --------------
 .../python/python3-importlib-metadata_1.5.2.bb    | 15 ++++++++++++++-
 2 files changed, 14 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-importlib-metadata.inc

diff --git a/meta-python/recipes-devtools/python/python-importlib-metadata.inc b/meta-python/recipes-devtools/python/python-importlib-metadata.inc
deleted file mode 100644
index b6165dc5b..000000000
--- a/meta-python/recipes-devtools/python/python-importlib-metadata.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-DESCRIPTION = "Read metadata from Python packages"
-HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
-
-SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
-S = "${WORKDIR}/importlib_metadata-${PV}"
-SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
-SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
-
-DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
-RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
index 8a971dac0..5170855c2 100644
--- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
@@ -1,5 +1,18 @@
+DESCRIPTION = "Read metadata from Python packages"
+HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
+
 inherit pypi setuptools3
-require python-importlib-metadata.inc
 
+SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
+S = "${WORKDIR}/importlib_metadata-${PV}"
+SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
+SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
+
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
 RDEPENDS_${PN}_append_class-target = " python3-misc"
 RDEPENDS_${PN}_append_class-nativesdk = " python3-misc"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
                   ` (3 preceding siblings ...)
  2020-06-15 10:30 ` [meta-python][PATCH 5/7] python3-importlib-metadata: " Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:08   ` [oe] " Trevor Gamblin
  2020-06-15 10:30 ` [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3 Leon Anavi
  2020-06-17 13:07 ` [oe] [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.6.1:

- Added Distribution._local() as a provisional demonstration of
  how to load metadata for a local package. Implicitly requires
  that pep517 is installed
- Ensure inputs to FastPath are Unicode
- Tests now rely on importlib.resources.files (and backport)
  instead of the older path function.
- Support any iterable from find_distributions
- Added module and attr attributes to EntryPoint

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...etadata_1.5.2.bb => python3-importlib-metadata_1.6.1.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-importlib-metadata_1.5.2.bb => python3-importlib-metadata_1.6.1.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
rename to meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
index 5170855c2..c46df8fcd 100644
--- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
@@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
 
 inherit pypi setuptools3
 
-SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
+SRC_URI = "https://files.pythonhosted.org/packages/aa/9a/8483b77e2decd95963d7e34bc9bc91a26e71fd89b57d8cf978ca24747c7f/importlib_metadata-1.6.1.tar.gz"
 S = "${WORKDIR}/importlib_metadata-${PV}"
-SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
-SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
+SRC_URI[md5sum] = "38f795ac13abc923acfd3da06263eb8f"
+SRC_URI[sha256sum] = "0505dd08068cfec00f53a74a0ad927676d7757da81b7436a6eefe4c7cf75c545"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
                   ` (4 preceding siblings ...)
  2020-06-15 10:30 ` [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1 Leon Anavi
@ 2020-06-15 10:30 ` Leon Anavi
  2020-06-17 13:08   ` [oe] " Trevor Gamblin
  2020-06-17 13:07 ` [oe] [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-06-15 10:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.3.3. It contains backported fixes from 4.x
development branch which targets Python 3:

- Backport caching msg.data value in neovi interface.
- Fix Vector CANlib treatment of empty app name.
- Handle empty CSV file.
- ASCII reader can now handle FD frames.
- Exclude test packages from distribution.
- RTR crash fix in canutils log reader parsing RTR frames.
- Skip J1939 messages in ASC Reader.
- Exposes a configuration option to allow the CAN message player
  to send error frames (and sets the default to not send
  error frames).
- Fixes the semantics provided by periodic tasks in SocketCAN interface.
- Avoid padding CAN_FD_MESSAGE_64 objects to 4 bytes.
- Fixes the broken CANalyst-II interface.
- Socketcan BCM status fix.

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

diff --git a/meta-python/recipes-devtools/python/python3-can_3.3.2.bb b/meta-python/recipes-devtools/python/python3-can_3.3.3.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-can_3.3.2.bb
rename to meta-python/recipes-devtools/python/python3-can_3.3.3.bb
index 698eaf5b3..4da233959 100644
--- a/meta-python/recipes-devtools/python/python3-can_3.3.2.bb
+++ b/meta-python/recipes-devtools/python/python3-can_3.3.3.bb
@@ -3,8 +3,8 @@ SECTION = "devel/python"
 LICENSE = "LGPLv3"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e6a600fd5e1d9cbde2d983680233ad02"
 
-SRC_URI[md5sum] = "b724553a330478270267380b4888a18e"
-SRC_URI[sha256sum] = "5fefb5c1e7e7f07faefc02c6eac79f9b58376f007048a04d8e7f325d48ec6b2e"
+SRC_URI[md5sum] = "1310da316799e4b12944a6c1dcb017a9"
+SRC_URI[sha256sum] = "ecd69cf6b2f0235345ebe607a15325cf1384c85b24ffbe1d68c3754357f87488"
 
 PYPI_PACKAGE="python-can"
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file
  2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
                   ` (5 preceding siblings ...)
  2020-06-15 10:30 ` [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3 Leon Anavi
@ 2020-06-17 13:07 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 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>
> ---
>   .../recipes-devtools/python/python-iso8601.inc   | 14 --------------
>   .../python/python3-iso8601_0.1.12.bb             | 16 +++++++++++++++-
>   2 files changed, 15 insertions(+), 15 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-iso8601.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-iso8601.inc b/meta-python/recipes-devtools/python/python-iso8601.inc
> deleted file mode 100644
> index a70843ead..000000000
> --- a/meta-python/recipes-devtools/python/python-iso8601.inc
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -SUMMARY = "Simple module to parse ISO 8601 dates"
> -HOMEPAGE = "http://pyiso8601.readthedocs.org/"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844"
> -
> -SRC_URI[md5sum] = "4de940f691c5ea759fb254384c8ddcf6"
> -SRC_URI[sha256sum] = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82"
> -
> -RDEPENDS_${PN} += "\
> -    ${PYTHON_PN}-datetime \
> -    ${PYTHON_PN}-numbers \
> -"
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb b/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
> index 4a332b53b..74b5bdcb8 100644
> --- a/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
> +++ b/meta-python/recipes-devtools/python/python3-iso8601_0.1.12.bb
> @@ -1,2 +1,16 @@
> +SUMMARY = "Simple module to parse ISO 8601 dates"
> +HOMEPAGE = "http://pyiso8601.readthedocs.org/"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844"
> +
> +SRC_URI[md5sum] = "4de940f691c5ea759fb254384c8ddcf6"
> +SRC_URI[sha256sum] = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82"
> +
>   inherit pypi setuptools3
> -require python-iso8601.inc
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-datetime \
> +    ${PYTHON_PN}-numbers \
> +"
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-isodate: Consolidate in a single file
  2020-06-15 10:30 ` [meta-python][PATCH 2/7] python3-isodate: " Leon Anavi
@ 2020-06-17 13:07   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 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>
> ---
>   .../recipes-devtools/python/python-isodate.inc   | 14 --------------
>   .../python/python3-isodate_0.6.0.bb              | 16 ++++++++++++++--
>   2 files changed, 14 insertions(+), 16 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-isodate.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-isodate.inc b/meta-python/recipes-devtools/python/python-isodate.inc
> deleted file mode 100644
> index 8c128919e..000000000
> --- a/meta-python/recipes-devtools/python/python-isodate.inc
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -SUMMARY = "ISO 8601 date/time parser"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
> -
> -SRC_URI[md5sum] = "0e1203fce27ce65e2d01c5f21c4d428f"
> -SRC_URI[sha256sum] = "2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8"
> -
> -inherit pypi
> -
> -RDEPENDS_${PN} += " \
> -    ${PYTHON_PN}-six \
> -"
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb b/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
> index 0e79ae995..2aa64d08d 100644
> --- a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb
> @@ -1,2 +1,14 @@
> -inherit setuptools3
> -require python-isodate.inc
> +SUMMARY = "ISO 8601 date/time parser"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
> +
> +SRC_URI[md5sum] = "0e1203fce27ce65e2d01c5f21c4d428f"
> +SRC_URI[sha256sum] = "2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} += " \
> +    ${PYTHON_PN}-six \
> +"
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-incremental: Consolidate in a single file
  2020-06-15 10:30 ` [meta-python][PATCH 3/7] python3-incremental: " Leon Anavi
@ 2020-06-17 13:07   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python-incremental.inc             | 20 -----------------
>   .../python/python3-incremental_17.5.0.bb      | 22 +++++++++++++++++--
>   2 files changed, 20 insertions(+), 22 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-incremental.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-incremental.inc b/meta-python/recipes-devtools/python/python-incremental.inc
> deleted file mode 100644
> index ef5e903fb..000000000
> --- a/meta-python/recipes-devtools/python/python-incremental.inc
> +++ /dev/null
> @@ -1,20 +0,0 @@
> -DESCRIPTION = "Incremental is a small library that versions your Python projects"
> -HOMEPAGE = "https://github.com/twisted/incremental"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=6ca9b07f08e2c72d48c74d363d1e0e15"
> -
> -SRC_URI[md5sum] = "602746e0d438e075a5a9e0678140bba2"
> -SRC_URI[sha256sum] = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"
> -
> -inherit pypi
> -
> -RDEPENDS_${PN} += " \
> -    ${PYTHON_PN}-twisted \
> -    ${PYTHON_PN}-click \
> -"
> -
> -# -native is needed to build python[3]-twisted, however, we need to take steps to
> -# prevent a circular dependency. The build apparently does not use the part of
> -# python-incremental which uses python-twisted, so this hack is OK.
> -RDEPENDS_${PYTHON_PN}-incremental-native_remove = "${PYTHON_PN}-twisted-native"
> -BBCLASSEXTEND = "native"
> diff --git a/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb b/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
> index 0f04df4a6..568ba1989 100644
> --- a/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-incremental_17.5.0.bb
> @@ -1,2 +1,20 @@
> -inherit setuptools3
> -require python-incremental.inc
> +DESCRIPTION = "Incremental is a small library that versions your Python projects"
> +HOMEPAGE = "https://github.com/twisted/incremental"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=6ca9b07f08e2c72d48c74d363d1e0e15"
> +
> +SRC_URI[md5sum] = "602746e0d438e075a5a9e0678140bba2"
> +SRC_URI[sha256sum] = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} += " \
> +    ${PYTHON_PN}-twisted \
> +    ${PYTHON_PN}-click \
> +"
> +
> +# -native is needed to build python[3]-twisted, however, we need to take steps to
> +# prevent a circular dependency. The build apparently does not use the part of
> +# python-incremental which uses python-twisted, so this hack is OK.
> +RDEPENDS_${PYTHON_PN}-incremental-native_remove = "${PYTHON_PN}-twisted-native"
> +BBCLASSEXTEND = "native"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-itsdangerous: Consolidate in a single file
  2020-06-15 10:30 ` [meta-python][PATCH 4/7] python3-itsdangerous: " Leon Anavi
@ 2020-06-17 13:08   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python-itsdangerous.inc                 | 14 --------------
>   .../python/python3-itsdangerous_1.1.0.bb           | 13 ++++++++++++-
>   2 files changed, 12 insertions(+), 15 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-itsdangerous.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-itsdangerous.inc b/meta-python/recipes-devtools/python/python-itsdangerous.inc
> deleted file mode 100644
> index 241786a7c..000000000
> --- a/meta-python/recipes-devtools/python/python-itsdangerous.inc
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -SUMMARY = "Various helpers to pass trusted data to untrusted environments and back."
> -HOMEPAGE = "http://github.com/mitsuhiko/itsdangerous"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=370799bf709a1e4a6a369fa089ac73a6"
> -
> -SRC_URI[md5sum] = "9b7f5afa7f1e3acfb7786eeca3d99307"
> -SRC_URI[sha256sum] = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"
> -
> -CLEANBROKEN = "1"
> -
> -RDEPENDS_${PN} += " \
> -    ${PYTHON_PN}-simplejson \
> -    ${PYTHON_PN}-netclient \
> -"
> diff --git a/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb b/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
> index a71c20f0e..7f50641c8 100644
> --- a/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-itsdangerous_1.1.0.bb
> @@ -1,6 +1,17 @@
> +SUMMARY = "Various helpers to pass trusted data to untrusted environments and back."
> +HOMEPAGE = "http://github.com/mitsuhiko/itsdangerous"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=370799bf709a1e4a6a369fa089ac73a6"
> +
> +SRC_URI[md5sum] = "9b7f5afa7f1e3acfb7786eeca3d99307"
> +SRC_URI[sha256sum] = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19"
> +
>   inherit pypi setuptools3
> -require python-itsdangerous.inc
> +
> +CLEANBROKEN = "1"
>   
>   RDEPENDS_${PN} += " \
> +    ${PYTHON_PN}-simplejson \
> +    ${PYTHON_PN}-netclient \
>       ${PYTHON_PN}-compression \
>   "
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-importlib-metadata: Consolidate in a single file
  2020-06-15 10:30 ` [meta-python][PATCH 5/7] python3-importlib-metadata: " Leon Anavi
@ 2020-06-17 13:08   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python-importlib-metadata.inc          | 14 --------------
>   .../python/python3-importlib-metadata_1.5.2.bb    | 15 ++++++++++++++-
>   2 files changed, 14 insertions(+), 15 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-importlib-metadata.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-importlib-metadata.inc b/meta-python/recipes-devtools/python/python-importlib-metadata.inc
> deleted file mode 100644
> index b6165dc5b..000000000
> --- a/meta-python/recipes-devtools/python/python-importlib-metadata.inc
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -DESCRIPTION = "Read metadata from Python packages"
> -HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
> -LICENSE = "Apache-2.0"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
> -
> -SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
> -S = "${WORKDIR}/importlib_metadata-${PV}"
> -SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
> -SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
> -
> -DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> -RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
> index 8a971dac0..5170855c2 100644
> --- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
> @@ -1,5 +1,18 @@
> +DESCRIPTION = "Read metadata from Python packages"
> +HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
> +
>   inherit pypi setuptools3
> -require python-importlib-metadata.inc
>   
> +SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
> +S = "${WORKDIR}/importlib_metadata-${PV}"
> +SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
> +SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
> +
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> +RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
>   RDEPENDS_${PN}_append_class-target = " python3-misc"
>   RDEPENDS_${PN}_append_class-nativesdk = " python3-misc"
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1
  2020-06-15 10:30 ` [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1 Leon Anavi
@ 2020-06-17 13:08   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 AM, Leon Anavi wrote:
> Upgrade to release 1.6.1:
>
> - Added Distribution._local() as a provisional demonstration of
>    how to load metadata for a local package. Implicitly requires
>    that pep517 is installed
> - Ensure inputs to FastPath are Unicode
> - Tests now rely on importlib.resources.files (and backport)
>    instead of the older path function.
> - Support any iterable from find_distributions
> - Added module and attr attributes to EntryPoint
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...etadata_1.5.2.bb => python3-importlib-metadata_1.6.1.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-importlib-metadata_1.5.2.bb => python3-importlib-metadata_1.6.1.bb} (64%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
> similarity index 64%
> rename from meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
> rename to meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
> index 5170855c2..c46df8fcd 100644
> --- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_1.6.1.bb
> @@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI = "https://files.pythonhosted.org/packages/d7/cd/3b1dffa46b19dac269d586b9d45090588a8bd7a5741602a369d45e1bdf65/importlib_metadata-1.5.2.tar.gz"
> +SRC_URI = "https://files.pythonhosted.org/packages/aa/9a/8483b77e2decd95963d7e34bc9bc91a26e71fd89b57d8cf978ca24747c7f/importlib_metadata-1.6.1.tar.gz"
>   S = "${WORKDIR}/importlib_metadata-${PV}"
> -SRC_URI[md5sum] = "35a85a81c7d86605f4f49397f4e7e39c"
> -SRC_URI[sha256sum] = "dfc83688553a91a786c6c91eeb5f3b1d31f24d71877bbd94ecbf5484e57690a2"
> +SRC_URI[md5sum] = "38f795ac13abc923acfd3da06263eb8f"
> +SRC_URI[sha256sum] = "0505dd08068cfec00f53a74a0ad927676d7757da81b7436a6eefe4c7cf75c545"
>   
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3
  2020-06-15 10:30 ` [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3 Leon Anavi
@ 2020-06-17 13:08   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-06-17 13:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/15/20 6:30 AM, Leon Anavi wrote:
> Upgrade to release 3.3.3. It contains backported fixes from 4.x
> development branch which targets Python 3:
>
> - Backport caching msg.data value in neovi interface.
> - Fix Vector CANlib treatment of empty app name.
> - Handle empty CSV file.
> - ASCII reader can now handle FD frames.
> - Exclude test packages from distribution.
> - RTR crash fix in canutils log reader parsing RTR frames.
> - Skip J1939 messages in ASC Reader.
> - Exposes a configuration option to allow the CAN message player
>    to send error frames (and sets the default to not send
>    error frames).
> - Fixes the semantics provided by periodic tasks in SocketCAN interface.
> - Avoid padding CAN_FD_MESSAGE_64 objects to 4 bytes.
> - Fixes the broken CANalyst-II interface.
> - Socketcan BCM status fix.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-can_3.3.2.bb => python3-can_3.3.3.bb}     | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-can_3.3.2.bb => python3-can_3.3.3.bb} (80%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-can_3.3.2.bb b/meta-python/recipes-devtools/python/python3-can_3.3.3.bb
> similarity index 80%
> rename from meta-python/recipes-devtools/python/python3-can_3.3.2.bb
> rename to meta-python/recipes-devtools/python/python3-can_3.3.3.bb
> index 698eaf5b3..4da233959 100644
> --- a/meta-python/recipes-devtools/python/python3-can_3.3.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-can_3.3.3.bb
> @@ -3,8 +3,8 @@ SECTION = "devel/python"
>   LICENSE = "LGPLv3"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e6a600fd5e1d9cbde2d983680233ad02"
>   
> -SRC_URI[md5sum] = "b724553a330478270267380b4888a18e"
> -SRC_URI[sha256sum] = "5fefb5c1e7e7f07faefc02c6eac79f9b58376f007048a04d8e7f325d48ec6b2e"
> +SRC_URI[md5sum] = "1310da316799e4b12944a6c1dcb017a9"
> +SRC_URI[sha256sum] = "ecd69cf6b2f0235345ebe607a15325cf1384c85b24ffbe1d68c3754357f87488"
>   
>   PYPI_PACKAGE="python-can"
>   
>
> 

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

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

end of thread, other threads:[~2020-06-17 13:08 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-15 10:30 [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file Leon Anavi
2020-06-15 10:30 ` [meta-python][PATCH 2/7] python3-isodate: " Leon Anavi
2020-06-17 13:07   ` [oe] " Trevor Gamblin
2020-06-15 10:30 ` [meta-python][PATCH 3/7] python3-incremental: " Leon Anavi
2020-06-17 13:07   ` [oe] " Trevor Gamblin
2020-06-15 10:30 ` [meta-python][PATCH 4/7] python3-itsdangerous: " Leon Anavi
2020-06-17 13:08   ` [oe] " Trevor Gamblin
2020-06-15 10:30 ` [meta-python][PATCH 5/7] python3-importlib-metadata: " Leon Anavi
2020-06-17 13:08   ` [oe] " Trevor Gamblin
2020-06-15 10:30 ` [meta-python][PATCH 6/7] python3-importlib-metadata: Upgrade 1.5.2 -> 1.6.1 Leon Anavi
2020-06-17 13:08   ` [oe] " Trevor Gamblin
2020-06-15 10:30 ` [meta-python][PATCH 7/7] python3-can: Upgrade 3.3.2 -> 3.3.3 Leon Anavi
2020-06-17 13:08   ` [oe] " Trevor Gamblin
2020-06-17 13:07 ` [oe] [meta-python][PATCH 1/7] python3-iso8601: Consolidate in a single file 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.