From 8b27915e26980588baca95d8048b9ba8beaad182 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 22 Jul 2020 13:48:59 +0300 Subject: python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Upgrade to release 0.10.0: - MariaDB ed25519 auth is supported. - Python 3.4 support is dropped. - Context manager interface is removed from Connection. It will be added with different meaning. - MySQL warnings are not shown by default because many user report issue to PyMySQL issue tracker when they see warning. You need to call "SHOW WARNINGS" explicitly when you want to see warnings. - Formatting of float object is changed from "3.14" to "3.14e0". - Use cp1252 codec for latin1 charset. - Fix decimal literal. - TRUNCATED_WRONG_VALUE_FOR_FIELD, and ILLEGAL_VALUE_FOR_TYPE are now DataError instead of InternalError. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-pymysql_0.10.0.bb | 17 +++++++++++++++++ .../recipes-devtools/python/python3-pymysql_0.9.3.bb | 17 ----------------- 2 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb delete mode 100644 meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb new file mode 100644 index 0000000000..895c47b034 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "A pure-Python MySQL client library" +DESCRIPTION = " \ + This package contains a pure-Python MySQL client library, based on PEP 249 \ + Most public APIs are compatible with mysqlclient and MySQLdb. \ + " +SECTION = "devel/python" +HOMEPAGE = "https://pymysql.readthedocs.io" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=528175c84163bb800d23ad835c7fa0fc" + +SRC_URI[md5sum] = "d08058b1592724d5808c43f56050f245" +SRC_URI[sha256sum] = "e14070bc84e050e0f80bf6063e31d276f03a0bb4d46b9eca2854566c4ae19837" + +PYPI_PACKAGE = "PyMySQL" +inherit pypi setuptools3 + +RDEPENDS_${PN} += "${PYTHON_PN}-cryptography" diff --git a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb b/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb deleted file mode 100644 index 6a64ccb161..0000000000 --- a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb +++ /dev/null @@ -1,17 +0,0 @@ -SUMMARY = "A pure-Python MySQL client library" -DESCRIPTION = " \ - This package contains a pure-Python MySQL client library, based on PEP 249 \ - Most public APIs are compatible with mysqlclient and MySQLdb. \ - " -SECTION = "devel/python" -HOMEPAGE = "https://pymysql.readthedocs.io" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=528175c84163bb800d23ad835c7fa0fc" - -SRC_URI[md5sum] = "e5d9183cc0a775ac29f9e0365cca6556" -SRC_URI[sha256sum] = "d8c059dcd81dedb85a9f034d5e22dcb4442c0b201908bede99e306d65ea7c8e7" - -PYPI_PACKAGE = "PyMySQL" -inherit pypi setuptools3 - -RDEPENDS_${PN} += "${PYTHON_PN}-cryptography" -- cgit v1.2.3-54-g00ecf