All of lore.kernel.org
 help / color / mirror / Atom feed
* [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr
       [not found] <CAPuovEJA6me_M0qtm1EeN=WnzrcOZ-GwfNtHBsEym-gAKRkYng@mail.gmail.com>
@ 2016-01-05  2:00 ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 01/21] python-pbr: " Li Xin
                     ` (21 more replies)
  2016-01-05  2:08 ` [m-c-s][PATCH 1/2] python-vcversioner: Error fix recipes depend on python-vcversioner Li Xin
  1 sibling, 22 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:00 UTC (permalink / raw)
  To: meta-virtualization

[PATCH 01/21] ~ [PATCH 21/21] are recipes depend on python-pbr.
And they will download pbr modules in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr
so add do_compile_prepend to fix it.

Li Xin (21):
  python-pbr: Error fix for recipes depend on python-pbr
  python-cliff: Error fix
  python-fixtures: Error fix
  python-glanceclient: Error fix
  python-heat: Error fix
  python-heatclient: Error fix
  python-keystoneclient: Error fix
  python-lockfile: Error fix
  python-mox3: Error fix
  python-oslo.config: Error fix
  python-oslo.context: Error fix
  python-oslo.i18n: Error fix
  python-oslo.log: Error fix
  python-oslo.serialization: Error fix
  python-oslo.utils: Error fix
  python-sqlalchemy-migrate: Error fix
  python-stevedore: Error fix
  python-swiftclient: Error fix
  python-testscenarios: Error fix
  python-testtools: Error fix
  python-wsme: Error fix

 meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb  |  7 +++++++
 .../recipes-devtools/python/python-fixtures_1.3.1.bb           |  6 ++++++
 .../recipes-devtools/python/python-glanceclient_git.bb         |  7 +++++++
 meta-openstack/recipes-devtools/python/python-heat_git.bb      |  7 +++++++
 .../recipes-devtools/python/python-heatclient_git.bb           |  7 +++++++
 .../recipes-devtools/python/python-keystoneclient_git.bb       |  7 +++++++
 .../recipes-devtools/python/python-lockfile_0.10.2.bb          |  6 ++++++
 meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb    |  6 ++++++
 .../recipes-devtools/python/python-oslo.config_1.14.0.bb       |  7 +++++++
 .../recipes-devtools/python/python-oslo.context_git.bb         |  6 ++++++
 .../recipes-devtools/python/python-oslo.i18n_1.6.0.bb          |  6 ++++++
 meta-openstack/recipes-devtools/python/python-oslo.log_git.bb  |  7 +++++++
 .../recipes-devtools/python/python-oslo.serialization_git.bb   |  6 ++++++
 .../recipes-devtools/python/python-oslo.utils_git.bb           |  6 ++++++
 meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb     | 10 ++++++++++
 .../recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb |  6 ++++++
 .../recipes-devtools/python/python-stevedore_1.6.0.bb          |  6 ++++++
 .../recipes-devtools/python/python-swiftclient_git.bb          |  7 +++++++
 .../recipes-devtools/python/python-testscenarios_0.5.0.bb      |  6 ++++++
 .../recipes-devtools/python/python-testtools_1.8.0.bb          |  7 +++++++
 meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb    |  6 ++++++
 21 files changed, 139 insertions(+)

-- 
1.8.4.2





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

* [m-c-s][PATCH 01/21] python-pbr: Error fix for recipes depend on python-pbr
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 02/21] python-cliff: Error fix Li Xin
                     ` (20 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

If you bitbake recipes which depends on python-pbr such as
python-cryptography. And also your network is not very well.
Error will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb b/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb
index 273fdd4..98c76e6 100644
--- a/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb
@@ -25,3 +25,13 @@ DEPENDS += " \
 # RDEPENDS_default:
 RDEPENDS_${PN} += " \
         "
+
+do_compile_append() {
+    export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+    ${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+
+do_install_append() {
+    install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
+
-- 
1.8.4.2





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

* [m-c-s][PATCH 02/21] python-cliff: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 01/21] python-pbr: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 03/21] python-fixtures: " Li Xin
                     ` (19 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-cliff depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb b/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb
index 49d4186..5086ba4 100644
--- a/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb
@@ -25,3 +25,10 @@ RDEPENDS_${PN} += "python-prettytable \
             python-pyparsing"
 
 CLEANBROKEN = "1"
+
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 03/21] python-fixtures: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 01/21] python-pbr: " Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 02/21] python-cliff: Error fix Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 04/21] python-glanceclient: " Li Xin
                     ` (18 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-fixtures depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-fixtures_1.3.1.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-fixtures_1.3.1.bb b/meta-openstack/recipes-devtools/python/python-fixtures_1.3.1.bb
index c2b79e4..1d3387a 100644
--- a/meta-openstack/recipes-devtools/python/python-fixtures_1.3.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-fixtures_1.3.1.bb
@@ -28,3 +28,9 @@ DEPENDS += " \
 RDEPENDS_${PN} += "python-testtools \
 	python-pbr \
 	"
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 04/21] python-glanceclient: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (2 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 03/21] python-fixtures: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 05/21] python-heat: " Li Xin
                     ` (17 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-glanceclient depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-glanceclient_git.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb b/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb
index ab32be8..bb712b2 100644
--- a/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb
@@ -23,6 +23,13 @@ S = "${WORKDIR}/git"
 
 inherit setuptools monitor rmargparse
 
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
+
 FILES_${PN} += "${datadir}/${SRCNAME}"
 
 RDEPENDS_${PN} = "gmp \
-- 
1.8.4.2





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

* [m-c-s][PATCH 05/21] python-heat: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (3 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 04/21] python-glanceclient: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 06/21] python-heatclient: " Li Xin
                     ` (16 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-heat depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-heat_git.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-heat_git.bb b/meta-openstack/recipes-devtools/python/python-heat_git.bb
index 7abb4d0..c2419d8 100644
--- a/meta-openstack/recipes-devtools/python/python-heat_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-heat_git.bb
@@ -58,6 +58,13 @@ python () {
     d.setVarFlags("SERVICECREATE_PARAM_%s-cfn" % d.getVar('SRCNAME',True), flags)
 }
 
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
+
 do_install_append() {
     TEMPLATE_CONF_DIR=${S}${sysconfdir}/${SRCNAME}
     HEAT_CONF_DIR=${D}${sysconfdir}/${SRCNAME}
-- 
1.8.4.2





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

* [m-c-s][PATCH 06/21] python-heatclient: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (4 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 05/21] python-heat: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 07/21] python-keystoneclient: " Li Xin
                     ` (15 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-heatclient depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-heatclient_git.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
index 10428c2..94911cd 100644
--- a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
@@ -33,6 +33,13 @@ inherit setuptools
 PACKAGECONFIG ?= "bash-completion"
 PACKAGECONFIG[bash-completion] = ",,bash-completion,bash-completion ${BPN}-bash-completion"
 
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
+
 do_install_append() {
 	install -d ${D}/${sysconfdir}/bash_completion.d
 	install -m 664 ${S}/tools/heat.bash_completion ${D}/${sysconfdir}/bash_completion.d
-- 
1.8.4.2





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

* [m-c-s][PATCH 07/21] python-keystoneclient: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (5 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 06/21] python-heatclient: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 08/21] python-lockfile: " Li Xin
                     ` (14 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-keystoneclient depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-keystoneclient_git.bb           | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
index f4810e5..f1516d8 100644
--- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
@@ -39,6 +39,13 @@ RDEPENDS_${PN} += " \
 PACKAGECONFIG ?= "bash-completion"
 PACKAGECONFIG[bash-completion] = ",,bash-completion,bash-completion ${BPN}-bash-completion"
 
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
+
 do_install_append() {
 	install -d ${D}/${sysconfdir}/bash_completion.d
 	install -m 664 ${S}/tools/keystone.bash_completion ${D}/${sysconfdir}/bash_completion.d
-- 
1.8.4.2





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

* [m-c-s][PATCH 08/21] python-lockfile: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (6 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 07/21] python-keystoneclient: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 09/21] python-mox3: " Li Xin
                     ` (13 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-lockfile depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-lockfile_0.10.2.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-lockfile_0.10.2.bb b/meta-openstack/recipes-devtools/python/python-lockfile_0.10.2.bb
index 5ae891b..824367b 100644
--- a/meta-openstack/recipes-devtools/python/python-lockfile_0.10.2.bb
+++ b/meta-openstack/recipes-devtools/python/python-lockfile_0.10.2.bb
@@ -22,3 +22,9 @@ DEPENDS += "\
 RDEPENDS_${PN} += "\
     python-pbr \
     "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 09/21] python-mox3: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (7 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 08/21] python-lockfile: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 10/21] python-oslo.config: " Li Xin
                     ` (12 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-mox3 depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb b/meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb
index 6d58573..a326a21 100644
--- a/meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb
@@ -24,3 +24,9 @@ RDEPENDS_${PN} += " \
     python-pbr \
     python-fixtures \
 "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 10/21] python-oslo.config: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (8 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 09/21] python-mox3: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 11/21] python-oslo.context: " Li Xin
                     ` (11 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.config depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-oslo.config_1.14.0.bb           | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb
index fd4f9fe..40fd7e0 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb
@@ -21,3 +21,10 @@ DEPENDS += " \
         "
 
 RDEPENDS_${PN} += "python-pbr"
+
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 11/21] python-oslo.context: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (9 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 10/21] python-oslo.config: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 12/21] python-oslo.i18n: " Li Xin
                     ` (10 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.context depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-oslo.context_git.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb
index ec2651e..4fabd27 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb
@@ -26,3 +26,9 @@ RDEPENDS_${PN} += " \
         bash \
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 12/21] python-oslo.i18n: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (10 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 11/21] python-oslo.context: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 13/21] python-oslo.log: " Li Xin
                     ` (9 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.i18n depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb
index 2b47833..538f40e 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb
@@ -27,3 +27,9 @@ RDEPENDS_${PN} += " \
         python-babel \
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 13/21] python-oslo.log: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (11 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 12/21] python-oslo.i18n: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 14/21] python-oslo.serialization: " Li Xin
                     ` (8 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.log depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-oslo.log_git.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb
index bfcbe31..6f8742a 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb
@@ -32,3 +32,10 @@ RDEPENDS_${PN} += " \
         python-oslo.utils \
         python-oslo.serialization\
         "
+
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 14/21] python-oslo.serialization: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (12 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 13/21] python-oslo.log: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 15/21] python-oslo.utils: " Li Xin
                     ` (7 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.serialization depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-oslo.serialization_git.bb        | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb
index db2869c..514a458 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb
@@ -26,3 +26,9 @@ DEPENDS += " \
 RDEPENDS_${PN} += " \
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 15/21] python-oslo.utils: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (13 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 14/21] python-oslo.serialization: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 16/21] python-sqlalchemy-migrate: " Li Xin
                     ` (6 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-oslo.utils depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb
index 33c7e53..5dcd201 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb
@@ -26,3 +26,9 @@ DEPENDS += " \
 RDEPENDS_${PN} += " \
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 16/21] python-sqlalchemy-migrate: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (14 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 15/21] python-oslo.utils: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 17/21] python-stevedore: " Li Xin
                     ` (5 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-sqlalchemy-migrate depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb      | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb b/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb
index 32ecdb3..2560b86 100644
--- a/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb
+++ b/meta-openstack/recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb
@@ -25,3 +25,9 @@ RDEPENDS_${PN} += "python-sqlalchemy  \
 	python-tempita  \
         python-pbr \
     "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 17/21] python-stevedore: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (15 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 16/21] python-sqlalchemy-migrate: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 18/21] python-swiftclient: " Li Xin
                     ` (4 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-stevedore depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb
index de04105..08e47c3 100644
--- a/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb
@@ -23,3 +23,9 @@ DEPENDS += " \
 RDEPENDS_${PN} += " \
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 18/21] python-swiftclient: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (16 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 17/21] python-stevedore: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 19/21] python-testscenarios: " Li Xin
                     ` (3 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-swiftclient depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-swiftclient_git.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb b/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb
index 1c506a8..93f4766 100644
--- a/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb
@@ -15,6 +15,13 @@ S = "${WORKDIR}/git"
 
 inherit setuptools python-dir
 
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
+
 do_install_append() {
     cp -r tests ${D}/${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/
 }
-- 
1.8.4.2





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

* [m-c-s][PATCH 19/21] python-testscenarios: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (17 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 18/21] python-swiftclient: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 20/21] python-testtools: " Li Xin
                     ` (2 subsequent siblings)
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-testscenarios depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-testscenarios_0.5.0.bb           | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-testscenarios_0.5.0.bb b/meta-openstack/recipes-devtools/python/python-testscenarios_0.5.0.bb
index 994b6b5..1ec6d31 100644
--- a/meta-openstack/recipes-devtools/python/python-testscenarios_0.5.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-testscenarios_0.5.0.bb
@@ -24,3 +24,9 @@ RDEPENDS_${PN} += "\
     python-testtools \
     python-pbr \
     "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 20/21] python-testtools: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (18 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 19/21] python-testscenarios: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05  2:01   ` [m-c-s][PATCH 21/21] python-wsme: " Li Xin
  2016-01-05 16:36   ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Mark Asselstine
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-testtools depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-testtools_1.8.0.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-testtools_1.8.0.bb b/meta-openstack/recipes-devtools/python/python-testtools_1.8.0.bb
index fe03a5f..81efc41 100644
--- a/meta-openstack/recipes-devtools/python/python-testtools_1.8.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-testtools_1.8.0.bb
@@ -25,3 +25,10 @@ RDEPENDS_${PN} += "\
     python-extras \
     python-pbr \
     "
+
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 21/21] python-wsme: Error fix
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (19 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 20/21] python-testtools: " Li Xin
@ 2016-01-05  2:01   ` Li Xin
  2016-01-05 16:36   ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Mark Asselstine
  21 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:01 UTC (permalink / raw)
  To: meta-virtualization

python-wsme depends on python-pbr, and will download pbr modules
in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/pbr/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'pbr' (maybe misspelled?)
  No local packages or download links found for pbr

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb b/meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb
index 523c3df..ce6d844 100644
--- a/meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb
@@ -23,3 +23,9 @@ DEPENDS += " \
 RDEPENDS_${PN} += "\
         python-pbr \
         "
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ]; then
+        cp ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/pbr*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 1/2] python-vcversioner: Error fix recipes depend on python-vcversioner
       [not found] <CAPuovEJA6me_M0qtm1EeN=WnzrcOZ-GwfNtHBsEym-gAKRkYng@mail.gmail.com>
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
@ 2016-01-05  2:08 ` Li Xin
  2016-01-05  2:08   ` [m-c-s][PATCH 2/2] python-jsonschema: Error Fix Li Xin
  1 sibling, 1 reply; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:08 UTC (permalink / raw)
  To: meta-virtualization

If you bitbake recipes which depends on python-vcversioner such as
python-jsonschema. And also your network is not very well.
Error will occur as following:
  Download error on https://pypi.python.org/simple/vcversioner/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'vcversioner' (maybe misspelled?)
  No local packages or download links found for vcversioner

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-vcversioner_2.14.0.0.bb       | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb b/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
index 2fe96ab..50e48bb 100644
--- a/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb
@@ -14,3 +14,12 @@ SRC_URI[sha256sum] = "acd43686e92e6c8bbeb4f2eef54408567a7adea9692fa72d591eec5357
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 inherit setuptools
+
+do_compile_append() {
+    export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS}
+    ${PYTHON} setup.py -q bdist_egg --dist-dir ./
+}
+
+do_install_append() {
+    install -m 0644 ${S}/vcversioner*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/
+}
-- 
1.8.4.2





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

* [m-c-s][PATCH 2/2] python-jsonschema: Error Fix
  2016-01-05  2:08 ` [m-c-s][PATCH 1/2] python-vcversioner: Error fix recipes depend on python-vcversioner Li Xin
@ 2016-01-05  2:08   ` Li Xin
  0 siblings, 0 replies; 26+ messages in thread
From: Li Xin @ 2016-01-05  2:08 UTC (permalink / raw)
  To: meta-virtualization

python-jsonschema depends on python-vcversioner,
And will download modules vcversioner in the step of do_compile.
If your network is not very well,errors will occur as following:
  Download error on https://pypi.python.org/simple/vcversioner/:
  [Errno -5] No address associated with hostname -- Some packages may not be found!
  Couldn't find index page for 'vcversioner' (maybe misspelled?)
  No local packages or download links found for vcversioner

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb b/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb
index a3a7ec0..c0b342e 100644
--- a/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb
@@ -17,3 +17,10 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
 inherit setuptools
 
 DEPENDS += "python-vcversioner"
+
+do_compile_prepend() {
+    install -d ${S}/.eggs
+    if [ -f ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/vcversioner*.egg ]; then
+        install -m 0644 ${STAGING_DIR_HOST}/${PYTHON_SITEPACKAGES_DIR}/vcversioner*.egg ${S}/.eggs/
+    fi
+}
-- 
1.8.4.2





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

* Re: [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr
  2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
                     ` (20 preceding siblings ...)
  2016-01-05  2:01   ` [m-c-s][PATCH 21/21] python-wsme: " Li Xin
@ 2016-01-05 16:36   ` Mark Asselstine
  2016-01-05 16:44     ` Bruce Ashfield
  21 siblings, 1 reply; 26+ messages in thread
From: Mark Asselstine @ 2016-01-05 16:36 UTC (permalink / raw)
  To: Li Xin; +Cc: meta-virtualization

On Mon, Jan 4, 2016 at 9:00 PM, Li Xin <lixin.fnst@cn.fujitsu.com> wrote:
> [PATCH 01/21] ~ [PATCH 21/21] are recipes depend on python-pbr.
> And they will download pbr modules in the step of do_compile.
> If your network is not very well,errors will occur as following:
>   Download error on https://pypi.python.org/simple/pbr/:
>   [Errno -5] No address associated with hostname -- Some packages may not be found!
>   Couldn't find index page for 'pbr' (maybe misspelled?)
>   No local packages or download links found for pbr
> so add do_compile_prepend to fix it.


When there was one of these I think the solution we put in place was
sufficient but now with pbr and the dozen+ instances being fixed here
we might want to handle this in the python bbclass. We could have the
pbr and vcversioner recipes set a flag that will ensure the egg is
created and then recipes which require the egg have a list of
REQUIRED_EGGS or similar to indicate to the class that the copy needs
to take place. Thoughts?

Mark

>
> Li Xin (21):
>   python-pbr: Error fix for recipes depend on python-pbr
>   python-cliff: Error fix
>   python-fixtures: Error fix
>   python-glanceclient: Error fix
>   python-heat: Error fix
>   python-heatclient: Error fix
>   python-keystoneclient: Error fix
>   python-lockfile: Error fix
>   python-mox3: Error fix
>   python-oslo.config: Error fix
>   python-oslo.context: Error fix
>   python-oslo.i18n: Error fix
>   python-oslo.log: Error fix
>   python-oslo.serialization: Error fix
>   python-oslo.utils: Error fix
>   python-sqlalchemy-migrate: Error fix
>   python-stevedore: Error fix
>   python-swiftclient: Error fix
>   python-testscenarios: Error fix
>   python-testtools: Error fix
>   python-wsme: Error fix
>
>  meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb  |  7 +++++++
>  .../recipes-devtools/python/python-fixtures_1.3.1.bb           |  6 ++++++
>  .../recipes-devtools/python/python-glanceclient_git.bb         |  7 +++++++
>  meta-openstack/recipes-devtools/python/python-heat_git.bb      |  7 +++++++
>  .../recipes-devtools/python/python-heatclient_git.bb           |  7 +++++++
>  .../recipes-devtools/python/python-keystoneclient_git.bb       |  7 +++++++
>  .../recipes-devtools/python/python-lockfile_0.10.2.bb          |  6 ++++++
>  meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb    |  6 ++++++
>  .../recipes-devtools/python/python-oslo.config_1.14.0.bb       |  7 +++++++
>  .../recipes-devtools/python/python-oslo.context_git.bb         |  6 ++++++
>  .../recipes-devtools/python/python-oslo.i18n_1.6.0.bb          |  6 ++++++
>  meta-openstack/recipes-devtools/python/python-oslo.log_git.bb  |  7 +++++++
>  .../recipes-devtools/python/python-oslo.serialization_git.bb   |  6 ++++++
>  .../recipes-devtools/python/python-oslo.utils_git.bb           |  6 ++++++
>  meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb     | 10 ++++++++++
>  .../recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb |  6 ++++++
>  .../recipes-devtools/python/python-stevedore_1.6.0.bb          |  6 ++++++
>  .../recipes-devtools/python/python-swiftclient_git.bb          |  7 +++++++
>  .../recipes-devtools/python/python-testscenarios_0.5.0.bb      |  6 ++++++
>  .../recipes-devtools/python/python-testtools_1.8.0.bb          |  7 +++++++
>  meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb    |  6 ++++++
>  21 files changed, 139 insertions(+)
>
> --
> 1.8.4.2
>
>
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization


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

* Re: [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr
  2016-01-05 16:36   ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Mark Asselstine
@ 2016-01-05 16:44     ` Bruce Ashfield
  0 siblings, 0 replies; 26+ messages in thread
From: Bruce Ashfield @ 2016-01-05 16:44 UTC (permalink / raw)
  To: Mark Asselstine; +Cc: meta-virtualization

[-- Attachment #1: Type: text/plain, Size: 4726 bytes --]

On Tue, Jan 5, 2016 at 11:36 AM, Mark Asselstine <
mark.asselstine@windriver.com> wrote:

> On Mon, Jan 4, 2016 at 9:00 PM, Li Xin <lixin.fnst@cn.fujitsu.com> wrote:
> > [PATCH 01/21] ~ [PATCH 21/21] are recipes depend on python-pbr.
> > And they will download pbr modules in the step of do_compile.
> > If your network is not very well,errors will occur as following:
> >   Download error on https://pypi.python.org/simple/pbr/:
> >   [Errno -5] No address associated with hostname -- Some packages may
> not be found!
> >   Couldn't find index page for 'pbr' (maybe misspelled?)
> >   No local packages or download links found for pbr
> > so add do_compile_prepend to fix it.
>
>
> When there was one of these I think the solution we put in place was
> sufficient but now with pbr and the dozen+ instances being fixed here
> we might want to handle this in the python bbclass. We could have the
> pbr and vcversioner recipes set a flag that will ensure the egg is
> created and then recipes which require the egg have a list of
> REQUIRED_EGGS or similar to indicate to the class that the copy needs
> to take place. Thoughts?
>


We can't have the individual packages poking around for eggs. If a DEPENDS
on python-pbr isn't sufficient, we need to fix the packaging of pbr, or
solve it
at the base level.

It's also unclear to me why we need special compile/install steps for
python-pbr
itself. Again, if that is required, the python classes should be taking
care of it,
not the recipes.

Bruce



>
> Mark
>
> >
> > Li Xin (21):
> >   python-pbr: Error fix for recipes depend on python-pbr
> >   python-cliff: Error fix
> >   python-fixtures: Error fix
> >   python-glanceclient: Error fix
> >   python-heat: Error fix
> >   python-heatclient: Error fix
> >   python-keystoneclient: Error fix
> >   python-lockfile: Error fix
> >   python-mox3: Error fix
> >   python-oslo.config: Error fix
> >   python-oslo.context: Error fix
> >   python-oslo.i18n: Error fix
> >   python-oslo.log: Error fix
> >   python-oslo.serialization: Error fix
> >   python-oslo.utils: Error fix
> >   python-sqlalchemy-migrate: Error fix
> >   python-stevedore: Error fix
> >   python-swiftclient: Error fix
> >   python-testscenarios: Error fix
> >   python-testtools: Error fix
> >   python-wsme: Error fix
> >
> >  meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb  |  7
> +++++++
> >  .../recipes-devtools/python/python-fixtures_1.3.1.bb           |  6
> ++++++
> >  .../recipes-devtools/python/python-glanceclient_git.bb         |  7
> +++++++
> >  meta-openstack/recipes-devtools/python/python-heat_git.bb      |  7
> +++++++
> >  .../recipes-devtools/python/python-heatclient_git.bb           |  7
> +++++++
> >  .../recipes-devtools/python/python-keystoneclient_git.bb       |  7
> +++++++
> >  .../recipes-devtools/python/python-lockfile_0.10.2.bb          |  6
> ++++++
> >  meta-openstack/recipes-devtools/python/python-mox3_0.9.0.bb    |  6
> ++++++
> >  .../recipes-devtools/python/python-oslo.config_1.14.0.bb       |  7
> +++++++
> >  .../recipes-devtools/python/python-oslo.context_git.bb         |  6
> ++++++
> >  .../recipes-devtools/python/python-oslo.i18n_1.6.0.bb          |  6
> ++++++
> >  meta-openstack/recipes-devtools/python/python-oslo.log_git.bb  |  7
> +++++++
> >  .../recipes-devtools/python/python-oslo.serialization_git.bb   |  6
> ++++++
> >  .../recipes-devtools/python/python-oslo.utils_git.bb           |  6
> ++++++
> >  meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb     | 10
> ++++++++++
> >  .../recipes-devtools/python/python-sqlalchemy-migrate_0.9.7.bb |  6
> ++++++
> >  .../recipes-devtools/python/python-stevedore_1.6.0.bb          |  6
> ++++++
> >  .../recipes-devtools/python/python-swiftclient_git.bb          |  7
> +++++++
> >  .../recipes-devtools/python/python-testscenarios_0.5.0.bb      |  6
> ++++++
> >  .../recipes-devtools/python/python-testtools_1.8.0.bb          |  7
> +++++++
> >  meta-openstack/recipes-devtools/python/python-wsme_0.7.0.bb    |  6
> ++++++
> >  21 files changed, 139 insertions(+)
> >
> > --
> > 1.8.4.2
> >
> >
> >
> > --
> > _______________________________________________
> > meta-virtualization mailing list
> > meta-virtualization@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-virtualization
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization
>



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end"

[-- Attachment #2: Type: text/html, Size: 8055 bytes --]

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

end of thread, other threads:[~2016-01-05 16:44 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAPuovEJA6me_M0qtm1EeN=WnzrcOZ-GwfNtHBsEym-gAKRkYng@mail.gmail.com>
2016-01-05  2:00 ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 01/21] python-pbr: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 02/21] python-cliff: Error fix Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 03/21] python-fixtures: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 04/21] python-glanceclient: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 05/21] python-heat: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 06/21] python-heatclient: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 07/21] python-keystoneclient: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 08/21] python-lockfile: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 09/21] python-mox3: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 10/21] python-oslo.config: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 11/21] python-oslo.context: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 12/21] python-oslo.i18n: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 13/21] python-oslo.log: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 14/21] python-oslo.serialization: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 15/21] python-oslo.utils: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 16/21] python-sqlalchemy-migrate: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 17/21] python-stevedore: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 18/21] python-swiftclient: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 19/21] python-testscenarios: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 20/21] python-testtools: " Li Xin
2016-01-05  2:01   ` [m-c-s][PATCH 21/21] python-wsme: " Li Xin
2016-01-05 16:36   ` [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr Mark Asselstine
2016-01-05 16:44     ` Bruce Ashfield
2016-01-05  2:08 ` [m-c-s][PATCH 1/2] python-vcversioner: Error fix recipes depend on python-vcversioner Li Xin
2016-01-05  2:08   ` [m-c-s][PATCH 2/2] python-jsonschema: Error Fix Li Xin

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.