summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2015-04-14 23:39:55 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-04-14 23:39:55 -0400
commit540d9b3c52bc266b8d9c6b3fd0c6215a3b563c44 (patch)
tree2266fe9f9525afc77e130f0b6132a302055e9d02 /meta-openstack/recipes-devtools/python
parent74f2c911a92bc88036c8ba7fbf080a5796f4e6eb (diff)
parent7eeab1b65c3413645d4259643c13bc791b5a7f98 (diff)
downloadmeta-cloud-services-540d9b3c52bc266b8d9c6b3fd0c6215a3b563c44.tar.gz
Merge branch 'master' into kilo
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-fixtures_1.0.0.bb2
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone_git.bb2
-rw-r--r--meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb7
-rw-r--r--meta-openstack/recipes-devtools/python/python-pyudev_0.16.1.bb2
-rw-r--r--meta-openstack/recipes-devtools/python/python-testtools_0.9.33.bb2
5 files changed, 11 insertions, 4 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-fixtures_1.0.0.bb b/meta-openstack/recipes-devtools/python/python-fixtures_1.0.0.bb
index a3d6a34..fe1c8d1 100644
--- a/meta-openstack/recipes-devtools/python/python-fixtures_1.0.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-fixtures_1.0.0.bb
@@ -20,3 +20,5 @@ DISTUTILS_INSTALL_ARGS = "--root=${D} \
20 --prefix=${prefix} \ 20 --prefix=${prefix} \
21 --install-lib=${PYTHON_SITEPACKAGES_DIR} \ 21 --install-lib=${PYTHON_SITEPACKAGES_DIR} \
22 --install-data=${datadir}" 22 --install-data=${datadir}"
23
24RDEPENDS_${PN} += "python-testtools"
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index e5896df..1f012cc 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -284,6 +284,8 @@ RDEPENDS_${PN} += " \
284 python-pysaml2 \ 284 python-pysaml2 \
285 python-oslo.utils \ 285 python-oslo.utils \
286 python-oauthlib \ 286 python-oauthlib \
287 python-fixtures \
288 python-oslotest \
287 " 289 "
288 290
289RDEPENDS_${SRCNAME}-tests += " bash" 291RDEPENDS_${SRCNAME}-tests += " bash"
diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb
index edb37d8..b3819e4 100644
--- a/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb
@@ -9,11 +9,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
9PR = "r0" 9PR = "r0"
10SRCNAME = "oslotest" 10SRCNAME = "oslotest"
11 11
12SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-1.0.0.tar.gz \ 12SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
13" 13"
14 14
15SRC_URI[md5sum] = "1f7710e4d38b615990737f813704fd58" 15SRC_URI[md5sum] = "a573e1943869f0841f487cf94a121321"
16SRC_URI[sha256sum] = "cf05f4ff0cbf84ad0b5d1bef7c46d719eaf4408107e65a32a4500cf707d1a1e7" 16SRC_URI[sha256sum] = "4226c044198792da7e14ca76895656e8d6e4b256eab184a6c81477b373e059a6"
17 17
18S = "${WORKDIR}/${SRCNAME}-${PV}" 18S = "${WORKDIR}/${SRCNAME}-${PV}"
19 19
@@ -26,4 +26,5 @@ RDEPENDS_${PN} = "python-fixtures \
26 python-testtools \ 26 python-testtools \
27 python-mock \ 27 python-mock \
28 python-mox \ 28 python-mox \
29 bash \
29" 30"
diff --git a/meta-openstack/recipes-devtools/python/python-pyudev_0.16.1.bb b/meta-openstack/recipes-devtools/python/python-pyudev_0.16.1.bb
index dd83d87..384b1d8 100644
--- a/meta-openstack/recipes-devtools/python/python-pyudev_0.16.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-pyudev_0.16.1.bb
@@ -1,7 +1,7 @@
1DESCRIPTION = "A libudev binding" 1DESCRIPTION = "A libudev binding"
2HOMEPAGE = "http://pyudev.readthedocs.org/" 2HOMEPAGE = "http://pyudev.readthedocs.org/"
3SECTION = "devel/python" 3SECTION = "devel/python"
4LICENSE = "LGPL 2.1" 4LICENSE = "LGPL-2.1"
5LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" 5LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
6 6
7PR = "r0" 7PR = "r0"
diff --git a/meta-openstack/recipes-devtools/python/python-testtools_0.9.33.bb b/meta-openstack/recipes-devtools/python/python-testtools_0.9.33.bb
index 7e359b4..48663e9 100644
--- a/meta-openstack/recipes-devtools/python/python-testtools_0.9.33.bb
+++ b/meta-openstack/recipes-devtools/python/python-testtools_0.9.33.bb
@@ -16,3 +16,5 @@ SRC_URI[sha256sum] = "5b62231fea71ccb2361d48286481b198ccb8768bf81f8aaec1c8d5fb98
16S = "${WORKDIR}/${SRCNAME}-${PV}" 16S = "${WORKDIR}/${SRCNAME}-${PV}"
17 17
18inherit setuptools 18inherit setuptools
19
20RDEPENDS_${PN} += "python-extras"