X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=Makefile;h=7ea60be18837ac9dcfbfbe1e33edb64af8fa6490;hp=a9072a17cf0afa305716e326275cd918508c89ff;hb=9ca89b8722fb9656b5deaca037f0612aab3170e4;hpb=0ddae1ce6d24eb87db066c552cb91ca938960f8b diff --git a/Makefile b/Makefile index a9072a1..7ea60be 100644 --- a/Makefile +++ b/Makefile @@ -1,51 +1,52 @@ -RELEASE=4.2 - -VERSION=4.0 -PKGREL=72 +include /usr/share/dpkg/pkg-info.mk PACKAGE=libpve-common-perl -PREFIX=/usr -BINDIR=${PREFIX}/bin -MANDIR=${PREFIX}/share/man -DOCDIR=${PREFIX}/share/doc -MAN1DIR=${MANDIR}/man1/ -PERLDIR=${PREFIX}/share/perl5 - ARCH=all -GITVERSION:=$(shell cat .git/refs/heads/master) -DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb +BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM} + +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}: - $(MAKE) -C test check - rm -rf build - rsync -a src/ build - rsync -a debian/ build/debian - echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE - cd build; dpkg-buildpackage -rfakeroot -b -us -uc +deb: ${DEB} +${DEB}: ${BUILDDIR} + cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc lintian ${DEB} -.PHONY: clean -clean: - rm -rf *~ *.deb *.changes build ${PACKAGE}-*.tar.gz +.PHONY: dsc +dsc ${TARGZ}: ${DSC} +${DSC}: ${BUILDDIR} + cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d -nc + lintian ${DSC} -.PHONY: distclean +.PHONY: clean distclean distclean: clean +clean: + rm -rf *~ *.deb *.changes ${BUILDDIR} *.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 repoman@repo.proxmox.com upload - + tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster