X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=611f5d6a2fa55cf072fbf1e4917a0156d95d0689;hb=HEAD;hp=166aceec3dd94b9c426081aa7d63e04b106c9c01;hpb=f9b7a596b2fe63c54b4ad3d0131427042fdb479d;p=pve-ha-manager.git diff --git a/Makefile b/Makefile index 166acee..10fd9ca 100644 --- a/Makefile +++ b/Makefile @@ -1,57 +1,59 @@ -VERSION=2.0 +include /usr/share/dpkg/default.mk + PACKAGE=pve-ha-manager SIMPACKAGE=pve-ha-simulator -PKGREL=1 -GITVERSION:=$(shell cat .git/refs/heads/master) +GITVERSION:=$(shell git rev-parse HEAD) +BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION) -ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb +DBG_DEB=$(PACKAGE)-dbgsym_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb -DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb -SIMDEB=${SIMPACKAGE}_${VERSION}-${PKGREL}_all.deb +DSC=$(PACKAGE)_$(DEB_VERSION).dsc +SIMDEB=$(SIMPACKAGE)_$(DEB_VERSION)_all.deb +SIMDSC=$(SIMPACKAGE)_$(DEB_VERSION).dsc +all: deb -all: ${DEB} ${SIMDEB} +$(BUILDDIR): + rm -rf $@ $@.tmp + cp -a src/ $@.tmp + cp -a debian $@.tmp/ + echo "git clone git://git.proxmox.com/git/pve-ha-manager.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE + mv $@.tmp $@ -.PHONY: dinstall simdeb +.PHONY: dinstall dinstall: $(DEB) $(SIMDEB) - dpkg -i ${DEB} ${SIMDEB} + dpkg -i $(DEB) $(SIMDEB) +.PHONY: deb +deb: $(DEB) $(SIMDEB) +$(DEB) $(DBG_DEB): $(BUILDDIR) + cd $(BUILDDIR); dpkg-buildpackage -b -us -uc + lintian $(DEB) + lintian $(SIMDEB) -.PHONY: simdeb -simdeb: ${SIMDEB} -${SIMDEB}: - rm -rf build - mkdir build - rsync -a src/ build - rsync -a simdebian/ build/debian - cp changelog.Debian build/debian/changelog - echo "git clone git://git.proxmox.com/git/pve-ha-manager.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE - cd build; dpkg-buildpackage -rfakeroot -b -us -uc - lintian ${SIMDEB} +.PHONY: dsc +dsc: + $(MAKE) clean + $(MAKE) $(DSC) + lintian $(DSC) -.PHONY: deb -deb: ${DEB} -${DEB}: - rm -rf build - mkdir build - rsync -a src/ build - rsync -a debian/ build/debian - cp changelog.Debian build/debian/changelog - echo "git clone git://git.proxmox.com/git/pve-ha-manager.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE - cd build; dpkg-buildpackage -rfakeroot -b -us -uc - lintian ${DEB} +$(DSC): $(BUILDDIR) + cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d + +sbuild: $(DSC) + sbuild $(DSC) .PHONY: clean clean: make -C src clean - rm -rf build *.deb ${PACKAGE}-*.tar.gz *.changes - find . -name '*~' -exec rm {} ';' + rm -rf $(PACKAGE)-[0-9]*/ *.dsc *.deb $(PACKAGE)*.tar* *.changes *.build *.buildinfo .PHONY: distclean distclean: clean .PHONY: upload -upload: ${DEB} ${SIMDEB} - tar cf - ${DEB} ${SIMDEB}|ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch --arch ${ARCH} - +upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION) +upload: $(DEB) $(SIMDEB) + tar cf - $(DEB) $(DBG_DEB) $(SIMDEB)|ssh repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST) --arch $(DEB_HOST_ARCH)