]> git.proxmox.com Git - pve-guest-common.git/blobdiff - Makefile
followup: rename to print_snapshot_tree, add comment and rename $res param
[pve-guest-common.git] / Makefile
index a22679decefda9bb5d734d972c7b8d817fb93d3f..c5a5967bb3f35c527dc72400c80aabe91fcf9df9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,11 @@
+include /usr/share/dpkg/pkg-info.mk
+
 PACKAGE=libpve-guest-common-perl
-PKGVER=2.0
-PKGREL=15
 
-DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
+DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
+DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
+
+BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
 
 DESTDIR=
 
@@ -11,14 +14,23 @@ DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
 
 all:
 
+${BUILDDIR}:
+       rm -rf ${BUILDDIR}
+       rsync -a * ${BUILDDIR}
+       echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE
+
 .PHONY: deb
 deb: ${DEB}
-${DEB}:
-       rm -rf build
-       rsync -a * build
-       cd build; dpkg-buildpackage -b -us -uc
+${DEB}: ${BUILDDIR}
+       cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
        lintian ${DEB}
 
+.PHONY: dsc
+dsc: ${DSC}
+${DSC}: ${BUILDDIR}
+       cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d -nc
+       lintian ${DSC}
+
 install: PVE
        install -d ${PERL5DIR}/PVE
        install -m 0644 PVE/GuestHelpers.pm ${PERL5DIR}/PVE/
@@ -32,12 +44,12 @@ install: PVE
 
 .PHONY: upload
 upload: ${DEB}
-       tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch
+       tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist buster
 
 distclean: clean
 
 clean:
-       rm -rf ./build *.deb *.changes *.buildinfo
+       rm -rf ${BUILDDIR} *.deb *.dsc *.changes *.buildinfo *.tar.gz
 
 .PHONY: dinstall
 dinstall: ${DEB}