From c57f48a9b847fc5985985fc26292d63bfe4010ce Mon Sep 17 00:00:00 2001 From: Tim Kuhlman Date: Mon, 24 Mar 2014 17:01:48 -0600 Subject: [PATCH] Initial debian package setup. --- .gitignore | 1 - debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 4 ++++ debian/rules | 4 ++++ 6 files changed, 30 insertions(+), 1 deletion(-) 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 diff --git a/.gitignore b/.gitignore index f2ec436..6ca0056 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ cover AUTHORS build dist -ChangeLog run_tests.err.log .tox doc/source/api diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9a5711d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +python-monclient (0.0.1) precise; urgency=low + + * Initial Package creation + + -- Tim Kuhlman Mon, 24 Mar 2014 04:12:44 -0600 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ea7f428 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: python-monclient +Section: python +Priority: optional +Maintainer: HPCloud Monitoring +Build-Depends: debhelper (>= 7), + python (>= 2.6.6-3~), + python-setuptools +Standards-Version: 3.9.3 +X-Python-Version: >= 2.6 + +Package: python-monclient +Architecture: all +Section: python +Depends: ${misc:Depends}, ${python:Depends}, libpython2.7, python-pkg-resources, python-pbr, python-keystoneclient, python-yaml, python-requests, python-prettytable, python-six +Description: CLI for Monitoring diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..49d743b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,4 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Files: * +Copyright: 2014, HP +License: Proprietary diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4647c9c --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2