]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
bump version to 2.0.5-2
[lxc.git] / Makefile
index 1ee52bb4ed58940d4195e6d2d85067e1484b5c60..2caaeb14bff82f11aa4151c9b7bd21cbcef0fadc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
-RELEASE=4.1
+RELEASE=4.3
 
 PACKAGE=lxc-pve
-LXCVER=1.1.5
-DEBREL=7
+LXCVER=2.0.5
+DEBREL=2
 
 SRCDIR=lxc
 SRCTAR=${SRCDIR}.tgz
@@ -11,9 +11,9 @@ 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
+${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb                     \
+${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb                         \
+${PACKAGE}-dbg_${LXCVER}-${DEBREL}_${ARCH}.deb
 
 all: ${DEBS}
        echo ${DEBS}
@@ -30,21 +30,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