diff options
| author | Mark Asselstine <asselsm@gmail.com> | 2016-02-03 20:40:59 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-02-05 14:42:17 -0500 |
| commit | 8da07682c5ebb69ef1f6ff2f36876d6cd722dd68 (patch) | |
| tree | c4efedf8d07a595152d0d4e1e927dcd13b40feee /meta-openstack | |
| parent | 10bf3741339b4c216a21636a06b8e5189ffa6969 (diff) | |
| download | meta-cloud-services-8da07682c5ebb69ef1f6ff2f36876d6cd722dd68.tar.gz | |
python-debtcollector: initial version
This package provides a collection of Python deprecation patterns and
strategies that help you collect your technical debt in a
non-destructive manner.
This recipe is required by several python-oslo packages as well as
neutron and nova.
Signed-off-by: Mark Asselstine <asselsm@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-debtcollector_0.10.0.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-debtcollector_0.10.0.bb b/meta-openstack/recipes-devtools/python/python-debtcollector_0.10.0.bb new file mode 100644 index 0000000..3a54eec --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-debtcollector_0.10.0.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | DESCRIPTION = "A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner." | ||
| 2 | HOMEPAGE = "http://docs.openstack.org/developer/debtcollector/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
| 6 | |||
| 7 | SRCNAME = "debtcollector" | ||
| 8 | |||
| 9 | SRC_URI = "https://pypi.python.org/packages/source/d/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "aaf95f5e44af17be4d6421512d4cf6c3" | ||
| 12 | SRC_URI[sha256sum] = "8cc22cf2223af7789692ef0b1cb5c0c3a00da7d6e34cbfce125a956cb4d2f21e" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 15 | |||
| 16 | inherit setuptools | ||
| 17 | |||
| 18 | DEPENDS += " \ | ||
| 19 | python-pip \ | ||
| 20 | python-pbr \ | ||
| 21 | " | ||
| 22 | |||
| 23 | # RDEPENDS_default: | ||
| 24 | RDEPENDS_${PN} += " \ | ||
| 25 | python-pbr \ | ||
| 26 | " | ||
