X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=b927fa9cf7ab07e0d7403a1983a707e6e378b3c6;hb=55448f2e9e2979097f994e63089a5f1f39f4b019;hp=a79a3ccfab8fa32dc2b3e5ab6ce481170ef1474f;hpb=172068b9c866d57760f06a0656e7e20335bc9336;p=lxc.git diff --git a/Makefile b/Makefile index a79a3cc..b927fa9 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -RELEASE=4.0 +RELEASE=4.4 PACKAGE=lxc-pve -LXCVER=1.1.5 -DEBREL=1 +LXCVER=2.0.7 +DEBREL=4 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-1.1 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