summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@gnu.org>2016-06-14 14:51:46 +0300
committerDmitry Bogatov <KAction@gnu.org>2016-06-14 14:54:42 +0300
commit4209e20cd2565f544cf0fb057f567da0a5024844 (patch)
tree36510a2bd3d1dba02db2459ec7a698bc3c48a6dc
parent5d19d4e488dcee0117d8427f3b3a36ff7d68335c (diff)
Basic debianization, inspired by paredit
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright29
-rw-r--r--debian/elpa-undo-tree.elpa1
-rw-r--r--debian/gbp.conf10
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/source/lintian-overrides3
-rw-r--r--debian/watch3
10 files changed, 82 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a6402cb
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+elpa-undo-tree (0.6.4-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #XXXXXX)
+
+ -- Dmitry Bogatov <KAction@gnu.org> Tue, 14 Jun 2016 14:53:42 +0300
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..3c96217
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: elpa-undo-tree
+Section: lisp
+Priority: optional
+Maintainer: Debian Emacs addons team <pkg-emacsen-addons@lists.alioth.debian.org>
+Uploaders: Dmitry Bogatov <KAction@gnu.org>
+Build-Depends: debhelper (>= 9), dh-elpa (>= 0.0.18)
+Standards-Version: 3.9.8
+Homepage: http://www.dr-qubit.org/git/undo-tree.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/paredit-el.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/paredit-el.git/
+
+Package: elpa-undo-tree
+Architecture: all
+Depends: ${misc:Depends}, emacs, ${elpa:Depends}
+Built-Using: ${misc:Built-Using}
+Recommends: emacs (>= 46.0)
+Enhances: emacs, emacs24
+Description: Emacs minor mode for handling undo history as tree
+ Package undo-tree provided by this package replaces Emacs' undo
+ system with a system that treats undo history as what it is: a
+ branching tree of changes. This simple idea allows the more intuitive
+ behaviour of the standard undo/redo system to be combined with the
+ power of never losing any history. An added side bonus is that undo
+ history can in some cases be stored more efficiently, allowing more
+ changes to accumulate before Emacs starts discarding history. \ No newline at end of file
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3ef2470
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: undo-tree
+Upstream-Contact: Toby Cubitt <toby-undo-tree@dr-qubit.org>
+Source: http://www.dr-qubit.org/git/undo-tree.git
+
+Files: *
+Copyright: 2009-2013 Free Software Foundation, Inc
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2016 Dmitry Bogatov <KAction@gnu.org>
+License: GPL-3+
+
+License: GPL-3+
+ 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 program 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 \ No newline at end of file
diff --git a/debian/elpa-undo-tree.elpa b/debian/elpa-undo-tree.elpa
new file mode 100644
index 0000000..abf136d
--- /dev/null
+++ b/debian/elpa-undo-tree.elpa
@@ -0,0 +1 @@
+*.el
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..15cfb1a
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,10 @@
+[DEFAULT]
+upstream-branch = upstream
+debian-branch = debian/sid
+upstream-tag = release/%(version)s
+debian-tag = debian/%(version)s
+
+#postbuild = lintian $GBP_CHANGES_FILE
+color = on
+compression = gz
+compression-level = 9
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8eb7ccb
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --parallel --with elpa
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)
diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides
new file mode 100644
index 0000000..e3ee854
--- /dev/null
+++ b/debian/source/lintian-overrides
@@ -0,0 +1,3 @@
+# watch file is just for checking existence of new version; we are
+# manually generating orig tarballs from git tags
+debian-watch-may-check-gpg-signature
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f1341a1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts="mode=git" http://www.dr-qubit.org/git/undo-tree.git \
+ refs/tags/release/([\d\.]+) debian uupdate