From c1629a4b5afda680bef84b9d1fc8d2a85d4e1209 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 22 May 2018 14:19:53 +0200 Subject: [PATCH] add debian package files --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 16 ++++++++++++++++ debian/install | 2 ++ debian/rules | 9 +++++++++ 6 files changed, 49 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/install create mode 100644 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8b0a090 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +pve-client (0.1-1) unstable; urgency=medium + + * start with simple skeleton + + -- Proxmox Support Team Tue, 22 May 2018 14:04:41 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..8d765ee --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: pve-client +Section: perl +Priority: optional +Maintainer: Proxmox Support Team +Build-Depends: debhelper (>= 9), + perl (>= 5.10.0-19), +Standards-Version: 3.9.5 +Homepage: http://www.proxmox.com + +Package: pve-client +Architecture: all +Depends: libpve-apiclient-perl, + ${misc:Depends}, +Description: Proxmox VE API client + This implements an API client for Proxmox VE in perl. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0e0384c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +Copyright (C) 2010-2016 Proxmox Server Solutions GmbH + +This software is written by Proxmox Server Solutions GmbH + +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 . diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..5f25140 --- /dev/null +++ b/debian/install @@ -0,0 +1,2 @@ +/usr/share +/usr/bin \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..2a6e77d --- /dev/null +++ b/debian/rules @@ -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 $@ + -- 2.39.2