Initial deb packaging of vpp-python-api 30/3630/3
authorEd Warnicke <hagbard@gmail.com>
Fri, 28 Oct 2016 22:52:36 +0000 (22:52 +0000)
committerChris Luke <chris_luke@comcast.com>
Sat, 29 Oct 2016 20:14:56 +0000 (20:14 +0000)
Change-Id: I14d5180d6abd59b813906011718121a2bbc9bafd
Signed-off-by: Ed Warnicke <hagbard@gmail.com>
build-data/platforms.mk
build-root/deb/debian/.gitignore
build-root/deb/debian/control
build-root/deb/debian/rules
build-root/scripts/find-python-api-contents [new file with mode: 0755]

index 36cfc87..9d87815 100644 (file)
@@ -43,6 +43,10 @@ install-deb: $(patsubst %,%-find-source,$(ROOT_PACKAGES))
        ./scripts/find-plugins-contents $(INSTALL_PREFIX)$(ARCH)        \
         deb/debian/vpp-plugins.install ;                               \
                                                                        \
+       : python-api package ;                                          \
+       ./scripts/find-python-api-contents $(INSTALL_PREFIX)$(ARCH)     \
+        deb/debian/vpp-python-api.install ;                            \
+                                                                       \
        : dpdk headers ;                                                \
        ./scripts/find-dpdk-contents $(INSTALL_PREFIX)$(ARCH)           \
         deb/debian/vpp-dpdk-dev.install ;                              \
index e7868b4..75d8fbb 100644 (file)
@@ -11,3 +11,4 @@ vpp-dpdk-dev/
 vpp-dpdk-dkms/
 vpp-dbg/
 vppctl/
+vpp-python-api/
index 4be6c4a..86383b1 100644 (file)
@@ -59,3 +59,10 @@ Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: DPDK 2.1 igb_uio_driver
  This package contains Linux kernel modules distributed with DPDK.
+
+Package: vpp-python-api
+Architecture: any
+Depends: ${python:Depends}, ${misc:Depends}, vpp (= ${source:Version})
+Description: VPP Python API bindings
+  This package contains VPP python api bindings
+  .
index b5afbdb..4ecd38f 100755 (executable)
@@ -18,7 +18,7 @@ include /usr/share/dpkg/default.mk
 
 # main packaging script based on dh7 syntax
 %:
-       dh $@ --with dkms --with systemd
+       dh $@ --with dkms --with systemd,python2
 
 override_dh_install:
        dh_install --exclude .git
diff --git a/build-root/scripts/find-python-api-contents b/build-root/scripts/find-python-api-contents
new file mode 100755 (executable)
index 0000000..9b390e7
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+rm -f $2
+
+for i in $(find ${1}/vpp-api/lib/python2.7/site-packages/ -type f -print); do
+    echo ../${i} /usr/lib/python2.7/site-packages/vpp_papi >> ${2}
+done
+