From 3c7c324e4e6f1659971169717bda7b91c66ec1c7 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Thu, 18 Jun 2020 12:03:58 +0300 Subject: [PATCH] python3-periphery: Upgrade 2.0.1 -> 2.1.0 Upgrade to release 2.1.0. Use LICENSE instead of PKG-INFO in LIC_FILES_CHKSUM. The new release brings the following changes: GPIO: - Add poll_multiple() static method. - Add line consumer label property. - Add line bias, line drive, and inverted properties. - Add additional properties as keyword arguments to constructor for character device GPIOs. - Only unexport GPIO in close() if exported in open for sysfs GPIOs. - Improve wording and fix typos in docstrings. Serial: - Fix performance of blocking read in read(). - Raise exception on unexpected empty read in read(), which may be caused by a serial port disconnect. - Add vmin and vtime properties for the corresponding termios settings. - Add support for termios timeout with read(). - Improve wording in docstrings. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- ...ython3-periphery_2.0.1.bb => python3-periphery_2.1.0.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta-python/recipes-devtools/python/{python3-periphery_2.0.1.bb => python3-periphery_2.1.0.bb} (57%) diff --git a/meta-python/recipes-devtools/python/python3-periphery_2.0.1.bb b/meta-python/recipes-devtools/python/python3-periphery_2.1.0.bb similarity index 57% rename from meta-python/recipes-devtools/python/python3-periphery_2.0.1.bb rename to meta-python/recipes-devtools/python/python3-periphery_2.1.0.bb index 1aa48625ff..3cd9004dff 100644 --- a/meta-python/recipes-devtools/python/python3-periphery_2.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-periphery_2.1.0.bb @@ -2,10 +2,10 @@ DESCRIPTION = "A pure Python 2/3 library for peripheral I/O (GPIO, LED, PWM, SPI HOMEPAGE = "http://pythonhosted.org/python-periphery/" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=1ecf5c2354c22fb5bfd53eefb8f9e65b" +LIC_FILES_CHKSUM = "file://LICENSE;md5=fea92e2e010ccb151792c29fadc2db7b" -SRC_URI[md5sum] = "1d958f02575d4a19734ee2dd92336157" -SRC_URI[sha256sum] = "5da4d5f40ff8974cf6c724587baa674d7e0593f07b6f6ee896104f11c1be18ec" +SRC_URI[md5sum] = "27cdd7e026438067a238fb04ed5766a3" +SRC_URI[sha256sum] = "57baa82e6bc59b67747317d16ad0cf9626826e8d43233af13bce924660500bd6" inherit pypi setuptools3