diff options
author | Ole Troan <ot@cisco.com> | 2019-03-13 18:08:42 +0100 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-15 19:01:59 +0000 |
commit | e4a6d69faa6e72650bd2097414457b991bc5ef93 (patch) | |
tree | a62f2cb63f3f7fb24c64c06e89ff9541f8fcbf2d /src/pkg/debian/rules.in | |
parent | 3b0d7e42f65eaf8d84cfe26e2e9f5244c554b934 (diff) |
PAPI: Build python3 package for vpp_papi
Change-Id: Iae53fe88a69b53b75a7439d159ae0f9d18545908
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/pkg/debian/rules.in')
-rwxr-xr-x | src/pkg/debian/rules.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/pkg/debian/rules.in b/src/pkg/debian/rules.in index 0351ee503e6..ceef46a297a 100755 --- a/src/pkg/debian/rules.in +++ b/src/pkg/debian/rules.in @@ -7,15 +7,20 @@ DH_VERBOSE = 1 DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/default.mk -export PYBUILD_NAME = vpp-api-python +export PYBUILD_NAME = vpp-api export PYBUILD_DIR = @CMAKE_SOURCE_DIR@/vpp-api/python export PYBUILD_DESTDIR_python2=debian/vpp-api-python/ export PYBUILD_DISABLE_python2=test +export PYBUILD_DESTDIR_python3=debian/python3-vpp-api/ +export PYBUILD_DISABLE_python3=test export PYBUILD_SYSTEM=distutils +buildvers := $(shell pyversions -sv) +build3vers := $(shell py3versions -sv) + # main packaging script based on dh7 syntax %: - dh $@ --with systemd,python2 --buildsystem=pybuild + dh $@ --with systemd,python2,python3 --buildsystem=pybuild override_dh_strip: dh_strip --dbg-package=vpp-dbg |