diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-12-11 02:22:39 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-12-11 02:22:39 -0500 |
| commit | 8d106c85a99ef8450e098e627428e37386ac6b10 (patch) | |
| tree | c7db8e0c4a4236d0edcaf763e80ea69daed5e8aa /meta-openstack/recipes-devtools/python | |
| parent | a0c214734ab594d018354c5262b653aeb428a20b (diff) | |
| download | meta-cloud-services-8d106c85a99ef8450e098e627428e37386ac6b10.tar.gz | |
python-flake8: introduce python-flake8 and dependencies
For full tempest test results, we require flake8 and dependencies.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
4 files changed, 87 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-flake8_2.1.0.bb b/meta-openstack/recipes-devtools/python/python-flake8_2.1.0.bb new file mode 100644 index 0000000..568d5bd --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-flake8_2.1.0.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | DESCRIPTION = "The modular source code checker: pep8, pyflakes and co" | ||
| 2 | HOMEPAGE = "https://github.com/dreamhost/cliff" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7a76e57e683629e1ac2a49406169c2a3" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | SRCNAME = "flake8" | ||
| 9 | |||
| 10 | SRC_URI = "https://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "cf326cfb88a1db6c5b29a3a6d9efb257" | ||
| 13 | SRC_URI[sha256sum] = "098ab7991067c08cfaa4716de20066d90f66dbc71502114ea8cad9a9fd5c9512" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | RDEPENDS_${PN} += "python-prettytable \ | ||
| 20 | python-cmd2 \ | ||
| 21 | python-pyparsing \ | ||
| 22 | python-mccabe \ | ||
| 23 | python-pep8 \ | ||
| 24 | python-pyflakes" | ||
diff --git a/meta-openstack/recipes-devtools/python/python-mccabe_0.2.1.bb b/meta-openstack/recipes-devtools/python/python-mccabe_0.2.1.bb new file mode 100644 index 0000000..30c47e8 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-mccabe_0.2.1.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | DESCRIPTION = "McCabe checker, plugin for flake8" | ||
| 2 | HOMEPAGE = "https://github.com/dreamhost/cliff" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://README.rst;md5=aa0383f6aee4f5c20084a97cd13164c4" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | SRCNAME = "mccabe" | ||
| 9 | |||
| 10 | SRC_URI = "https://pypi.python.org/packages/source/m/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "5a3f3fa6a4bad126c88aaaa7dab682f5" | ||
| 13 | SRC_URI[sha256sum] = "5a2a170e47de5593a6abfae1e9542bd2c3924ac62bbe4e6ed96c953c0352243a" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | RDEPENDS_${PN} += "python-prettytable \ | ||
| 20 | python-cmd2 \ | ||
| 21 | python-pyparsing" \ No newline at end of file | ||
diff --git a/meta-openstack/recipes-devtools/python/python-pep8_1.4.6.bb b/meta-openstack/recipes-devtools/python/python-pep8_1.4.6.bb new file mode 100644 index 0000000..723bec3 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pep8_1.4.6.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | DESCRIPTION = "Python style guide checker" | ||
| 2 | HOMEPAGE = "https://github.com/dreamhost/cliff" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://README.rst;md5=b0d37793ab91ca25ad5c200e9ea22331" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | SRCNAME = "pep8" | ||
| 9 | |||
| 10 | SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "a03bb494859e87b42601b61b1b043a0c" | ||
| 13 | SRC_URI[sha256sum] = "603a46e5c358ce20ac4807a0eeafac7505d1125a4c1bd8378757ada06f61bed8" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | RDEPENDS_${PN} += "python-prettytable \ | ||
| 20 | python-cmd2 \ | ||
| 21 | python-pyparsing" \ No newline at end of file | ||
diff --git a/meta-openstack/recipes-devtools/python/python-pyflakes_0.7.3.bb b/meta-openstack/recipes-devtools/python/python-pyflakes_0.7.3.bb new file mode 100644 index 0000000..af7a7f3 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pyflakes_0.7.3.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | DESCRIPTION = "passive checker of Python programs" | ||
| 2 | HOMEPAGE = "https://github.com/dreamhost/cliff" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://README.rst;md5=1815018ebbbfc8659a9df33681a0936e" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | SRCNAME = "pyflakes" | ||
| 9 | |||
| 10 | SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "ec94ac11cb110e6e72cca23c104b66b1" | ||
| 13 | SRC_URI[sha256sum] = "dbd2c940a1030a4f811afc1a04017a44011c0cb54f8f384b66aa624097d9b5e3" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | RDEPENDS_${PN} += "python-prettytable \ | ||
| 20 | python-cmd2 \ | ||
| 21 | python-pyparsing" \ No newline at end of file | ||
