blob: 7e2bf6f25db6f5cd525e6ac6dcc150d8a9025e22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
DESCRIPTION = "A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner."
HOMEPAGE = "http://docs.openstack.org/developer/debtcollector/"
SECTION = "devel/python"
LICENSE = "Apache-2"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRCNAME = "debtcollector"
SRC_URI = "https://pypi.io/packages/source/d/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
SRC_URI[md5sum] = "3e860661f74672ed7bc7633e6fe71e1b"
SRC_URI[sha256sum] = "66cd8a08a585f6836896fc980389f1e57bbe36eb140494e546a439b29234d83a"
S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit setuptools
DEPENDS += " \
python-pip \
python-pbr \
"
# RDEPENDS_default:
RDEPENDS_${PN} += " \
python-funcsigs \
python-pbr \
python-six \
python-wrapt \
"
|