summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-08-29 09:47:01 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-08-29 09:47:01 -0400
commit6fbb59a85e7e495eaee7fd580dcdac2ecedcf790 (patch)
tree0fbb2a1b950751a42d8af7d641b5604049048d1d
parentc80f2247f8227f180a11fb560a825a55991fc7de (diff)
downloadmeta-cloud-services-6fbb59a85e7e495eaee7fd580dcdac2ecedcf790.tar.gz
support packages: uprev to juno 2014.2-b2 versions
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/conf/layer.conf1
-rw-r--r--meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb26
-rw-r--r--meta-openstack/recipes-devtools/python/python-rfc3986_0.2.0.bb27
-rw-r--r--meta-openstack/recipes-devtools/python/python-six_1.7.3.bb (renamed from meta-openstack/recipes-devtools/python/python-six_1.6.1.bb)4
-rw-r--r--meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.1.bb (renamed from meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.8.2.bb)4
-rw-r--r--meta-openstack/recipes-devtools/python/python-sqlalchemy_0.9.7.bb16
6 files changed, 74 insertions, 4 deletions
diff --git a/meta-openstack/conf/layer.conf b/meta-openstack/conf/layer.conf
index 7ac26f5..dec1d20 100644
--- a/meta-openstack/conf/layer.conf
+++ b/meta-openstack/conf/layer.conf
@@ -12,3 +12,4 @@ BB_DANGLINGAPPENDS_WARNONLY ?= "true"
12 12
13# pre 0.4.0 greenlet versions segfault python 13# pre 0.4.0 greenlet versions segfault python
14PREFERRED_VERSION_python-greenlet = "0.4.1" 14PREFERRED_VERSION_python-greenlet = "0.4.1"
15PREFERRED_VERSION_python-sqlalchemy = "0.9.7"
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb
new file mode 100644
index 0000000..557c107
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb
@@ -0,0 +1,26 @@
1DESCRIPTION = "Oslo utils"
2HOMEPAGE = "https://launchpad.net/oslo"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
6
7PR = "r0"
8
9SRCNAME = "oslo.utils"
10SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
11
12PV = "0.2.0"
13SRCREV = "118f7ea84a476604f2498fc4d28c9c2b266c717a"
14S = "${WORKDIR}/git"
15
16inherit setuptools
17
18# DEPENDS_default: python-pip
19
20DEPENDS += " \
21 python-pip \
22 "
23
24# RDEPENDS_default:
25RDEPENDS_${PN} += " \
26 "
diff --git a/meta-openstack/recipes-devtools/python/python-rfc3986_0.2.0.bb b/meta-openstack/recipes-devtools/python/python-rfc3986_0.2.0.bb
new file mode 100644
index 0000000..88f6c01
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-rfc3986_0.2.0.bb
@@ -0,0 +1,27 @@
1DESCRIPTION = "Validating URI References per RFC 3986"
2HOMEPAGE = "https://rfc3986.rtfd.org"
3SECTION = "devel/python"
4LICENSE = "Apache-2"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=03731a0e7dbcb30cecdcec77cc93ec29"
6
7PR = "r0"
8
9SRCNAME = "rfc3986"
10SRC_URI = "http://pypi.python.org/packages/source/r/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
11
12SRC_URI[md5sum] = "a80b964a92c3a40e57ec95f7c0d68fa9"
13SRC_URI[sha256sum] = "8a7b3f6cfdfb969c2e876513e87c30ebe1e4bdc9fae4a63c701eee88bbec9b22"
14
15S = "${WORKDIR}/${SRCNAME}-${PV}"
16
17inherit setuptools
18
19# DEPENDS_default: python-pip
20
21DEPENDS += " \
22 python-pip \
23 "
24
25# RDEPENDS_default:
26RDEPENDS_${PN} += " \
27 "
diff --git a/meta-openstack/recipes-devtools/python/python-six_1.6.1.bb b/meta-openstack/recipes-devtools/python/python-six_1.7.3.bb
index 8bd39cc..07dcafd 100644
--- a/meta-openstack/recipes-devtools/python/python-six_1.6.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-six_1.7.3.bb
@@ -10,8 +10,8 @@ SRCNAME = "six"
10SRC_URI = "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ 10SRC_URI = "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
11" 11"
12 12
13SRC_URI[md5sum] = "07d606ac08595d795bf926cc9985674f" 13SRC_URI[md5sum] = "784c6e5541c3c4952de9c0a966a0a80b"
14SRC_URI[sha256sum] = "d4392a7c8d91b005c002568a85faf617c67241c8cd8399cc395e8f1005aff80d" 14SRC_URI[sha256sum] = "7a842c9f882c0b2ab1064d567bb9fff6a21c9efbc3d9992083ad6193787ed393"
15 15
16S = "${WORKDIR}/${SRCNAME}-${PV}" 16S = "${WORKDIR}/${SRCNAME}-${PV}"
17 17
diff --git a/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.8.2.bb b/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.1.bb
index 7af55a7..8590de4 100644
--- a/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.8.2.bb
+++ b/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.1.bb
@@ -9,8 +9,8 @@ SRCNAME = "sqlalchemy-migrate"
9 9
10SRC_URI = "https://pypi.python.org/packages/source/s/sqlalchemy-migrate/${SRCNAME}-${PV}.tar.gz" 10SRC_URI = "https://pypi.python.org/packages/source/s/sqlalchemy-migrate/${SRCNAME}-${PV}.tar.gz"
11 11
12SRC_URI[md5sum] = "04b360fa0f887e47470dcdfb0d7f4e1c" 12SRC_URI[md5sum] = "5f0237ed55041b9a831d4d18d0a46f53"
13SRC_URI[sha256sum] = "27a3ffce6a753e1e787f4f576e54ee240fa95abd02428638fa285eaaa3cbd22c" 13SRC_URI[sha256sum] = "16e327c9642ca4c99a70dcac3b39aeb821edaf5214834b47fb0a89bac44af23b"
14 14
15S = "${WORKDIR}/${SRCNAME}-${PV}" 15S = "${WORKDIR}/${SRCNAME}-${PV}"
16 16
diff --git a/meta-openstack/recipes-devtools/python/python-sqlalchemy_0.9.7.bb b/meta-openstack/recipes-devtools/python/python-sqlalchemy_0.9.7.bb
new file mode 100644
index 0000000..6207233
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-sqlalchemy_0.9.7.bb
@@ -0,0 +1,16 @@
1DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
2application developers the full power and flexibility of SQL"
3HOMEPAGE = "http://www.sqlalchemy.org/"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=6c90a3830628085e8ba945f94d622cb2"
6RDEPENDS_${PN} += "python-numbers"
7
8SRCNAME = "SQLAlchemy"
9SRC_URI = "https://pypi.python.org/packages/source/S/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
10
11SRC_URI[md5sum] = "e3c8f836ea9b48886718f59b9d8646ff"
12SRC_URI[sha256sum] = "5fff261d0cff21c39913f9d30682659a52bfa2875699b2b7d908d0225df42a15"
13
14S = "${WORKDIR}/${SRCNAME}-${PV}"
15
16inherit setuptools