[meta-virtualization] [PATCH] openvswitch: uprev to latest stable update - v2.1.3

2014-12-02 Thread Mark Asselstine
v2.1.3 is listed upstream as "contains only bug fixes for the 2.1.2 release". The only update to the recipe is updated checksums. Signed-off-by: Mark Asselstine --- Bruce, I notice that upstream has released v2.3.0 as well. I will look to creating a recipe for that shortly so folks c

[meta-virtualization] [PATCH] README: add missing meta-python dependency

2015-03-25 Thread Mark Asselstine
meta-networking requires meta-python so reflect this in the layer README. Signed-off-by: Mark Asselstine --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 1531ac0..ae5406d 100644 --- a/README +++ b/README @@ -19,6 +19,7 @@ revision: HEAD layers: meta-oe

[meta-virtualization] [m-c-s][PATCH 02/11] meta-openstack: add wildcard to libvirt bbappend

2015-08-05 Thread Mark Asselstine
it will be sent for meta-virtualizaiton to add this. Signed-off-by: Mark Asselstine --- .../recipes-extended/libvirt/libvirt_1.%.bbappend | 13 + .../recipes-extended/libvirt/libvirt_1.2.12.bbappend| 13 - 2 files changed, 13 insertions(+), 13 deletions(

[meta-virtualization] [m-c-s][PATCH 00/11] fixup danglers

2015-08-05 Thread Mark Asselstine
The primary goal of this patch series was to address the numerous dangling bbappends that exist on the the 'master' branch (I suspect the other branches have danglers too but master is what I have been building lately and my goal is to get these on to master where they can then be propagated to any

[meta-virtualization] [m-c-s][PATCH 05/11] meta-openstack: fix dangling bbappends by adding wildcard

2015-08-05 Thread Mark Asselstine
'dangling' warnings while ensuring the changes made in this repo are properly applied to the associated recipes. For the most part the files remain unchanged, in the case of postgresql the 'brokensep' has been removed as there exists no more S != B issues in the base recipe.

[meta-virtualization] [m-c-s][PATCH 09/11] python-oslo.serialization: add pbr to DEPEND

2015-08-05 Thread Mark Asselstine
Per the package's setup.py we need to depend on python-pbr. Failing to do so results in a build failure: Could not find suitable distribution for Requirement.parse('pbr') Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/python/python-oslo.serialization_git.b

[meta-virtualization] [m-c-s][PATCH 04/11] meta-openstack: add wildcard to lighttpd bbappend

2015-08-05 Thread Mark Asselstine
bbappend for now, without modifying its content. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-extended/lighttpd/lighttpd_1.4.%.bbappend | 3 +++ meta-openstack/recipes-extended/lighttpd/lighttpd_1.4.35.bbappend | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode

[meta-virtualization] [m-c-s][PATCH 03/11] meta-openstack: add wildcard to qemu bbappend

2015-08-05 Thread Mark Asselstine
ndalone pkgconfig so drop this. Pkgconfig 'cap-ng' has been renamed to 'libcap-ng', so follow suit. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend | 5 + meta-openstack/recipes-devtools/qemu/qemu_2.2.0.bbappend | 5 - 2 file

[meta-virtualization] [m-c-s][PATCH 01/11] meta-openstack: remove unneeded dangling bbappends

2015-08-05 Thread Mark Asselstine
eason to continue to 'patch' this config setting. For recipes which used brokensep in order to work around S != B build issues the fact that the bbappend was dangling and the recipe was building successfully is enough to demonstrate that the bbappend was no longer needed. Signed-off-by:

[meta-virtualization] [m-c-s][PATCH 07/11] python-psycopg2: reinstate patch to avoid pg_config

2015-08-05 Thread Mark Asselstine
-psycopg2 and get the build working again. Signed-off-by: Mark Asselstine --- .../python/python-psycopg2/remove-pg-config.patch | 63 ++ .../python/python-psycopg2_2.6.1.bb| 5 ++ 2 files changed, 47 insertions(+), 21 deletions(-) diff --git a/meta-openstack

[meta-virtualization] [m-c-s][PATCH 06/11] python-testtools: fix build error

2015-08-05 Thread Mark Asselstine
Ran in to a build error: distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr') ERROR: python setup.py build execution failed. Fix by DEPENDing on python-pbr. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/pyt

[meta-virtualization] [m-c-s][PATCH 10/11] python-mox3: uprev to version 0.9.0

2015-08-05 Thread Mark Asselstine
Because we updated the version of python-pbr we need to uprev python-mox3 as the version that was present only works with python-pbr versions <1.0. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-mox3_0.7.0.bb | 22 -- .../recipes-devtools/pyt

[meta-virtualization] [m-c-s][PATCH 08/11] python-pbr: uprev to 1.4.0

2015-08-05 Thread Mark Asselstine
The uprev to to python-testtools references VersionInfo semantic_version which wasn't introduced until pbr version 1.3.0. So we are uprev'ing pbr to a more suitable and recent version. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-pbr_0.10.8

[meta-virtualization] [m-c-s][PATCH 11/11] horizon: add missing dependencies to address startup errors

2015-08-05 Thread Mark Asselstine
move on to fixing the remaining runtime issues. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-horizon_git.bb | 4 +++- .../python-xstatic-angular-lrdragndrop_1.0.2.2.bb | 22 ++ .../python/python-xstatic-magic-search_0.2.5.1.bb | 21

Re: [meta-virtualization] [m-c-s][PATCH 09/11] python-oslo.serialization: add pbr to DEPEND

2015-08-06 Thread Mark Asselstine
On August 5, 2015 21:14:36 Bruce Ashfield wrote: > On Wed, Aug 5, 2015 at 4:29 PM, Mark Asselstine > > wrote: > > Per the package's setup.py we need to depend on python-pbr. Failing to > > > > do so results in a build failure: > > Could not find suita

Re: [meta-virtualization] [m-c-s][PATCH 06/11] python-testtools: fix build error

2015-08-06 Thread Mark Asselstine
On August 6, 2015 01:58:35 Li, Xin wrote: > Hi, > > >-Original Message- > >From: meta-virtualization-boun...@yoctoproject.org > >[mailto:meta-virtualization-boun...@yoctoproject.org] On Behalf Of Bruce > >Ashfield Sent: Thursday, August 06, 2015 9:12 AM >

Re: [meta-virtualization] [m-c-s][PATCH 06/11] python-testtools: fix build error

2015-08-06 Thread Mark Asselstine
On August 5, 2015 21:11:35 Bruce Ashfield wrote: > On Wed, Aug 5, 2015 at 4:29 PM, Mark Asselstine > > wrote: > > Ran in to a build error: > > distutils.errors.DistutilsError: Could not find suitable distribution for > > Requirement.parse('pbr') ERROR: p

Re: [meta-virtualization] [m-c-s][PATCH 02/11] meta-openstack: add wildcard to libvirt bbappend

2015-08-06 Thread Mark Asselstine
On August 5, 2015 16:29:43 Mark Asselstine wrote: > This is currently a dangling bbappend as libvirt is now version > 1.2.15. The content of the file appears to still be relevant so simply > renaming this bbappend to apply to a range of releases. This will > throw a warning as

Re: [meta-virtualization] [m-c-s][PATCH 06/11] python-testtools: fix build error

2015-08-06 Thread Mark Asselstine
On August 6, 2015 09:27:02 Bruce Ashfield wrote: > On Thu, Aug 6, 2015 at 9:01 AM, Mark Asselstine > > wrote: > > On August 5, 2015 21:11:35 Bruce Ashfield wrote: > >> On Wed, Aug 5, 2015 at 4:29 PM, Mark Asselstine > >> > >&

[meta-virtualization] [m-c-s][PATCH] libvirt: remove sanlock from PACKAGECONFIG

2015-08-06 Thread Mark Asselstine
There exists no recipe for sanlock and the libvirt recipe doesn't have a sanlock PACKAGECONFIG so removing sanlock from the set of PACKAGECONFIGs. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-extended/libvirt/libvirt_1.%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 del

Re: [meta-virtualization] [meta-cloud-services][PATCH] ruby.bbclass: Error fix

2015-08-07 Thread Mark Asselstine
I had intentions of divesting meta-cloud-services of much of the ruby bits and as such have already got this class merged to meta-oe/meta-ruby. So be sure to send this fix there too. Thanks, Mark On Fri, Aug 7, 2015 at 5:39 AM, Li xin wrote: > When build the recipes which inherit ruby,ERROR will

[meta-virtualization] [m-c-s][PATCH 1/3] python-nova: add missing dependency on sqlparse

2015-08-12 Thread Mark Asselstine
Attempting to use nova-manage, for example to perform 'service list', will result in a python trace indicating that the sqlparse module was not found. Add the python-sqlparse recipe and include it in the RDEPENDS list for nova. Signed-off-by: Mark Asselstine --- .../recipes-devto

[meta-virtualization] [m-c-s][PATCH 2/3] glance: add new dependencies

2015-08-12 Thread Mark Asselstine
Attempting to run glance-api several python traces are encountered. The following packages were identified in the traces and as such are added as dependencies which allows glance-api to launch successfully. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-glance_git.bb

[meta-virtualization] [m-c-s][PATCH 00/3] Get keystone, glance and nova running

2015-08-12 Thread Mark Asselstine
I am continuing work to get 'master' functional again. That is we should be able to perform the steps in README.setup to prep and spin up and instance of the cirros image. With the commits in this series I have managed to restore some functionality to keystone, glance and nova. I am now able to ex

[meta-virtualization] [m-c-s][PATCH 3/3] keystone: the 'sql' section is deprecated

2015-08-12 Thread Mark Asselstine
g to the database due to a bad configuration. So taking the WARNING to heed I swapped the 'sql' section header for 'database' and now the database is properly created and keystone commands can be successfully executed. Signed-off-by: Mark Asselstine --- meta-openstack/recip

[meta-virtualization] [m-c-s][PATCH 3/5] Add the ruby-shadow recipe for the puppet tool

2015-08-19 Thread Mark Asselstine
=== Debug: /User[username]: Provider useradd does not support features manages_passwords; not managing attribute password Signed-off-by: Guojian Zhou Signed-off-by: Mark Asselstine --- .../recipes-support/puppet/puppet_3.7.3.bb | 1 + .../recipes-support/ruby-shado

[meta-virtualization] [m-c-s][PATCH 4/5] puppet: move to base layer

2015-08-19 Thread Mark Asselstine
g burdened by bbappends and configs found in meta-openstack. Signed-off-by: Mark Asselstine --- .../facter/facter/add_facter_gemspec.patch| 0 .../recipes-support => recipes-support}/facter/facter_2.3.0.bb| 0 .../hiera/hiera/add_hiera_

[meta-virtualization] [m-c-s][PATCH 5/5] puppet: fixup QA warning

2015-08-19 Thread Mark Asselstine
no providers found in its RDEPENDS [file-rdeps] Adding 'bash' as an RDEPENDS fixes this. Signed-off-by: Mark Asselstine --- recipes-support/puppet/puppet_3.7.3.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-support/puppet/puppet_3.7.3.bb b/recipes-support/puppet/puppe

[meta-virtualization] [m-c-s][PATCH 1/5] Fix the puppet run failure issue

2015-08-19 Thread Mark Asselstine
puppet-3.7.3/bin/puppet:7:in `' from /usr/bin/puppet:23:in `load' from /usr/bin/puppet:23:in `' Signed-off-by: Guojian Zhou Signed-off-by: Mark Asselstine --- meta-openstack/recipes-support/puppet/puppet_3.7.3.bb | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta-openst

[meta-virtualization] [m-c-s][PATCH 2/5] Add the puppet.conf for the puppet agent

2015-08-19 Thread Mark Asselstine
From: Guojian Zhou The puppet agent requires the /etc/puppet/puppet.conf. Signed-off-by: Guojian Zhou Signed-off-by: Mark Asselstine --- meta-openstack/recipes-support/puppet/puppet/puppet.conf | 9 + meta-openstack/recipes-support/puppet/puppet_3.7.3.bb| 2 ++ 2 files changed

[meta-virtualization] [m-c-s][PATCH] puppet: back-port some patches to fix issues with Ruby >= 2.0.0

2015-08-20 Thread Mark Asselstine
which people host to stabalize older versions of puppet). With these patches puppet can now execute commands like 'help' and 'apply' without falling over. Signed-off-by: Mark Asselstine --- ...uplicate-key-which-ruby-2.2-complains-abo.patch | 30 ++ ...aint

[meta-virtualization] [PATCH] libvirt: correct QA warning for missing build dep

2015-09-03 Thread Mark Asselstine
Fixes the following QA warning: WARNING: QA Issue: libvirt-ptest rdepends on libtasn1, but it isn't a build dependency? [build-deps] Signed-off-by: Mark Asselstine --- recipes-extended/libvirt/libvirt_1.2.17.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/re

[meta-virtualization] [PATCH] libvirt: DEPEND on libxslt-native to fix build issue

2015-09-03 Thread Mark Asselstine
-native sysroot, resulting potential host contamination or in a potential build error: cat: acl.html.tmp: No such file or directory Makefile:2215: recipe for target 'acl.html' failed (xsltproc is used in the generation of acl.html.tmp) Signed-off-by: Mark Asselstine --- recipes-extend

[meta-virtualization] [PATCH] bbappend: switch to use a wildcard beyond major version

2015-09-03 Thread Mark Asselstine
rting' via wildcard. Signed-off-by: Mark Asselstine --- recipes-core/base-files/base-files_3.%.bbappend | 5 + recipes-core/base-files/base-files_3.0.14.bbappend | 5 - recipes-core/initscripts/initscripts_1.%.bbappend | 16 recipes-core/i

[meta-virtualization] [PATCH] dnsmasq: allow for multiple instances (per libvirt)

2015-09-10 Thread Mark Asselstine
re not be bound to new dnsmasq instances. Removing dnsmasq_exclude_virbr.conf which was a previous (partial) attempt that was made to resolve this issue. Signed-off-by: Mark Asselstine --- recipes-extended/libvirt/libvirt/dnsmasq_exclude_virbr.conf | 1 - recipes-support/dnsmasq/dnsmasq_2.%.bbappe

[meta-virtualization] [PATCH] libvirt: enable systemd support

2015-09-10 Thread Mark Asselstine
n building for sysvinit. Both sysvinit and systemd packages will be libvirt-libvirtd, the bbclasses ensure that only the files for one init system will exist in the package, so this 'overloading' is acceptable. Signed-off-by: Mark Asselstine --- ...vert-build-a

[meta-virtualization] [PATCH] libvirt: get libvirt-guests systemd service running

2015-09-11 Thread Mark Asselstine
-guests.sh script. Signed-off-by: Mark Asselstine --- recipes-extended/libvirt/libvirt_1.2.17.bb | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/recipes-extended/libvirt/libvirt_1.2.17.bb b/recipes-extended/libvirt/libvirt_1.2.17.bb index 28a22bb..6f269f9 100644 --- a

[meta-virtualization] [PATCH] libvirt: pass correct args when start libvirtd

2015-09-11 Thread Mark Asselstine
-by: Mark Asselstine --- recipes-extended/libvirt/libvirt_1.2.17.bb | 5 + 1 file changed, 5 insertions(+) diff --git a/recipes-extended/libvirt/libvirt_1.2.17.bb b/recipes-extended/libvirt/libvirt_1.2.17.bb index 6f269f9..06cb51b 100644 --- a/recipes-extended/libvirt/libvirt_1.2.17.bb +++ b

[meta-virtualization] [meta-cloud-services][PATCH 1/3] dnsmasq: move bbappend to use a wilcard

2015-09-15 Thread Mark Asselstine
removing these parts. Signed-off-by: Mark Asselstine --- .../dnsmasq/{dnsmasq_2.72.bbappend => dnsmasq_2.%.bbappend} | 5 - 1 file changed, 5 deletions(-) rename meta-openstack/recipes-support/dnsmasq/{dnsmasq_2.72.bbappend => dnsmasq_2.%.bbappend} (51%) diff --git a/meta-ope

[meta-virtualization] [meta-cloud-services][PATCH 2/3] housekeeping: switch more bbappends to use wildcards

2015-09-15 Thread Mark Asselstine
In order to avoid future danglers move more bbappends to use wildcards. This also helps when folks are using meta-cloud-services with other branches then master. These are trivial in that they are not being modified and have been audited and shown to be still applicable. Signed-off-by: Mark

[meta-virtualization] [meta-cloud-services][PATCH 3/3] python-dateutil: move bbappend to the base layer

2015-09-15 Thread Mark Asselstine
This bbappend is not specific to openstack, any meta-cloud-services 'sub-layer' will require this change so moving it to the base layer to make it apply even with non-openstack builds. Signed-off-by: Mark Asselstine --- .../python/python-dateutil_1.

[meta-virtualization] [meta-cloud-services][PATCH] ruby.bbclass: move to base layer

2015-09-15 Thread Mark Asselstine
layer. At some point I think we still want to remove ruby.bbclass from meta-cloud-services completely and use meta-ruby, but we will do that at another time. Signed-off-by: Mark Asselstine --- classes/ruby.bbclass| 131 meta-opensta

[meta-virtualization] [meta-cloud-services][PATCH] python-oslo.i18n: Fix build error, missing pbr

2015-09-15 Thread Mark Asselstine
Depending on build order this package may fail to build and complain that no suitable pbr can be found. Add a dependency on pbr. This matches the dependencies called out by the package's setup.py. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/python/python-oslo.i18n_

[meta-virtualization] [PATCH 1/2] libvirt: upgrade 1.2.17 -> 1.2.19

2015-09-16 Thread Mark Asselstine
From: Roy Li The release notes is http://libvirt.org/news.html Signed-off-by: Roy Li Signed-off-by: Mark Asselstine --- Roys' original patch with context fixed up to apply against the latest. (non-thunking). .../{libvirt-1.2.17 => libvirt-1.2.19}/0001-to-fix-build-error.patch | 0

[meta-virtualization] [PATCH 2/2] libvirt: Properly shutdown libvirtd.service

2015-09-16 Thread Mark Asselstine
topped. If we ever enable sd_notify support in libvirt we can revert back to using the 'notify' systemd type. Without this change libvirtd continue to run even if the stop command is issued, subsequent attempts to start the service will fail. Signed-off-by: Mark Asselstine --- reci

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH] python packages: add build dependency on python-pbr

2015-09-21 Thread Mark Asselstine
On Mon, Sep 21, 2015 at 10:57 AM, Josep Puigdemont wrote: > Some packages fail to build because their dependency on > python-pbr during built time is not properly stated in the > recipe. Sometimes the build succeeds anyway because the > python-pbr package has already been built previously. To > av

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH] python-glancestore: requires python module enum

2015-09-24 Thread Mark Asselstine
On Wed, Sep 23, 2015 at 12:54 PM, Josep Puigdemont wrote: > I for got to mention that the patch should be applicable to > master too, but I have not run any tests there. If you are working mostly in Kilo I am happy to try to stay on top of commits you send against that branch and test them out on

[meta-virtualization] [meta-cloud-services] dhcp: bbappend to use PN

2015-10-13 Thread Mark Asselstine
). Signed-off-by: Vu Tran Signed-off-by: Mark Asselstine --- recipes-connectivity/dhcp/dhcp_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-connectivity/dhcp/dhcp_%.bbappend b/recipes-connectivity/dhcp/dhcp_%.bbappend index a23f7c9..7466056 100644 --- a

[meta-virtualization] [meta-cloud-services][PATCH 2/2] horizon: add an upstream patch needed for pyscss 1.3.4

2015-10-29 Thread Mark Asselstine
Without this patch we will get an error: Don't know how to merge conflicting combinators: and .btn'> when attempting to connect to the horizon dashboard. Signed-off-by: Mark Asselstine --- .../Compatibility-fix-for-pyscss-1.3.4.patch | 68 ++ .../rec

[meta-virtualization] [meta-overc][PATCH] local.conf.sample: set DISTRO

2015-10-29 Thread Mark Asselstine
e expected 'pod'. Signed-off-by: Mark Asselstine --- meta-pod/conf/local.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-pod/conf/local.conf.sample b/meta-pod/conf/local.conf.sample index a5f9bfd..dbab304 100644 --- a/meta-pod/conf/local.conf.sample

[meta-virtualization] [meta-cloud-services][PATCH 1/2] django-pyscss: uprev to version 2.0.2

2015-10-29 Thread Mark Asselstine
this error, per bug: https://github.com/fusionbox/django-pyscss/issues/34. Signed-off-by: Mark Asselstine --- .../{python-django-pyscss_2.0.1.bb => python-django-pyscss_2.0.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-openstack/recipes-devtools/python/{pytho

Re: [meta-virtualization] [meta-overc][PATCH] local.conf.sample: set DISTRO

2015-10-29 Thread Mark Asselstine
Please ignore this one, accidentally got picked up in my send-email expression. Mark On Thu, Oct 29, 2015 at 10:54 PM, Mark Asselstine wrote: > My builds kept on producing images with sysvinit as the init system > despite being told that systemd was the expected default throughout > m

[meta-virtualization] [meta-cloud-services][PATCH] keystone: add missing functools32 module

2015-10-30 Thread Mark Asselstine
Keystone fails to install due to functools32 missing. Add a new recipe for functools32 and include the dependency in keystone. Signed-off-by: Mark Asselstine --- .../python/python-functools32_3.2.3-2.bb | 29 ++ .../recipes-devtools/python/python-keystone_git.bb

[meta-virtualization] [meta-cloud-services][PATCH 2/6] init: no need to close (non-existing) ps file descriptors

2015-11-11 Thread Mark Asselstine
Attempting to get the status of various daemons which are part of the compute image results in an error: ps: write error: Bad file descriptor Switch to using the more standard io redirection techniques to avoid this error. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools

[meta-virtualization] [meta-cloud-services][PATCH 4/6] linux-yocto: carry forward kernel configuration

2015-11-11 Thread Mark Asselstine
Yocto master uses linux-yocto 4.1 so we need to create the proper bbappend to ensure we are setting up the kernel correctly. We reuse the bbappend for the previous kernel version but enable CONFIG_IP_NF_NAT to allow nova to define the desired iptables. Signed-off-by: Mark Asselstine --- meta

[meta-virtualization] [meta-cloud-services][PATCH 1/6] nova: add needed python modules

2015-11-11 Thread Mark Asselstine
Launching nova-compute we get errors regarding missing modules for 'netifaces' and 'retrying'. Add the missing modules to nova's RDEPENDS. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/python/python-nova_git.bb | 2 ++ 1 file changed, 2 inserti

[meta-virtualization] [meta-cloud-services][PATCH 5/6] openvswitch: add as RRECOMMENDS for compute and controller

2015-11-11 Thread Mark Asselstine
We use openvswitch throughout the openstack images so we need to make sure the kernel module is available by adding it to the list of RRECOMMENDS packages. Signed-off-by: Mark Asselstine --- .../recipes-extended/packagegroups/packagegroup-cloud-compute.bb | 1 + .../recipes-extended

[meta-virtualization] [meta-cloud-services][PATCH 3/6] openstackclient: add missing python modules

2015-11-11 Thread Mark Asselstine
Attempting to run 'openstack' commands (such as 'openstack user list') will fail with errors regarding missing python modules. Add the missing module recipes and add the dependencies to openstackclient. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-

[meta-virtualization] [meta-cloud-services][PATCH 6/6] functools32: use git instead of release tarballs

2015-11-11 Thread Mark Asselstine
Since we are often moving packages forward on the master branch it is simpler to use git instead of tarballs. Signed-off-by: Mark Asselstine --- .../{python-functools32_3.2.3-2.bb => python-functools32_git.bb} | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) rename meta-openst

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH 00/13] cherry picks from master

2015-12-03 Thread Mark Asselstine
On Wed, Dec 2, 2015 at 11:16 AM, Josep Puigdemont wrote: > On Tue, Dec 01, 2015 at 09:37:08AM -0500, Bruce Ashfield wrote: >> >> >> On Thu, Nov 26, 2015 at 10:47 AM, Josep Puigdemont >> >> wrote: >> >> Hi, >> this is a collection of cherry-picks from master to fido-kilo (commit >> short

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH 42/42] Remove argparse from requirements.txt of some modules

2015-12-08 Thread Mark Asselstine
On Tue, Dec 8, 2015 at 12:33 PM, Josep Puigdemont wrote: > argparse is required by some of the CLI applications of openstack. The > module is provided by python 2.7, however python-distribute (used in fido), > is not able to find it: > > Python 2.7.9 (default, Oct 27 2015, 18:12:55) > [GCC 4.9.2]

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH 41/42] packagegroup-cloud-extras: include xterm only if x11 in DISTRO_FEATURES

2015-12-08 Thread Mark Asselstine
On Tue, Dec 8, 2015 at 12:33 PM, Josep Puigdemont wrote: > Signed-off-by: Josep Puigdemont > --- The reason we included xterm is to have the 'resize' command available. Admittedly this is a big hammer to solve a small problem but an annoying problem. Was xterm causing issues? Mark > .../recip

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH 42/42] Remove argparse from requirements.txt of some modules

2015-12-09 Thread Mark Asselstine
On December 9, 2015 01:42:45 PM Josep Puigdemont wrote: > On Wed, Dec 09, 2015 at 08:49:42AM +0100, Josep Puigdemont wrote: > > On Tue, Dec 08, 2015 at 08:24:41PM -0500, Mark Asselstine wrote: > > > On Tue, Dec 8, 2015 at 12:33 PM, Josep Puigdemont > > > > > >

Re: [meta-virtualization] [meta-cloud-services][fido-kilo][PATCH 41/42] packagegroup-cloud-extras: include xterm only if x11 in DISTRO_FEATURES

2015-12-09 Thread Mark Asselstine
On December 9, 2015 08:44:14 AM Josep Puigdemont wrote: > On Tue, Dec 08, 2015 at 08:31:53PM -0500, Mark Asselstine wrote: > > On Tue, Dec 8, 2015 at 12:33 PM, Josep Puigdemont > > > > wrote: > > > Signed-off-by: Josep Puigdemont > > > --- > > &g

[meta-virtualization] [meta-cloud-services][PATCH] python-django: uprev to 1.8.6

2015-12-09 Thread Mark Asselstine
Move to use git to ease future uprevs. Note that a recipe for django exists in meta-python and since it is a versioned recipe instead of a "_git" recipe it seems to be picked up instead of our recipe, so we need to add a PREFERRED_VERSION to ensure our recipe is used. Signed-of

Re: [meta-virtualization] [meta-cloud-services][PATCH] python-django: uprev to 1.8.6

2015-12-09 Thread Mark Asselstine
uld only happen accidentally. Regards, Mark On Wed, Dec 9, 2015 at 11:44 AM, Mark Asselstine wrote: > Move to use git to ease future uprevs. Note that a recipe for django > exists in meta-python and since it is a versioned recipe instead of a > "_git" recipe it seems to be picked up inst

Re: [meta-virtualization] Help (python-jsonschema do_compile Failed)

2015-12-10 Thread Mark Asselstine
On Thu, Dec 3, 2015 at 12:50 AM, Li, Xin wrote: > Hi,all > > > > When I bitbake python-jsonschema,the error is occurred in the step of > do_compile as following: > > > > -- > > DEBUG: Executing shell function do_compile > > Download error on https://pypi.python.org/simp

[meta-virtualization] [PATCH 1/3] openvswitch: drop version 1.10.0 and 2.1.3

2015-12-11 Thread Mark Asselstine
drop them. Signed-off-by: Mark Asselstine --- .../openvswitch/openvswitch_1.10.0.bb | 16 .../openvswitch/openvswitch_2.1.3.bb | 29 -- 2 files changed, 45 deletions(-) delete mode 100644 recipes-networking/openvswitch/openvswitch_1.10.0

[meta-virtualization] [PATCH 2/3] openvswitch: rename openvswitch-controller

2015-12-11 Thread Mark Asselstine
package to reflect the upstream name change and apply this name change throughout. We also drop the RDEPENDS as the upstream comments also indicate that this package is not needed for a normal openvswitch deployment. Signed-off-by: Mark Asselstine --- .../openvswitch/files/openvswitch-controller

[meta-virtualization] [PATCH 3/3] openvswitch: enable systemd support

2015-12-11 Thread Mark Asselstine
openvswitch-testcontroller. Following the lead of upstream this is not something that should be run by the init system. Signed-off-by: Mark Asselstine --- recipes-networking/openvswitch/openvswitch.inc | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/recipes

Re: [meta-virtualization] Help (python-jsonschema do_compile Failed)

2015-12-14 Thread Mark Asselstine
On Sun, Dec 13, 2015 at 8:46 PM, Li, Xin wrote: > Hi, Mark and all, > > Thanks a lot for your help. > >>> When I bitbake python-jsonschema,the error is occurred in the step of >>> do_compile as following: >>> -- >>> >>> DEBUG: Executing shell function do_compile >>> >>>

Re: [meta-virtualization] [PATCH 4/4] xen: move PR variable from include file

2015-12-14 Thread Mark Asselstine
On Dec 11, 2015 4:59 PM, "Doug Goldstein" wrote: > > It appears inapporpriate to have this variable in the include file and > should live within the bitbake files themselves. Actually you should drop this completely, the PR server will take care of this for you. Mark > > Signed-off-by: Doug Gol

Re: [meta-virtualization] [m-c-s][PATCH 00/21] Error fix for recipes depend on python-pbr

2016-01-05 Thread Mark Asselstine
On Mon, Jan 4, 2016 at 9:00 PM, Li Xin 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/pb

[meta-virtualization] [m-c-s][PATCH 2/2] puppet: add new recipe for puppet-vswitch module

2016-01-09 Thread Mark Asselstine
There are several puppet modules that provide functionality to interact with vSwitches, such as OpenVSwitch. This one is one of the more popular and is an officially sanctioned puppet module so using this one for the time being. Signed-off-by: Mark Asselstine --- .../puppet-vswitch/files/Add

[meta-virtualization] [m-c-s][PATCH 1/2] puppet: add puppetlabs stdlib module

2016-01-09 Thread Mark Asselstine
This module is used by many puppet modules so will be useful to have to extend our puppet capabilities. Additionally it offers some useful functionality such as the ability to append to a file. Signed-off-by: Mark Asselstine --- .../puppetlabs-stdlib/files/Add-gemspec.patch | 35

[meta-virtualization] [m-c-s][PATCH 2/2] python-oslo.service: add new recipe to fulfil dependencies

2016-01-09 Thread Mark Asselstine
This python module is required for the uprev of nova, trove, neutron, heat... so we are making it available in order to support the pending uprev of these packages as we move to openstack liberty. This python module provides a library for running openstack services. Signed-off-by: Mark

[meta-virtualization] [m-c-s][PATCH 1/2] python-monotonic: add new recipe to fulfil dependencies

2016-01-09 Thread Mark Asselstine
This package is required by uprevs of trove, nova, several oslo packages, to name a few. Adding this package so that it is available for these uprevs as we move to openstack liberty. This python module provides access to the value, in fractions of a second, of a clock. Signed-off-by: Mark

[meta-virtualization] [m-c-s][PATCH 1/2] python-wrapt: add recipe

2016-01-14 Thread Mark Asselstine
From: Josep Puigdemont Signed-off-by: Josep Puigdemont Signed-off-by: Bruce Ashfield --- ** cherry-picked from fido-kilo ** meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb | 11 +++ 1 file changed, 11 insertions(+) create mode 100644 meta-openstack/recipes-devtools/py

[meta-virtualization] [m-c-s][PATCH 2/2] python-wrapt: switch to using git

2016-01-14 Thread Mark Asselstine
In an effort to make things easier to uprev whenever possible we should use git in our recipes. This has some negative implications if there is a versioned recipe in another layer (without using PREFERRED_VERSION the versioned recipe is used) but overall is the best solution. Signed-off-by: Mark

[meta-virtualization] [meta-vitualization][m-c-s][0/49] Uprev to Liberty

2016-02-03 Thread Mark Asselstine
) Mark Asselstine (49): housekeeping: remove references to openvswitch-controller python-oslo*: convert to 'git' and uprev python-cachetools: initial version python-debtcollector: initial version python-ecdsa: initial version python-fasteners: initi

[meta-virtualization] [m-c-s][PATCH 05/49] python-ecdsa: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a ECDSA cryptographic signature library. This is required by nova. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-ecdsa_0.13.bb | 26 ++ 1 file changed, 26 insertions(+) create mode 100644 meta

[meta-virtualization] [m-c-s][PATCH 03/49] python-cachetools: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides extensible memoizing collections and decorators. This package is required by the uprev of oslo.messaging and taskflow. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-cachetools_git.bb | 16 1 file changed

[meta-virtualization] [m-c-s][PATCH 09/49] python-oslo.versionedobjects: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package is required by nova, heat, and others. Signed-off-by: Mark Asselstine --- .../python/python-oslo.versionedobjects_git.bb | 36 ++ 1 file changed, 36 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python/python

[meta-virtualization] [m-c-s][PATCH 10/49] python-oslo*: uprev to versions required by liberty

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This set of updates is fairly straightforward, for the most part it is an update of the git SHA and an update of the dependencies. Signed-off-by: Mark Asselstine --- .../python/python-oslo.context_git.bb | 7 +++--- .../recipes-devtools/python/python

[meta-virtualization] [m-c-s][PATCH 01/49] housekeeping: remove references to openvswitch-controller

2016-02-03 Thread Mark Asselstine
installed. So removing this from the packagegroup and chef. Signed-off-by: Mark Asselstine --- .../recipes-extended/packagegroups/packagegroup-cloud-controller.bb | 1 - meta-openstack/recipes-support/deploychef/files/startup-list | 1 - 2 files changed, 2 deletions(-) diff

[meta-virtualization] [m-c-s][PATCH 04/49] python-debtcollector: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner. This recipe is required by several python-oslo packages as well as neutron and nova. Signed-off-by: Mark Asselstine

[meta-virtualization] [m-c-s][PATCH 02/49] python-oslo*: convert to 'git' and uprev

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine These python-oslo* recipes did not previously use git so switching them to make future uprevs simpler. While we are at it uprev to the version required for the liberty release. Signed-off-by: Mark Asselstine --- ...ncy_1.9.0.bb => python-oslo.concurrency_git.bb} |

[meta-virtualization] [m-c-s][PATCH 11/49] python-*: uprev to versions required for liberty

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This is a collection of recipe uprevs that bring various packages up to the version required to support the liberty release. These uprevs are mostly trivial with the expected SRC_URI and CHECKSUM updates along with updates to the list of dependencies. Where possible

[meta-virtualization] [m-c-s][PATCH 12/49] python-oslo.service: update dependencies

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine Update dependencies based on the package's required.txt. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-oslo.service_git.bb | 14 ++ 1 file changed, 14 insertions(+) diff --git a/meta-openstack/recipes-devtools/python/p

[meta-virtualization] [m-c-s][PATCH 06/49] python-fasteners: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a python package that provides useful locks. This package is required by oslo-concurrency, taskflow and others. Signed-off-by: Mark Asselstine --- .../python/python-fasteners_git.bb | 26 ++ 1 file changed, 26

[meta-virtualization] [m-c-s][PATCH 13/49] python-trollius: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a port of the Tulip project (asyncio module, PEP 3156) on Python 2. This package is required by oslo.messaging. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-trollius_git.bb | 22 ++ 1 file changed, 22

[meta-virtualization] [m-c-s][PATCH 08/49] python-oslo.reports: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package is required by nova, heat, cinder and others. Signed-off-by: Mark Asselstine --- .../python/python-oslo.reports_git.bb | 32 ++ 1 file changed, 32 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python

[meta-virtualization] [m-c-s][PATCH 14/49] python-suds-jurko: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a lightweight SOAP client (Jurko's fork). This package is required by heat, nova and others. Signed-off-by: Mark Asselstine --- .../python/python-suds-jurko_0.6.bb| 24 ++ 1 file changed, 24 insertions(+) c

[meta-virtualization] [m-c-s][PATCH 07/49] python-os-brick: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides an OpenStack Cinder brick library for managing local volume attaches. This package is required by nova and cinder. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-os-brick_git.bb | 25 ++ 1 file changed, 25

[meta-virtualization] [m-c-s][PATCH 23/49] python-kafka: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a python client for Apache Kafka. This package is required by ceilometer. Signed-off-by: Mark Asselstine --- .../recipes-devtools/python/python-kafka_git.bb| 25 ++ 1 file changed, 25 insertions(+) create mode 100644 meta

[meta-virtualization] [m-c-s][PATCH 18/49] python-futurist: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a useful additions to futures, from the future. This package is required by taskflow, tooz and others. Signed-off-by: Mark Asselstine --- .../python/python-futurist_0.8.0.bb| 26 ++ 1 file changed, 26 insertions

[meta-virtualization] [m-c-s][PATCH 16/49] python-python-editor: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a python module that allows one to programmatically open an editor, capture the result. This package is required by python-alembic. Signed-off-by: Mark Asselstine --- .../python/python-python-editor_git.bb | 22 ++ 1

[meta-virtualization] [m-c-s][PATCH 24/49] python-jsonpath-rw-ext: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides extensions for JSONPath RW. This package is required by ceilometer. Signed-off-by: Mark Asselstine --- .../python/python-jsonpath-rw-ext_git.bb | 27 ++ 1 file changed, 27 insertions(+) create mode 100644 meta

[meta-virtualization] [m-c-s][PATCH 20/49] python-aioeventlet: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides asyncio event loop scheduling callbacks in eventlet. This package is required by oslo.messaging. Signed-off-by: Mark Asselstine --- .../Makefile-skip-building-docs.patch | 33 ++ .../python/python-aioeventlet_0.4.bb

[meta-virtualization] [m-c-s][PATCH 21/49] python-castellan: initial version

2016-02-03 Thread Mark Asselstine
From: Mark Asselstine This package provides a generic key manager interface for OpenStack. This package is required by glance. Signed-off-by: Mark Asselstine --- .../python/python-castellan_git.bb | 34 ++ 1 file changed, 34 insertions(+) create mode

  1   2   3   4   5   6   >