]> git.proxmox.com Git - pve-apiclient.git/blobdiff - Makefile
bump version to 2.0-5
[pve-apiclient.git] / Makefile
index 35a55cca329eb8bd96cdad3e0b9d3e410f4fc00c..8836a5ddd57f39f52f54a809ff023f54645ebfb8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 PACKAGE=libpve-apiclient-perl
 PKGVER=2.0
-PKGREL=1
+PKGREL=5
 
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
 
@@ -9,6 +9,9 @@ DESTDIR=
 PERL5DIR=${DESTDIR}/usr/share/perl5
 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
 
+PVE_COMMON_FILES=              \
+       Exception.pm
+
 all: ${DEB}
 
 .PHONY: deb
@@ -21,11 +24,16 @@ deb ${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
 
+update-pve-common:
+       for i in ${PVE_COMMON_FILES}; do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done
+       for i in ${PVE_COMMON_FILES}; do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done
+
 .PHONY: upload
 upload: ${DEB}
        tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
@@ -33,7 +41,7 @@ upload: ${DEB}
 distclean: clean
 
 clean:
-       rm -rf ./build *.deb *.changes
+       rm -rf ./build *.deb *.changes *.buildinfo
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall