All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file
@ 2020-06-29 12:12 Leon Anavi
  2020-06-29 12:12 ` [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6 Leon Anavi
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 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-pyparted/python-pyparted.inc       | 22 ------------------
 .../python3-pyparted_3.11.3.bb                | 23 +++++++++++++++++--
 2 files changed, 21 insertions(+), 24 deletions(-)
 delete mode 100644 meta-python/recipes-extended/python-pyparted/python-pyparted.inc

diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc b/meta-python/recipes-extended/python-pyparted/python-pyparted.inc
deleted file mode 100644
index 97054487f..000000000
--- a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc
+++ /dev/null
@@ -1,22 +0,0 @@
-DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \
-an interface to libparted, the GNU parted library for disk partitioning and \
-filesystem manipulation."
-SUMMARY = "Python bindings for libparted"
-HOMEPAGE = "https://github.com/rhinstaller/pyparted"
-LICENSE = "GPL-2.0+"
-LIC_FILES_CHKSUM = "\
-    file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
-    file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
-"
-DEPENDS += "parted"
-
-# upstream only publishes releases in github archives which are discouraged
-SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
-SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
-
-S = "${WORKDIR}/git"
-
-RDEPENDS_${PN}_class-target += " \
-    parted (>= 2.3) \
-"
-RDEPENDS_${PN}_class-native = ""
diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
index d83901ff3..a801920c0 100644
--- a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
+++ b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
@@ -1,8 +1,27 @@
-require python-pyparted.inc
+DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \
+an interface to libparted, the GNU parted library for disk partitioning and \
+filesystem manipulation."
+SUMMARY = "Python bindings for libparted"
+HOMEPAGE = "https://github.com/rhinstaller/pyparted"
+LICENSE = "GPL-2.0+"
+LIC_FILES_CHKSUM = "\
+    file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
+    file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
+"
+DEPENDS += "parted"
+
+# upstream only publishes releases in github archives which are discouraged
+SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
+SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
 
 inherit distutils3
 
-RDEPENDS_${PN} += "python3-stringold python3-codecs python3-math"
+S = "${WORKDIR}/git"
+
+RDEPENDS_${PN}_class-target += " \
+    parted (>= 2.3) \
+    python3-stringold python3-codecs python3-math \
+"
 RDEPENDS_${PN}_class-native = ""
 
 BBCLASSEXTEND = "native"
-- 
2.17.1


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

* [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:23   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file Leon Anavi
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Inherit pypi. Upgrade to release 3.11.6:

- Use preprocessor for the _ped module and what constants to
  include
- Reduce libparted requirement to 3.2
- Update the pypi target in the Makefile
- Reduce minimum Python required to 3.5

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...3-pyparted_3.11.3.bb => python3-pyparted_3.11.6.bb} | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
 rename meta-python/recipes-extended/python-pyparted/{python3-pyparted_3.11.3.bb => python3-pyparted_3.11.6.bb} (73%)

diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
similarity index 73%
rename from meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
rename to meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
index a801920c0..63f493366 100644
--- a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
+++ b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
@@ -8,15 +8,13 @@ LIC_FILES_CHKSUM = "\
     file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
     file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
 "
-DEPENDS += "parted"
 
-# upstream only publishes releases in github archives which are discouraged
-SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
-SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
+SRC_URI[md5sum] = "b85dcaecc3106eb6e9a117270b09615e"
+SRC_URI[sha256sum] = "727ccdf308c194069aa9797f7a6a973bc95b2e407cdf5d58d6c8bc4c9dec92dc"
 
-inherit distutils3
+inherit pypi distutils3
 
-S = "${WORKDIR}/git"
+DEPENDS += "parted"
 
 RDEPENDS_${PN}_class-target += " \
     parted (>= 2.3) \
-- 
2.17.1


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

* [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
  2020-06-29 12:12 ` [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2 Leon Anavi
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 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-extended/pywbem/python-pywbem.inc | 51 ------------------
 .../pywbem/python3-pywbem_0.15.0.bb           | 53 ++++++++++++++++++-
 2 files changed, 51 insertions(+), 53 deletions(-)
 delete mode 100644 meta-python/recipes-extended/pywbem/python-pywbem.inc

diff --git a/meta-python/recipes-extended/pywbem/python-pywbem.inc b/meta-python/recipes-extended/pywbem/python-pywbem.inc
deleted file mode 100644
index 98508b0c3..000000000
--- a/meta-python/recipes-extended/pywbem/python-pywbem.inc
+++ /dev/null
@@ -1,51 +0,0 @@
-SUMMARY = "Python WBEM Client and Provider Interface"
-DESCRIPTION = "\
-A Python library for making CIM (Common Information Model) operations over \
-HTTP using the WBEM CIM-XML protocol. It is based on the idea that a good \
-WBEM client should be easy to use and not necessarily require a large amount \
-of programming knowledge. It is suitable for a large range of tasks from \
-simply poking around to writing web and GUI applications. \
-\
-WBEM, or Web Based Enterprise Management is a manageability protocol, like \
-SNMP, standardised by the Distributed Management Task Force (DMTF) available \
-at http://www.dmtf.org/standards/wbem. \
-\
-It also provides a Python provider interface, and is the fastest and easiest \
-way to write providers on the planet."
-HOMEPAGE = "http://pywbem.github.io"
-LICENSE = "LGPLv2.1"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
-
-inherit pypi 
-
-SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
-PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
-
-S = "${WORKDIR}/git"
-
-DEPENDS += " \
-    ${PYTHON_PN}-ply-native \
-    ${PYTHON_PN}-pyyaml-native \
-    ${PYTHON_PN}-six-native \
-"
-
-do_install_append() {
-    mv ${D}${bindir}/wbemcli.py ${D}${bindir}/pywbemcli
-
-    rm -f ${D}${bindir}/*.bat
-}
-
-RDEPENDS_${PN}_class-target += "\
-    ${PYTHON_PN}-datetime \
-    ${PYTHON_PN}-io \
-    ${PYTHON_PN}-netclient \
-    ${PYTHON_PN}-ply \
-    ${PYTHON_PN}-pyyaml \
-    ${PYTHON_PN}-six \
-    ${PYTHON_PN}-stringold \
-    ${PYTHON_PN}-threading \
-    ${PYTHON_PN}-unixadmin \
-    ${PYTHON_PN}-xml \
-"
-
-BBCLASSEXTEND = "native"
diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
index abfb8d920..cbb55b8f7 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
@@ -1,5 +1,52 @@
-require python-pywbem.inc
-inherit setuptools3 update-alternatives
+SUMMARY = "Python WBEM Client and Provider Interface"
+DESCRIPTION = "\
+A Python library for making CIM (Common Information Model) operations over \
+HTTP using the WBEM CIM-XML protocol. It is based on the idea that a good \
+WBEM client should be easy to use and not necessarily require a large amount \
+of programming knowledge. It is suitable for a large range of tasks from \
+simply poking around to writing web and GUI applications. \
+\
+WBEM, or Web Based Enterprise Management is a manageability protocol, like \
+SNMP, standardised by the Distributed Management Task Force (DMTF) available \
+at http://www.dmtf.org/standards/wbem. \
+\
+It also provides a Python provider interface, and is the fastest and easiest \
+way to write providers on the planet."
+HOMEPAGE = "http://pywbem.github.io"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
+
+inherit pypi setuptools3 update-alternatives
+
+SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
+PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
+
+S = "${WORKDIR}/git"
+
+DEPENDS += " \
+    ${PYTHON_PN}-ply-native \
+    ${PYTHON_PN}-pyyaml-native \
+    ${PYTHON_PN}-six-native \
+"
+
+do_install_append() {
+    mv ${D}${bindir}/wbemcli.py ${D}${bindir}/pywbemcli
+
+    rm -f ${D}${bindir}/*.bat
+}
+
+RDEPENDS_${PN}_class-target += "\
+    ${PYTHON_PN}-datetime \
+    ${PYTHON_PN}-io \
+    ${PYTHON_PN}-netclient \
+    ${PYTHON_PN}-ply \
+    ${PYTHON_PN}-pyyaml \
+    ${PYTHON_PN}-six \
+    ${PYTHON_PN}-stringold \
+    ${PYTHON_PN}-threading \
+    ${PYTHON_PN}-unixadmin \
+    ${PYTHON_PN}-xml \
+"
 
 ALTERNATIVE_${PN} = "mof_compiler pywbemcli wbemcli"
 ALTERNATIVE_TARGET[mof_compiler] = "${bindir}/mof_compiler"
@@ -7,3 +54,5 @@ ALTERNATIVE_TARGET[pywbemcli] = "${bindir}/pywbemcli"
 ALTERNATIVE_TARGET[wbemcli] = "${bindir}/wbemcli"
 
 ALTERNATIVE_PRIORITY = "60"
+
+BBCLASSEXTEND = "native"
-- 
2.17.1


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

* [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
  2020-06-29 12:12 ` [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6 Leon Anavi
  2020-06-29 12:12 ` [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3 Leon Anavi
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.2:

- Test: Fixed virtualenv related failures during install test.
- Dev: Increased the versions of the base packages ‘pip’,
  ‘setuptools’ and ‘wheel’ to the content of Ubuntu 18.04 as
  a minimum, and to the lowest versions that support a particular
  Python versions beyond that. This only affects development of
  pywbem.
- Setup: Added the scripts for installing OS-level dependencies
  (pywbem_os_setup.sh/.bat) to the source distribution archive.
  Note that starting with the upcoming pywbem 1.0.0, these scripts
  are no longer needed, so this change will not be rolled forward
  into 1.0.0.
- Increased the version of ‘PyYAML’ from 5.1 to 5.3 on Python 2.7,
  to pick up a fix for dealing with Unicode characters above U+FFFF
  in narrow Python builds. This could not be fixed for Python 2.6
  since PyYAML 3.12 dropped support for Python 2.6
- Fixed raise error for invalid reference_direction in
  WBEMServer.get_central_instances().
- Fixed raise error for missing ports in WBEMListener.__init__().

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-pywbem_0.15.0.bb => python3-pywbem_0.17.2.bb} | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
 rename meta-python/recipes-extended/pywbem/{python3-pywbem_0.15.0.bb => python3-pywbem_0.17.2.bb} (91%)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
similarity index 91%
rename from meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
rename to meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
index cbb55b8f7..ce63822b4 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
@@ -16,12 +16,10 @@ HOMEPAGE = "http://pywbem.github.io"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
 
-inherit pypi setuptools3 update-alternatives
-
-SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
-PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
+SRC_URI[md5sum] = "6100157c720ba272895b3f79a05c8dc3"
+SRC_URI[sha256sum] = "84dac33f77d5ff2c3d8eb42fc7de2ffb6d33f5e4954ef89db0dbf3fe646a2809"
 
-S = "${WORKDIR}/git"
+inherit pypi setuptools3 update-alternatives
 
 DEPENDS += " \
     ${PYTHON_PN}-ply-native \
-- 
2.17.1


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

* [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1 Leon Anavi
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.1.3:

- In the case of a method returning a non-serializable value,
  return a JSON-RPC error response. It was previously erroring
  server-side without responding to the client.
- Fix for Python 3.8 - ensures the same exceptions will be raised
  in 3.8 and pre-3.8.

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

diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb
rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
index e23720c3e..98db23039 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/bcb/jsonrpcserver"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15"
 
-SRC_URI[md5sum] = "fd4091bc19eb18579c15b97af70714eb"
-SRC_URI[sha256sum] = "73db55d1cf245ebdfb96ca05c4cce01c51b61be845a2a981f539ea1e6a4e0c4a"
+SRC_URI[md5sum] = "e73b0bd90e99115d3f9e0ac42882c5b7"
+SRC_URI[sha256sum] = "649680c293facb6ae7c3f5c8028e4623c55195db5216847e9f25f85cba2d443a"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (3 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2 Leon Anavi
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.1:

- Explicit error if _DEFAULT_LOCALE_PATH is None
- Fix incorrect Portuguese spelling
- Fix fractional(0.333) output in README

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

diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb b/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb
rename to meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
index 6bb6946ff..3a06a48b1 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[md5sum] = "010e86a4196ed6030112e7bc681e7353"
-SRC_URI[sha256sum] = "42ae7d54b398c01bd100847f6cb0fc9e381c21be8ad3f8e2929135e48dbff026"
+SRC_URI[md5sum] = "3d4d25cf84181c55bf7d219dd175dbff"
+SRC_URI[sha256sum] = "4b4ce2fc1c9d79c63f68009ddf5a12ad238aa78e2fceb256b5aa921763551422"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (4 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5 Leon Anavi
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.6.2:

- fix: xbr fixes
- fix: use cpy 3.8 for running flake in CI
- new: Ticket1392 internal attrs
- new: internal-only router attributes and hook for router to add
  custom information

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

diff --git a/meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb b/meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb
rename to meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
index 60ef57d04..171a6dce4 100644
--- a/meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
@@ -3,7 +3,8 @@ DESCRIPTION = "WebSocket client & server library, WAMP real-time framework"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
 
-SRC_URI[sha256sum] = "c6fe745d52ba9f9eecf791cd31f558df42aebfc4f9ee558a8f1d18c707e1ae1f"
+SRC_URI[md5sum] = "bcafb42ea58232308777a265d41c1c98"
+SRC_URI[sha256sum] = "6ac6b6653b8d20d632b034adccf6a566154d4efbeaa23abf7c3995fd601e9a01"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (5 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:24   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6 Leon Anavi
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Fix HOMEPAGE. Use file LICENSE for LIC_FILES_CHKSUM. Upgrade
to release 1.2.5:

- Fix tag/ctx_id filtering on get_func_stats
- Add filter_callback to get_func_stats() for filtering
  function/module descriptors
- FIX: issues related to invalid conversion from long->ptr in
  Win32
- Optimize tstate->dict retrieval
- Various other fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-yappi_1.0.bb => python3-yappi_1.2.5.bb}   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-yappi_1.0.bb => python3-yappi_1.2.5.bb} (60%)

diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.0.bb b/meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
similarity index 60%
rename from meta-python/recipes-devtools/python/python3-yappi_1.0.bb
rename to meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
index 75de4dfbe..366dec3dc 100644
--- a/meta-python/recipes-devtools/python/python3-yappi_1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
@@ -1,11 +1,11 @@
 SUMMARY  = "Yet Another Python Profiler"
-HOMEPAGE = "http://yappi.googlecode.com/"
+HOMEPAGE = "https://github.com/sumerc/yappi"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=9a193c13f346884e597acdcac7fe9ac8"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee"
 
-SRC_URI[md5sum] = "a545101aa8a435b0780f06f4723f58c8"
-SRC_URI[sha256sum] = "7f814131515d51db62b1a3468bcb84de30499124752806a5a6e11caf0b4344bf"
+SRC_URI[md5sum] = "83237494e7d22df2a31935a1e6650fa6"
+SRC_URI[sha256sum] = "ad5fa4caf2859e480ffc4ec3e85615a6f7dea852c8f035f2db723f824ed4ba11"
 
 SRC_URI += " \
     file://run-ptest \
@@ -28,5 +28,5 @@ RDEPENDS_${PN}-ptest += " \
 do_install_ptest() {
     install -d ${D}${PTEST_PATH}/tests
     cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
-    cp -f ${S}/yappi.py ${D}/${PTEST_PATH}/
+    cp -f ${S}/yappi/yappi.py ${D}/${PTEST_PATH}/
 }
-- 
2.17.1


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

* [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (6 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:25   ` [oe] " Trevor Gamblin
  2020-06-29 12:12 ` [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3 Leon Anavi
  2020-06-30 13:23 ` [oe] [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.6 with changes in core, combinatorics,
calculus, assumptions, functions, geometry, holonomic, integrals,
logic, matrices, ntheory, parsing, etc. For more details:
https://github.com/sympy/sympy/wiki/release-notes-for-1.6

The year in file LICENSE was updated and the checksum changed.
The license remains the same.

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

diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb b/meta-python/recipes-devtools/python/python3-sympy_1.6.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb
rename to meta-python/recipes-devtools/python/python3-sympy_1.6.bb
index c0c382a51..feb9e10e5 100644
--- a/meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-sympy_1.6.bb
@@ -4,10 +4,10 @@
 SUMMARY = "Computer algebra system (CAS) in Python"
 HOMEPAGE = "https://pypi.org/project/sympy/"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=611b41534dbf5aa01d7c827bf667ef66"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4"
 
-SRC_URI[md5sum] = "b11b310c3e1642bf66e51038cb3c0021"
-SRC_URI[sha256sum] = "d77901d748287d15281f5ffe5b0fef62dd38f357c2b827c44ff07f35695f4e7e"
+SRC_URI[md5sum] = "dbb7b21d2972c41f37d48f744b6189a3"
+SRC_URI[sha256sum] = "9769e3d2952e211b1245f1d0dfdbfbdde1f7779a3953832b7dd2b88a21ca6cc6"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (7 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6 Leon Anavi
@ 2020-06-29 12:12 ` Leon Anavi
  2020-06-30 13:25   ` [oe] " Trevor Gamblin
  2020-06-30 13:23 ` [oe] [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-06-29 12:12 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.10.3:

- Ensure ObservedWatch.path is a string
- [inotify] Allow to monitor single file
- [inotify] Prevent raising an exception when a file in a
  monitored folder has no permissions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-watchdog_0.10.2.bb => python3-watchdog_0.10.3.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-watchdog_0.10.2.bb => python3-watchdog_0.10.3.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb b/meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb
rename to meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
index 93a1c192f..2108cbb93 100644
--- a/meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb
+++ b/meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
@@ -4,7 +4,8 @@ DEPENDS = "${PYTHON_PN}-argh"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[sha256sum] = "c560efb643faed5ef28784b2245cf8874f939569717a4a12826a173ac644456b"
+SRC_URI[md5sum] = "9a5c9134e943b534b9f8b51d78338cf8"
+SRC_URI[sha256sum] = "4214e1379d128b0588021880ccaf40317ee156d4603ac388b9adcf29165e0c04"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file
  2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
                   ` (8 preceding siblings ...)
  2020-06-29 12:12 ` [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3 Leon Anavi
@ 2020-06-30 13:23 ` Trevor Gamblin
  9 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:23 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 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-pyparted/python-pyparted.inc       | 22 ------------------
>   .../python3-pyparted_3.11.3.bb                | 23 +++++++++++++++++--
>   2 files changed, 21 insertions(+), 24 deletions(-)
>   delete mode 100644 meta-python/recipes-extended/python-pyparted/python-pyparted.inc
>
> diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc b/meta-python/recipes-extended/python-pyparted/python-pyparted.inc
> deleted file mode 100644
> index 97054487f..000000000
> --- a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc
> +++ /dev/null
> @@ -1,22 +0,0 @@
> -DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \
> -an interface to libparted, the GNU parted library for disk partitioning and \
> -filesystem manipulation."
> -SUMMARY = "Python bindings for libparted"
> -HOMEPAGE = "https://github.com/rhinstaller/pyparted"
> -LICENSE = "GPL-2.0+"
> -LIC_FILES_CHKSUM = "\
> -    file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
> -    file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
> -"
> -DEPENDS += "parted"
> -
> -# upstream only publishes releases in github archives which are discouraged
> -SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
> -SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
> -
> -S = "${WORKDIR}/git"
> -
> -RDEPENDS_${PN}_class-target += " \
> -    parted (>= 2.3) \
> -"
> -RDEPENDS_${PN}_class-native = ""
> diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
> index d83901ff3..a801920c0 100644
> --- a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
> +++ b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
> @@ -1,8 +1,27 @@
> -require python-pyparted.inc
> +DESCRIPTION = "pyparted is a set of Python modules that provide Python programmers \
> +an interface to libparted, the GNU parted library for disk partitioning and \
> +filesystem manipulation."
> +SUMMARY = "Python bindings for libparted"
> +HOMEPAGE = "https://github.com/rhinstaller/pyparted"
> +LICENSE = "GPL-2.0+"
> +LIC_FILES_CHKSUM = "\
> +    file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
> +    file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
> +"
> +DEPENDS += "parted"
> +
> +# upstream only publishes releases in github archives which are discouraged
> +SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
> +SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
>   
>   inherit distutils3
>   
> -RDEPENDS_${PN} += "python3-stringold python3-codecs python3-math"
> +S = "${WORKDIR}/git"
> +
> +RDEPENDS_${PN}_class-target += " \
> +    parted (>= 2.3) \
> +    python3-stringold python3-codecs python3-math \
> +"
>   RDEPENDS_${PN}_class-native = ""
>   
>   BBCLASSEXTEND = "native"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6
  2020-06-29 12:12 ` [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6 Leon Anavi
@ 2020-06-30 13:23   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:23 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Inherit pypi. Upgrade to release 3.11.6:
>
> - Use preprocessor for the _ped module and what constants to
>    include
> - Reduce libparted requirement to 3.2
> - Update the pypi target in the Makefile
> - Reduce minimum Python required to 3.5
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...3-pyparted_3.11.3.bb => python3-pyparted_3.11.6.bb} | 10 ++++------
>   1 file changed, 4 insertions(+), 6 deletions(-)
>   rename meta-python/recipes-extended/python-pyparted/{python3-pyparted_3.11.3.bb => python3-pyparted_3.11.6.bb} (73%)
>
> diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
> similarity index 73%
> rename from meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
> rename to meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
> index a801920c0..63f493366 100644
> --- a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.3.bb
> +++ b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.6.bb
> @@ -8,15 +8,13 @@ LIC_FILES_CHKSUM = "\
>       file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
>       file://src/_pedmodule.c;beginline=10;endline=22;md5=9e53304db812b80d0939e11bb69dcab2 \
>   "
> -DEPENDS += "parted"
>   
> -# upstream only publishes releases in github archives which are discouraged
> -SRCREV = "481510c10866851844b19f3d2ffcdaa37efc0cf8"
> -SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
> +SRC_URI[md5sum] = "b85dcaecc3106eb6e9a117270b09615e"
> +SRC_URI[sha256sum] = "727ccdf308c194069aa9797f7a6a973bc95b2e407cdf5d58d6c8bc4c9dec92dc"
>   
> -inherit distutils3
> +inherit pypi distutils3
>   
> -S = "${WORKDIR}/git"
> +DEPENDS += "parted"
>   
>   RDEPENDS_${PN}_class-target += " \
>       parted (>= 2.3) \
>
> 

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

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

* Re: [oe] [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file
  2020-06-29 12:12 ` [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 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-extended/pywbem/python-pywbem.inc | 51 ------------------
>   .../pywbem/python3-pywbem_0.15.0.bb           | 53 ++++++++++++++++++-
>   2 files changed, 51 insertions(+), 53 deletions(-)
>   delete mode 100644 meta-python/recipes-extended/pywbem/python-pywbem.inc
>
> diff --git a/meta-python/recipes-extended/pywbem/python-pywbem.inc b/meta-python/recipes-extended/pywbem/python-pywbem.inc
> deleted file mode 100644
> index 98508b0c3..000000000
> --- a/meta-python/recipes-extended/pywbem/python-pywbem.inc
> +++ /dev/null
> @@ -1,51 +0,0 @@
> -SUMMARY = "Python WBEM Client and Provider Interface"
> -DESCRIPTION = "\
> -A Python library for making CIM (Common Information Model) operations over \
> -HTTP using the WBEM CIM-XML protocol. It is based on the idea that a good \
> -WBEM client should be easy to use and not necessarily require a large amount \
> -of programming knowledge. It is suitable for a large range of tasks from \
> -simply poking around to writing web and GUI applications. \
> -\
> -WBEM, or Web Based Enterprise Management is a manageability protocol, like \
> -SNMP, standardised by the Distributed Management Task Force (DMTF) available \
> -at http://www.dmtf.org/standards/wbem. \
> -\
> -It also provides a Python provider interface, and is the fastest and easiest \
> -way to write providers on the planet."
> -HOMEPAGE = "http://pywbem.github.io"
> -LICENSE = "LGPLv2.1"
> -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
> -
> -inherit pypi
> -
> -SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
> -PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
> -
> -S = "${WORKDIR}/git"
> -
> -DEPENDS += " \
> -    ${PYTHON_PN}-ply-native \
> -    ${PYTHON_PN}-pyyaml-native \
> -    ${PYTHON_PN}-six-native \
> -"
> -
> -do_install_append() {
> -    mv ${D}${bindir}/wbemcli.py ${D}${bindir}/pywbemcli
> -
> -    rm -f ${D}${bindir}/*.bat
> -}
> -
> -RDEPENDS_${PN}_class-target += "\
> -    ${PYTHON_PN}-datetime \
> -    ${PYTHON_PN}-io \
> -    ${PYTHON_PN}-netclient \
> -    ${PYTHON_PN}-ply \
> -    ${PYTHON_PN}-pyyaml \
> -    ${PYTHON_PN}-six \
> -    ${PYTHON_PN}-stringold \
> -    ${PYTHON_PN}-threading \
> -    ${PYTHON_PN}-unixadmin \
> -    ${PYTHON_PN}-xml \
> -"
> -
> -BBCLASSEXTEND = "native"
> diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
> index abfb8d920..cbb55b8f7 100644
> --- a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
> +++ b/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
> @@ -1,5 +1,52 @@
> -require python-pywbem.inc
> -inherit setuptools3 update-alternatives
> +SUMMARY = "Python WBEM Client and Provider Interface"
> +DESCRIPTION = "\
> +A Python library for making CIM (Common Information Model) operations over \
> +HTTP using the WBEM CIM-XML protocol. It is based on the idea that a good \
> +WBEM client should be easy to use and not necessarily require a large amount \
> +of programming knowledge. It is suitable for a large range of tasks from \
> +simply poking around to writing web and GUI applications. \
> +\
> +WBEM, or Web Based Enterprise Management is a manageability protocol, like \
> +SNMP, standardised by the Distributed Management Task Force (DMTF) available \
> +at http://www.dmtf.org/standards/wbem. \
> +\
> +It also provides a Python provider interface, and is the fastest and easiest \
> +way to write providers on the planet."
> +HOMEPAGE = "http://pywbem.github.io"
> +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
> +
> +inherit pypi setuptools3 update-alternatives
> +
> +SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
> +PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
> +
> +S = "${WORKDIR}/git"
> +
> +DEPENDS += " \
> +    ${PYTHON_PN}-ply-native \
> +    ${PYTHON_PN}-pyyaml-native \
> +    ${PYTHON_PN}-six-native \
> +"
> +
> +do_install_append() {
> +    mv ${D}${bindir}/wbemcli.py ${D}${bindir}/pywbemcli
> +
> +    rm -f ${D}${bindir}/*.bat
> +}
> +
> +RDEPENDS_${PN}_class-target += "\
> +    ${PYTHON_PN}-datetime \
> +    ${PYTHON_PN}-io \
> +    ${PYTHON_PN}-netclient \
> +    ${PYTHON_PN}-ply \
> +    ${PYTHON_PN}-pyyaml \
> +    ${PYTHON_PN}-six \
> +    ${PYTHON_PN}-stringold \
> +    ${PYTHON_PN}-threading \
> +    ${PYTHON_PN}-unixadmin \
> +    ${PYTHON_PN}-xml \
> +"
>   
>   ALTERNATIVE_${PN} = "mof_compiler pywbemcli wbemcli"
>   ALTERNATIVE_TARGET[mof_compiler] = "${bindir}/mof_compiler"
> @@ -7,3 +54,5 @@ ALTERNATIVE_TARGET[pywbemcli] = "${bindir}/pywbemcli"
>   ALTERNATIVE_TARGET[wbemcli] = "${bindir}/wbemcli"
>   
>   ALTERNATIVE_PRIORITY = "60"
> +
> +BBCLASSEXTEND = "native"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2
  2020-06-29 12:12 ` [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2 Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 0.17.2:
>
> - Test: Fixed virtualenv related failures during install test.
> - Dev: Increased the versions of the base packages ‘pip’,
>    ‘setuptools’ and ‘wheel’ to the content of Ubuntu 18.04 as
>    a minimum, and to the lowest versions that support a particular
>    Python versions beyond that. This only affects development of
>    pywbem.
> - Setup: Added the scripts for installing OS-level dependencies
>    (pywbem_os_setup.sh/.bat) to the source distribution archive.
>    Note that starting with the upcoming pywbem 1.0.0, these scripts
>    are no longer needed, so this change will not be rolled forward
>    into 1.0.0.
> - Increased the version of ‘PyYAML’ from 5.1 to 5.3 on Python 2.7,
>    to pick up a fix for dealing with Unicode characters above U+FFFF
>    in narrow Python builds. This could not be fixed for Python 2.6
>    since PyYAML 3.12 dropped support for Python 2.6
> - Fixed raise error for invalid reference_direction in
>    WBEMServer.get_central_instances().
> - Fixed raise error for missing ports in WBEMListener.__init__().
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-pywbem_0.15.0.bb => python3-pywbem_0.17.2.bb} | 8 +++-----
>   1 file changed, 3 insertions(+), 5 deletions(-)
>   rename meta-python/recipes-extended/pywbem/{python3-pywbem_0.15.0.bb => python3-pywbem_0.17.2.bb} (91%)
>
> diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb b/meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
> similarity index 91%
> rename from meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
> rename to meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
> index cbb55b8f7..ce63822b4 100644
> --- a/meta-python/recipes-extended/pywbem/python3-pywbem_0.15.0.bb
> +++ b/meta-python/recipes-extended/pywbem/python3-pywbem_0.17.2.bb
> @@ -16,12 +16,10 @@ HOMEPAGE = "http://pywbem.github.io"
>   LICENSE = "LGPLv2.1"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
>   
> -inherit pypi setuptools3 update-alternatives
> -
> -SRCREV = "b3386b3bee8876d15f0745147c0b08937d8ab18e"
> -PYPI_SRC_URI = "git://github.com/pywbem/pywbem;protocol=https;branch=stable_0.15"
> +SRC_URI[md5sum] = "6100157c720ba272895b3f79a05c8dc3"
> +SRC_URI[sha256sum] = "84dac33f77d5ff2c3d8eb42fc7de2ffb6d33f5e4954ef89db0dbf3fe646a2809"
>   
> -S = "${WORKDIR}/git"
> +inherit pypi setuptools3 update-alternatives
>   
>   DEPENDS += " \
>       ${PYTHON_PN}-ply-native \
>
> 

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

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

* Re: [oe] [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3
  2020-06-29 12:12 ` [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3 Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 4.1.3:
>
> - In the case of a method returning a non-serializable value,
>    return a JSON-RPC error response. It was previously erroring
>    server-side without responding to the client.
> - Fix for Python 3.8 - ensures the same exceptions will be raised
>    in 3.8 and pre-3.8.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-jsonrpcserver_4.1.2.bb => python3-jsonrpcserver_4.1.3.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-jsonrpcserver_4.1.2.bb => python3-jsonrpcserver_4.1.3.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb
> rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> index e23720c3e..98db23039 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/bcb/jsonrpcserver"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c89120516900f96f4c60d35fdc4c3f15"
>   
> -SRC_URI[md5sum] = "fd4091bc19eb18579c15b97af70714eb"
> -SRC_URI[sha256sum] = "73db55d1cf245ebdfb96ca05c4cce01c51b61be845a2a981f539ea1e6a4e0c4a"
> +SRC_URI[md5sum] = "e73b0bd90e99115d3f9e0ac42882c5b7"
> +SRC_URI[sha256sum] = "649680c293facb6ae7c3f5c8028e4623c55195db5216847e9f25f85cba2d443a"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1
  2020-06-29 12:12 ` [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1 Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 2.4.1:
>
> - Explicit error if _DEFAULT_LOCALE_PATH is None
> - Fix incorrect Portuguese spelling
> - Fix fractional(0.333) output in README
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-humanize_2.4.0.bb => python3-humanize_2.4.1.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-humanize_2.4.0.bb => python3-humanize_2.4.1.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb b/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb
> rename to meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
> index 6bb6946ff..3a06a48b1 100644
> --- a/meta-python/recipes-devtools/python/python3-humanize_2.4.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-humanize_2.4.1.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://github.com/jmoiron/humanize"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
>   
> -SRC_URI[md5sum] = "010e86a4196ed6030112e7bc681e7353"
> -SRC_URI[sha256sum] = "42ae7d54b398c01bd100847f6cb0fc9e381c21be8ad3f8e2929135e48dbff026"
> +SRC_URI[md5sum] = "3d4d25cf84181c55bf7d219dd175dbff"
> +SRC_URI[sha256sum] = "4b4ce2fc1c9d79c63f68009ddf5a12ad238aa78e2fceb256b5aa921763551422"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2
  2020-06-29 12:12 ` [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2 Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 20.6.2:
>
> - fix: xbr fixes
> - fix: use cpy 3.8 for running flake in CI
> - new: Ticket1392 internal attrs
> - new: internal-only router attributes and hook for router to add
>    custom information
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-autobahn_20.4.3.bb => python3-autobahn_20.6.2.bb} | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-autobahn_20.4.3.bb => python3-autobahn_20.6.2.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb b/meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb
> rename to meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
> index 60ef57d04..171a6dce4 100644
> --- a/meta-python/recipes-devtools/python/python3-autobahn_20.4.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-autobahn_20.6.2.bb
> @@ -3,7 +3,8 @@ DESCRIPTION = "WebSocket client & server library, WAMP real-time framework"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
>   
> -SRC_URI[sha256sum] = "c6fe745d52ba9f9eecf791cd31f558df42aebfc4f9ee558a8f1d18c707e1ae1f"
> +SRC_URI[md5sum] = "bcafb42ea58232308777a265d41c1c98"
> +SRC_URI[sha256sum] = "6ac6b6653b8d20d632b034adccf6a566154d4efbeaa23abf7c3995fd601e9a01"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5
  2020-06-29 12:12 ` [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5 Leon Anavi
@ 2020-06-30 13:24   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Fix HOMEPAGE. Use file LICENSE for LIC_FILES_CHKSUM. Upgrade
> to release 1.2.5:
>
> - Fix tag/ctx_id filtering on get_func_stats
> - Add filter_callback to get_func_stats() for filtering
>    function/module descriptors
> - FIX: issues related to invalid conversion from long->ptr in
>    Win32
> - Optimize tstate->dict retrieval
> - Various other fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-yappi_1.0.bb => python3-yappi_1.2.5.bb}   | 10 +++++-----
>   1 file changed, 5 insertions(+), 5 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-yappi_1.0.bb => python3-yappi_1.2.5.bb} (60%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.0.bb b/meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
> similarity index 60%
> rename from meta-python/recipes-devtools/python/python3-yappi_1.0.bb
> rename to meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
> index 75de4dfbe..366dec3dc 100644
> --- a/meta-python/recipes-devtools/python/python3-yappi_1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-yappi_1.2.5.bb
> @@ -1,11 +1,11 @@
>   SUMMARY  = "Yet Another Python Profiler"
> -HOMEPAGE = "http://yappi.googlecode.com/"
> +HOMEPAGE = "https://github.com/sumerc/yappi"
>   
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=9a193c13f346884e597acdcac7fe9ac8"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee"
>   
> -SRC_URI[md5sum] = "a545101aa8a435b0780f06f4723f58c8"
> -SRC_URI[sha256sum] = "7f814131515d51db62b1a3468bcb84de30499124752806a5a6e11caf0b4344bf"
> +SRC_URI[md5sum] = "83237494e7d22df2a31935a1e6650fa6"
> +SRC_URI[sha256sum] = "ad5fa4caf2859e480ffc4ec3e85615a6f7dea852c8f035f2db723f824ed4ba11"
>   
>   SRC_URI += " \
>       file://run-ptest \
> @@ -28,5 +28,5 @@ RDEPENDS_${PN}-ptest += " \
>   do_install_ptest() {
>       install -d ${D}${PTEST_PATH}/tests
>       cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
> -    cp -f ${S}/yappi.py ${D}/${PTEST_PATH}/
> +    cp -f ${S}/yappi/yappi.py ${D}/${PTEST_PATH}/
>   }
>
> 

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

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

* Re: [oe] [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6
  2020-06-29 12:12 ` [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6 Leon Anavi
@ 2020-06-30 13:25   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:25 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 1.6 with changes in core, combinatorics,
> calculus, assumptions, functions, geometry, holonomic, integrals,
> logic, matrices, ntheory, parsing, etc. For more details:
> https://github.com/sympy/sympy/wiki/release-notes-for-1.6
>
> The year in file LICENSE was updated and the checksum changed.
> The license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-sympy_1.5.1.bb => python3-sympy_1.6.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sympy_1.5.1.bb => python3-sympy_1.6.bb} (62%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb b/meta-python/recipes-devtools/python/python3-sympy_1.6.bb
> similarity index 62%
> rename from meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb
> rename to meta-python/recipes-devtools/python/python3-sympy_1.6.bb
> index c0c382a51..feb9e10e5 100644
> --- a/meta-python/recipes-devtools/python/python3-sympy_1.5.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-sympy_1.6.bb
> @@ -4,10 +4,10 @@
>   SUMMARY = "Computer algebra system (CAS) in Python"
>   HOMEPAGE = "https://pypi.org/project/sympy/"
>   LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=611b41534dbf5aa01d7c827bf667ef66"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4"
>   
> -SRC_URI[md5sum] = "b11b310c3e1642bf66e51038cb3c0021"
> -SRC_URI[sha256sum] = "d77901d748287d15281f5ffe5b0fef62dd38f357c2b827c44ff07f35695f4e7e"
> +SRC_URI[md5sum] = "dbb7b21d2972c41f37d48f744b6189a3"
> +SRC_URI[sha256sum] = "9769e3d2952e211b1245f1d0dfdbfbdde1f7779a3953832b7dd2b88a21ca6cc6"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3
  2020-06-29 12:12 ` [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3 Leon Anavi
@ 2020-06-30 13:25   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-06-30 13:25 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/29/20 8:12 AM, Leon Anavi wrote:
> Upgrade to release 0.10.3:
>
> - Ensure ObservedWatch.path is a string
> - [inotify] Allow to monitor single file
> - [inotify] Prevent raising an exception when a file in a
>    monitored folder has no permissions
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-watchdog_0.10.2.bb => python3-watchdog_0.10.3.bb} | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-watchdog_0.10.2.bb => python3-watchdog_0.10.3.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb b/meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb
> rename to meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
> index 93a1c192f..2108cbb93 100644
> --- a/meta-python/recipes-devtools/python/python3-watchdog_0.10.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-watchdog_0.10.3.bb
> @@ -4,7 +4,8 @@ DEPENDS = "${PYTHON_PN}-argh"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
>   
> -SRC_URI[sha256sum] = "c560efb643faed5ef28784b2245cf8874f939569717a4a12826a173ac644456b"
> +SRC_URI[md5sum] = "9a5c9134e943b534b9f8b51d78338cf8"
> +SRC_URI[sha256sum] = "4214e1379d128b0588021880ccaf40317ee156d4603ac388b9adcf29165e0c04"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

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

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-29 12:12 [meta-python][PATCH 01/10] python3-pyparted: Consolidate in a single file Leon Anavi
2020-06-29 12:12 ` [meta-python][PATCH 02/10] python3-pyparted: Upgrade 3.11.3 -> 3.11.6 Leon Anavi
2020-06-30 13:23   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 03/10] python3-pywbem: Consolidate in a single file Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 04/10] python3-pywbem: Upgrade 0.15.0 -> 0.17.2 Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 05/10] python3-jsonrpcserver: Upgrade 4.1.2 -> 4.1.3 Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 06/10] python3-humanize: Upgrade 2.4.0 -> 2.4.1 Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 07/10] python3-autobahn: Upgrade 20.4.3 -> 20.6.2 Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 08/10] python3-yappi: Upgrade 1.0 -> 1.2.5 Leon Anavi
2020-06-30 13:24   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 09/10] python3-sympy: Upgrade 1.5.1 -> 1.6 Leon Anavi
2020-06-30 13:25   ` [oe] " Trevor Gamblin
2020-06-29 12:12 ` [meta-python][PATCH 10/10] python3-watchdog: Upgrade 0.10.2 -> 0.10.3 Leon Anavi
2020-06-30 13:25   ` [oe] " Trevor Gamblin
2020-06-30 13:23 ` [oe] [meta-python][PATCH 01/10] python3-pyparted: 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.