summaryrefslogtreecommitdiffstats
path: root/meta-openstack
Commit message (Collapse)AuthorAgeFilesLines
...
* rest-client: upgrade to 1.7.3Jackie Huang2015-04-161-3/+3
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-ceilometerclient: fix the version to 1.0.13Jackie Huang2015-04-161-2/+2
| | | | | | | | The specified SRCREV is actually pointed to the latest version 1.0.13. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-barbicanclient: upgrade to 3.0.3Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Add helper meta data to find upstream versions correctlyJackie Huang2015-04-161-0/+42
| | | | | | | | | | | | | | | | This is referred to: meta-yocto/conf/distro/include/package_regex.inc And is used by the auto-upgrade-helper utility: http://git.yoctoproject.org/cgit/cgit.cgi/auto-upgrade-helper/ It helps generate upgrades automatically for recipes based on new versions being published upstream. The initial list includes *client recipes in meta-openstack. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-cephclient: upgrade to 0.1.0.5Jackie Huang2015-04-161-3/+3
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-glanceclient: upgrade to 0.17.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-heatclient: upgrade to 0.4.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-keystoneclient: upgrade to 1.3.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-novaclient: upgrade to 2.23.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-neutronclient: upgrade to 2.4.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-swiftclient: upgrade to 2.4.0Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-saharaclient: upgrade to 0.8.0Jackie Huang2015-04-161-2/+2
| | | | | | | 0.7.7 and 0.8.0 are actually the same. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-openstackclient: upgrade to 1.0.3Jackie Huang2015-04-161-3/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-troveclient: upgrade to 1.0.9Jackie Huang2015-04-161-2/+2
| | | | | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cloud-init: update to 0.7.6Bruce Ashfield2015-04-141-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-oslotest: correct the SRC_URI and add bash to rdependsJackie Huang2015-04-081-3/+4
| | | | | | | | | | | - It's updated to 1.4.0 in previous commit but the SRC_URI and checksums are incorrect. - The scripts in python-oslotest needs bash so add it to rdepends to avoid: WARNING: QA Issue: python-oslotest requires /bin/bash, but no providers in its RDEPENDS [file-rdeps] Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-pyudev: fix the license formatJackie Huang2015-04-081-1/+1
| | | | | | | | Fix the license format to avoid: Parsing recipes...WARNING: python-pyudev: LICENSE value "LGPL 2.1" has an invalid format Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nodejs: remove the bbappendJackie Huang2015-04-081-1/+0
| | | | | | | | | nodejs has been updated to 0.12.0 and all bash scripts are re-packaged in nodejs-npm which has the correct rdepends, so this bbappend is no longer needed. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Add missing dependencies for keystone, fixtures and testtoolsJackie Huang2015-04-083-0/+6
| | | | | | | | | | | | | | | | | | | These missing dependencies are found when running keystone tests: File "/usr/lib/python2.7/site-packages/keystone/tests/unit/core.py", line 28, in <module> import fixtures ImportError: No module named fixtures File "/usr/lib/python2.7/site-packages/keystone/tests/unit/core.py", line 32, in <module> import oslotest.base as oslotest ImportError: No module named oslotest.base File "/usr/lib/python2.7/site-packages/fixtures/fixture.py", line 26, in <module> from testtools.compat import ( ImportError: No module named testtools.compat File "/usr/lib/python2.7/site-packages/testtools/compat.py", line 31, in <module> from extras import try_imports ImportError: No module named extras Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* libs: version refreshBruce Ashfield2015-03-253-4/+14
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* libraries: refresh to latest versionsBruce Ashfield2015-03-245-6/+6
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python: remove recipes that are now in meta-virtualizationMark Asselstine2015-03-208-164/+0
| | | | | | | | | | | | | | | | | | In order for meta-virtualization to include a recipe for docker and docker-registry these recipes have been moved to allow meta-virtualization to exist without a circular dependency with meta-cloud-services. There is already a dependency here on meta-virtualization so this will ensure recipes in meta-cloud-services will still build as they did before. A concern does exist that several OpenStack recipes have a tight binding on specific versions of these recipes. This move doesn't prevent meta-cloud-services from hosting its own version of these recipes in the future and making use of 'preferred' version to control this binding. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* README.setup: cleanup and add missing layer dependencyMark Asselstine2015-03-201-3/+4
| | | | | | | | | meta-networking depends on meta-python so adding this to the list of layers to define in the bblayers.conf. Adding missing linewrap characters to make the whole list work via cut and paste. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* horizon: fix kilo login / page renderingBruce Ashfield2015-03-133-3/+25
| | | | | | | | | With this commit, we add a missing dependency (pint) and update the angular support libary to the proper version for kilo support. We can now render and log into the dashboard. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nova: fix jsonschema and retrying depdenciesBruce Ashfield2015-03-123-3/+4
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* core: BROKEN: Initial update to kilo branches and REVsBruce Ashfield2015-03-1011-43/+57
| | | | | | | | | | | | | This is the initial update to the kilo branches and SRCREVs for some of the core projects. These are known to NOT work, due to SSLv3 issues with oe-core, and missing config/dependencies. Incremental updates will fix issues with the components, but they are best done in-tree, rather than sitting on a huge pile of changes. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nss-pam-ldapd: Identify CONFFILESRob Woolley2015-03-101-0/+2
| | | | | | | | | | Some package formats explicitly track which files are configuration files so that they are not overwritten on updates. Explicitly list the configuration file. Signed-off by: Rob Woolley <rob.woolley@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* tgt: Identify CONFFILESRob Woolley2015-03-101-0/+2
| | | | | | | | | | Some package formats explicitly track which files are configuration files so that they are not overwritten on updates. Explicitly list the configuration file. Signed-off by: Rob Woolley <rob.woolley@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* support libs: round2 refreshBruce Ashfield2015-03-0911-55/+25
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* support-libs: refresh round1Bruce Ashfield2015-03-0334-67/+89
| | | | | | | Refreshing the support libraries to prepare for kilo uprevs of the core components. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo: update db to 1.5.0 releaseBruce Ashfield2015-03-021-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kilo: add and update dependency packagesBruce Ashfield2015-03-026-0/+155
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* controller: add package management by defaultBruce Ashfield2015-03-021-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* support-libs: fix clean issuesBruce Ashfield2015-02-2410-3/+47
| | | | | | | | | | | | | With recent changes to oe-core make clean is run during the configuration phase of python packages. For some packages, this causes breakage as 'make clean' is not supported. To keep the build going, we mark them as brokenclean to avoid the issue. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo.messaging: add bash to rdependsBruce Ashfield2015-02-221-0/+1
| | | | | | | | | | We get the following QA warning: WARNING: QA Issue: python-oslo.messaging requires /bin/bash, but no providers in its RDEPENDS [file-rdeps] So we add bash to the redepends to fix the issue. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* evenlet: updatedat to 0.16.1Bruce Ashfield2015-02-211-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo: update to latest versionsBruce Ashfield2015-02-218-15/+15
| | | | | | | To get the clients functional, we need to update to the latest oslo release (and git trees). Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo: update utils and i18nBruce Ashfield2015-02-212-4/+4
| | | | | | | The openstack clients need updated oslo libraries, so we bump the versions here. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* QA: fix build and runtime warningsBruce Ashfield2015-02-2116-2/+25
| | | | | | | oe-core now warns on detected missing runtime and build time warnings. So we update our recipes to have these missingn deps (largely bash). Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* iproute2: remove patch already appliedTudor Florea2015-02-202-29/+0
| | | | | | | | | | | Remove the patch 0003-Don-t-enforce-that-dev-already-exists.patch as the similar patch exist in poky git repo added by commit 673bb3cffc1fdedb7c25178233c8699650194545 Author: Roy.Li <rongqing.li@windriver.com> Date: Wed Oct 29 14:01:07 2014 +0800 Signed-off-by: Tudor Florea <tudor.florea@enea.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* clients: update to the latest available clientsBruce Ashfield2015-02-209-20/+19
| | | | | | To start the kilo update cycle, we refresh and update the clients. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* bbappend: rsync to oe-core master round2Bruce Ashfield2015-02-202-0/+0
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* bbappends: resync to oe-core versionsBruce Ashfield2015-02-2012-142/+9
| | | | | | Updating the bbappends to match the oe-core versions ~commit 530565c6cb77319f4cc49edeea6fec6be997415d Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* chef: make deploychef dependencies a distro featureBruce Ashfield2015-02-191-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* ruby/json: fix incorrect patch specificationsBruce Ashfield2015-02-162-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The merges of the following two commits: commit 7ee6d9c99ab2a27ee700a53e47854e3c8eee7671 Author: Qian Lei <qianl.fnst@cn.fujitsu.com> Date: Wed Jan 28 10:03:36 2015 +0800 yajl-ruby: Don't compile extensions Module mkmf is used to generate Makefile, but it uses native libraries instead of target libraries. To avoid arch problem, we don't compile the extension. Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> commit 08f5108740cf64a696d2552e9922c6de72a9cee6 Author: Qian Lei <qianl.fnst@cn.fujitsu.com> Date: Wed Jan 28 10:03:35 2015 +0800 json: Don't compile extensions Module mkmf is used to generate Makefile, but it uses native libraries instead of target libraries. To avoid arch problem, we don't compile the extension. Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Were incorrected merged and contained invalid patch specifications. So we move the patches up to the SRC_URI where they belong. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* yajl-ruby: Don't compile extensionsQian Lei2015-01-302-0/+21
| | | | | | | | | Module mkmf is used to generate Makefile, but it uses native libraries instead of target libraries. To avoid arch problem, we don't compile the extension. Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* json: Don't compile extensionsQian Lei2015-01-302-0/+21
| | | | | | | | | Module mkmf is used to generate Makefile, but it uses native libraries instead of target libraries. To avoid arch problem, we don't compile the extension. Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* slop: checkout v3 branch to fix the following build error.Bian Naimeng2015-01-211-1/+1
| | | | | | | | | | | | slop: checkout v3 branch to fix the following build error. ERROR: Fetcher failure: Unable to find revision a009587ec2c0cf07b38bd8f0b59baa244fdbce51 in branch master even from upstream DEBUG: Python function base_do_fetch finished DEBUG: Python function do_fetch finished ERROR: Function failed: Fetcher failure for URL: 'git://github.com/leejarvis/slop.git'. Unable to fetch URL from any source. Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* hiera: add recipe for hiera 1.3.4YangHaibo2014-12-182-0/+43
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* facter: add recipe for facter 2.3.0YangHaibo2014-12-182-0/+42
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>