From dcd83279336cb9549890e57fd064afa8b0640bff Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 24 Aug 2020 16:17:04 +0200 Subject: [PATCH] testing: Install vici Python module manually easy_install is not included in Debian's python-setuptools package anymore, so we install it manually using setup.py. --- testing/scripts/recipes/013_strongswan.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/scripts/recipes/013_strongswan.mk b/testing/scripts/recipes/013_strongswan.mk index e84d42094f..d8f907a9f0 100644 --- a/testing/scripts/recipes/013_strongswan.mk +++ b/testing/scripts/recipes/013_strongswan.mk @@ -106,7 +106,7 @@ CONFIG_OPTS = \ --enable-systemd \ --enable-counters \ --enable-save-keys \ - --enable-python-eggs-install + --enable-python-eggs export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat @@ -126,6 +126,7 @@ build: configure cd $(BUILDDIR) && make -j $(NUM_CPUS) install: build - cd $(BUILDDIR) && make -j install + cd $(BUILDDIR) && make -j install && \ + cd $(DIR)/src/libcharon/plugins/vici/python && python setup.py install # for Python-based updown scripts pip install python-daemon