]> git.proxmox.com Git - pve-guest-common.git/blobdiff - Makefile
bump version to 5.1.2
[pve-guest-common.git] / Makefile
index a6a2f642b2e1bcd8a0015acb0ba5e324a053c3a2..abf2b0dd5e4a86b57aded528165d017fe62df193 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,18 +2,19 @@ include /usr/share/dpkg/pkg-info.mk
 
 PACKAGE=libpve-guest-common-perl
 
-DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb
-DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
+DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
+DSC=$(PACKAGE)_$(DEB_VERSION).dsc
 
-BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
+BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
 
 all:
 
 $(BUILDDIR):
-       rm -rf $(BUILDDIR)
-       cp -a src $(BUILDDIR)
-       cp -a debian $(BUILDDIR)/
-       echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
+       rm -rf $@ $@.tmp
+       cp -a src $@.tmp
+       cp -a debian $@.tmp/
+       echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
 .PHONY: deb
 deb: $(DEB)
@@ -22,19 +23,24 @@ $(DEB): $(BUILDDIR)
        lintian $(DEB)
 
 .PHONY: dsc
-dsc: $(DSC)
+dsc:
+       $(MAKE) $(DSC)
+       lintian $(DSC)
+
 $(DSC): $(BUILDDIR)
        cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d -nc
-       lintian $(DSC)
+
+sbuild: $(DSC)
+       sbuild $(DSC)
 
 .PHONY: upload
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
 upload: $(DEB)
-       tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye
+       tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST)
 
 distclean: clean
-
 clean:
-       rm -rf $(BUILDDIR) *.deb *.dsc *.changes *.buildinfo *.tar.gz
+       rm -rf $(PACKAGE)-[0-9]*/ *.deb *.dsc *.changes *.buildinfo *.build $(PACKAGE)*.tar*
 
 .PHONY: dinstall
 dinstall: $(DEB)