X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=eb77730abd70045683ae5c8b156968e9c0ffbbf9;hb=907c590de2bc03de63bc18b9257aa9efce6464a7;hp=463c6bd2a87015e204a9dc6e54ccc72698763d1a;hpb=da73bbc6a9907ca9a204d3b1997d886c1141e469;p=lxc.git diff --git a/Makefile b/Makefile index 463c6bd..eb77730 100644 --- a/Makefile +++ b/Makefile @@ -1,50 +1,62 @@ -RELEASE=4.3 - PACKAGE=lxc-pve -LXCVER=2.0.6 -DEBREL=1 +PKGVER != dpkg-parsechangelog -Sversion | cut -d- -f1 +PKGREL != dpkg-parsechangelog -Sversion | cut -d- -f2 SRCDIR=lxc -SRCTAR=${SRCDIR}.tgz +BUILDSRC := $(PACKAGE)-$(PKGVER) ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) -GITVERSION:=$(shell cat .git/refs/heads/master) - -DEBS= \ -${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb \ -${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb \ -${PACKAGE}-dbg_${LXCVER}-${DEBREL}_${ARCH}.deb - -all: ${DEBS} - echo ${DEBS} - -deb ${DEBS}: ${SRCTAR} - rm -rf ${SRCDIR} - tar xf ${SRCTAR} - cp -a debian ${SRCDIR}/debian - echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE - cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc - lintian ${DEBS} - -.PHONY: download -download ${SRCTAR}: - rm -rf ${SRCDIR} ${SRCTAR} - git clone -b lxc-${LXCVER} git://github.com/lxc/lxc - tar czf ${SRCTAR}.tmp ${SRCDIR} - mv ${SRCTAR}.tmp ${SRCTAR} +DEB_BASE=$(PACKAGE)_$(PKGVER)-$(PKGREL) +DEB1=$(DEB_BASE)_$(ARCH).deb +DEB2=$(PACKAGE)-dev_$(PKGVER)-$(PKGREL)_$(ARCH).deb \ + $(PACKAGE)-dbgsym_$(PKGVER)-$(PKGREL)_$(ARCH).deb +DEBS=$(DEB1) $(DEB2) +DSC=$(DEB_BASE).dsc +TARGZ=$(DEB_BASE).tar.gz + +all: $(DEBS) + echo $(DEBS) + +.PHONY: submodule +submodule: + test -f "$(SRCDIR)/debian/changelog" || git submodule update --init + +$(BUILDSRC): lxc debian config | submodule + rm -rf $(BUILDSRC) + cp -a $(SRCDIR) $(BUILDSRC) + cp -a debian $(BUILDSRC)/debian + mkdir $(BUILDSRC)/debian/config + for i in config/*.conf.in; do \ + sed -e 's|@LXCTEMPLATECONFIG@|/usr/share/lxc/config|g' $$i > $(BUILDSRC)/debian/$${i%.in} ; \ + done + echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(shell git rev-parse HEAD)" > $(BUILDSRC)/debian/SOURCE + +.PHONY: deb +deb: $(DEBS) +$(DEB2): $(DEB1) +$(DEB1): $(BUILDSRC) + rm -f *.deb + cd $(BUILDSRC); dpkg-buildpackage -b -us -uc + lintian $(DEBS) + +.PHONY: dsc +dsc $(TARGZ): $(DSC) +$(DSC): $(BUILDSRC) + rm -f *.dsc + cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc + lintian $(DSC) .PHONY: upload -upload: ${DEBS} - tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload +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 - find . -name '*~' -exec rm {} ';' + rm -rf $(BUILDSRC) *_$(ARCH).deb *_$(ARCH).dsc *.tar.gz *.changes *.dsc *.buildinfo .PHONY: dinstall -dinstall: ${DEBS} - dpkg -i ${DEBS} +dinstall: $(DEBS) + dpkg -i $(DEBS)