#!/usr/bin/make -f # resolve DEB_VERSION DEB_DISTRIBUTION include /usr/share/dpkg/pkg-info.mk # resolve if release is experimental DEB_SUITE_EXP = $(filter experimental% UNRELEASED,$(DEB_DISTRIBUTION)) # resolve crate version # * get topmost version except prerelease suffix # from Cargo.toml file in dir passed as argument # * source package version if matching upstream part modulo prerelease # * otherwise append source package version crate_version = \ $(shell perl -n \ -E '/version\W+\K\d+\.\d+\.\d+/ ' \ -E 'and say "$(DEB_VERSION_UPSTREAM)" =~ /^\Q$$&\E(?:~[a-z]+\d*)?$$/ ? "$(DEB_VERSION)" : "$$&+$(DEB_VERSION_UPSTREAM_REVISION)" and exit' \ $1/Cargo.toml) %: dh $@ # tolerate test failures when targeted experimental override_dh_auto_test: dh_auto_test --buildsystem rust -- --no-fail-fast $(if $(DEB_SUITE_EXP),|| true) # declare version for virtually provided embedded crates packages = $(patsubst %,librust-%-dev,\ axum axum-core axum-extra axum-macros) override_dh_gencontrol: $(eval librust-axum-dev_version = $(call crate_version,axum))\ $(eval librust-axum-core-dev_version = $(call crate_version,axum-core))\ $(eval librust-axum-extra-dev_version = $(call crate_version,axum-extra))\ $(eval librust-axum-macros-dev_version = $(call crate_version,axum-macros))\ set -e; $(foreach p,$(packages),\ dh_gencontrol -p$p -- \ -v'$($p_version)' \ $(foreach q,$(filter-out $p,$(packages)),\ -V'rust:Version:$q=$($q_version)');) dh_gencontrol --remaining-packages