blob: 60bc46f821ce7737ba0aa836907a01ab71fdd2e0 [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001SUMMARY = "A simple wrapper around optparse for powerful command line utilities."
2DESCRIPTION = "\
3Click is a Python package for creating beautiful command line interfaces \
4in a composable way with as little code as necessary. It's the "Command \
5Line Interface Creation Kit". It's highly configurable but comes with \
6sensible defaults out of the box."
7HOMEPAGE = "http://click.pocoo.org/"
8LICENSE = "BSD"
Brad Bishop19323692019-04-05 15:28:33 -04009LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c13ed890b210a882c1778216694c98c7"
Patrick Williamsddad1a12017-02-23 20:36:32 -060010
Brad Bishop19323692019-04-05 15:28:33 -040011SRC_URI[md5sum] = "7f53d50f7b7373ebc7963f9ff697450a"
12SRC_URI[sha256sum] = "5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080014UPSTREAM_CHECK_REGEX = "click/(?P<pver>\d+(\.\d+)+)/"
15
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016CLEANBROKEN = "1"
Patrick Williamsddad1a12017-02-23 20:36:32 -060017
18RDEPENDS_${PN} += "\
19 ${PYTHON_PN}-io \
20 ${PYTHON_PN}-threading \
21 "
22
23BBCLASSEXTEND = "native nativesdk"
Brad Bishop19323692019-04-05 15:28:33 -040024
25PYPI_PACKAGE = "Click"