From 4f6be6e35be353f120e5ec915cb0b90eff531675 Mon Sep 17 00:00:00 2001 From: Henry Graham Date: Wed, 18 Apr 2012 12:17:35 -0400 Subject: [PATCH] Initial debian packaging --- debian/ansible.dirs | 3 +++ debian/ansible.install | 4 ++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/copyright | 26 ++++++++++++++++++++++++++ debian/docs | 1 + debian/pycompat | 1 + debian/rules | 6 ++++++ 9 files changed, 59 insertions(+) create mode 100644 debian/ansible.dirs create mode 100644 debian/ansible.install create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/pycompat create mode 100644 debian/rules diff --git a/debian/ansible.dirs b/debian/ansible.dirs new file mode 100644 index 0000000000..1ab42d1149 --- /dev/null +++ b/debian/ansible.dirs @@ -0,0 +1,3 @@ +etc/ansible +usr/lib/python2.7/site-packages +usr/share/ansible diff --git a/debian/ansible.install b/debian/ansible.install new file mode 100644 index 0000000000..d67b2cec59 --- /dev/null +++ b/debian/ansible.install @@ -0,0 +1,4 @@ +hosts etc/ansible +python/* usr/share/ansible +man/man1/* usr/share/man/man1 +bin/* usr/bin diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000000..66137bf9ee --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ansible (0.0.2) nattyl; urgency=low + + * Initial Release test + + -- Henry Graham (hzgraham) Tue, 17 Apr 2012 17:17:01 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000000..7ed6ff82de --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000000..4fd89eaf1f --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: ansible +Section: admin +Priority: optional +Maintainer: Henry Graham (hzgraham) +Build-Depends: cdbs, debhelper (>= 5.0.0) +Standards-Version: 3.9.1 + +Package: ansible +Architecture: all +Depends: python-jinja2, python-yaml, python-paramiko +Description: The Ansible ssh management application + This package installs Ansible, which is an ssh based configuration management application diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000000..d214417835 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Henry Graham (hzgraham) on +Tue, 17 Apr 2012 12:19:47 -0400. + +It was downloaded from mirror.lcsee.wvu.edu + +Copyright: Henry Graham (hzgraham) + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This package 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, + USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000000..b43bf86b50 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000000..0cfbf08886 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000000..1b4a1575c9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +# -- makefile -- + +include /usr/share/cdbs/1/rules/debhelper.mk +DEB_PYTHON_SYSTEM = pysupport +include /usr/share/cdbs/1/class/python-distutils.mk