dragonflow: install proper package on all distros

You should NEVER install library packages as 99.99% time is not what you
really need. NEVER!

What was happening? During build of 'pyzmq' it was noticing that there
are no development headers for libzmq and after 10s delay (with huge
warning attached) it was starting to build own 'bundled' copy of libzmq.

Bumped libzmq to newer version as well (in Debian/Ubuntu).

Change-Id: I8bc95cc9c90cc9f4df911a40392b85c9b5dd1261
This commit is contained in:
Marcin Juszkiewicz 2017-05-24 10:41:03 +02:00
parent 02f136025c
commit 80f17fee38
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
{% set dragonflow_base_packages = [
'zeromq'
'zeromq-devel'
] %}
{% elif base_distro in ['debian', 'ubuntu'] %}
{% set dragonflow_base_packages = [
'libzmq1'
'libzmq3-dev'
] %}
{% endif %}