diff options
author | khilman <khilman@users.noreply.github.com> | 2018-06-05 11:47:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 11:47:07 -0700 |
commit | c1071d0f9b57958b22546abe8eadf670b3926b98 (patch) | |
tree | 6ac6947fc9196283ecba0c17a9033d3af3aaaa99 /common | |
parent | 2d79d03f5818c096535c9784b12df5ea99c0dbff (diff) | |
parent | a22e4a89a06bda681ba329bf73e05a7d9196efe3 (diff) |
Merge pull request #27 from montjoie/multi_slave_2018_x
Multi slave 2018 x
Diffstat (limited to 'common')
-rw-r--r-- | common/build-lava | 76 |
1 files changed, 32 insertions, 44 deletions
diff --git a/common/build-lava b/common/build-lava index e1a8e3b..3ddc696 100644 --- a/common/build-lava +++ b/common/build-lava @@ -24,7 +24,7 @@ lava-server) build-essential \ docbook-xsl \ xsltproc \ - gunicorn \ + gunicorn3 \ ntp \ nodejs \ node-uglify \ @@ -33,37 +33,26 @@ lava-server) libjs-jquery-watermark \ libjs-jquery-flot \ libjs-jquery-ui \ - python-django \ - python-json-schema-validator \ - python-configglue \ - python-twisted\ - python-guestfs \ - python-configobj \ - python-lzma \ - python-magic \ - python-netifaces \ - python-nose \ - python-pexpect \ - python-pyudev \ - python-requests \ - python-yaml \ - python-zmq \ + python3-django-restricted-resource \ + python3-django-auth-ldap \ + python3-django-tables2 \ + python3-django \ + python3-guestfs \ + python3-netifaces \ + python3-markdown \ + python3-nose \ + python3-pexpect \ + python3-psycopg2 \ + python3-requests \ + python3-simplejson \ + python3-yaml \ + python3-zmq \ python3-sphinx-bootstrap-theme \ pep8 \ python-pep8 \ - python-voluptuous \ - python-dateutil \ - python-django-auth-ldap \ - python-django-restricted-resource \ - python-django-tables2 \ - python-docutils \ - python-jinja2 \ - python-markdown \ - python-psycopg2 \ - python-voluptuous \ - python-sphinx \ - python-sphinx-bootstrap-theme \ - python-mocker \ + python3-voluptuous \ + python3-dateutil \ + python3-voluptuous \ systemd-sysv \ tftpd-hpa \ lxc \ @@ -75,24 +64,23 @@ lava-server) ;; lava-dispatcher) # build dependencies - DEBIAN_FRONTEND=noninteractive apt-get -y install python-setuptools || exit $? + DEBIAN_FRONTEND=noninteractive apt-get -y install python3-setuptools || exit $? # package dependencies - DEBIAN_FRONTEND=noninteractive apt-get -y install python-serial \ - python-daemon \ - python-guestfs \ + DEBIAN_FRONTEND=noninteractive apt-get -y install \ + python3-serial \ + python3-configobj \ + python3-pyudev \ + python3-setproctitle \ + python3-guestfs \ sudo \ telnet \ - python-configobj \ - python-lzma \ - python-magic \ - python-netifaces \ - python-nose \ - python-pexpect \ - python-pyudev \ - python-requests \ - python-tz \ - python-yaml \ - python-zmq || exit $? + systemd-sysv \ + python3-netifaces \ + python3-nose \ + python3-pexpect \ + python3-requests \ + python3-yaml \ + python3-zmq || exit $? ;; *) echo "Unknow compoments $1" |