summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2015-12-05 16:01:04 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2015-12-05 16:01:04 +0000
commite1665bc678df3e60f54c25bc537275a63dc66ab6 (patch)
tree5f5a53fca5aac90314863c7ce0e512ddd8b659ca /debian
parentcda99f5fe2bde2763cf53446a4e672966b67116a (diff)
Initial package.
Diffstat (limited to 'debian')
-rw-r--r--debian/.gitignore1
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control19
-rw-r--r--debian/copyright43
-rw-r--r--debian/docs1
-rwxr-xr-xdebian/rules7
-rw-r--r--debian/source/format1
8 files changed, 78 insertions, 0 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1 @@
+*~
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9bd5399
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+klaus (0.7.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Jelmer Vernooij <jelmer@debian.org> Sat, 05 Dec 2015 15:54:20 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..39c99bd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: klaus
+Section: vcs
+Priority: optional
+Maintainer: Jelmer Vernooij <jelmer@debian.org>
+Build-Depends: debhelper (>= 9), python-dulwich
+Standards-Version: 3.9.6
+Homepage: https://github.com/jonashaag/klaus
+Vcs-Git: git://anonscm.debian.org/collab-maint/klaus.git
+Vcs-Browser: https://anonscm.debian.org/gitweb/?p=collab-maint/klaus.git;a=summary
+
+Package: klaus
+Architecture: all
+Depends: ${misc:Depends}, python-dulwich
+Description: simple easy-to-set-up Git web viewer
+ Features:
+ .
+ * Easy to set up -- almost no configuration required
+ * Syntax highlighting
+ * Git Smart HTTP support
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bb2847c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: klaus
+Source: https://github.com/jonashaag/klaus
+
+Files: klaus/static/favicon.png
+Copyright: Jason Long <http://twitter.com/jasonlong>,
+License: under the Creative Commons Attribution 3.0 Unported License.
+
+Files: *
+Copyright: 2011-2015 Jonas Haag <jonas@lophus.org> and contributors (see Git logs).
+ 2011-2013 Martin Zimmermann <info@posativ.org>
+ <years> <likewise for another author>
+License:
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+Files: debian/*
+Copyright: 2015 Jelmer Vernooij <jelmer@debian.org>
+License: GPL-3+
+ 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; 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 <https://www.gnu.org/licenses/>
+ .
+ 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 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..94cf78b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+DPKG_EXPORT_BUILDFLAGS = 1
+
+include /usr/share/dpkg/default.mk
+
+%:
+ dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)