]> git.proxmox.com Git - pve-guest-common.git/blobdiff - Makefile
abstractconfig: add pending changes related helpers
[pve-guest-common.git] / Makefile
index db6c7b16333edf14e8708f15d56e11e40c19e359..47ac8a6f146a905738d5038dd2075eccf56be990 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=8
 
-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/
@@ -29,15 +41,16 @@ install: PVE
        install -m 0644 PVE/Replication.pm ${PERL5DIR}/PVE/
        install -d ${PERL5DIR}/PVE/VZDump
        install -m 0644 PVE/VZDump/Plugin.pm ${PERL5DIR}/PVE/VZDump/
+       install -m 0644 PVE/VZDump/Common.pm ${PERL5DIR}/PVE/VZDump/
 
 .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}