<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-cloud-services.git/meta-openstack/recipes-devtools, branch sumo</title>
<subtitle>Mirror of git.yoctoproject.org/meta-cloud-services.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=sumo</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=sumo'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/'/>
<updated>2017-09-15T19:18:21+00:00</updated>
<entry>
<title>meta-openstack: qemu: match spice arch restrictions</title>
<updated>2017-09-15T19:18:21+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-09-15T16:32:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=c81fc661ccc90f4c54bb1b20236ce38339e6e56e'/>
<id>urn:sha1:c81fc661ccc90f4c54bb1b20236ce38339e6e56e</id>
<content type='text'>
The spice recipe is restricted to Intel x86 and x86-64 so keep 'spice'
out of the PACKAGECONFIG unless we are using one of these ARCHs.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>erlang-native: Add DEPENDS for ncurses-native</title>
<updated>2017-08-24T13:58:54+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-08-23T19:20:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=c41b0107f0bf1aebf3def177fd3a8d8e9130e0af'/>
<id>urn:sha1:c41b0107f0bf1aebf3def177fd3a8d8e9130e0af</id>
<content type='text'>
This was most likely being provided by another pkg pulling in
ncurses-native before erlang-native was being built. With RSS this is
no longer the case and we need to add the explicit DEPENDS. Without
this we are seeing erlang-native fail to configure:

| checking for tgetent in -lncurses... no
| checking for tgetent in -lcurses... no
| checking for tgetent in -ltermcap... no
| checking for tgetent in -ltermlib... no
| configure: error: No curses library functions found

While we are at it we drop the setting of PR as this will be handled
by the PR server.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-novaclient: drop DEPENDS for python-setuptools-git</title>
<updated>2017-08-23T02:48:03+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-08-22T20:25:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=945e7af04b58cede0c4210b61671886b45b005dc'/>
<id>urn:sha1:945e7af04b58cede0c4210b61671886b45b005dc</id>
<content type='text'>
The upstream project dropped the use of setuptools-git when they moved
to use pbr. There was a bug here anyway in that 'inherit setuptools'
sets a DEPENDS which was then being blown away by the "DEPENDS = ...",
but since we just don't need python-setuptools-git anymore we simply
drop it.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-positional: use archived tarball</title>
<updated>2017-08-23T02:48:03+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-08-22T17:03:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=6204c27d8792d79f6b0c0a256edd28dbd161f0b7'/>
<id>urn:sha1:6204c27d8792d79f6b0c0a256edd28dbd161f0b7</id>
<content type='text'>
The upstream project has been discontinued as you can see from the
comment from the developer in response to another pkg which used
positional:
https://github.com/conda-forge/positional-feedstock/issues/7

In addition to discontinuing the project the developer removed the
repository, so we need to use the version archived via pypi. We can't
simply drop the package as it is used by python-nova and other
openstack components.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-salttesting: Modify patch to improve ptest output</title>
<updated>2017-07-10T15:46:15+00:00</updated>
<author>
<name>Jeffrey Pautler</name>
<email>jeffrey.pautler@ni.com</email>
</author>
<published>2017-07-10T15:02:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=d95b0b5d0de99c3d40f164eb5953efae3df3e5f8'/>
<id>urn:sha1:d95b0b5d0de99c3d40f164eb5953efae3df3e5f8</id>
<content type='text'>
Current test case output includes shortDescription and looks like this:
PASS: [CPU:24.1%|MEM:17.4%] First line of test case doc string

New test case output replaces shortDescription with test name and looks
like this:
PASS: test_case_function_name

Signed-off-by: Jeffrey Pautler &lt;jeffrey.pautler@ni.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python: satisfy setup.py 'setup_requires' for vcversioner</title>
<updated>2017-06-29T19:28:30+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-06-29T17:56:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=6535b4a3ec1f2c2c62dd394f17227a6fa18d03cb'/>
<id>urn:sha1:6535b4a3ec1f2c2c62dd394f17227a6fa18d03cb</id>
<content type='text'>
python-jsonschema has a 'setup_requires' for python vcversioner so we
must have a -native version of python-vcversioner and DEPEND on it in
order to avoid setup.py downloading the requires from PyPI.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-pyparsing: Move from meta-openstack to meta-cloud-services</title>
<updated>2017-06-29T19:27:41+00:00</updated>
<author>
<name>He Zhe</name>
<email>zhe.he@windriver.com</email>
</author>
<published>2017-06-28T08:52:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=fea2e20227138b90ee406bf4e2c9fca5532c547a'/>
<id>urn:sha1:fea2e20227138b90ee406bf4e2c9fca5532c547a</id>
<content type='text'>
It's not an openstack specific package.

Signed-off-by: He Zhe &lt;zhe.he@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python: Inherit setuptools instead of distutils for several packages</title>
<updated>2017-06-01T15:59:14+00:00</updated>
<author>
<name>Adrian Dudau</name>
<email>adrian.dudau@enea.com</email>
</author>
<published>2017-05-23T12:13:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=a7ee783c3d047c73409c30e0248c2bdbf195ed82'/>
<id>urn:sha1:a7ee783c3d047c73409c30e0248c2bdbf195ed82</id>
<content type='text'>
python-appdirs
python-keystoneauth
python-lesscpy
python-os-client-config

The setup scripts of these modules use setuptools instead of distutils,
resulting in errors like this:

|   File "setup.py", line 5, in &lt;module&gt;
|     from setuptools import setup
| ImportError: No module named setuptools

Signed-off-by: Adrian Dudau &lt;adrian.dudau@enea.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-netaddr: switch to setuptools</title>
<updated>2017-01-31T03:40:19+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-01-30T17:07:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=59b27d7855597a5725978edeb96b3454e4855236'/>
<id>urn:sha1:59b27d7855597a5725978edeb96b3454e4855236</id>
<content type='text'>
The uprev done in commit 0f9fb18e1883 didn't take into account that
upstream moved to use setuptools (see upstream commit a8509c0c7c4c
[cleaned up of older conventions and switched to setuptools]). Switch
to setup tools to match this upstream change. This will fix errors
seen when attempting to 'import netaddr'.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>python-xstatic-smart-table: uprev to v1.4.13.2</title>
<updated>2017-01-31T03:40:19+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2017-01-30T21:58:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=dd3bff3a435059741a08453677e17946e864e4e8'/>
<id>urn:sha1:dd3bff3a435059741a08453677e17946e864e4e8</id>
<content type='text'>
Although version 1.4.5.3 is within the acceptable versions listed by
python-horizon (stable/newton) there are changes related to
smart-table.min.js vs smart-table.js which will cause python-horizon
to error with the following exception:

'horizon/lib/angular_smart_table/smart-table.min.js' could not be
found in the COMPRESS_ROOT '/usr/lib/python2.7/site-packages/static'
or with staticfiles.

(See commit 12c37e3af0a95cb793ad1fb7e055276da049e5ac in horizon)

Upstream should probably remove 1.4.5.3 from the range of acceptable
versions due to this. At any rate uprev'ing the package avoids the
mismatch.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
</feed>
