mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-04-28 13:29:58 +00:00

i.e., just reuse GITVERSION, and FWIW, the current ID length git auto chooses is 9 chars, suggesting that 8 really was getting to small. With 16 we got now 64 bits, that's plenty for the next few years. Document the format also (roughly) in the API schema Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
include /usr/share/dpkg/pkg-info.mk
|
|
include /usr/share/dpkg/architecture.mk
|
|
include defines.mk
|
|
|
|
export PVERELEASE=$(DEB_VERSION_UPSTREAM)
|
|
export VERSION=$(DEB_VERSION_UPSTREAM_REVISION)
|
|
|
|
DESTDIR=
|
|
|
|
SUBDIRS = aplinfo PVE bin www services configs network-hooks test
|
|
|
|
GITVERSION:=$(shell git rev-parse --short=16 HEAD)
|
|
|
|
DEB=$(PACKAGE)_$(VERSION)_$(DEB_BUILD_ARCH).deb
|
|
|
|
all: $(SUBDIRS)
|
|
set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i; done
|
|
|
|
.PHONY: check
|
|
check: bin test www
|
|
$(MAKE) -C bin check
|
|
$(MAKE) -C test check
|
|
$(MAKE) -C www check
|
|
|
|
.PHONY: dinstall
|
|
dinstall: $(DEB)
|
|
dpkg -i $(DEB)
|
|
|
|
.PHONY: deb
|
|
deb: $(DEB)
|
|
$(DEB):
|
|
rm -rf dest
|
|
mkdir dest
|
|
rsync -a * dest
|
|
echo "git clone git://git.proxmox.com/git/pve-manager.git\\ngit checkout $(GITVERSION)" > dest/debian/SOURCE
|
|
echo "REPOID_GENERATED=$(GITVERSION)" > dest/debian/rules.env
|
|
cd dest; dpkg-buildpackage -b -us -uc
|
|
lintian $(DEB)
|
|
|
|
.PHONY: upload
|
|
upload: $(DEB) check
|
|
# check if working directory is clean
|
|
git diff --exit-code --stat && git diff --exit-code --stat --staged
|
|
tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pve --dist bullseye
|
|
|
|
.PHONY: install
|
|
install: vzdump-hook-script.pl
|
|
install -d -m 0700 -o www-data -g www-data $(DESTDIR)/var/log/pveproxy
|
|
install -d $(DOCDIR)/examples
|
|
install -d $(DESTDIR)/var/lib/$(PACKAGE)
|
|
install -d $(DESTDIR)/var/lib/vz/images
|
|
install -d $(DESTDIR)/var/lib/vz/template/cache
|
|
install -d $(DESTDIR)/var/lib/vz/template/iso
|
|
install -m 0644 vzdump-hook-script.pl $(DOCDIR)/examples/vzdump-hook-script.pl
|
|
install -m 0644 spice-example-sh $(DOCDIR)/examples/spice-example-sh
|
|
set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
set -e && for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|
|
rm -rf dest country.dat *.deb *.buildinfo *.changes ca-tmp
|