All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-cloud-services][PATCH] keystone: add missing functools32 module
@ 2015-10-30 19:23 Mark Asselstine
  2015-10-30 20:56 ` Bruce Ashfield
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Asselstine @ 2015-10-30 19:23 UTC (permalink / raw)
  To: bruce.ashfield, meta-virtualization

Keystone fails to install due to functools32 missing. Add a new recipe
for functools32 and include the dependency in keystone.

Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
---
 .../python/python-functools32_3.2.3-2.bb           | 29 ++++++++++++++++++++++
 .../recipes-devtools/python/python-keystone_git.bb |  1 +
 2 files changed, 30 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb

diff --git a/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb b/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb
new file mode 100644
index 0000000..937e933
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb
@@ -0,0 +1,29 @@
+SUMMARY = "Python higher-order functions and operations on callable objects"
+HOMEPAGE = "https://pypi.python.org/pypi/functools32"
+SECTION = "devel/python"
+LICENSE = "PSFv2"
+
+SRCNAME = "functools32"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=27cf2345969ed18e6730e90fb0063a10"
+SRC_URI = "http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+SRC_URI[md5sum] = "09f24ffd9af9f6cd0f63cb9f4e23d4b2"
+SRC_URI[sha256sum] = "f6253dfbe0538ad2e387bd8fdfd9293c925d63553f5813c4e587745416501e6d"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit distutils
+
+DISTUTILS_INSTALL_ARGS = "--root=${D} \
+    --prefix=${prefix} \
+    --install-lib=${PYTHON_SITEPACKAGES_DIR} \
+    --install-data=${datadir}"
+
+DEPENDS += " \
+	python-pbr \
+	"
+
+RDEPENDS_${PN} += "python-testtools \
+	python-pbr \
+	"
+
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index 8fbf996..58aa449 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -286,6 +286,7 @@ RDEPENDS_${PN} += " \
         python-oauthlib \
         python-fixtures \
         python-oslotest \
+        python-functools32 \
         "
 
 RDEPENDS_${SRCNAME}-tests += " bash"
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-cloud-services][PATCH] keystone: add missing functools32 module
  2015-10-30 19:23 [meta-cloud-services][PATCH] keystone: add missing functools32 module Mark Asselstine
@ 2015-10-30 20:56 ` Bruce Ashfield
  0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2015-10-30 20:56 UTC (permalink / raw)
  To: Mark Asselstine, meta-virtualization

On 15-10-30 03:23 PM, Mark Asselstine wrote:
> Keystone fails to install due to functools32 missing. Add a new recipe
> for functools32 and include the dependency in keystone.

merged.

Bruce

>
> Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
> ---
>   .../python/python-functools32_3.2.3-2.bb           | 29 ++++++++++++++++++++++
>   .../recipes-devtools/python/python-keystone_git.bb |  1 +
>   2 files changed, 30 insertions(+)
>   create mode 100644 meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb
>
> diff --git a/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb b/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb
> new file mode 100644
> index 0000000..937e933
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-functools32_3.2.3-2.bb
> @@ -0,0 +1,29 @@
> +SUMMARY = "Python higher-order functions and operations on callable objects"
> +HOMEPAGE = "https://pypi.python.org/pypi/functools32"
> +SECTION = "devel/python"
> +LICENSE = "PSFv2"
> +
> +SRCNAME = "functools32"
> +
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=27cf2345969ed18e6730e90fb0063a10"
> +SRC_URI = "http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
> +SRC_URI[md5sum] = "09f24ffd9af9f6cd0f63cb9f4e23d4b2"
> +SRC_URI[sha256sum] = "f6253dfbe0538ad2e387bd8fdfd9293c925d63553f5813c4e587745416501e6d"
> +
> +S = "${WORKDIR}/${SRCNAME}-${PV}"
> +
> +inherit distutils
> +
> +DISTUTILS_INSTALL_ARGS = "--root=${D} \
> +    --prefix=${prefix} \
> +    --install-lib=${PYTHON_SITEPACKAGES_DIR} \
> +    --install-data=${datadir}"
> +
> +DEPENDS += " \
> +	python-pbr \
> +	"
> +
> +RDEPENDS_${PN} += "python-testtools \
> +	python-pbr \
> +	"
> +
> diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
> index 8fbf996..58aa449 100644
> --- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
> @@ -286,6 +286,7 @@ RDEPENDS_${PN} += " \
>           python-oauthlib \
>           python-fixtures \
>           python-oslotest \
> +        python-functools32 \
>           "
>
>   RDEPENDS_${SRCNAME}-tests += " bash"
>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-10-30 20:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-30 19:23 [meta-cloud-services][PATCH] keystone: add missing functools32 module Mark Asselstine
2015-10-30 20:56 ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.