From: Aki Tuomi Date: Thu, 21 Mar 2024 11:35:23 +0000 (+0200) Subject: tasks: Replace ruby with python X-Git-Tag: rec-5.1.0-alpha1~60^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfa34df389dba8a3bd1281e0c277437039a2ccbb;p=thirdparty%2Fpdns.git tasks: Replace ruby with python --- diff --git a/tasks.py b/tasks.py index f3e72b3d4f..f0b3cb8a1e 100644 --- a/tasks.py +++ b/tasks.py @@ -47,8 +47,7 @@ auth_build_deps = [ # FIXME: perhaps we should be stealing these from the deb 'libsqlite3-dev', 'libyaml-cpp-dev', 'libzmq3-dev', - 'ruby-bundler', - 'ruby-dev', + 'python3-venv', 'sqlite3', 'unixodbc-dev', 'cmake', @@ -117,8 +116,7 @@ auth_test_deps = [ # FIXME: we should be generating some of these from shlibde 'libzmq3-dev', 'lmdb-utils', 'prometheus', - 'ruby-bundler', - 'ruby-dev', + 'python3-venv', 'socat', 'softhsm2', 'unbound-host', @@ -642,9 +640,6 @@ def ci_dnsdist_make_bear(c): @task def ci_auth_install_remotebackend_test_deps(c): - with c.cd('modules/remotebackend'): - # c.run('bundle config set path vendor/bundle') - c.run('sudo ruby -S bundle install') c.sudo('apt-get install -y socat') @task