From 75cdb941e2d2961aa389e858ac9dd701d0463f24 Mon Sep 17 00:00:00 2001 From: Victor LABORIE Date: Mon, 2 Jul 2018 10:42:36 +0200 Subject: [PATCH] Initial debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 11 +++++++++++ debian/copyright | 11 +++++++++++ debian/gbp.conf | 4 ++++ debian/install | 3 +++ debian/rules | 4 ++++ debian/source/format | 1 + 8 files changed, 40 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/gbp.conf create mode 100755 debian/install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..97fbe93 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +kvm-tools (0.1.0-1) unstable; urgency=medium + + * Initial release. + + -- Victor Laborie Mon, 02 Jul 2018 10:39:47 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5e06a7f --- /dev/null +++ b/debian/control @@ -0,0 +1,11 @@ +Source: kvm-tools +Section: utils +Priority: optional +Maintainer: Victor Laborie +Build-Depends: debhelper (>= 9), dh-exec +Standards-Version: 4.0.0 + +Package: kvm-tools +Architecture: all +Depends: dialog, html-xml-utils,${misc:Depends} +Description: Tools for manage kvm hypervisors diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..1ec9162 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,11 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: kvm-tools +Upstream-Contact: Evolix +Source: https://forge.evolix.org/projects/kvm-tools/repository + +Files: * +Copyright: 2018 Victor Laborie +License: GPL-3 + +License: GPL-3 + https://www.gnu.org/licenses/gpl.txt diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..3930665 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[buildpackage] +upstream-tree = master +debian-branch = debian +builder = sbuild -A -v -d sid diff --git a/debian/install b/debian/install new file mode 100755 index 0000000..aefb21e --- /dev/null +++ b/debian/install @@ -0,0 +1,3 @@ +#!/usr/bin/dh-exec +add-vm.sh usr/sbin +kvmstats.sh usr/sbin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)