summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2018-07-25 15:17:56 +0800
committerDavid Bremner <david@tethera.net>2018-07-25 15:17:56 +0800
commit016b86f35a4e034b781a8c24e1baa56451510fd5 (patch)
treef0ba9f51ecef4af4ca7e090e8816cf844cc4bd0d
parent5c68baeef119390f876a394d65f4f9f0b4b98637 (diff)
Initial debianization, based on dh-make-elpa
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control23
-rw-r--r--debian/copyright28
-rw-r--r--debian/elpa1
-rw-r--r--debian/gbp.conf12
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
8 files changed, 75 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9136152
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+emacs-session (2.4b-1) unstable; urgency=medium
+
+ * Initial release (Closes: #902564)
+
+ -- David Bremner <bremner@debian.org> Wed, 25 Jul 2018 15:17:31 +0800
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2835f22
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: emacs-session
+Section: lisp
+Priority: optional
+Maintainer: Debian Emacsen team <debian-emacsen@lists.debian.org>
+Uploaders: David Bremner <bremner@debian.org>
+Build-Depends: debhelper (>= 10),
+ dh-elpa
+Standards-Version: 4.1.3
+Vcs-Browser: https://salsa.debian.org/emacsen-team/emacs-session
+Vcs-Git: https://salsa.debian.org/emacsen-team/emacs-session.git/
+Homepage: http://emacs-session.sourceforge.net/
+
+Package: elpa-session
+Architecture: all
+Depends: ${elpa:Depends}, ${misc:Depends}
+Recommends: emacs (>= 46.0)
+Enhances: emacs,
+ emacs25
+Description: use variables, registers and buffer places across sessions
+ When you start Emacs, package Session restores various variables (e.g.,
+ input histories) from your last session. It also provides a menu
+ containing recently changed/visited files and restores the places (e.g.,
+ point) of such a file when you revisit it.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6d8ff2f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: emacs-session
+Source: http://emacs-session.sourceforge.net/
+
+Files: *
+Copyright: 1996-1999, 2001-2003, 2010-2012, 2015, 2016 Free Software Foundation, Inc.
+License: GPL-3+
+
+Files: debian/*
+Copyright: (C) 2018 David Bremner <bremner@debian.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'
diff --git a/debian/elpa b/debian/elpa
new file mode 100644
index 0000000..abf136d
--- /dev/null
+++ b/debian/elpa
@@ -0,0 +1 @@
+*.el
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..5cc34d4
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,12 @@
+[DEFAULT]
+# upstream-branch = upstream
+debian-branch = master
+upstream-tag = %(version)s
+debian-tag = debian/%(version)s
+
+sign-tags = True
+pristine-tar = True
+pristine-tar-commit = True
+
+compression = xz
+compression-level = 9
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e8e22ba
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --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)