From 278e1c83a3b26fa79a7dd04f8f9cf53b6e9fd36f Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 8 Jan 2021 12:28:11 +0200 Subject: python3-coloredlogs: Upgrade 14.0 -> 15.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 15.0: - Don’t enable system logging on MacOS and Windows anymore. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../python/python3-coloredlogs_14.0.bb | 24 ---------------------- .../python/python3-coloredlogs_15.0.bb | 23 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 24 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb deleted file mode 100644 index 64f3008ee0..0000000000 --- a/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION = "Colored terminal output for Python's logging module" -HOMEPAGE = "https://coloredlogs.readthedocs.io" -SECTION = "devel/python" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b" - -SRC_URI[md5sum] = "34cd8ef3f758b10c6f1482b2614a81f2" -SRC_URI[sha256sum] = "a1fab193d2053aa6c0a97608c4342d031f1f93a3d1218432c59322441d31a505" - -inherit pypi setuptools3 - -do_compile_prepend() { - sed -ie "s/find_pth_directory(),/'',/g" ${S}/setup.py -} - -do_install_append() { - rm -rf ${D}${datadir} -} - -RDEPENDS_${PN} += "\ - ${PYTHON_PN}-humanfriendly \ -" - -BBCLASSEXTEND = "native" diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb new file mode 100644 index 0000000000..daeda6b2ee --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Colored terminal output for Python's logging module" +HOMEPAGE = "https://coloredlogs.readthedocs.io" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b" + +SRC_URI[sha256sum] = "5e78691e2673a8e294499e1832bb13efcfb44a86b92e18109fa18951093218ab" + +inherit pypi setuptools3 + +do_compile_prepend() { + sed -ie "s/find_pth_directory(),/'',/g" ${S}/setup.py +} + +do_install_append() { + rm -rf ${D}${datadir} +} + +RDEPENDS_${PN} += "\ + ${PYTHON_PN}-humanfriendly \ +" + +BBCLASSEXTEND = "native" -- cgit 1.2.3-korg