Aligned the package layout with the concurrent Debian packaging conventions. Moved package files under 'debian/all/' to avoid duplication across OS builds and removed legacy paths under 'debian/'. Updated related build references to ensure compatibility across all supported OS codenames. Test-Plan: PASS: master bullseye build PASS: AIO-SX deploy Story: 2011360 Task: 53414 Change-Id: Id9ad5d824ab9439d3089f3ed4add59e1c12bcb53 Signed-off-by: sharang bhardwaj <sharang.bhardwaj@windriver.com>
18 lines
398 B
Makefile
Executable File
18 lines
398 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
export PYBUILD_NAME=python3-redfish
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_clean:
|
|
python3 setup.py clean -a
|
|
find . -name \*.pyc -exec rm {} \;
|
|
|
|
override_dh_auto_build:
|
|
python3 setup.py build --force
|
|
|
|
override_dh_auto_install:
|
|
python3 setup.py install --force --root=debian/python3-redfish --no-compile -O0 --install-layout=deb
|