From 6ee01fd27fcd4af82cfcdbe77646dd1a83df12f2 Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Tue, 11 Oct 2016 17:04:57 +0200 Subject: HONEYCOMB-217 Ubuntu16 (systemd) specific packaging Change-Id: Id1c962412194dd809e68f27d7e62b5ab36378be3 Signed-off-by: Maros Marsalek --- packaging/deb/common/debuild.sh | 8 ++++++++ packaging/deb/common/prepare.sh | 45 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100755 packaging/deb/common/debuild.sh create mode 100755 packaging/deb/common/prepare.sh (limited to 'packaging/deb/common') diff --git a/packaging/deb/common/debuild.sh b/packaging/deb/common/debuild.sh new file mode 100755 index 000000000..8f766e0c0 --- /dev/null +++ b/packaging/deb/common/debuild.sh @@ -0,0 +1,8 @@ +#!/bin/bash +set -xe +BUILD_DIR=$1 + +# Build deb binary only package +cd ${BUILD_DIR} +dpkg-buildpackage -b +cd - \ No newline at end of file diff --git a/packaging/deb/common/prepare.sh b/packaging/deb/common/prepare.sh new file mode 100755 index 000000000..9663bccbe --- /dev/null +++ b/packaging/deb/common/prepare.sh @@ -0,0 +1,45 @@ +#!/bin/bash +set -xe +# $1 - source dir root +# $2 - $1/debian - just configurable for reuse +# $3 - service definition file +# $4 - service definition target during install +SOURCE_DIR=$1 +VERSION=$(${SOURCE_DIR}/../../rpm/version) +RELEASE=$(${SOURCE_DIR}/../../rpm/release) +BUILD_DIR=${SOURCE_DIR}/honeycomb-${VERSION} + +# Copy and unpack the archive with vpp-integration distribution +ARCHIVE_DIR=${SOURCE_DIR}/../../../vpp-integration/minimal-distribution/target/ +ARCHIVE=${ARCHIVE_DIR}/vpp-integration-distribution-1.16.12-SNAPSHOT-hc.tar.gz +cp ${ARCHIVE} ${SOURCE_DIR} +ARCHIVE=${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-SNAPSHOT-hc.tar.gz +tar -xf ${ARCHIVE} -C ${SOURCE_DIR}/ + +# Create packaging root +rm -rf ${BUILD_DIR} +mkdir ${BUILD_DIR} + +# Copy contents of tar.gz +mv ${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-SNAPSHOT/ ${BUILD_DIR}/ +cp -r $2 ${BUILD_DIR} + +# OS service definition +cp ${SOURCE_DIR}/$3 ${BUILD_DIR} + +# Changelog file +cat <> ${BUILD_DIR}/debian/changelog +honeycomb (${VERSION}-${RELEASE}) unstable; urgency=low + + * 16.12 release + + -- mmarsale Mon, 22 Aug 2016 09:41:37 +0200 +EOT + +# Install instructions +cat <> ${BUILD_DIR}/debian/install +vpp-integration-distribution-${VERSION}-SNAPSHOT/* /opt/honeycomb/ +$3 $4 +EOT + +echo ${BUILD_DIR} \ No newline at end of file -- cgit 1.2.3-korg