From 3f163fc54c64becbbf62626d6616b40258fb69de Mon Sep 17 00:00:00 2001 From: Igor Soares Date: Fri, 29 Dec 2023 12:21:15 -0300 Subject: [PATCH] Application versioning based on build release This change will automatically adjust versioning of the application tarball and python plugins to reflect the same version reported by SW_VERION in /etc/build.info. Test plan: PASS: build-pkgs -a & build-image PASS: Confirm that the tarball version matches the platform version PASS: Apply application Story: 2010929 Task: 49349 Change-Id: I33e6dc77db82bcba2381ac604272ed8550ae78d8 Signed-off-by: Igor Soares --- python3-k8sapp-ptp-notification/debian/deb_folder/control | 3 ++- python3-k8sapp-ptp-notification/debian/deb_folder/rules | 2 +- stx-ptp-notification-helm/debian/deb_folder/control | 3 ++- stx-ptp-notification-helm/debian/deb_folder/rules | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/python3-k8sapp-ptp-notification/debian/deb_folder/control b/python3-k8sapp-ptp-notification/debian/deb_folder/control index b73d82c..da9b01d 100644 --- a/python3-k8sapp-ptp-notification/debian/deb_folder/control +++ b/python3-k8sapp-ptp-notification/debian/deb_folder/control @@ -7,7 +7,8 @@ Build-Depends: debhelper-compat (= 13), python3-all, python3-pbr, python3-setuptools, - python3-wheel + python3-wheel, + build-info Standards-Version: 4.5.1 Homepage: https://www.starlingx.io diff --git a/python3-k8sapp-ptp-notification/debian/deb_folder/rules b/python3-k8sapp-ptp-notification/debian/deb_folder/rules index 68f3ad1..530923d 100755 --- a/python3-k8sapp-ptp-notification/debian/deb_folder/rules +++ b/python3-k8sapp-ptp-notification/debian/deb_folder/rules @@ -5,7 +5,7 @@ export APP_NAME = ptp-notification export PYBUILD_NAME = k8sapp-ptp-notification export DEB_VERSION = $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') -export MAJOR = $(shell echo $(DEB_VERSION) | cut -f 1 -d '-') +export MAJOR = $(shell cat /etc/build.info | grep SW_VERSION | cut -d'"' -f2) export MINOR_PATCH = $(shell echo $(DEB_VERSION) | cut -f 4 -d '.') export PBR_VERSION = $(MAJOR).$(MINOR_PATCH) diff --git a/stx-ptp-notification-helm/debian/deb_folder/control b/stx-ptp-notification-helm/debian/deb_folder/control index 7d27fba..5b1a0a5 100644 --- a/stx-ptp-notification-helm/debian/deb_folder/control +++ b/stx-ptp-notification-helm/debian/deb_folder/control @@ -7,7 +7,8 @@ Build-Depends: debhelper-compat (= 13), helm, procps, python3-k8sapp-ptp-notification, - python3-k8sapp-ptp-notification-wheels + python3-k8sapp-ptp-notification-wheels, + build-info Standards-Version: 4.5.1 Homepage: https://www.starlingx.io diff --git a/stx-ptp-notification-helm/debian/deb_folder/rules b/stx-ptp-notification-helm/debian/deb_folder/rules index 9fa23c2..58f978f 100755 --- a/stx-ptp-notification-helm/debian/deb_folder/rules +++ b/stx-ptp-notification-helm/debian/deb_folder/rules @@ -5,7 +5,7 @@ export ROOT = debian/tmp export APP_FOLDER = $(ROOT)/usr/local/share/applications/helm export DEB_VERSION = $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') -export RELEASE = $(shell echo $(DEB_VERSION) | cut -f 1 -d '-') +export RELEASE = $(shell cat /etc/build.info | grep SW_VERSION | cut -d'"' -f2) export REVISION = $(shell echo $(DEB_VERSION) | cut -f 4 -d '.') export APP_NAME = ptp-notification