]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
debian hooks: add #DEBHELPER# stanza to preinst and postrm
[lxc.git] / Makefile
index 365479bd6f2211480c810edf7b0c4f73f65a8c10..6a87716c18cf46ff55930fed6820602c8f176b05 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,18 @@
+include /usr/share/dpkg/pkg-info.mk
+include /usr/share/dpkg/architecture.mk
+
 PACKAGE=lxc-pve
-LXCVER=3.1.0
-DEBREL=1
 
 SRCDIR=lxc
-BUILDSRC := $(PACKAGE)-$(LXCVER)
-
-ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
+BUILDSRC := $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
 
-DEB_BASE=$(PACKAGE)_$(LXCVER)-$(DEBREL)
-DEB1=$(DEB_BASE)_$(ARCH).deb
-DEB2=$(PACKAGE)-dev_$(LXCVER)-$(DEBREL)_$(ARCH).deb \
-     $(PACKAGE)-dbgsym_$(LXCVER)-$(DEBREL)_$(ARCH).deb
+DEB_BASE=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)
+DEB1=$(DEB_BASE)_$(DEB_BUILD_ARCH).deb
+DEB2=$(PACKAGE)-dev_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb \
+     $(PACKAGE)-dbgsym_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
 DEBS=$(DEB1) $(DEB2)
 DSC=$(DEB_BASE).dsc
-TARGZ=$(DEB_BASE).tar.gz
+ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
 
 all: $(DEBS)
        echo $(DEBS)
@@ -40,22 +39,25 @@ $(DEB1): $(BUILDSRC)
        cd $(BUILDSRC); dpkg-buildpackage -b -us -uc
        lintian $(DEBS)
 
+$(ORIG_SRC_TAR): $(BUILDSRC)
+       tar czf $(ORIG_SRC_TAR) -C $(BUILDSRC) .
+
 .PHONY: dsc
-dsc $(TARGZ): $(DSC)
-$(DSC): $(BUILDSRC)
+dsc: $(DSC)
+$(DSC): $(ORIG_SRC_TAR)
        rm -f *.dsc
        cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
        lintian $(DSC)
 
 .PHONY: upload
 upload: $(DEBS)
-       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
+       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist bookworm
 
 distclean: clean
 
 .PHONY: clean
 clean:
-       rm -rf $(BUILDSRC) *_$(ARCH).deb  *_$(ARCH).dsc *.tar.gz *.changes *.dsc *.buildinfo
+       rm -rf $(BUILDSRC) $(PACKAGE)-[0-9]*/ $(ORIG_SRC_TAR) *.deb *.dsc $(PACKAGE)*.debian.tar.[gx]z *.changes *.dsc *.buildinfo *.build
 
 .PHONY: dinstall
 dinstall: $(DEBS)