]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
use new repoman for upload target
[lxc.git] / Makefile
index 2e268e64facbba1c4d0960be90b63a9b9e043ab7..3f6b4fd19c24f016400651bfdc4af5b9a1d41e73 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
-RELEASE=4.0
+RELEASE=4.2
 
-PACKAGE=lxc
-LXCVER=1.1.1
-DEBREL=1
+PACKAGE=lxc-pve
+LXCVER=2.0.3
+DEBREL=4
 
-SRCDIR=${PACKAGE}
+SRCDIR=lxc
 SRCTAR=${SRCDIR}.tgz
 
 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
@@ -12,6 +12,7 @@ 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
 
 all: ${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 stable-2.0 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