summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Lamberov <dogsleg@debian.org>2016-11-14 22:21:17 +0500
committerLev Lamberov <dogsleg@debian.org>2016-11-14 22:37:39 +0500
commitc14ec87467c173b47985e7bba325edebab8dfe9d (patch)
treeade4da78a92ad597f7460c53444bcdf104c6ad6a
parent94fddcc1fb59ab523a6801acf5692a7d978a26a5 (diff)
Initial packaging
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control28
-rw-r--r--debian/copyright28
-rw-r--r--debian/elpa1
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
7 files changed, 68 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..18ec4a1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+recursive-narrow (20140811.1546-1) unstable; urgency=medium
+
+ * Initial release (Closes: #844352)
+
+ -- Lev Lamberov <dogsleg@debian.org> Mon, 14 Nov 2016 22:17:44 +0500
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..df5ef72
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: recursive-narrow
+Section: lisp
+Priority: optional
+Maintainer: Debian Emacs addons team <pkg-emacsen-addons@lists.alioth.debian.org>
+Uploaders: Lev Lamberov <dogsleg@debian.org>
+Build-Depends: debhelper (>= 10),
+ dh-elpa
+Standards-Version: 3.9.8
+Homepage: https://github.com/nflath/recursive-narrow
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/recursive-narrow.git/
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/recursive-narrow.git
+
+Package: elpa-recursive-narrow
+Architecture: all
+Depends: ${elpa:Depends},
+ ${misc:Depends},
+ emacs
+Recommends: emacs (>= 46.0)
+Enhances: emacs,
+ emacs24,
+ emacs25
+Built-Using: ${misc:Built-Using}
+Description: narrow-to-region that operates recursively
+ This package defines two functions, recursive-narrow-or-widen-dwim and
+ recursive-widen-dwim that replace the builtin functions narrow-to-region and
+ widen. These functions operate the same way, except in the case of multiple
+ calls to recursive-narrow-to-region-dwim. In this case, recursive-widen-dwim
+ will go to the previous buffer visibility, not make the entire buffer visible.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..840961a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: recursive-narrow
+Source: https://github.com/nflath/recursive-narrow
+
+Files: *
+Copyright: (C) 2010 Nathaniel Flath <flat0103@gmail.com>
+License: GPL-3+
+
+Files: debian/*
+Copyright: (C) 2016 Lev Lamberov <dogsleg@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/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)