]> git.proxmox.com Git - pve-apiclient.git/commitdiff
add Makefile and debian package files
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 16 Dec 2016 08:21:41 +0000 (09:21 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 16 Dec 2016 08:22:27 +0000 (09:22 +0100)
Makefile [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/install [new file with mode: 0644]
debian/rules [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..7267b3d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,32 @@
+PACKAGE=libpve-apiclient-perl
+PKGVER=1.0
+PKGREL=1
+
+DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
+
+DESTDIR=
+
+PERL5DIR=/usr/share/perl5
+
+all: ${DEB}
+
+.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 ${DESTDIR}${PERL5DIR}/PVE/APIClient/LWP.pm
+
+.PHONY: upload
+upload: ${DEB}
+       tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload
+
+distclean: clean
+
+clean:
+       rm -rf ./build *.deb *.changes
+       find . -name '*~' -exec rm {} ';'
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..1067bea
--- /dev/null
@@ -0,0 +1,6 @@
+libpve-apiclient-perl (1.0-1) unstable; urgency=medium
+
+  * first try
+
+ -- Proxmox Support Team <support@proxmox.com>  Fri, 16 Dec 2016 08:55:13 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..ec63514
--- /dev/null
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..7c192dd
--- /dev/null
@@ -0,0 +1,13 @@
+Source: libpve-apiclient-perl
+Section: perl
+Priority: optional
+Maintainer: Proxmox Support Team <support@proxmox.com>
+Build-Depends: debhelper (>= 9), perl
+Standards-Version: 3.9.5
+Homepage: http://www.proxmox.com
+
+Package: libpve-apiclient-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: Proxmox VE API client library
+ This implements an API client for Proxmox VE in perl.
\ No newline at end of file
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..0e0384c
--- /dev/null
@@ -0,0 +1,16 @@
+Copyright (C) 2010-2016 Proxmox Server Solutions GmbH
+
+This software is written by Proxmox Server Solutions GmbH <support@proxmox.com>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
diff --git a/debian/install b/debian/install
new file mode 100644 (file)
index 0000000..02830ab
--- /dev/null
@@ -0,0 +1 @@
+/usr/share/perl5
diff --git a/debian/rules b/debian/rules
new file mode 100644 (file)
index 0000000..2a6e77d
--- /dev/null
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+
+%:
+       dh $@
+