summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@gnu.org>2016-06-14 08:53:42 -0300
committerDmitry Bogatov <KAction@gnu.org>2016-06-14 08:53:42 -0300
commitc675a56ceb08580f9f75407e0e4157dd1769a947 (patch)
treeae26b58e22c985c657046726202dce4074e72421
parent92df067ba045f689411b42d7bbf29fbedb70519c (diff)
parent2c58899ff1258fd0dc52fbc1b262404c05ae782e (diff)
goto-chg-el (1.6-1) unstable; urgency=low
* Initial release. (Closes: #827910) [dgit import unpatched goto-chg-el 1.6-1]
-rw-r--r--debian/changelog5
-rw-r--r--debian/changelog.upstream15
-rw-r--r--debian/compat1
-rw-r--r--debian/control21
-rw-r--r--debian/copyright29
-rw-r--r--debian/elpa-goto-chg.elpa1
-rw-r--r--debian/gbp.conf10
-rwxr-xr-xdebian/rules7
-rw-r--r--debian/source/format1
9 files changed, 90 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e78ca71
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+goto-chg-el (1.6-1) unstable; urgency=low
+
+ * Initial release. (Closes: #827910)
+
+ -- Dmitry Bogatov <KAction@gnu.org> Tue, 14 Jun 2016 14:53:42 +0300
diff --git a/debian/changelog.upstream b/debian/changelog.upstream
new file mode 100644
index 0000000..514c725
--- /dev/null
+++ b/debian/changelog.upstream
@@ -0,0 +1,15 @@
+Ver 1.6 2013-12-12 David Andersson
+ Add keywords; Cleanup comments
+Ver 1.5 2013-12-11 David Andersson
+ Autoload and document `goto-last-change-reverse'
+Ver 1.4 2008-09-20 David Andersson
+ Improved property change description; Update comments.
+Ver 1.3 2007-03-14 David Andersson
+ Added `goto-last-change-reverse'
+Ver 1.2 2003-04-06 David Andersson
+ Don't let repeating error depthen glc-probe-depth.
+Ver 1.1 2003-04-06 David Andersson
+ Zero arg describe changes. Negative arg go back.
+ Autoload. Remove message using nil in stead of an empty string.
+Ver 1.0 2002-05-18 David Andersson
+ Initial version
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..b2684ce
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: goto-chg-el
+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
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/goto-chg.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/goto-chg.git
+
+Package: elpa-goto-chg
+Architecture: all
+Depends: ${misc:Depends}, emacs, ${elpa:Depends}
+Built-Using: ${misc:Built-Using}
+Recommends: emacs (>= 46.0)
+Enhances: emacs, emacs24
+Description: navigate the point to the most recent edit in the buffer
+ goto-chg is an Emacs addon that allows the user to move point to the
+ most recent edit in the buffer. When the command is repeated, point
+ moves to the second most recent edit, and so on. A negative argument
+ may be used to reverse the direction.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0b6475a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: goto-chg
+Upstream-Contact: David Andersson <l.david.andersson@sverige.nu>
+Source: https://www.emacswiki.org/emacs/goto-chg.el
+
+Files: *
+License: GPL-2+
+Copyright: 2002-2008,2013 David Andersson <l.david.andersson@sverige.nu>
+
+Files: debian/*
+Copyright: 2016 Dmitry Bogatov <KAction@gnu.org>
+License: GPL-2+
+
+License: GPL-2+
+ 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 2 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-2 \ No newline at end of file
diff --git a/debian/elpa-goto-chg.elpa b/debian/elpa-goto-chg.elpa
new file mode 100644
index 0000000..8aad2b4
--- /dev/null
+++ b/debian/elpa-goto-chg.elpa
@@ -0,0 +1 @@
+*.el \ No newline at end of file
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0c054fd
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,10 @@
+[DEFAULT]
+upstream-branch = upstream
+debian-branch = master
+upstream-tag = upstream/%(version)s
+debian-tag = debian/%(version)s
+
+#postbuild = lintian $GBP_CHANGES_FILE
+color = on
+compression = xz
+compression-level = 9
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e3e7a6f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --parallel --with elpa
+
+override_dh_installchangelogs:
+ dh_installchangelogs debian/changelog.upstream
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)