]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
remove patch which has gone upstream
[lxc.git] / Makefile
index afe9c31967f1fcdfa5b09fd4e780f654e0956f4a..12ba0736f2a24e2c0948ad1884f3877a755bbee0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,53 @@
-RELEASE=4.0
+RELEASE=4.4
 
+PACKAGE=lxc-pve
+LXCVER=2.0.7
+DEBREL=2
 
 SRCDIR=lxc
 SRCTAR=${SRCDIR}.tgz
 
-all: ${SRCTAR}
+ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
+GITVERSION:=$(shell cat .git/refs/heads/master)
 
+DEB1=${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb
+DEB2=${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb \
+     ${PACKAGE}-dbg_${LXCVER}-${DEBREL}_${ARCH}.deb
+DEBS=$(DEB1) $(DEB2)
 
-:PHONY: download
+all: ${DEBS}
+       echo ${DEBS}
+
+.PHONY: deb
+deb: ${DEBS}
+$(DEB2): $(DEB1)
+$(DEB1): ${SRCTAR}
+       rm -rf ${SRCDIR}
+       tar xf ${SRCTAR}
+       cp -a debian ${SRCDIR}/debian
+       echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout ${GITVERSION}" >  ${SRCDIR}/debian/SOURCE
+       cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc
+       lintian ${DEBS}
+
+
+.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}
+       tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload
+
 distclean: clean
 
 .PHONY: clean
 clean:
-       rm -rf ${SRCDIR} ${SRCDIR}.tmp 
+       rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc 
        find . -name '*~' -exec rm {} ';'
+
+.PHONY: dinstall
+dinstall: ${DEBS}
+       dpkg -i ${DEBS}