]> git.proxmox.com Git - lxcfs.git/blobdiff - Makefile
bump version to 6.0.0-pve2
[lxcfs.git] / Makefile
index cd91f8106d4ad4aa517579f601f050ae82bb2aa5..d8830ed715667434645c3b6f7953bd2a23981c22 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,44 +1,64 @@
+include /usr/share/dpkg/default.mk
+
 PACKAGE=lxcfs
-PKGVER != dpkg-parsechangelog -Sversion | cut -d- -f1
-PKGREL != dpkg-parsechangelog -Sversion | cut -d- -f2
 
-SRCDIR=${PACKAGE}
-BUILDSRC := $(SRCDIR).tmp
+SRCDIR=$(PACKAGE)
+BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
+ORIG_SRC_TAR=$(PACKAGE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
 
-ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
 GITVERSION:=$(shell git rev-parse HEAD)
 
-DEB1=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb
-DEB2=${PACKAGE}-dbgsym_${PKGVER}-${PKGREL}_${ARCH}.deb
-DEBS=$(DEB1) $(DEB2)
+DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
+DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_HOST_ARCH).deb
+DBGDEB=$(PACKAGE)-dbgsym_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_HOST_ARCH).deb
+DEBS=$(DEB) $(DBGDEB)
 
-all: ${DEB}
+all: $(DEB)
 
 .PHONY: submodule
 submodule:
-       test -f "${SRCDIR}/README" || git submodule update --init
+       test -f "$(SRCDIR)/README" || git submodule update --init
+$(SRCDIR)/README: submodule
+
+$(BUILDDIR): $(SRCDIR)/README debian
+       rm -rf $(BUILDDIR)
+       rsync -a $(SRCDIR)/ debian $(BUILDDIR)
+       echo "git clone git://git.proxmox.com/git/lxcfs.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
 
 .PHONY: deb
 deb: $(DEBS)
-$(DEB2): $(DEB1)
-$(DEB1): | submodule
-       rm -f *.deb
-       rm -rf $(BUILDSRC)
-       cp -a $(SRCDIR) $(BUILDSRC)
-       cp -a debian $(BUILDSRC)/debian
-       echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
-       cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
-       #lintian $(DEBS)
+$(DBGDEB): $(DEB)
+$(DEB): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -rfakeroot -b -us -uc
+       lintian $(DEBS)
+
+sbuild: $(DSC)
+       sbuild $(DSC)
+
+$(ORIG_SRC_TAR): $(BUILDDIR)
+       tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDDIR)/debian" $(BUILDDIR)
+
+.PHONY: dsc
+dsc:
+       $(MAKE) clean
+       $(MAKE) $(DSC)
+       lintian $(DSC)
+
+$(DSC): $(ORIG_SRC_TAR) $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
 
 .PHONY: upload
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
 upload: $(DEBS)
-       tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
-
-distclean: clean
+       tar cf - $(DEBS) | ssh repoman@repo.proxmox.com upload --product pve --dist $(UPLOAD_DIST)
 
-.PHONY: clean
+.PHONY: clean distclean
 clean:
-       rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc  *.buildinfo
+       rm -rf $(PACKAGE)-[0-9]*/
+       rm -rf $(PACKAGE)*.tar* *.deb *.dsc *.changes *.dsc *.buildinfo *.build
+
+distclean: clean
+       git submodule deinit --all
 
 .PHONY: dinstall
 dinstall: $(DEBS)