]> git.proxmox.com Git - lxc.git/blobdiff - Makefile
bump version to 2.1.1-2
[lxc.git] / Makefile
index afe9c31967f1fcdfa5b09fd4e780f654e0956f4a..f052520bd3cd3ac8736687afafad4893f5825ed7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,48 @@
-RELEASE=4.0
-
+PACKAGE=lxc-pve
+LXCVER=2.1.1
+DEBREL=2
 
 SRCDIR=lxc
-SRCTAR=${SRCDIR}.tgz
+BUILDSRC := $(SRCDIR).tmp
+
+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}-dbgsym_${LXCVER}-${DEBREL}_${ARCH}.deb
+DEBS=$(DEB1) $(DEB2)
 
-all: ${SRCTAR}
+all: ${DEBS}
+       echo ${DEBS}
 
+.PHONY: submodule
+submodule:
+       test -f "${SRCDIR}/debian/changelog" || git submodule update --init
 
-:PHONY: download
-download ${SRCTAR}:
-       rm -rf ${SRCDIR} ${SRCTAR}
-       git clone git://github.com/lxc/lxc
-       tar czf ${SRCTAR}.tmp ${SRCDIR}
-       mv ${SRCTAR}.tmp ${SRCTAR}
+.PHONY: deb
+deb: ${DEBS}
+$(DEB2): $(DEB1)
+$(DEB1): | submodule
+       rm -f *.deb
+       rm -rf $(BUILDSRC)
+       mkdir $(BUILDSRC)
+       cp -a $(SRCDIR)/* $(BUILDSRC)/
+       cp -a debian $(BUILDSRC)/debian
+       echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
+       cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
+       lintian $(DEBS)
+
+.PHONY: upload
+upload: ${DEBS}
+       tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
 
 distclean: clean
 
 .PHONY: clean
 clean:
-       rm -rf ${SRCDIR} ${SRCDIR}.tmp 
-       find . -name '*~' -exec rm {} ';'
+       rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc *.buildinfo
+
+.PHONY: dinstall
+dinstall: ${DEBS}
+       dpkg -i ${DEBS}