hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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] = "7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0"
 
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"