5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-06 13:18:00 +03:00

d/rules: version check: exit early and fine-tune error message

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-03-28 13:54:44 +02:00
parent 7d2b0d6afd
commit dd71b70b5d

2
debian/rules vendored
View File

@ -21,7 +21,7 @@ export DEB_CARGO_PACKAGE=proxmox-backup
dh $@ --with=bash-completion
override_dh_auto_configure:
perl -ne 'if (/^version\s*=\s*"(\d+(?:\.\d+)+)"/) { my $$v_cargo = $$1; my $$v_deb = $$ENV{DEB_VERSION_UPSTREAM}; die "debian/Cargo.toml version mismatch: $$v_cargo != $$v_deb" if ($$v_cargo ne $$v_deb); }' Cargo.toml
@perl -ne 'if (/^version\s*=\s*"(\d+(?:\.\d+)+)"/) { my $$v_cargo = $$1; my $$v_deb = $$ENV{DEB_VERSION_UPSTREAM}; die "ERROR: d/changelog <-> Cargo.toml version mismatch: $$v_cargo != $$v_deb\n" if $$v_cargo ne $$v_deb; exit(0); }' Cargo.toml
$(CARGO) prepare-debian $(CURDIR)/debian/cargo_registry --link-from-system
dh_auto_configure