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: Fresh AIO-SX install
PASS: Apply application

Story: 2010929
Task: 49337

Change-Id: I06ccf46248fd45d8a49b6a40bb5c3d7b9db6ddb8
Signed-off-by: Igor Soares <Igor.PiresSoares@windriver.com>
This commit is contained in:
Igor Soares 2023-12-28 18:22:26 -03:00
parent c412f1b229
commit db0ab24acb
4 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -5,7 +5,7 @@ export APP_NAME = nginx-ingress-controller
export PYBUILD_NAME = k8sapp_nginx_ingress_controller
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)

View File

@ -7,7 +7,8 @@ Build-Depends: debhelper-compat (= 13),
helm,
procps,
python3-k8sapp-nginx-ingress-controller,
python3-k8sapp-nginx-ingress-controller-wheels
python3-k8sapp-nginx-ingress-controller-wheels,
build-info
Standards-Version: 4.5.1
Homepage: https://www.starlingx.io

View File

@ -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 = nginx-ingress-controller