All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] meta-openstack: add required packages and missing dependencies
@ 2015-05-13  7:24 jackie.huang
  2015-05-13  7:24 ` [PATCH 01/11] python-repoze.lru: add new recipe jackie.huang
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

--
The following changes since commit dd04ca6db2993404284679ea04a80d9071f90c2b:

  python-cinder: upgrade to 2015.1.0 (2015-05-07 14:13:37 -0400)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib jhuang0/t_add-new-pkgs_150513_0
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/t_add-new-pkgs_150513_0

Jackie Huang (11):
  python-repoze.lru: add new recipe
  python-routes: add rdepends on python-repoze.lru
  python-oslo.policy: add new recipe
  python-keystone: add missing rdepends on python-oslo.policy
  python-django: inherit setuptools instead of distutils
  python-xstatic-angular-irdragndrop: add new recipe
  python-horizon: add rdepends on python-xstatic-angular-irdragndrop
  python-enum: add new recipe
  python-pyscss: add missing rdepends on python-enum
  python-pathlib: add new recipe
  python-django-pyscss: add missing rdepends on python-pathlib

 .../python/python-django-pyscss_2.0.1.bb           |  1 +
 .../recipes-devtools/python/python-django_1.7.5.bb |  2 +-
 .../recipes-devtools/python/python-enum_0.4.4.bb   | 25 +++++++++++++++++++
 .../recipes-devtools/python/python-horizon_git.bb  |  1 +
 .../recipes-devtools/python/python-keystone_git.bb |  1 +
 .../python/python-oslo.policy_0.4.0.bb             | 27 ++++++++++++++++++++
 .../python/python-pathlib_1.0.1.bb                 | 29 ++++++++++++++++++++++
 .../recipes-devtools/python/python-pyscss_1.3.4.bb |  1 +
 .../python/python-repoze.lru_0.6.bb                | 20 +++++++++++++++
 .../recipes-devtools/python/python-routes_2.1.bb   |  2 +-
 .../python-xstatic-angular-irdragndrop_1.0.2.2.bb  | 22 ++++++++++++++++
 11 files changed, 129 insertions(+), 2 deletions(-)
 create mode 100644 meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb

-- 
1.9.1



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

* [PATCH 01/11] python-repoze.lru: add new recipe
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 02/11] python-routes: add rdepends on python-repoze.lru jackie.huang
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

It's required by python-routes.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../recipes-devtools/python/python-repoze.lru_0.6.bb | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb

diff --git a/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb
new file mode 100644
index 0000000..60a749f
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb
@@ -0,0 +1,20 @@
+SUMMARY = "A tiny LRU cache implementation and decorator"
+DESCRIPTION = "repoze.lru is a LRU (least recently used) cache implementation. \
+Keys and values that are not used frequently will be evicted from the cache faster \
+than keys and values that are used frequently. \
+"
+HOMEPAGE = "https://pypi.python.org/pypi/repoze.lru"
+SECTION = "devel/python"
+LICENSE = "BSD-derived"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2c33cdbc6bc9ae6e5d64152fdb754292"
+
+SRCNAME = "repoze.lru"
+
+SRC_URI = "http://pypi.python.org/packages/source/r/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "2c3b64b17a8e18b405f55d46173e14dd"
+SRC_URI[sha256sum] = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
-- 
1.9.1



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

* [PATCH 02/11] python-routes: add rdepends on python-repoze.lru
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
  2015-05-13  7:24 ` [PATCH 01/11] python-repoze.lru: add new recipe jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 03/11] python-oslo.policy: add new recipe jackie.huang
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add the missing rdepends on python-repoze.lru or it will fail with:

  File "/usr/lib64/python2.7/site-packages/routes/mapper.py", line 5, in <module>
    from repoze.lru import LRUCache
  ImportError: No module named repoze.lru

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-routes_2.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb b/meta-openstack/recipes-devtools/python/python-routes_2.1.bb
index dbf6e17..ad459c7 100644
--- a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-routes_2.1.bb
@@ -15,4 +15,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 inherit setuptools
 
-
+RDEPENDS_${PN} += "python-repoze.lru"
-- 
1.9.1



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

* [PATCH 03/11] python-oslo.policy: add new recipe
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
  2015-05-13  7:24 ` [PATCH 01/11] python-repoze.lru: add new recipe jackie.huang
  2015-05-13  7:24 ` [PATCH 02/11] python-routes: add rdepends on python-repoze.lru jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 04/11] python-keystone: add missing rdepends on python-oslo.policy jackie.huang
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

It's required by python-keystone.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../python/python-oslo.policy_0.4.0.bb             | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb
new file mode 100644
index 0000000..2816559
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb
@@ -0,0 +1,27 @@
+SUMMARY = "Oslo Policy library"
+DESCRIPTION = "The Oslo Policy library provides support for RBAC policy enforcement across all OpenStack services."
+HOMEPAGE = "https://pypi.python.org/pypi/oslo.policy"
+SECTION = "devel/python"
+LICENSE = "Apache-2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+
+SRCNAME = "oslo.policy"
+SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "a0ddfa5782191c218e1e100234550295"
+SRC_URI[sha256sum] = "7e8a82e617516722043f437825ed5ada422632ee432cc64ede7c4854209cd329"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+DEPENDS += " \
+        python-pip \
+"
+
+RDEPENDS_${PN} += " \
+        python-oslo.config \
+        python-oslo.i18n \
+        python-oslo.serialization \
+"
-- 
1.9.1



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

* [PATCH 04/11] python-keystone: add missing rdepends on python-oslo.policy
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (2 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 03/11] python-oslo.policy: add new recipe jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 05/11] python-django: inherit setuptools instead of distutils jackie.huang
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add the missing rdepends or it will fail with:
  File "/usr/lib64/python2.7/site-packages/keystone/policy/backends/rules.py", line 20, in <module>
    from oslo_policy import policy as common_policy
  ImportError: No module named oslo_policy

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-keystone_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index b13d36b..8fbf996 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -281,6 +281,7 @@ RDEPENDS_${PN} += " \
         python-dogpile.cache \
         python-pbr \
         python-pysaml2 \
+        python-oslo.policy \
         python-oslo.utils \
         python-oauthlib \
         python-fixtures \
-- 
1.9.1



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

* [PATCH 05/11] python-django: inherit setuptools instead of distutils
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (3 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 04/11] python-keystone: add missing rdepends on python-oslo.policy jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 06/11] python-xstatic-angular-irdragndrop: add new recipe jackie.huang
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

setup.py for this pkg uses setuptools, not distutils.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-django_1.7.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb b/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb
index 36302fd..9a815ea 100644
--- a/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb
+++ b/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb
@@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "6ae69c1dfbfc9d0c44ae80e2fbe48e59bbbbb70e8df66ad2b7029bd399
 
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
-inherit distutils
+inherit setuptools
 
 FILES_${PN} += "${datadir}/django/*"
 
-- 
1.9.1



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

* [PATCH 06/11] python-xstatic-angular-irdragndrop: add new recipe
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (4 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 05/11] python-django: inherit setuptools instead of distutils jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 07/11] python-horizon: add rdepends on python-xstatic-angular-irdragndrop jackie.huang
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

It's required by python-horizon

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../python-xstatic-angular-irdragndrop_1.0.2.2.bb  | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb

diff --git a/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb b/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb
new file mode 100644
index 0000000..2ad3e55
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "IrDragNDrop javascript library packaged for setuptools"
+HOMEPAGE = "https://pypi.python.org/pypi/XStatic-Angular-IrDragNDrop"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=9acc2dfc3a0345c175df08104bd22298"
+
+SRCNAME = "XStatic-Angular-IrDragNDrop"
+SRC_URI = "http://pypi.python.org/packages/source/X/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "6ea8809bae94014aef699d58836dba84"
+SRC_URI[sha256sum] = "5595f4a98ac8f8468f7e56dc916e10c0fc5f0197567899a75755f99fe8b5bd6d"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+DEPENDS += " \
+        python-pip \
+        "
+
+RDEPENDS_${PN} += " \
+        "
-- 
1.9.1



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

* [PATCH 07/11] python-horizon: add rdepends on python-xstatic-angular-irdragndrop
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (5 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 06/11] python-xstatic-angular-irdragndrop: add new recipe jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 08/11] python-enum: add new recipe jackie.huang
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-horizon_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-openstack/recipes-devtools/python/python-horizon_git.bb b/meta-openstack/recipes-devtools/python/python-horizon_git.bb
index 55a2a38..9dd764f 100644
--- a/meta-openstack/recipes-devtools/python/python-horizon_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-horizon_git.bb
@@ -39,6 +39,7 @@ RDEPENDS_${PN} += " python-django \
     python-xstatic-angular-cookies \
     python-xstatic-angular-mock \
     python-xstatic-angular-bootstrap \
+    python-xstatic-angular-irdragndrop \
     python-xstatic-d3 \
     python-xstatic-hogan \
     python-xstatic-jasmine \
-- 
1.9.1



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

* [PATCH 08/11] python-enum: add new recipe
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (6 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 07/11] python-horizon: add rdepends on python-xstatic-angular-irdragndrop jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 09/11] python-pyscss: add missing rdepends on python-enum jackie.huang
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

It's required by python-pyscss.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../recipes-devtools/python/python-enum_0.4.4.bb   | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb

diff --git a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
new file mode 100644
index 0000000..4671a59
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
@@ -0,0 +1,25 @@
+SUMMARY = "Robust enumerated type support in Python"
+DESCRIPTION = "This package provides a module for robust enumerations in Python."
+HOMEPAGE = "https://pypi.python.org/pypi/enum"
+SECTION = "devel/python"
+LICENSE = "GPLv2 | PSFv2"
+LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=4325afd396febcb659c36b49533135d4 \
+                    file://LICENSE.PSF;md5=1ad8a43fc3bbfea1585223c99f4c3e6f \
+"
+
+SRCNAME = "enum"
+SRC_URI = "http://pypi.python.org/packages/source/e/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "ce75c7c3c86741175a84456cc5bd531e"
+SRC_URI[sha256sum] = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+DEPENDS += " \
+        python-pip \
+"
+
+RDEPENDS_${PN} += " \
+"
-- 
1.9.1



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

* [PATCH 09/11] python-pyscss: add missing rdepends on python-enum
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (7 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 08/11] python-enum: add new recipe jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 10/11] python-pathlib: add new recipe jackie.huang
  2015-05-13  7:24 ` [PATCH 11/11] python-django-pyscss: add missing rdepends on python-pathlib jackie.huang
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add missing rdepends on python-enum or it fails with:
  File "/usr/lib64/python2.7/site-packages/scss/compiler.py", line 7, in <module>
    from enum import Enum
  ImportError: No module named enum

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb b/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb
index f26352a..72ea639 100644
--- a/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb
+++ b/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb
@@ -25,6 +25,7 @@ DEPENDS += " \
 
 # RDEPENDS_default: 
 RDEPENDS_${PN} += " \
+        python-enum \
         "
 
 CLEANBROKEN = "1"
-- 
1.9.1



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

* [PATCH 10/11] python-pathlib: add new recipe
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (8 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 09/11] python-pyscss: add missing rdepends on python-enum jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  2015-05-13  7:24 ` [PATCH 11/11] python-django-pyscss: add missing rdepends on python-pathlib jackie.huang
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

It's required by python-django-pyscss.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../python/python-pathlib_1.0.1.bb                 | 29 ++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb

diff --git a/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
new file mode 100644
index 0000000..ae26da1
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb
@@ -0,0 +1,29 @@
+SUMMARY = "Object-oriented filesystem paths"
+DESCRIPTION = "pathlib offers a set of classes to handle filesystem paths. \
+It offers the following advantages over using string objects: \
+- No more cumbersome use of os and os.path functions. \
+- Embodies the semantics of different path types. \
+- Well-defined semantics, eliminating any warts or ambiguities. \
+"
+HOMEPAGE = "https://pypi.python.org/pypi/pathlib"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b6557c860f0fc867aeab30afd649753"
+
+
+SRCNAME = "pathlib"
+SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "5099ed48be9b1ee29b31c82819240537"
+SRC_URI[sha256sum] = "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+DEPENDS += " \
+        python-pip \
+"
+
+RDEPENDS_${PN} += " \
+"
-- 
1.9.1



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

* [PATCH 11/11] python-django-pyscss: add missing rdepends on python-pathlib
  2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
                   ` (9 preceding siblings ...)
  2015-05-13  7:24 ` [PATCH 10/11] python-pathlib: add new recipe jackie.huang
@ 2015-05-13  7:24 ` jackie.huang
  10 siblings, 0 replies; 12+ messages in thread
From: jackie.huang @ 2015-05-13  7:24 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add missing rdepends on python-pathlib or it fails with:
  File "/usr/lib64/python2.7/site-packages/django_pyscss/compiler.py", line 4, in <module>
    from pathlib import PurePath
  ImportError: No module named pathlib

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb b/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb
index f665d00..43dbc9f 100644
--- a/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb
@@ -25,4 +25,5 @@ DEPENDS += " \
 RDEPENDS_${PN} += " \
         python-django \
         python-pyscss \        
+        python-pathlib \
         "
-- 
1.9.1



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

end of thread, other threads:[~2015-05-13  7:25 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-13  7:24 [PATCH 00/11] meta-openstack: add required packages and missing dependencies jackie.huang
2015-05-13  7:24 ` [PATCH 01/11] python-repoze.lru: add new recipe jackie.huang
2015-05-13  7:24 ` [PATCH 02/11] python-routes: add rdepends on python-repoze.lru jackie.huang
2015-05-13  7:24 ` [PATCH 03/11] python-oslo.policy: add new recipe jackie.huang
2015-05-13  7:24 ` [PATCH 04/11] python-keystone: add missing rdepends on python-oslo.policy jackie.huang
2015-05-13  7:24 ` [PATCH 05/11] python-django: inherit setuptools instead of distutils jackie.huang
2015-05-13  7:24 ` [PATCH 06/11] python-xstatic-angular-irdragndrop: add new recipe jackie.huang
2015-05-13  7:24 ` [PATCH 07/11] python-horizon: add rdepends on python-xstatic-angular-irdragndrop jackie.huang
2015-05-13  7:24 ` [PATCH 08/11] python-enum: add new recipe jackie.huang
2015-05-13  7:24 ` [PATCH 09/11] python-pyscss: add missing rdepends on python-enum jackie.huang
2015-05-13  7:24 ` [PATCH 10/11] python-pathlib: add new recipe jackie.huang
2015-05-13  7:24 ` [PATCH 11/11] python-django-pyscss: add missing rdepends on python-pathlib jackie.huang

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.