X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=f052520bd3cd3ac8736687afafad4893f5825ed7;hb=ace8b8211d964448ae21c6e8905a4f8d43b0a3fe;hp=c1f36188aed8747a8fa39cd28da4a12b60a0b345;hpb=3904041f5ef6aaf264a9e6bed7140fcf924d46e6;p=lxc.git diff --git a/Makefile b/Makefile index c1f3618..f052520 100644 --- a/Makefile +++ b/Makefile @@ -1,57 +1,47 @@ -RELEASE=4.0 - PACKAGE=lxc-pve -LXCVER=1.1.2 -DEBREL=5 +LXCVER=2.1.1 +DEBREL=2 SRCDIR=lxc -SRCTAR=${SRCDIR}.tgz +BUILDSRC := $(SRCDIR).tmp ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell cat .git/refs/heads/master) -DEBS= \ -${PACKAGE}_${LXCVER}-${DEBREL}_amd64.deb \ -${PACKAGE}-dev_${LXCVER}-${DEBREL}_amd64.deb \ -${PACKAGE}-dbg_${LXCVER}-${DEBREL}_amd64.deb +DEB1=${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb +DEB2=${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb \ + ${PACKAGE}-dbgsym_${LXCVER}-${DEBREL}_${ARCH}.deb +DEBS=$(DEB1) $(DEB2) 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 git://github.com/lxc/lxc - tar czf ${SRCTAR}.tmp ${SRCDIR} - mv ${SRCTAR}.tmp ${SRCTAR} +.PHONY: submodule +submodule: + test -f "${SRCDIR}/debian/changelog" || git submodule update --init + +.PHONY: deb +deb: ${DEBS} +$(DEB2): $(DEB1) +$(DEB1): | submodule + rm -f *.deb + rm -rf $(BUILDSRC) + mkdir $(BUILDSRC) + cp -a $(SRCDIR)/* $(BUILDSRC)/ + cp -a debian $(BUILDSRC)/debian + echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE + cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc + lintian $(DEBS) .PHONY: upload upload: ${DEBS} - 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}-dev_*.deb - rm -f /pve/${RELEASE}/extra/${PACKAGE}-dbg_*.deb - rm -f /pve/${RELEASE}/extra/Packages* - cp ${DEBS} /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 + 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 *.changes *.dsc *.buildinfo .PHONY: dinstall dinstall: ${DEBS}