From 7e05b629c2f984ceb3286dea00529a24eb0b72a4 Mon Sep 17 00:00:00 2001 From: Jeka Der Date: Sun, 12 Oct 2014 18:55:09 +0200 Subject: initial commit for Debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 13 +++++++++++++ debian/rules | 4 ++++ debian/source/format | 1 + 6 files changed, 38 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright 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..97b5597 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fake-ilo (0.0.1-1) UNRELEASED; urgency=medium + + * Initial release. + + -- Jeka Der Sun, 12 Oct 2014 18:46:00 +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..fd6e0b8 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: fake-ilo +Maintainer: Jeka Der +Section: misc +Priority: optional +Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 9), openssl, python + +Package: fake-ilo +Architecture: any +Depends: openssl, python, libvirt +Description: iLO emulator + iLO emulator which can power cycle libvirt VMs. It was written by me to perform + tests of oVirt/RHEV Power Management features by installing hosts as libvirt + VMs and querying/fencing them using this script for demo purposes. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..dbd220e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,13 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: fake_ilo +Upstream-Contact: Jeka der +Source: https://github.com/jekader/fake_ilo + +Files: * +Copyright: No Copyright +License: CC0-1.0-Universal + This software is in Public Domain. + For more information, please see: + http://creativecommons.org/publicdomain/zero/1.0/ + + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4f2c774 --- /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) -- cgit