X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=6a38931f6a3f1e205134ec78383846f8178441ea;hb=9a1b24b6b1089ab8435a38afe4a3de3f99d7628e;hp=c2d9a7bac3599b85acb24a0dac48577d026c8283;hpb=b369f720f5fc6b56a090fa890b204d46ff0df185;p=proxmox-backup.git diff --git a/Makefile b/Makefile index c2d9a7ba..6a38931f 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,52 @@ +include /usr/share/dpkg/default.mk include defines.mk -ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) -GITVERSION:=$(shell git rev-parse HEAD) +PACKAGE := proxmox-backup +ARCH := $(DEB_BUILD_ARCH) -SUBDIRS := etc www +SUBDIRS := etc www docs # Binaries usable by users USR_BIN := \ - proxmox-backup-client \ - catar + proxmox-backup-client \ + proxmox-file-restore \ + pxar \ + proxmox-tape \ + pmtx \ + pmt # Binaries usable by admins -USR_SBIN := proxmox-backup-manager +USR_SBIN := \ + proxmox-backup-manager \ + proxmox-backup-debug \ # Binaries for services: SERVICE_BIN := \ proxmox-backup-api \ - proxmox-backup-proxy + proxmox-backup-banner \ + proxmox-backup-proxy \ + proxmox-daily-update + +# Single file restore daemon +RESTORE_BIN := \ + proxmox-restore-daemon + +SUBCRATES := \ + pbs-api-types \ + pbs-buildcfg \ + pbs-client \ + pbs-config \ + pbs-datastore \ + pbs-fuse-loop \ + proxmox-rest-server \ + proxmox-rrd \ + pbs-tape \ + pbs-tools \ + proxmox-backup-banner \ + proxmox-backup-client \ + proxmox-file-restore \ + proxmox-restore-daemon \ + pxar-bin ifeq ($(BUILD_MODE), release) CARGO_BUILD_ARGS += --release @@ -25,44 +55,85 @@ else COMPILEDIR := target/debug endif +ifeq ($(valgrind), yes) +CARGO_BUILD_ARGS += --features valgrind +endif + +CARGO ?= cargo + COMPILED_BINS := \ - $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN)) + $(addprefix $(COMPILEDIR)/,$(USR_BIN) $(USR_SBIN) $(SERVICE_BIN) $(RESTORE_BIN)) -export PROXMOX_PKG_VERSION=${PKGVER} -export PROXMOX_PKG_RELEASE=${PKGREL} -export PROXMOX_PKG_REPOID=${GITVERSION} +export DEB_VERSION DEB_VERSION_UPSTREAM -export PROXMOX_JSDIR := $(JSDIR) +SERVER_DEB=${PACKAGE}-server_${DEB_VERSION}_${ARCH}.deb +SERVER_DBG_DEB=${PACKAGE}-server-dbgsym_${DEB_VERSION}_${ARCH}.deb +CLIENT_DEB=${PACKAGE}-client_${DEB_VERSION}_${ARCH}.deb +CLIENT_DBG_DEB=${PACKAGE}-client-dbgsym_${DEB_VERSION}_${ARCH}.deb +RESTORE_DEB=proxmox-backup-file-restore_${DEB_VERSION}_${ARCH}.deb +RESTORE_DBG_DEB=proxmox-backup-file-restore-dbgsym_${DEB_VERSION}_${ARCH}.deb +DOC_DEB=${PACKAGE}-docs_${DEB_VERSION}_all.deb -DEB=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb -DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc +DEBS=${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \ + ${RESTORE_DEB} ${RESTORE_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB} + +DSC = rust-${PACKAGE}_${DEB_VERSION}.dsc DESTDIR= -all: cargo-build $(SUBDIRS) +tests ?= --workspace + +all: $(SUBDIRS) .PHONY: $(SUBDIRS) $(SUBDIRS): $(MAKE) -C $@ test: - cargo test $(CARGO_BUILD_ARGS) + #cargo test test_broadcast_future + #cargo test $(CARGO_BUILD_ARGS) + $(CARGO) test $(tests) $(CARGO_BUILD_ARGS) + +doc: + $(CARGO) doc --workspace --no-deps $(CARGO_BUILD_ARGS) # always re-create this dir -# but also copy the local target/ dir as a build-cache .PHONY: build build: + @echo "Setting pkg-buildcfg version to: $(DEB_VERSION_UPSTREAM)" + sed -i -e 's/^version =.*$$/version = "$(DEB_VERSION_UPSTREAM)"/' \ + pbs-buildcfg/Cargo.toml rm -rf build - rsync -a debian Makefile defines.mk Cargo.toml src $(SUBDIRS) build/ - test -d target && rsync -a target build/ || true + mkdir build + cp -a debian \ + Cargo.toml src \ + $(SUBCRATES) \ + docs etc examples tests www zsh-completions \ + defines.mk Makefile \ + ./build/ + rm -f build/Cargo.lock + find build/debian -name "*.hint" -delete $(foreach i,$(SUBDIRS), \ $(MAKE) -C build/$(i) clean ;) + +.PHONY: proxmox-backup-docs +$(DOC_DEB) $(DEBS): proxmox-backup-docs +proxmox-backup-docs: build + cd build; dpkg-buildpackage -b -us -uc --no-pre-clean + lintian $(DOC_DEB) + +# copy the local target/ dir as a build-cache .PHONY: deb -deb: $(DEB) -$(DEB): build +$(DEBS): deb +deb: build + cd build; dpkg-buildpackage -b -us -uc --no-pre-clean --build-profiles=nodoc + lintian $(DEBS) + +.PHONY: deb-all +deb-all: build cd build; dpkg-buildpackage -b -us -uc --no-pre-clean - lintian $(DEB) + lintian $(DEBS) $(DOC_DEB) .PHONY: dsc dsc: $(DSC) @@ -70,33 +141,96 @@ $(DSC): build cd build; dpkg-buildpackage -S -us -uc -d -nc lintian $(DSC) +.PHONY: clean distclean deb clean distclean: clean - -clean: +clean: clean-deb $(foreach i,$(SUBDIRS), \ $(MAKE) -C $(i) clean ;) - cargo clean - rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build + $(CARGO) clean + rm -f .do-cargo-build find . -name '*~' -exec rm {} ';' +# allows one to avoid running cargo clean when one just wants to tidy up after a packgae build +clean-deb: + rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build/ + .PHONY: dinstall -dinstall: ${DEB} - dpkg -i ${DEB} +dinstall: ${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \ + ${DEBUG_DEB} ${DEBUG_DBG_DEB} + dpkg -i $^ + +# make sure we build binaries before docs +docs: $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen .PHONY: cargo-build cargo-build: - cargo build $(CARGO_BUILD_ARGS) - -$(COMPILED_BINS): cargo-build + rm -f .do-cargo-build + $(MAKE) $(COMPILED_BINS) + +$(COMPILED_BINS) $(COMPILEDIR)/dump-catalog-shell-cli $(COMPILEDIR)/docgen: .do-cargo-build +.do-cargo-build: + $(CARGO) build $(CARGO_BUILD_ARGS) \ + --package proxmox-backup-banner \ + --bin proxmox-backup-banner \ + --package proxmox-backup-client \ + --bin proxmox-backup-client \ + --bin dump-catalog-shell-cli \ + --bin proxmox-backup-debug \ + --package proxmox-file-restore \ + --bin proxmox-file-restore \ + --package pxar-bin \ + --bin pxar \ + --package pbs-tape \ + --bin pmt \ + --bin pmtx \ + --package proxmox-restore-daemon \ + --bin proxmox-restore-daemon \ + --package proxmox-backup \ + --bin docgen \ + --bin proxmox-backup-api \ + --bin proxmox-backup-manager \ + --bin proxmox-backup-proxy \ + --bin proxmox-daily-update \ + --bin proxmox-file-restore \ + --bin proxmox-tape \ + --bin sg-tape-cmd + touch "$@" + + +.PHONY: lint +lint: + cargo clippy -- -A clippy::all -D clippy::correctness install: $(COMPILED_BINS) install -dm755 $(DESTDIR)$(BINDIR) + install -dm755 $(DESTDIR)$(ZSH_COMPL_DEST) $(foreach i,$(USR_BIN), \ - install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ;) + install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/ ; \ + install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;) install -dm755 $(DESTDIR)$(SBINDIR) $(foreach i,$(USR_SBIN), \ - install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ;) + install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(SBINDIR)/ ; \ + install -m644 zsh-completions/_$(i) $(DESTDIR)$(ZSH_COMPL_DEST)/ ;) install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup + install -dm755 $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore + $(foreach i,$(RESTORE_BIN), \ + install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/file-restore/ ;) + # install sg-tape-cmd as setuid binary + install -m4755 -o root -g root $(COMPILEDIR)/sg-tape-cmd $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/sg-tape-cmd $(foreach i,$(SERVICE_BIN), \ install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;) $(MAKE) -C www install + $(MAKE) -C docs install +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) + $(MAKE) test # HACK, only test now to avoid clobbering build files with wrong config +endif + +.PHONY: upload +upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB} ${DEBUG_DEB} + # check if working directory is clean + git diff --exit-code --stat && git diff --exit-code --stat --staged + tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} ${CLIENT_DEB} \ + ${CLIENT_DBG_DEB} ${DEBUG_DEB} ${DEBUG_DBG_DEB} \ + | ssh -X repoman@repo.proxmox.com upload --product pbs --dist bullseye + tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg,pbs-client" --dist bullseye + tar cf - ${RESTORE_DEB} ${RESTORE_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist bullseye