Re: [meta-virtualization] [meta-cloud-services][PATCH]python-heatclient: upgrade to 1.9.0

2017-11-06 Thread Mark Asselstine
I never managed to get everything uprev'd to newton which they just
EOL'd 2 weeks ago :(. I was going to start to look at moving things to
Pike (and actually get things done this time). I notice this uprev is
for 'master'. What are the plans here, move everything to the latest
on master or are we thinking about moving to the Pike release?

On Mon, Nov 6, 2017 at 8:53 AM, Bruce Ashfield  wrote:
> merged
>
> Bruce
>
> On Sat, Nov 4, 2017 at 11:52 AM, zhengrq  wrote:
>> Upgrade python-heatclient from 0.6.0 to 1.9.0.
>>
>> Signed-off-by: Zheng Ruoqin 
>> ---
>>  meta-openstack/recipes-devtools/python/python-heatclient_git.bb | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb 
>> b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
>> index 26d86be..6653b37 100644
>> --- a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
>> +++ b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
>> @@ -28,8 +28,8 @@ SRCNAME = "heatclient"
>>
>>  SRC_URI = "git://github.com/openstack/python-heatclient.git;branch=master"
>>
>> -PV = "0.6.0+git${SRCPV}"
>> -SRCREV = "7cca8394b8ab2f4dccb982ae789b1b2985627115"
>> +PV = "1.9.0+git${SRCPV}"
>> +SRCREV = "b80166d848dd26718cfe0627bfec22774213616b"
>>  S = "${WORKDIR}/git"
>>
>>  inherit setuptools
>> --
>> 2.7.4
>>
>>
>>
>> --
>> ___
>> 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"
> --
> ___
> 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


Re: [meta-virtualization] [PATCH] xen: delete references to xenstored.socket and xenstored_ro.socket in xen.inc

2017-11-06 Thread Wei, Yunguo (Bryan)
Hi Yan

Do you know why this patch was not merged? I'm running into same problem.

Regards,
Yunguo

-Original Message-
From: meta-virtualization-boun...@yoctoproject.org 
[mailto:meta-virtualization-boun...@yoctoproject.org] On Behalf Of Yan 
Yankovskyi
Sent: Wednesday, August 30, 2017 5:03 PM
To: meta-virtualization@yoctoproject.org
Subject: [meta-virtualization] [PATCH] xen: delete references to 
xenstored.socket and xenstored_ro.socket in xen.inc

These files were removed since the following patch 
http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=976ce01e103fc03bb3336cdbc6c951a709e285fe
and are absent in xen 4.8.0 and further, which leads to the following error 
during the Xen build process:
do_package: SYSTEMD_SERVICE_xen-xencommons value xenstored.socket does not exist

Signed-off-by: Yan Yankovskyi 
---
 recipes-extended/xen/xen.inc | 4 
 1 file changed, 4 deletions(-)

diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc index 
b5c5f03..717424b 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -687,8 +687,6 @@ FILES_${PN}-xencommons += "\
 ${systemd_unitdir}/system/xenconsoled.service \
 ${systemd_unitdir}/system/xen-init-dom0.service \
 ${systemd_unitdir}/system/xenstored.service \
-${systemd_unitdir}/system/xenstored.socket \
-${systemd_unitdir}/system/xenstored_ro.socket \
 ${systemd_unitdir}/system/var-lib-xenstored.mount \
 "
 
@@ -728,8 +726,6 @@ SYSTEMD_SERVICE_${PN}-xencommons = " \
 xenconsoled.service \
 xen-init-dom0.service \
 xenstored.service \
-xenstored.socket \
-xenstored_ro.socket \
 "
 SYSTEMD_SERVICE_${PN}-xendomains = "xendomains.service"
 
--
1.9.1

--
___
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


Re: [meta-virtualization] [PATCH] xen: delete references to xenstored.socket and xenstored_ro.socket in xen.inc

2017-11-06 Thread Yan Yankovskyi
Hi Wei

Unfortunately, I haven't got any response about that. I'm not the only one
who experienced such problem, even among my friends. Another solution might
be to create custom bbappend with the following content:

FILES_${PN}-xencommons_remove = "xenstored.socket xenstored_ro.socket"
SYSTEMD_SERVICE_${PN}-xencommons_remove = "xenstored.socket
xenstored_ro.socket"

(haven't checked it), but I don't understand what are these lines in
xen.inc for?

On Mon, Nov 6, 2017 at 10:45 AM, Wei, Yunguo (Bryan) <
yunguo@windriver.com> wrote:

> Hi Yan
>
> Do you know why this patch was not merged? I'm running into same problem.
>
> Regards,
> Yunguo
>
> -Original Message-
> From: meta-virtualization-boun...@yoctoproject.org [mailto:
> meta-virtualization-boun...@yoctoproject.org] On Behalf Of Yan Yankovskyi
> Sent: Wednesday, August 30, 2017 5:03 PM
> To: meta-virtualization@yoctoproject.org
> Subject: [meta-virtualization] [PATCH] xen: delete references to
> xenstored.socket and xenstored_ro.socket in xen.inc
>
> These files were removed since the following patch
> http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=
> 976ce01e103fc03bb3336cdbc6c951a709e285fe
> and are absent in xen 4.8.0 and further, which leads to the following
> error during the Xen build process:
> do_package: SYSTEMD_SERVICE_xen-xencommons value xenstored.socket does not
> exist
>
> Signed-off-by: Yan Yankovskyi 
> ---
>  recipes-extended/xen/xen.inc | 4 
>  1 file changed, 4 deletions(-)
>
> diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
> index b5c5f03..717424b 100644
> --- a/recipes-extended/xen/xen.inc
> +++ b/recipes-extended/xen/xen.inc
> @@ -687,8 +687,6 @@ FILES_${PN}-xencommons += "\
>  ${systemd_unitdir}/system/xenconsoled.service \
>  ${systemd_unitdir}/system/xen-init-dom0.service \
>  ${systemd_unitdir}/system/xenstored.service \
> -${systemd_unitdir}/system/xenstored.socket \
> -${systemd_unitdir}/system/xenstored_ro.socket \
>  ${systemd_unitdir}/system/var-lib-xenstored.mount \
>  "
>
> @@ -728,8 +726,6 @@ SYSTEMD_SERVICE_${PN}-xencommons = " \
>  xenconsoled.service \
>  xen-init-dom0.service \
>  xenstored.service \
> -xenstored.socket \
> -xenstored_ro.socket \
>  "
>  SYSTEMD_SERVICE_${PN}-xendomains = "xendomains.service"
>
> --
> 1.9.1
>
> --
> ___
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization
>



-- 
Best regards,

Yan Yankovskyi | Associate Software Engineer, Ukraine
GlobalLogic
M  +380.95.049.64.73 <+380950496473>   Skype huandesale

www.globallogic.com

http://www.globallogic.com/email_disclaimer.txt
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [PATCH] python-webob: uprev to v1.7.3

2017-11-06 Thread Mark Asselstine
The only user in meta-virtualization is python-bugsnag and there is no
version dependency. This new version is however required by the latest
openstack. Switched to using the "common" pypi.bbclass while we are at
it.

Signed-off-by: Mark Asselstine 
---
 recipes-devtools/python/python-webob_1.6.0.bb | 23 ---
 recipes-devtools/python/python-webob_1.7.3.bb | 18 ++
 2 files changed, 18 insertions(+), 23 deletions(-)
 delete mode 100644 recipes-devtools/python/python-webob_1.6.0.bb
 create mode 100644 recipes-devtools/python/python-webob_1.7.3.bb

diff --git a/recipes-devtools/python/python-webob_1.6.0.bb 
b/recipes-devtools/python/python-webob_1.6.0.bb
deleted file mode 100644
index 71c74ff..000
--- a/recipes-devtools/python/python-webob_1.6.0.bb
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION = "WSGI request and response object"
-HOMEPAGE = "http://webob.org/;
-SECTION = "devel/python"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
-
-PR = "r0"
-SRCNAME = "WebOb"
-
-SRC_URI = 
"http://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz;
-
-SRC_URI[md5sum] = "089d7fc6745f175737800237c7287802"
-SRC_URI[sha256sum] = 
"63d262d8f61b516321f786879c9277fa2209f7f57eb47b537eeecfea383d55b7"
-
-S = "${WORKDIR}/${SRCNAME}-${PV}"
-
-inherit setuptools
-
-RDEPENDS_${PN} += " \
-   python-sphinx \
-   python-nose \
-   "
-
diff --git a/recipes-devtools/python/python-webob_1.7.3.bb 
b/recipes-devtools/python/python-webob_1.7.3.bb
new file mode 100644
index 000..a2448be
--- /dev/null
+++ b/recipes-devtools/python/python-webob_1.7.3.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "WSGI request and response object"
+HOMEPAGE = "http://webob.org/;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = 
"file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
+
+PYPI_PACKAGE = "WebOb"
+
+SRC_URI[md5sum] = "350028baffc508e3d23c078118e35316"
+SRC_URI[sha256sum] = 
"e65ca14b9f5ae5b031988ffc93f8b7f305ddfcf17a4c774ae0db47bcb3b87283"
+
+inherit setuptools pypi
+
+RDEPENDS_${PN} += " \
+   python-sphinx \
+   python-nose \
+   "
+
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [PATCH] python-webob: uprev to v1.7.3

2017-11-06 Thread Mark Asselstine
Sorry, will resend with -M. I should update the README with -M too as
this is cut and paste laziness.

Mark

On Mon, Nov 6, 2017 at 3:15 PM, Mark Asselstine
 wrote:
> The only user in meta-virtualization is python-bugsnag and there is no
> version dependency. This new version is however required by the latest
> openstack. Switched to using the "common" pypi.bbclass while we are at
> it.
>
> Signed-off-by: Mark Asselstine 
> ---
>  recipes-devtools/python/python-webob_1.6.0.bb | 23 ---
>  recipes-devtools/python/python-webob_1.7.3.bb | 18 ++
>  2 files changed, 18 insertions(+), 23 deletions(-)
>  delete mode 100644 recipes-devtools/python/python-webob_1.6.0.bb
>  create mode 100644 recipes-devtools/python/python-webob_1.7.3.bb
>
> diff --git a/recipes-devtools/python/python-webob_1.6.0.bb 
> b/recipes-devtools/python/python-webob_1.6.0.bb
> deleted file mode 100644
> index 71c74ff..000
> --- a/recipes-devtools/python/python-webob_1.6.0.bb
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -DESCRIPTION = "WSGI request and response object"
> -HOMEPAGE = "http://webob.org/;
> -SECTION = "devel/python"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = 
> "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
> -
> -PR = "r0"
> -SRCNAME = "WebOb"
> -
> -SRC_URI = 
> "http://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz;
> -
> -SRC_URI[md5sum] = "089d7fc6745f175737800237c7287802"
> -SRC_URI[sha256sum] = 
> "63d262d8f61b516321f786879c9277fa2209f7f57eb47b537eeecfea383d55b7"
> -
> -S = "${WORKDIR}/${SRCNAME}-${PV}"
> -
> -inherit setuptools
> -
> -RDEPENDS_${PN} += " \
> -   python-sphinx \
> -   python-nose \
> -   "
> -
> diff --git a/recipes-devtools/python/python-webob_1.7.3.bb 
> b/recipes-devtools/python/python-webob_1.7.3.bb
> new file mode 100644
> index 000..a2448be
> --- /dev/null
> +++ b/recipes-devtools/python/python-webob_1.7.3.bb
> @@ -0,0 +1,18 @@
> +DESCRIPTION = "WSGI request and response object"
> +HOMEPAGE = "http://webob.org/;
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = 
> "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
> +
> +PYPI_PACKAGE = "WebOb"
> +
> +SRC_URI[md5sum] = "350028baffc508e3d23c078118e35316"
> +SRC_URI[sha256sum] = 
> "e65ca14b9f5ae5b031988ffc93f8b7f305ddfcf17a4c774ae0db47bcb3b87283"
> +
> +inherit setuptools pypi
> +
> +RDEPENDS_${PN} += " \
> +   python-sphinx \
> +   python-nose \
> +   "
> +
> --
> 2.7.4
>
> --
> ___
> 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


Re: [meta-virtualization] [v2 PATCH] python-webob: uprev to v1.7.3

2017-11-06 Thread Mark Asselstine
With the file being small git isn't matching the rename even when I
toggle the threashold value. Not much I can do folks.

Mark

On Mon, Nov 6, 2017 at 3:18 PM, Mark Asselstine
 wrote:
> The only user in meta-virtualization is python-bugsnag and there is no
> version dependency. This new version is however required by the latest
> openstack. Switched to using the "common" pypi.bbclass while we are at
> it.
>
> Signed-off-by: Mark Asselstine 
> ---
>  recipes-devtools/python/python-webob_1.6.0.bb | 23 ---
>  recipes-devtools/python/python-webob_1.7.3.bb | 18 ++
>  2 files changed, 18 insertions(+), 23 deletions(-)
>  delete mode 100644 recipes-devtools/python/python-webob_1.6.0.bb
>  create mode 100644 recipes-devtools/python/python-webob_1.7.3.bb
>
> diff --git a/recipes-devtools/python/python-webob_1.6.0.bb 
> b/recipes-devtools/python/python-webob_1.6.0.bb
> deleted file mode 100644
> index 71c74ff..000
> --- a/recipes-devtools/python/python-webob_1.6.0.bb
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -DESCRIPTION = "WSGI request and response object"
> -HOMEPAGE = "http://webob.org/;
> -SECTION = "devel/python"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = 
> "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
> -
> -PR = "r0"
> -SRCNAME = "WebOb"
> -
> -SRC_URI = 
> "http://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz;
> -
> -SRC_URI[md5sum] = "089d7fc6745f175737800237c7287802"
> -SRC_URI[sha256sum] = 
> "63d262d8f61b516321f786879c9277fa2209f7f57eb47b537eeecfea383d55b7"
> -
> -S = "${WORKDIR}/${SRCNAME}-${PV}"
> -
> -inherit setuptools
> -
> -RDEPENDS_${PN} += " \
> -   python-sphinx \
> -   python-nose \
> -   "
> -
> diff --git a/recipes-devtools/python/python-webob_1.7.3.bb 
> b/recipes-devtools/python/python-webob_1.7.3.bb
> new file mode 100644
> index 000..a2448be
> --- /dev/null
> +++ b/recipes-devtools/python/python-webob_1.7.3.bb
> @@ -0,0 +1,18 @@
> +DESCRIPTION = "WSGI request and response object"
> +HOMEPAGE = "http://webob.org/;
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = 
> "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
> +
> +PYPI_PACKAGE = "WebOb"
> +
> +SRC_URI[md5sum] = "350028baffc508e3d23c078118e35316"
> +SRC_URI[sha256sum] = 
> "e65ca14b9f5ae5b031988ffc93f8b7f305ddfcf17a4c774ae0db47bcb3b87283"
> +
> +inherit setuptools pypi
> +
> +RDEPENDS_${PN} += " \
> +   python-sphinx \
> +   python-nose \
> +   "
> +
> --
> 2.7.4
>
> --
> ___
> 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


[meta-virtualization] [v2 PATCH] python-webob: uprev to v1.7.3

2017-11-06 Thread Mark Asselstine
The only user in meta-virtualization is python-bugsnag and there is no
version dependency. This new version is however required by the latest
openstack. Switched to using the "common" pypi.bbclass while we are at
it.

Signed-off-by: Mark Asselstine 
---
 recipes-devtools/python/python-webob_1.6.0.bb | 23 ---
 recipes-devtools/python/python-webob_1.7.3.bb | 18 ++
 2 files changed, 18 insertions(+), 23 deletions(-)
 delete mode 100644 recipes-devtools/python/python-webob_1.6.0.bb
 create mode 100644 recipes-devtools/python/python-webob_1.7.3.bb

diff --git a/recipes-devtools/python/python-webob_1.6.0.bb 
b/recipes-devtools/python/python-webob_1.6.0.bb
deleted file mode 100644
index 71c74ff..000
--- a/recipes-devtools/python/python-webob_1.6.0.bb
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION = "WSGI request and response object"
-HOMEPAGE = "http://webob.org/;
-SECTION = "devel/python"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
-
-PR = "r0"
-SRCNAME = "WebOb"
-
-SRC_URI = 
"http://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz;
-
-SRC_URI[md5sum] = "089d7fc6745f175737800237c7287802"
-SRC_URI[sha256sum] = 
"63d262d8f61b516321f786879c9277fa2209f7f57eb47b537eeecfea383d55b7"
-
-S = "${WORKDIR}/${SRCNAME}-${PV}"
-
-inherit setuptools
-
-RDEPENDS_${PN} += " \
-   python-sphinx \
-   python-nose \
-   "
-
diff --git a/recipes-devtools/python/python-webob_1.7.3.bb 
b/recipes-devtools/python/python-webob_1.7.3.bb
new file mode 100644
index 000..a2448be
--- /dev/null
+++ b/recipes-devtools/python/python-webob_1.7.3.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "WSGI request and response object"
+HOMEPAGE = "http://webob.org/;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = 
"file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
+
+PYPI_PACKAGE = "WebOb"
+
+SRC_URI[md5sum] = "350028baffc508e3d23c078118e35316"
+SRC_URI[sha256sum] = 
"e65ca14b9f5ae5b031988ffc93f8b7f305ddfcf17a4c774ae0db47bcb3b87283"
+
+inherit setuptools pypi
+
+RDEPENDS_${PN} += " \
+   python-sphinx \
+   python-nose \
+   "
+
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [PATCH] xen: delete references to xenstored.socket and xenstored_ro.socket in xen.inc

2017-11-06 Thread Bruce Ashfield
Looks like it was just missed (it happens).

Also, there was no ack on the list by the folks that are actively
building and using Xen .. which means they are not hitting the
same error.

I'd suggest re-posting the patch and then we can see if there's
any new discussion on the list.

Bruce

On Mon, Nov 6, 2017 at 4:45 AM, Wei, Yunguo (Bryan)
 wrote:
> Hi Yan
>
> Do you know why this patch was not merged? I'm running into same problem.
>
> Regards,
> Yunguo
>
> -Original Message-
> From: meta-virtualization-boun...@yoctoproject.org 
> [mailto:meta-virtualization-boun...@yoctoproject.org] On Behalf Of Yan 
> Yankovskyi
> Sent: Wednesday, August 30, 2017 5:03 PM
> To: meta-virtualization@yoctoproject.org
> Subject: [meta-virtualization] [PATCH] xen: delete references to 
> xenstored.socket and xenstored_ro.socket in xen.inc
>
> These files were removed since the following patch 
> http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=976ce01e103fc03bb3336cdbc6c951a709e285fe
> and are absent in xen 4.8.0 and further, which leads to the following error 
> during the Xen build process:
> do_package: SYSTEMD_SERVICE_xen-xencommons value xenstored.socket does not 
> exist
>
> Signed-off-by: Yan Yankovskyi 
> ---
>  recipes-extended/xen/xen.inc | 4 
>  1 file changed, 4 deletions(-)
>
> diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc 
> index b5c5f03..717424b 100644
> --- a/recipes-extended/xen/xen.inc
> +++ b/recipes-extended/xen/xen.inc
> @@ -687,8 +687,6 @@ FILES_${PN}-xencommons += "\
>  ${systemd_unitdir}/system/xenconsoled.service \
>  ${systemd_unitdir}/system/xen-init-dom0.service \
>  ${systemd_unitdir}/system/xenstored.service \
> -${systemd_unitdir}/system/xenstored.socket \
> -${systemd_unitdir}/system/xenstored_ro.socket \
>  ${systemd_unitdir}/system/var-lib-xenstored.mount \
>  "
>
> @@ -728,8 +726,6 @@ SYSTEMD_SERVICE_${PN}-xencommons = " \
>  xenconsoled.service \
>  xen-init-dom0.service \
>  xenstored.service \
> -xenstored.socket \
> -xenstored_ro.socket \
>  "
>  SYSTEMD_SERVICE_${PN}-xendomains = "xendomains.service"
>
> --
> 1.9.1
>
> --
> ___
> 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"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [PATCH] xen: delete references to xenstored.socket and xenstored_ro.socket in xen.inc

2017-11-06 Thread Yan Yankovskyi
These files were removed since the followine patch
http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=976ce01e103fc03bb3336cdbc6c951a709e285fe
and are absent in xen 4.8.0 and further, which leads to
the following error during the Xen build process:
do_package: SYSTEMD_SERVICE_xen-xencommons value xenstored.socket does not
exist

Signed-off-by: Yan Yankovskyi 
---
 recipes-extended/xen/xen.inc | 4 
 1 file changed, 4 deletions(-)

diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
index cb314f8..4d56de9 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -739,8 +739,6 @@ FILES_${PN}-xencommons += "\
 ${systemd_unitdir}/system/xenconsoled.service \
 ${systemd_unitdir}/system/xen-init-dom0.service \
 ${systemd_unitdir}/system/xenstored.service \
-${systemd_unitdir}/system/xenstored.socket \
-${systemd_unitdir}/system/xenstored_ro.socket \
 ${systemd_unitdir}/system/var-lib-xenstored.mount \
 "

@@ -780,8 +778,6 @@ SYSTEMD_SERVICE_${PN}-xencommons = " \
 xenconsoled.service \
 xen-init-dom0.service \
 xenstored.service \
-xenstored.socket \
-xenstored_ro.socket \
 "
 SYSTEMD_SERVICE_${PN}-xendomains = "xendomains.service"

-- 
2.7.4

-- 
Best regards,

Yan Yankovskyi | Associate Software Engineer, Ukraine
GlobalLogic
M  +380.95.049.64.73 <+380950496473>   Skype huandesale

www.globallogic.com

http://www.globallogic.com/email_disclaimer.txt
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [meta-cloud-services][PATCH]python-httplib2: upgrade to 0.10.3

2017-11-06 Thread Bruce Ashfield
merged.

Bruce

On Sat, Nov 4, 2017 at 11:55 AM, zhengrq  wrote:
> 1) Upgrade python-httplib2 from 0.9.2 to 0.10.3.
>
> 2) Modify LIC_FILES_CHKSUM as home-page in PKG-INFO has been changed from 
> https://github.com/jcgregorio/httplib2 to https://github.com/httplib2/httplib2
>
> Signed-off-by: Zheng Ruoqin 
> ---
>  .../{python-httplib2_0.9.2.bb => python-httplib2_0.10.3.bb}   | 8 
> 
>  1 file changed, 4 insertions(+), 4 deletions(-)
>  rename meta-openstack/recipes-devtools/python/{python-httplib2_0.9.2.bb => 
> python-httplib2_0.10.3.bb} (52%)
>
> diff --git a/meta-openstack/recipes-devtools/python/python-httplib2_0.9.2.bb 
> b/meta-openstack/recipes-devtools/python/python-httplib2_0.10.3.bb
> similarity index 52%
> rename from meta-openstack/recipes-devtools/python/python-httplib2_0.9.2.bb
> rename to meta-openstack/recipes-devtools/python/python-httplib2_0.10.3.bb
> index 711411b..e2b27e7 100644
> --- a/meta-openstack/recipes-devtools/python/python-httplib2_0.9.2.bb
> +++ b/meta-openstack/recipes-devtools/python/python-httplib2_0.10.3.bb
> @@ -2,14 +2,14 @@ DESCRIPTION = "A comprehensive HTTP client library"
>  HOMEPAGE = "https://code.google.com/p/httplib2/;
>  SECTION = "devel/python"
>  LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=01abba5d32279f9ed6b3350390258547"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=41a98bc55b04b2a38acdb5c8ab0ae6b2"
>
>  SRCNAME = "httplib2"
>
> -SRC_URI = 
> "https://pypi.python.org/packages/ff/a9/5751cdf17a70ea89f6dde23ceb1705bfb638fd8cee00f845308bf8d26397/${SRCNAME}-${PV}.tar.gz;
> +SRC_URI = 
> "https://pypi.python.org/packages/e4/2e/a7e27d2c36076efeb8c0e519758968b20389adf57a9ce3af139891af2696/${SRCNAME}-${PV}.tar.gz;
>
> -SRC_URI[md5sum] = "bd1b1445b3b2dfa7276b09b1a07b7f0e"
> -SRC_URI[sha256sum] = 
> "c3aba1c9539711551f4d83e857b316b5134a1c4ddce98a875b7027be7dd6d988"
> +SRC_URI[md5sum] = "709c305e1b00e9c0af49ee816429569c"
> +SRC_URI[sha256sum] = 
> "e404d3b7bd86c1bc931906098e7c1305d6a3a6dcef141b8bb1059903abb3ceeb"
>
>  S = "${WORKDIR}/${SRCNAME}-${PV}"
>
> --
> 2.7.4
>
>
>
> --
> ___
> 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"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [meta-cloud-services][PATCH]python-heatclient: upgrade to 1.9.0

2017-11-06 Thread Bruce Ashfield
merged

Bruce

On Sat, Nov 4, 2017 at 11:52 AM, zhengrq  wrote:
> Upgrade python-heatclient from 0.6.0 to 1.9.0.
>
> Signed-off-by: Zheng Ruoqin 
> ---
>  meta-openstack/recipes-devtools/python/python-heatclient_git.bb | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb 
> b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
> index 26d86be..6653b37 100644
> --- a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb
> @@ -28,8 +28,8 @@ SRCNAME = "heatclient"
>
>  SRC_URI = "git://github.com/openstack/python-heatclient.git;branch=master"
>
> -PV = "0.6.0+git${SRCPV}"
> -SRCREV = "7cca8394b8ab2f4dccb982ae789b1b2985627115"
> +PV = "1.9.0+git${SRCPV}"
> +SRCREV = "b80166d848dd26718cfe0627bfec22774213616b"
>  S = "${WORKDIR}/git"
>
>  inherit setuptools
> --
> 2.7.4
>
>
>
> --
> ___
> 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"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [PATCH] kvmtool: fix compilation errors

2017-11-06 Thread Bruce Ashfield
merged.

Bruce

On Sun, Nov 5, 2017 at 7:15 AM, Dariusz Pelowski
 wrote:
> Fixed issues:
> Usage of makedev requires including  otherwise
> the error is raised due to multiple definition in .
>
> Add include path to kernel headers required to get kvmtool
> compilatioin successful.
>
> Signed-off-by: Dariusz Pelowski 
> ---
>  .../0001-kvmtool-9p-fixed-compilation-error.patch  | 27 
>  .../0002-kvmtool-add-EXTRA_CFLAGS-variable.patch   | 29 
> ++
>  recipes-extended/kvmtool/kvmtool.bb|  7 +-
>  3 files changed, 62 insertions(+), 1 deletion(-)
>  create mode 100644 
> recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
>  create mode 100644 
> recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
>
> diff --git 
> a/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
>  
> b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
> new file mode 100644
> index 000..63911fc
> --- /dev/null
> +++ 
> b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
> @@ -0,0 +1,27 @@
> +From bcd954ffdb9383030e02d356b51e09e4e2a7105a Mon Sep 17 00:00:00 2001
> +From: Dariusz Pelowski 
> +Date: Sun, 5 Nov 2017 12:39:52 +0100
> +Subject: [PATCH 1/2] kvmtool: 9p: fixed compilation error
> +
> +makedev is defined in sys/sysmacros.h
> +
> +Signed-off-by: Dariusz Pelowski 
> +---
> + virtio/9p.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/virtio/9p.c b/virtio/9p.c
> +index 6acbfdd..1dee2c2 100644
> +--- a/virtio/9p.c
>  b/virtio/9p.c
> +@@ -15,6 +15,7 @@
> + #include 
> + #include 
> + #include 
> ++#include 
> +
> + #include 
> + #include 
> +--
> +2.15.0
> +
> diff --git 
> a/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch 
> b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
> new file mode 100644
> index 000..262531c
> --- /dev/null
> +++ 
> b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
> @@ -0,0 +1,29 @@
> +From 977a4d41012d1814f5a5330cacc2e4944de387cc Mon Sep 17 00:00:00 2001
> +From: Dariusz Pelowski 
> +Date: Sun, 5 Nov 2017 12:39:21 +0100
> +Subject: [PATCH 2/2] kvmtool: add EXTRA_CFLAGS variable
> +
> +to avoid CFLAGS overriding introduce new EXTRA_CFLAGS variable
> +for setting via command argument
> +
> +Signed-off-by: Dariusz Pelowski 
> +---
> + Makefile | 2 ++
> + 1 file changed, 2 insertions(+)
> +
> +diff --git a/Makefile b/Makefile
> +index 64a0a16..bca1b26 100644
> +--- a/Makefile
>  b/Makefile
> +@@ -2,6 +2,8 @@
> + # Define WERROR=0 to disable -Werror.
> + #
> +
> ++CFLAGS += $(EXTRA_CFLAGS)
> ++
> + ifeq ($(strip $(V)),)
> +   E = @echo
> +   Q = @
> +--
> +2.15.0
> +
> diff --git a/recipes-extended/kvmtool/kvmtool.bb 
> b/recipes-extended/kvmtool/kvmtool.bb
> index b3bf202..33fec31 100644
> --- a/recipes-extended/kvmtool/kvmtool.bb
> +++ b/recipes-extended/kvmtool/kvmtool.bb
> @@ -5,10 +5,15 @@ LICENSE = "GPLv2"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
>
>  DEPENDS = "dtc libaio zlib"
> +do_configure[depends] += "virtual/kernel:do_shared_workdir"
> +
> +inherit kernel-arch
>
>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git \
> file://external-crosscompiler.patch \
> file://0001-Avoid-pointers-for-address-of-packed-members.patch \
> +   file://0001-kvmtool-9p-fixed-compilation-error.patch \
> +   file://0002-kvmtool-add-EXTRA_CFLAGS-variable.patch \
> "
>
>  SRCREV = "3fea89a924511f9f8fe05a892098fad77c1eca0d"
> @@ -16,7 +21,7 @@ PV = "3.18.0+git${SRCREV}"
>
>  S = "${WORKDIR}/git"
>
> -EXTRA_OEMAKE='ARCH="${TARGET_ARCH}" V=1'
> +EXTRA_OEMAKE='V=1 EXTRA_CFLAGS="-I${STAGING_KERNEL_DIR}/arch/${ARCH}/include 
> -I${STAGING_KERNEL_BUILDDIR}/arch/${ARCH}/include/generated/"'
>
>  do_install() {
>  install -d ${D}${bindir}
> --
> 2.15.0
>
> --
> ___
> 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"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [m-c-s][PATCH 0/4] - Cleanup builds for master

2017-11-06 Thread Mark Asselstine
Attempted an openstack build last week and found several issues. The
following 4 patches addresses the main ones allowing for
openstack-image-controller to be buildable again.

Mark
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [m-c-s][PATCH 1/4] meta-openstack/README: drop meta-ruby

2017-11-06 Thread Mark Asselstine
meta-openembedded commit 6E7C9636D276 [meta-ruby: remove this now
pretty empty layer] removed the meta-ruby layer from existence. We can
therefor drop this layer dependency. Builds continue to work as the
various ruby recipes exist, they have just been moved out of the
'language layer'.

Signed-off-by: Mark Asselstine 
---
 meta-openstack/README | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta-openstack/README b/meta-openstack/README
index 1b136fa..9d240e4 100644
--- a/meta-openstack/README
+++ b/meta-openstack/README
@@ -19,7 +19,6 @@ URI: git://git.openembedded.org/meta-openembedded
 revision: HEAD
 layers: meta-oe
meta-networking
-meta-ruby
 meta-filesystems
 meta-webserver
 meta-python
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [m-c-s][PATCH 3/4] python-nova: sudoers.d match dir ownership/perms

2017-11-06 Thread Mark Asselstine
The sudoers.d directory is for all intents and purposes created and
owned by the sudo package. We must therefor ensure we match the
ownership and perms which sudo used to install this
directory. Currently we don't so this results in an error when
assembling the filesystem:

  file /etc/sudoers.d conflicts between attempted installs of \
   nova-common-12.0.0+git0+6df6ad3ff3-r0.core2_64 and \
   sudo-1.8.20p2-r0.core2_64

Signed-off-by: Mark Asselstine 
---
 meta-openstack/recipes-devtools/python/python-nova_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python-nova_git.bb 
b/meta-openstack/recipes-devtools/python/python-nova_git.bb
index c1f4de1..f3a6b86 100644
--- a/meta-openstack/recipes-devtools/python/python-nova_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-nova_git.bb
@@ -88,7 +88,7 @@ do_install_append() {
 chown root:root $NOVA_CONF_DIR/rootwrap.conf
 
 # Set up the rootwrap sudoers for nova
-install -d ${D}${sysconfdir}/sudoers.d
+install -d -m 750 ${D}${sysconfdir}/sudoers.d
 touch ${D}${sysconfdir}/sudoers.d/nova-rootwrap
 chmod 0440 ${D}${sysconfdir}/sudoers.d/nova-rootwrap
 chown root:root ${D}${sysconfdir}/sudoers.d/nova-rootwrap
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [m-c-s][PATCH 2/4] rabbitmq-server: add missing depends on coreutils-native

2017-11-06 Thread Mark Asselstine
With the move to RSS this missing dependency became a build issue,
previously hidden by some other package fullfilling the dependency
before this package was built. With RSS we need to ensure all first
level dependencies are listed to avoid build failures. The build
requires the 'fold' command which is provided by coreutils-native.

Signed-off-by: Mark Asselstine 
---
 .../recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb| 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb 
b/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
index 8e4be5f..7f003fd 100644
--- a/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
+++ b/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
@@ -3,7 +3,6 @@ HOMEPAGE = "http://www.rabbitmq.com/;
 LICENSE = "MPL-1.1"
 LIC_FILES_CHKSUM = 
"file://LICENSE-MPL-RabbitMQ;md5=b651d0a6feaaf2bf5eb9d36b2495c510"
 SECTION = "network"
-DEPENDS = "erlang-native libxslt python-simplejson zip-native unzip-native 
libxslt-native"
 PR = "r2"
 
 SRC_URI = 
"http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/${PN}-${PV}.tar.gz \
@@ -17,6 +16,16 @@ SRC_URI = 
"http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/${PN}-${PV}.t
 SRC_URI[md5sum] = "09d1af64c005bc680d6790b90655d021"
 SRC_URI[sha256sum] = 
"a930f92b362df2f292ec5f0281aa2011eb0c668faf6e24c4653a9fc53ec43b9f"
 
+DEPENDS = " \
+erlang-native \
+libxslt \
+python-simplejson \
+zip-native \
+unzip-native \
+libxslt-native \
+coreutils-native\
+"
+
 RDEPENDS_${PN} = "erlang erlang-modules"
 
 do_compile() {
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [m-c-s][PATCH 4/4] python-keystone: remove use of the 'users' group

2017-11-06 Thread Mark Asselstine
The use of the 'users' group was associated with the addition of
apache vhost support. See commit bf51fa4f053a [python-keystone: Add
apache vhost server.]. The directories and files needed to be readable
by the same user running apache. Since the use of RSS, definiing a
common group used by multiple recipes (apache and keystone in this
case) becomes more involved and we need to use FILESYSTEM_PERMS_TABLES
to accomplish this. Remove the use of the 'users' group until we can
evaluate if this is still required and if so we have a proper
FILESYSTEM_PERMS_TABLES solution in place. This will solve build
failures for 'unknown group "users"' in the interim.

Signed-off-by: Mark Asselstine 
---
 meta-openstack/recipes-devtools/python/python-keystone_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb 
b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index 49aa530..6dfdc93 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
@@ -74,8 +74,8 @@ do_install_append() {
 install -m 755 -d ${APACHE_CONF_DIR}
 
 install -d ${D}${localstatedir}/log/${SRCNAME}
-install -g users -m 755 -d ${KEYSTONE_CGI_DIR}
-install -g users -m 755 -d ${KEYSTONE_PY_DIR}
+install -m 755 -d ${KEYSTONE_CGI_DIR}
+install -m 755 -d ${KEYSTONE_PY_DIR}
 
 # Apache needs to read the keystone.conf
 install -m 644 ${WORKDIR}/keystone.conf ${KEYSTONE_CONF_DIR}/
-- 
2.7.4

-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization