X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=13d8843f19ff5e0d9f81073abcb8b90ee2d9bc38;hb=1f675a79039fd91c13554fe130bf9d95881b308e;hp=d410f17b03731063c187e5390c2edba61358ed99;hpb=adac2e37acec8e2d0e2243bb2d561253e11fcd24;p=lxcfs.git diff --git a/Makefile b/Makefile index d410f17..13d8843 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,6 @@ -RELEASE=4.3 - PACKAGE=lxcfs -PKGVER=2.0.5 -DEBREL=pve1 +PKGVER=2.0.7 +DEBREL=pve4 SRCDIR=${PACKAGE} SRCTAR=${SRCDIR}.tgz @@ -10,19 +8,23 @@ SRCTAR=${SRCDIR}.tgz ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell cat .git/refs/heads/master) -DEB=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb \ - ${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb +DEB1=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb +DEB2=${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb +DEBS=$(DEB1) $(DEB2) all: ${DEB} -deb ${DEB}: ${SRCTAR} +.PHONY: deb +deb: $(DEBS) +$(DEB2): $(DEB1) +$(DEB1): $(SRCTAR) rm -rf ${SRCDIR} tar xf ${SRCTAR} cp -a debian ${SRCDIR}/debian echo "git clone git://git.proxmox.com/git/lxcfs.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE echo "debian/SOURCE" >> ${SRCDIR}/debian/docs cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc - #lintian ${DEB} + #lintian $(DEB) .PHONY: download @@ -33,23 +35,16 @@ download ${SRCTAR}: mv ${SRCTAR}.tmp ${SRCTAR} .PHONY: upload -upload: ${DEB} - umount /pve/${RELEASE}; mount /pve/${RELEASE} -o rw - mkdir -p /pve/${RELEASE}/extra - rm -f /pve/${RELEASE}/extra/${PACKAGE}_*.deb - rm -f /pve/${RELEASE}/extra/${PACKAGE}-dbg_*.deb - rm -f /pve/${RELEASE}/extra/Packages* - cp ${DEB} /pve/${RELEASE}/extra - cd /pve/${RELEASE}/extra; dpkg-scanpackages . /dev/null > Packages; gzip -9c Packages > Packages.gz - umount /pve/${RELEASE}; mount /pve/${RELEASE} -o ro +upload: $(DEBS) + tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch distclean: clean .PHONY: clean clean: - rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc + rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc *.buildinfo find . -name '*~' -exec rm {} ';' .PHONY: dinstall -dinstall: ${DEB} - dpkg -i ${DEB} +dinstall: $(DEBS) + dpkg -i $(DEBS)