summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/README.source12
-rw-r--r--debian/changelog26
-rw-r--r--debian/compat1
-rw-r--r--debian/control30
-rw-r--r--debian/copyright28
-rw-r--r--debian/elpa1
-rw-r--r--debian/gbp.conf10
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/signing-key.asc26
-rw-r--r--debian/watch2
11 files changed, 141 insertions, 0 deletions
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..13ff7b8
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,12 @@
+Importing new upstream releases
+-------------------------------
+
+Just calling `gbp import-orig --uscan` fails due to #838682. Workaround:
+
+ gbp import-orig --uscan
+ cd ..
+ gzip seq-2.16.tar
+ cd seq-el
+ gbp import-orig ../seq-2.16.tar.gz
+
+ -- Sean Whitton <spwhitton@spwhitton.name>, Fri, 23 Sep 2016 08:23:59 -0700
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..48b517e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,26 @@
+seq-el (2.16-1) unstable; urgency=medium
+
+ [ Lev Lamberov ]
+ * Update watch file.
+ Upstream now ships tar archives.
+
+ [ Sean Whitton ]
+ * New upstream release.
+ * Run test suite with dh_elpa_test:
+ - Bump compat & debhelper dependency bound to 10
+ - Add Testsuite: field
+ - Drop override_dh_auto_test
+ * Add README.source.
+ * Add upstream-branch to gbp.conf.
+ * Add repack and compression options to d/watch.
+ * Drop d/source/local-options for dgit.
+ * Drop unused override no-upstream-changelog.
+ * Bump standards version (no changes required).
+
+ -- Sean Whitton <spwhitton@spwhitton.name> Fri, 23 Sep 2016 13:08:31 -0700
+
+seq-el (1.11-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #815859)
+
+ -- Sean Whitton <spwhitton@spwhitton.name> Sun, 06 Mar 2016 09:17:28 -0700
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..d809715
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: seq-el
+Section: lisp
+Priority: optional
+Maintainer: Debian Emacs addons team <pkg-emacsen-addons@lists.alioth.debian.org>
+Uploaders: Sean Whitton <spwhitton@spwhitton.name>
+Build-Depends: debhelper (>= 10), dh-elpa (>= 0.0.17)
+Standards-Version: 3.9.8
+Homepage: https://elpa.gnu.org/packages/seq.html
+Testsuite: autopkgtest-pkg-elpa
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/seq-el.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/seq-el.git/
+
+Package: elpa-seq
+Architecture: all
+Depends: ${misc:Depends}
+Built-Using: ${misc:Built-Using}
+Recommends: emacs (>= 46.0)
+Enhances: emacs, emacs24
+Description: sequence manipulation functions for Emacs Lisp
+ This library provides sequence-manipulation functions that complement
+ basic functions provided by subr.el.
+ .
+ All functions are prefixed with "seq-".
+ .
+ All provided functions work on lists, strings and vectors.
+ .
+ Functions taking a predicate or iterating over a sequence using a
+ function as argument take the function as their first argument and
+ the sequence as their second argument. All other functions take
+ the sequence as their first argument.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ac65942
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: seq
+Source: https://elpa.gnu.org/packages/seq.html
+
+Files: *
+Copyright: (C) 2014-2015 Free Software Foundation, Inc.
+License: GPL-3+
+
+Files: debian/*
+Copyright: (C) 2016 Sean Whitton <spwhitton@spwhitton.name>
+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..79273aa
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,10 @@
+[DEFAULT]
+debian-branch = master
+upstream-branch = upstream
+upstream-tag = %(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..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/upstream/signing-key.asc b/debian/upstream/signing-key.asc
new file mode 100644
index 0000000..7ba85ba
--- /dev/null
+++ b/debian/upstream/signing-key.asc
@@ -0,0 +1,26 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1
+
+mQMuBFQi0UgRCACHe/DK9IIsjz5iZ+xm0aXXlXUlUE2U1P/mFR5apGCrj+uEfPm5
+xATDBzkV5vKnQMCCWzoQscf+NyLFq+jzpgS8FvtZKoJ8vjMdk7Ohv8gtz0TBrrKi
+mxsoDfAB6sTYnyBb97KmbVxMWPmYSFk1XrYImrn5nKQwxVlx98KtbZX87a9CGnam
+YalWMhneMNS5nL4C5Hbzic0SYdiId2upq9HuaAGdR36YElzgUZgogQb9OgSj2/Ny
+j0+Jg05EhUYeUcaWh5Gr0V2ykmaXn2cUTR1/P0NzjILhldQ7d3sx+Zky1buo7nGw
+e7b3KKLVGhSLD7npI2/F+zsql4BaB8fr/WJXAQDh0G24r03VWY4FPJyVSSv2YAN3
+gipxj1FD+2fzexL5ZQf/TcyCWEbt/Yoq89hXwWnNkOkASP4kDqeVdcGuXj1BIHuw
+/faQipuPC48lv5bmFqUGVaidyujr6aPzluhItJJnjhyH/vtEmDzcRZB1MGMQOevu
+IZLJGSYgsxKk/yyidNEc/YBovd65HczGDeLiGNgcwlMhydy1U4ugZRGysgPt08Gk
+AhhEQTv25lmsyrJbGzXc/m0olsLhzIwtFBSxS+57NNtWLdNEqsjpbMoX1ce1Cn3U
+5UgmQJD/2tn9qYIq+/kpGye2SP17bG7eWx9UYfcJOvzzL6eSWmnshuaoVtdXTZMM
+6d/aSNIeKyYwonX5jCIbgTRaaIasa81T8w8t3qFRQQf/WSqfgnzgh1YeMkKdwbQP
+60lFl0osRunwdsIQOgirBeMKvZmeJ/FZl3zKHQbd4si0KIacAR4Dmi1p+DCGInVa
+KZAPz601KyaPhfZkgB7fJR+yxUkuD6ewelxj/nbPBiOHwrMrJyWTPITve9ukOrzP
+Cyx1j/x5M9wpuSIRWuNuGsjkCntTj1I9DxTUcwNiSPaMXT/NXT3bsq0SNWJC4WlD
+8apiQwzfKr8li2rOi31KO7quc9+//R2Ep7zJvx59tPCqr6PS8Te8UsThEZ2mCuHc
+N2elXqa9dbi1Vf9HBmh4tdB1F03LdfqGekQyRM+yKBw2v2VpI9U0zK6YT4uIWr3S
+tLQuR05VIEVMUEEgU2lnbmluZyBBZ2VudCA8ZWxwYXNpZ25AZWxwYS5nbnUub3Jn
+PoiABBMRCAAoBQJUItFIAhsDBQkJZgGABgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIX
+gAAKCRBHTwWDf73vm3exAP9DKh+TAseLh/v0xRQczN9FAR2hd4zL72Q9Qgd4nals
+9gEAlqQA5cmrnef4NT+gmRPOnySOcp9c7ecOgpTzfzkEV3M=
+=LBiS
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..949e5cc
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+opts=repack,compression=xz,pgpsigurlmangle=s/$/.sig/ https://elpa.gnu.org/packages/seq.html seq-(.+).tar