diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-08 08:53:15 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-08 08:53:15 +0200 |
| commit | 078807e927e4737ec6c37e8f02e5078ed9d0ad67 (patch) | |
| tree | bfb4223c20b104de502b5310b1250b5cbdab3e55 /debian | |
| parent | 15a9b15f2bde5fcf2065f9f6cae092bc05c0cd46 (diff) | |
initial debian stuff
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..ff80c7f --- /dev/null +++ b/debian/README @@ -0,0 +1,7 @@ +The Debian Package pwgrep +---------------------------- + +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..53ebeb6 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pwgrep (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..82ac910 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: pwgrep +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: pwgrep +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..aa02fec --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: pwgrep +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..e6da34f --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +pwgrep_0.0.0.0_all.deb utils optional diff --git a/debian/foo.manpages b/debian/foo.manpages new file mode 100644 index 0000000..e483cc2 --- /dev/null +++ b/debian/foo.manpages @@ -0,0 +1 @@ +docs/pwgrep.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 $@ |
