]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
bump version to 2.0.5-2
[lxc.git] / Makefile
index 2e268e64facbba1c4d0960be90b63a9b9e043ab7..2caaeb14bff82f11aa4151c9b7bd21cbcef0fadc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,19 @@
-RELEASE=4.0
+RELEASE=4.3
 
-PACKAGE=lxc
-LXCVER=1.1.1
-DEBREL=1
+PACKAGE=lxc-pve
+LXCVER=2.0.5
+DEBREL=2
 
-SRCDIR=${PACKAGE}
+SRCDIR=lxc
 SRCTAR=${SRCDIR}.tgz
 
 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
 GITVERSION:=$(shell cat .git/refs/heads/master)
 
 DEBS=                                  \
-${PACKAGE}_${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}
@@ -29,20 +30,13 @@ deb ${DEBS}: ${SRCTAR}
 .PHONY: download
 download ${SRCTAR}:
        rm -rf ${SRCDIR} ${SRCTAR}
-       git clone 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}-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