summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Lamberov <dogsleg@debian.org>2016-10-07 02:18:25 +0500
committerLev Lamberov <dogsleg@debian.org>2016-10-07 02:47:09 +0500
commit26d1d60b7e4fb1183a158cfd726ac98928d75714 (patch)
tree5baf37f7af02fe492f62a763b7325428d7240089
parent0da0ada7c3b89baf750def2e7b6ef4d6e2414503 (diff)
Initial packaging
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control28
-rw-r--r--debian/copyright29
-rw-r--r--debian/docs1
-rw-r--r--debian/elpa1
-rw-r--r--debian/patches/fix-version.diff15
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules12
-rw-r--r--debian/source/format1
10 files changed, 94 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f194a78
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ace-window (0.9.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #839964)
+
+ -- Lev Lamberov <dogsleg@debian.org> Fri, 7 Oct 2016 02:03:29 +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..37a9040
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: ace-window
+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
+Testsuite: autopkgtest-pkg-elpa
+Homepage: https://github.com/abo-abo/ace-window
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/ace-window.git/
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/ace-window.git
+
+Package: elpa-ace-window
+Architecture: all
+Depends: ${elpa:Depends},
+ ${misc:Depends},
+ emacs,
+ elpa-avy
+Recommends: emacs (>= 46.0)
+Enhances: emacs,
+ emacs24
+Built-Using: ${misc:Built-Using}
+Description: selecting a window to switch to
+ The main function, `ace-window' is meant to replace `other-window'. In fact,
+ when there are only two windows present, `other-window' is called. If there
+ are more, each window will have its first character highlighted. Pressing
+ that character will switch to that window.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0c463c8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ace-window
+Source: https://github.com/abo-abo/ace-window
+Upstream-Contact: Oleh Krehel <ohwoeowho@gmail.com>
+
+Files: *
+Copyright: (C) 2015 Free Software Foundation, Inc.
+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/docs b/debian/docs
new file mode 100644
index 0000000..dd44972
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+*.md
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/patches/fix-version.diff b/debian/patches/fix-version.diff
new file mode 100644
index 0000000..2e766c5
--- /dev/null
+++ b/debian/patches/fix-version.diff
@@ -0,0 +1,15 @@
+From: Lev Lamberov <dogsleg@debian.org>
+Subject: Fix version number
+
+This patch fixes version number, since upstream forgot to change it in time.
+
+--- a/ace-window.el
++++ b/ace-window.el
+@@ -5,7 +5,7 @@
+ ;; Author: Oleh Krehel <ohwoeowho@gmail.com>
+ ;; Maintainer: Oleh Krehel <ohwoeowho@gmail.com>
+ ;; URL: https://github.com/abo-abo/ace-window
+-;; Version: 0.8.1
++;; Version: 0.9.0
+ ;; Package-Requires: ((avy "0.2.0"))
+ ;; Keywords: window, location
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..59fab1a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-version.diff
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a540eac
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --parallel --with elpa
+
+override_dh_auto_build:
+ @echo skipping upstream build
+
+override_dh_elpa_test:
+ @echo skipping upstream tests
+
+.PHONY: override_dh_auto_build override_dh_elpa_test
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)