X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=842d2455a3cb3e84a10bce45b242e8a890015224;hb=a2238c134430973ebf6e8cf6af82c5c59186f5e7;hp=c19a1c5005cdcc8e04af4a466c47997a336d8916;hpb=a4ec66d521914da8fc3e64c745d60339dbdf5225;p=lxc.git diff --git a/Makefile b/Makefile index c19a1c5..842d245 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -RELEASE=4.1 +RELEASE=4.4 PACKAGE=lxc-pve -LXCVER=1.1.5 -DEBREL=7 +LXCVER=2.0.7 +DEBREL=3 SRCDIR=lxc SRCTAR=${SRCDIR}.tgz @@ -10,15 +10,18 @@ SRCTAR=${SRCDIR}.tgz 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}-dbg_${LXCVER}-${DEBREL}_${ARCH}.deb +DEBS=$(DEB1) $(DEB2) all: ${DEBS} echo ${DEBS} -deb ${DEBS}: ${SRCTAR} +.PHONY: deb +deb: ${DEBS} +$(DEB2): $(DEB1) +$(DEB1): ${SRCTAR} rm -rf ${SRCDIR} tar xf ${SRCTAR} cp -a debian ${SRCDIR}/debian @@ -30,21 +33,13 @@ deb ${DEBS}: ${SRCTAR} .PHONY: download download ${SRCTAR}: rm -rf ${SRCDIR} ${SRCTAR} - git clone -b stable-2.0 git://github.com/lxc/lxc + git clone -b lxc-${LXCVER} git://github.com/lxc/lxc tar czf ${SRCTAR}.tmp ${SRCDIR} mv ${SRCTAR}.tmp ${SRCTAR} .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 distclean: clean