summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-12-22 11:12:38 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2011-12-22 11:16:46 +0000
commitf955bb397b5772cb183580c33cc38f82a10f54b0 (patch)
tree0055120fa4a4b4e2cbcf67a264e378730312aec1 /packaging
parent7ecc6fe12bcc6498640d8014dd989bbab79452e6 (diff)
moved debian to packaging/debian
Diffstat (limited to 'packaging')
-rw-r--r--packaging/debian/changelog6
-rw-r--r--packaging/debian/compat1
-rw-r--r--packaging/debian/control39
-rw-r--r--packaging/debian/copyright26
-rw-r--r--packaging/debian/docs5
-rw-r--r--packaging/debian/gbp.conf6
-rwxr-xr-xpackaging/debian/rules3
-rw-r--r--packaging/debian/source/format1
8 files changed, 87 insertions, 0 deletions
diff --git a/packaging/debian/changelog b/packaging/debian/changelog
new file mode 100644
index 00000000..50651234
--- /dev/null
+++ b/packaging/debian/changelog
@@ -0,0 +1,6 @@
+alot (0.2-1) unstable; urgency=low
+
+ * New Debian packaging (close #ITP)
+
+ -- Jameson Graef Rollins <jrollins@finestructure.net> Sun, 11 Dec 2011 14:50:50 -0800
+
diff --git a/packaging/debian/compat b/packaging/debian/compat
new file mode 100644
index 00000000..7f8f011e
--- /dev/null
+++ b/packaging/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/packaging/debian/control b/packaging/debian/control
new file mode 100644
index 00000000..a350f0bb
--- /dev/null
+++ b/packaging/debian/control
@@ -0,0 +1,39 @@
+Source: alot
+Section: mail
+Priority: extra
+Maintainer: Jameson Graef Rollins <jrollins@finestructure.net>
+Build-Depends:
+ pkg-config,
+ debhelper (>= 7.0.50~),
+ python
+Standards-Version: 3.9.2
+
+Package: alot
+Architecture: any
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ python-urwid,
+ python-twisted-core,
+ python-notmuch
+Recommends:
+ notmuch
+Description: A terminal-based interface to the notmuch mail agent
+ Alot is an ncurses-based terminal interface to the notmuch mail
+ program. It is writen in python, using the urwid toolkit.
+ .
+ Current features:
+ * modular and command prompt driven interface
+ * tab completion and usage help for all commands
+ * contacts completion using customizable `abook` lookups
+ * user configurable keyboard maps
+ * spawn terminals for asynchronous editing of mails
+ * theming, optionally in 2, 16 or 256 colours
+ * tag specific theming and tag string translation
+ * (python) hooks to react on events and do custom formating
+ * python shell for introspection
+ * forward/reply/group-reply of emails
+ * printing/piping of mails and threads
+ * multiple accounts for sending mails via sendmail
+ * notification popups with priorities
+ * database manager that manages a write queue to the notmuch index
diff --git a/packaging/debian/copyright b/packaging/debian/copyright
new file mode 100644
index 00000000..4efcb3fb
--- /dev/null
+++ b/packaging/debian/copyright
@@ -0,0 +1,26 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Debianized-By: Jameson Graef Rollins <jrollins@finestructure.net>
+Debianized-Date: Sun, 11 Dec 2011 14:50:50 -0800
+Original-Source: git://github.com/pazz/alot.git
+
+Files: *
+Copyright:
+ 2011, Patrick Totzke <patricktotzke@googlemail.com>
+
+Files: debian/*
+Copyright:
+ 2011, Jameson Graef Rollins <jrollins@finestructure.net>
+
+License: GPL
+ 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 2 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.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 3 can be found in file "/usr/share/common-licenses/GPL".
diff --git a/packaging/debian/docs b/packaging/debian/docs
new file mode 100644
index 00000000..361c9100
--- /dev/null
+++ b/packaging/debian/docs
@@ -0,0 +1,5 @@
+NEWS
+README.md
+INSTALL.md
+CUSTOMIZE.md
+FAQ.md
diff --git a/packaging/debian/gbp.conf b/packaging/debian/gbp.conf
new file mode 100644
index 00000000..95ee71cb
--- /dev/null
+++ b/packaging/debian/gbp.conf
@@ -0,0 +1,6 @@
+[DEFAULT]
+upstream-branch = master
+debian-branch = debian
+upstream-tag = %(version)s
+debian-tag = debian/%(version)s
+pristine-tar = False
diff --git a/packaging/debian/rules b/packaging/debian/rules
new file mode 100755
index 00000000..cbe925d7
--- /dev/null
+++ b/packaging/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+%:
+ dh $@
diff --git a/packaging/debian/source/format b/packaging/debian/source/format
new file mode 100644
index 00000000..163aaf8d
--- /dev/null
+++ b/packaging/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)