From: Tobias Brunner Date: Mon, 24 Aug 2020 14:17:04 +0000 (+0200) Subject: testing: Install vici Python module manually X-Git-Tag: 5.9.1dr1~21^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcd83279336cb9549890e57fd064afa8b0640bff;p=thirdparty%2Fstrongswan.git 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. --- 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