diff options
| author | Paul C. Buetow <paul@buetow.org> | 2014-04-14 21:32:06 +0200 |
|---|---|---|
| committer | Paul C. Buetow <paul@buetow.org> | 2014-04-14 21:32:06 +0200 |
| commit | 5d1a4b71e11059445db7062b0b9fe2269104643b (patch) | |
| tree | 1790962c5a87d1b565faec9ab73d00f457ad4974 | |
| parent | ef4660ae22877918930f7297ad6eb672f929e062 (diff) | |
initial debian dir
| -rw-r--r-- | debian/README | 7 | ||||
| -rw-r--r-- | debian/changelog | 5 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 16 | ||||
| -rw-r--r-- | debian/copyright | 30 | ||||
| -rw-r--r-- | debian/fapi.manpages | 1 | ||||
| -rw-r--r-- | debian/fapi.substvars | 1 | ||||
| -rw-r--r-- | debian/files | 1 | ||||
| -rwxr-xr-x | debian/rules | 13 |
9 files changed, 75 insertions, 0 deletions
diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..3f14f61 --- /dev/null +++ b/debian/README @@ -0,0 +1,7 @@ +The Debian Package fapi +---------------------------- + +This is just a humble go project. Not sure if everything meets the debian +policy though. Alt least the resulting debian package passes a pedantic lintian + + -- Paul Buetow <paul@buetow.org> Wed, 02 Jan 2013 15:23:53 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4b16bba --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fapi (0.0.0) stable; urgency=low + + * Initial version of fapi + + -- Paul Buetow <paul@buetow.org> Fri, 04 Jan 2013 07:53:32 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..dddc8c0 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: fapi +Section: utils +Priority: optional +Maintainer: Paul C. Buetow <paul@buetow.org> +Build-Depends: +Standards-Version: 3.9.2 +Homepage: https://fapi.buetow.org +Vcs-Git: https://github.com/rantanplan/fapi.git +Vcs-Browser: https://github.com/rantanplan/fapi + +Package: fapi +Architecture: all +Depends: +Description: The fapi package + This is just command line tool to manage F5 BigIP programmed in Python using + bigsuds. bigsuds has to be isntalled manually. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5ec8711 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: fapi +Source: http://fapi.buetow.org + +Files: * +Copyright: 2014 Paul C. Buetow <paul@buetow.org> +License: GPL-3.0+ + +Files: debian/* +Copyright: 2014 Paul C. Buetow <paul@buetow.org> +License: GPL-3.0+ + +License: GPL-3.0+ + This program 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, either version 3 of the License, or + (at your option) any later version. + . + 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 program. If not, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + + diff --git a/debian/fapi.manpages b/debian/fapi.manpages new file mode 100644 index 0000000..eeef8a4 --- /dev/null +++ b/debian/fapi.manpages @@ -0,0 +1 @@ +docs/fapi.1 diff --git a/debian/fapi.substvars b/debian/fapi.substvars new file mode 100644 index 0000000..abd3ebe --- /dev/null +++ b/debian/fapi.substvars @@ -0,0 +1 @@ +misc:Depends= diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..c023f43 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +fapi_0.0.0_all.deb utils optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b760bee --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ |
