summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone_git.bb (renamed from meta-openstack/recipes-devtools/python/python-keystone_2013.1.3.bb)12
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb (renamed from meta-openstack/recipes-devtools/python/python-keystoneclient_0.2.3.bb)7
2 files changed, 11 insertions, 8 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_2013.1.3.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index 387fa68..882848a 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_2013.1.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -7,17 +7,17 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
7PR = "r0" 7PR = "r0"
8SRCNAME = "keystone" 8SRCNAME = "keystone"
9 9
10SRC_URI = "https://launchpad.net/keystone/grizzly/${PV}/+download/${SRCNAME}-${PV}.tar.gz \ 10SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/havana \
11 file://keystone.conf \ 11 file://keystone.conf \
12 file://identity.sh \ 12 file://identity.sh \
13 file://keystone \ 13 file://keystone \
14 file://openrc \ 14 file://openrc \
15 " 15 "
16 16
17SRC_URI[md5sum] = "49bfcd088426960ef787d040ea8426af" 17SRCREV="4221b6020e6b0b42325d8904d7b8a22577a6acc0"
18SRC_URI[sha256sum] = "e097170ebb1cf22de50f2d5ab2216a5116ffe0934720dbad8b02d61c370b8261" 18PV="2013.2+git${SRCPV}"
19 19
20S = "${WORKDIR}/${SRCNAME}-${PV}" 20S = "${WORKDIR}/git"
21 21
22inherit setuptools update-rc.d identity hosts 22inherit setuptools update-rc.d identity hosts
23 23
@@ -65,7 +65,7 @@ pkg_postinst_${SRCNAME} () {
65 65
66 sudo -u postgres createdb keystone 66 sudo -u postgres createdb keystone
67 keystone-manage db_sync 67 keystone-manage db_sync
68 keystone-manage pki_setup 68 keystone-manage pki_setup --keystone-user=root --keystone-group=root
69 69
70 # Create users, services and endpoints 70 # Create users, services and endpoints
71 /etc/init.d/keystone start 71 /etc/init.d/keystone start
@@ -103,6 +103,8 @@ RDEPENDS_${PN} += "python-pam \
103 python-iso8601 \ 103 python-iso8601 \
104 python-keystoneclient \ 104 python-keystoneclient \
105 python-oslo.config \ 105 python-oslo.config \
106 python-dogpile.core \
107 python-dogpile.cache \
106 " 108 "
107 109
108RDEPENDS_${SRCNAME} = "${PN} \ 110RDEPENDS_${SRCNAME} = "${PN} \
diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_0.2.3.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
index 18c0f64..827a551 100644
--- a/meta-openstack/recipes-devtools/python/python-keystoneclient_0.2.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
@@ -6,10 +6,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4a4d0e932ffae1c0131528d30d419c55"
6 6
7PR = "r0" 7PR = "r0"
8 8
9SRC_URI = "http://pypi.python.org/packages/source/p/${PN}/${PN}-${PV}.tar.gz" 9SRC_URI = "git://github.com/openstack/python-keystoneclient.git;branch=master"
10 10
11SRC_URI[md5sum] = "ad6fcbdd0e4cb239d315155bdbe9337c" 11PV="git${SRCPV}"
12SRC_URI[sha256sum] = "10b98946aaa98e97f032ca44848a5d84bc61d6f0b4186c635704087e72c08818" 12SRCREV="0774d5aafade9e5a5de3830de461843c4a7d59a1"
13S = "${WORKDIR}/git"
13 14
14inherit setuptools 15inherit setuptools
15 16