]> git.proxmox.com Git - pve-apiclient.git/blobdiff - Makefile
bump version to 3.3.0
[pve-apiclient.git] / Makefile
index 9dcbddec2c2ae18c9db1ce7e03e337b8434d09bc..c4c57f841cdcf7052a653015cfaf93013812f293 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,42 +1,48 @@
+include /usr/share/dpkg/default.mk
+
 PACKAGE=libpve-apiclient-perl
-PKGVER=2.0
-PKGREL=2
 
-DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
+BUILDSRC := $(PACKAGE)-$(DEB_VERSION)
+DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
+DSC=$(PACKAGE)_$(DEB_VERSION).dsc
 
 DESTDIR=
+PERL5DIR=$(DESTDIR)/usr/share/perl5
+DOCDIR=$(DESTDIR)/usr/share/doc/$(PACKAGE)
+
+GITVERSION:=$(shell git rev-parse HEAD)
 
-PERL5DIR=${DESTDIR}/usr/share/perl5
-DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
+all: $(DEB)
 
-all: ${DEB}
+$(BUILDSRC):
+       rm -rf $@ $@.tmp
+       cp -a src $@.tmp
+       cp -a debian $@.tmp/
+       echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" >$@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
 .PHONY: deb
-deb ${DEB}:
-       rm -rf build
-       rsync -a debian build
-       make DESTDIR=./build install
-       cd build; dpkg-buildpackage -rfakeroot -b -us -uc
-       lintian ${DEB}
-
-install:
-       install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
-       install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
-       install -d -m 755 ${DOCDIR}/examples
-       install -m 0755 examples/example1.pl ${DOCDIR}/examples
-       install -m 0755 examples/example2.pl ${DOCDIR}/examples
-       install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
+deb $(DEB): $(BUILDSRC)
+       cd $(BUILDSRC); dpkg-buildpackage -b -us -uc
+       lintian $(DEB)
+
+.PHONY: dsc
+dsc: $(DSC)
+$(DSC): $(BUILDSRC)
+       cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d
+       lintian $(DSC)
+
+sbuild: $(DSC)
+       sbuild $(DSC)
 
 .PHONY: upload
-upload: ${DEB}
-       tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
+upload: $(DEB)
+       tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye
 
 distclean: clean
-
 clean:
-       rm -rf ./build *.deb *.changes *.buildinfo
-       find . -name '*~' -exec rm {} ';'
+       rm -rf $(PACKAGE)-[0-9]*/ *.deb *.changes *.buildinfo *.build *.dsc *.tar.*
 
 .PHONY: dinstall
-dinstall: ${DEB}
-       dpkg -i ${DEB}
+dinstall: $(DEB)
+       dpkg -i $(DEB)