mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
- setuptools aims to a build library instead of being invoked by setup.py. Launching setup tools using ./setup.py is deprecated. Launching it using generic build tools that use pyproject.toml is recommended. - With the new approach customizing the build is not possible to the earlier extent. So, introduce is a simple and sufficient build system using 'make'. Tests: - Check the pyproject.toml using validate-pyproject tool. - Run diffoscope on old and new packages and verify that no unexpected changes were introduced by the build system change. - None of the files part of .deb package have different file permissions compared to before. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
29 lines
1.1 KiB
Makefile
Executable File
29 lines
1.1 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
export PYBUILD_DESTDIR=debian/tmp
|
|
export PYBUILD_SYSTEM=custom
|
|
export PYBUILD_CONFIGURE_ARGS=make configure
|
|
export PYBUILD_BUILD_ARGS=make PYTHON={interpreter} build
|
|
export PYBUILD_INSTALL_ARGS=make PYTHON={interpreter} DESTDIR={destdir} install
|
|
export PYBUILD_CLEAN_ARGS=make clean
|
|
export PYBUILD_TEST_ARGS=make PYTHON={interpreter} check
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_install-indep:
|
|
dh_auto_install
|
|
./run --develop --list-dependencies | sort | tr '\n' ', ' | \
|
|
sed -e 's/^/freedombox:Depends=/' >> debian/freedombox.substvars
|
|
# Ensure the list of dependencies is not empty.
|
|
test -s debian/freedombox.substvars || exit 1
|
|
|
|
override_dh_installsystemd:
|
|
# Do not enable or start any service other than FreedomBox service. Use
|
|
# of --tmpdir is a hack to workaround an issue with dh_installsystemd
|
|
# (as of debhelper 13.5.2) that still has hardcoded search path of
|
|
# /lib/systemd/system for searching systemd services. See #987989 and
|
|
# reversion of its changes.
|
|
dh_installsystemd --tmpdir=debian/tmp/usr --package=freedombox plinth.service
|