diff options
| author | Paul Buetow <paul@buetow.org> | 2013-03-22 03:45:09 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-03-22 03:45:09 +0100 |
| commit | bdd180bb7b3eca8622016067058c023cd11c0b5e (patch) | |
| tree | 19c3da37e523066cf53e68da34e393bda52fa822 /debian | |
initial version of the template
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/README | 7 | ||||
| -rw-r--r-- | debian/changelog | 5 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 15 | ||||
| -rw-r--r-- | debian/copyright | 30 | ||||
| -rw-r--r-- | debian/files | 1 | ||||
| -rw-r--r-- | debian/foo.manpages | 1 | ||||
| -rw-r--r-- | debian/foo.substvars | 1 | ||||
| -rwxr-xr-x | debian/rules | 13 |
9 files changed, 74 insertions, 0 deletions
diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..8edd461 --- /dev/null +++ b/debian/README @@ -0,0 +1,7 @@ +The Debian Package foo +---------------------------- + +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..0521464 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +foo (0.0.0.0) stable; urgency=low + + * Initial version of the template + + -- 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..1a33eb7 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: foo +Section: utils +Priority: optional +Maintainer: Paul Buetow <paul@buetow.org> +Build-Depends: +Standards-Version: 3.9.2 +Homepage: https://template.buetow.org +Vcs-Git: git://git.buetow.org/template +Vcs-Browser: http://web.buetow.org/git/?p=template.git;a=summary + +Package: foo +Architecture: all +Depends: +Description: Small template package + This is just a template package, which cann print Hello World. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..081a25d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: foo +Source: http://template.buetow.org + +Files: * +Copyright: 2012 Paul Buetow <paul@buetow.org> +License: GPL-3.0+ + +Files: debian/* +Copyright: 2012 Paul 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/files b/debian/files new file mode 100644 index 0000000..37cd565 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +foo_1.0.0.4+nmu2_all.deb utils optional diff --git a/debian/foo.manpages b/debian/foo.manpages new file mode 100644 index 0000000..3925962 --- /dev/null +++ b/debian/foo.manpages @@ -0,0 +1 @@ +docs/foo.1 diff --git a/debian/foo.substvars b/debian/foo.substvars new file mode 100644 index 0000000..abd3ebe --- /dev/null +++ b/debian/foo.substvars @@ -0,0 +1 @@ +misc:Depends= 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 $@ |
