X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=Makefile;h=299abbc9be608c2da93121e7db9d683e05b9a9a1;hp=21bd7e049473b82e4291f96e53109a841c214ffc;hb=83b0b7d185adb0aba1c36cd29999f5ad925f07eb;hpb=7c7bc4623db5f9e4d05da329740025f7502c4d34 diff --git a/Makefile b/Makefile index 21bd7e0..299abbc 100644 --- a/Makefile +++ b/Makefile @@ -1,41 +1,52 @@ -VERSION=5.0 -PKGREL=36 +include /usr/share/dpkg/pkg-info.mk PACKAGE=libpve-common-perl ARCH=all -GITVERSION:=$(shell git rev-parse HEAD) -BUILDDIR ?= build +BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM} -DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb +DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${ARCH}.deb +DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc +TARGZ=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.tar.gz -all: ${DEB} +all: + ${MAKE} -C src .PHONY: dinstall dinstall: deb dpkg -i ${DEB} +${BUILDDIR}: src debian + rm -rf ${BUILDDIR} + rsync -a * ${BUILDDIR} + echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout $(shell git rev-parse HEAD)" > ${BUILDDIR}/debian/SOURCE .PHONY: deb -deb ${DEB}: check - rm -rf ${BUILDDIR} - rsync -a src/ ${BUILDDIR} - rsync -a debian/ ${BUILDDIR}/debian - echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE +deb: ${DEB} +${DEB}: ${BUILDDIR} cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc lintian ${DEB} +.PHONY: dsc +dsc ${TARGZ}: ${DSC} +${DSC}: ${BUILDDIR} + cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d -nc + lintian ${DSC} + .PHONY: clean distclean distclean: clean clean: - rm -rf *~ *.deb *.changes ${BUILDDIR} *.buildinfo + rm -rf *~ *.deb *.changes ${PACKAGE}-*/ *.buildinfo *.dsc *.tar.gz .PHONY: check check: $(MAKE) -C test check +.PHONY: install +install: + ${MAKE} -C src install + .PHONY: upload upload: ${DEB} - tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch - + tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster