summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-05-11 11:56:54 -0300
committerSean Whitton <spwhitton@spwhitton.name>2016-05-11 11:56:54 -0300
commita88cd5b182223084edc0bdb815a6a8816fe69bf2 (patch)
treeb8b250692218dc13a1b4c5564979f8ef10f9784b
Import rainbow-delimiters_2.1.3-1.debian.tar.xz
[dgit import tarball rainbow-delimiters 2.1.3-1 rainbow-delimiters_2.1.3-1.debian.tar.xz]
-rw-r--r--changelog5
-rw-r--r--compat1
-rw-r--r--control38
-rw-r--r--copyright56
-rw-r--r--docs1
-rw-r--r--elpa1
-rw-r--r--gbp.conf12
-rw-r--r--patches/0001-patch-README-for-Debian.patch47
-rw-r--r--patches/series1
-rwxr-xr-xrules4
-rw-r--r--source/format1
-rw-r--r--source/lintian-overrides2
-rw-r--r--watch2
13 files changed, 171 insertions, 0 deletions
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..cfdc70c
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+rainbow-delimiters (2.1.3-1) unstable; urgency=medium
+
+ * Initial release (Closes: #823957).
+
+ -- Sean Whitton <spwhitton@spwhitton.name> Wed, 11 May 2016 07:56:54 -0700
diff --git a/compat b/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/compat
@@ -0,0 +1 @@
+10
diff --git a/control b/control
new file mode 100644
index 0000000..d1e479a
--- /dev/null
+++ b/control
@@ -0,0 +1,38 @@
+Source: rainbow-delimiters
+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 (>= 9.20160402),
+ dh-elpa
+Homepage: https://github.com/Fanael/rainbow-delimiters
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/rainbow-delimiters.git/
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/rainbow-delimiters.git
+
+Package: elpa-rainbow-delimiters
+Architecture: all
+Depends: ${elpa:Depends}, ${misc:Depends},
+ emacs
+Recommends: emacs (>= 46.0)
+Enhances: emacs,
+ emacs24
+Built-Using: ${misc:Built-Using}
+Description: Emacs mode to colour-code delimiters according to their depth
+ rainbow-delimiters is a "rainbow parentheses"-like mode which
+ highlights delimiters such as parentheses, brackets or braces
+ according to their depth. Each successive level is highlighted in a
+ different color. This makes it easy to spot matching delimiters,
+ orient yourself in the code, and tell which statements are at a given
+ depth.
+ .
+ Great care has been taken to make this mode fast. You shouldn't see
+ any change in scrolling or editing speed when it's on even when
+ working in delimiter-rich languages like Clojure or Emacs Lisp. It
+ can be used with any language.
+ .
+ You can customize the colors rainbow-delimiters uses. The default
+ colors are intentionally subtle; they are unobtrusive enough to make
+ the mode worth looking at even if you usually don't like rainbow
+ parentheses modes. A number of major color themes such as Zenburn and
+ Solarized have added their own faces for the mode.
diff --git a/copyright b/copyright
new file mode 100644
index 0000000..fff732a
--- /dev/null
+++ b/copyright
@@ -0,0 +1,56 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: rainbow-delimiters
+Source: https://github.com/Fanael/rainbow-delimiters
+
+Files: *
+Copyright: (C) 2010-2013 Jeremy Rayman <opensource@jeremyrayman.com>
+ (C) 2013-2016 Fanael Linithien <fanael4@gmail.com>
+License: GPL-3+
+
+Files: rainbow-delimiters-test.el
+Copyright: (C) 2014-2015 Fanael Linithien <fanael4@gmail.com>
+License: BSD-2-clause
+
+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'
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/docs b/docs
new file mode 100644
index 0000000..dd44972
--- /dev/null
+++ b/docs
@@ -0,0 +1 @@
+*.md
diff --git a/elpa b/elpa
new file mode 100644
index 0000000..abf136d
--- /dev/null
+++ b/elpa
@@ -0,0 +1 @@
+*.el
diff --git a/gbp.conf b/gbp.conf
new file mode 100644
index 0000000..5cc34d4
--- /dev/null
+++ b/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/patches/0001-patch-README-for-Debian.patch b/patches/0001-patch-README-for-Debian.patch
new file mode 100644
index 0000000..3b24be2
--- /dev/null
+++ b/patches/0001-patch-README-for-Debian.patch
@@ -0,0 +1,47 @@
+From: Sean Whitton <spwhitton@spwhitton.name>
+Date: Tue, 10 May 2016 10:52:28 -0700
+Subject: patch README for Debian
+Forwarded: not-needed
+
+---
+ README.md | 20 --------------------
+ 1 file changed, 20 deletions(-)
+
+diff --git a/README.md b/README.md
+index 3f1fb58..379aaf5 100644
+--- a/README.md
++++ b/README.md
+@@ -1,7 +1,3 @@
+-[![MELPA](http://melpa.org/packages/rainbow-delimiters-badge.svg)](http://melpa.org/#/rainbow-delimiters)
+-[![MELPA Stable](http://stable.melpa.org/packages/rainbow-delimiters-badge.svg)](http://stable.melpa.org/#/rainbow-delimiters)
+-[![Build status](https://travis-ci.org/Fanael/rainbow-delimiters.svg?branch=master)](https://travis-ci.org/Fanael/rainbow-delimiters)
+-
+ # rainbow-delimiters
+
+ `rainbow-delimiters` is a "rainbow parentheses"-like mode which highlights
+@@ -20,25 +16,9 @@ at even if you usually don't like rainbow parentheses modes. A number of major
+ color themes such as Zenburn and Solarized have added their own faces for the
+ mode.
+
+-This is the official github repository for `rainbow-delimiters`.
+-
+ The latest **release** of `rainbow-delimiters` is always found at
+ https://github.com/Fanael/rainbow-delimiters/tree/master
+
+-## Installation
+-
+-The recommended way is to use [MELPA](http://melpa.org/) or
+-[MELPA Stable](http://stable.melpa.org/). If either is in your
+-`package-archives`, do
+-
+- M-x package-install RET rainbow-delimiters RET
+-
+-Otherwise, open `rainbow-delimiters.el` in Emacs and use
+-
+- M-x package-install-from-buffer
+-
+-Any other methods of installation are unsupported.
+-
+ ## Usage
+
+ To toggle the mode in the current buffer:
diff --git a/patches/series b/patches/series
new file mode 100644
index 0000000..a589f0f
--- /dev/null
+++ b/patches/series
@@ -0,0 +1 @@
+0001-patch-README-for-Debian.patch
diff --git a/rules b/rules
new file mode 100755
index 0000000..8eb7ccb
--- /dev/null
+++ b/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --parallel --with elpa
diff --git a/source/format b/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/source/lintian-overrides b/source/lintian-overrides
new file mode 100644
index 0000000..54ccc2e
--- /dev/null
+++ b/source/lintian-overrides
@@ -0,0 +1,2 @@
+# using experimental compat for dh_elpa_test
+package-needs-versioned-debhelper-build-depends 10
diff --git a/watch b/watch
new file mode 100644
index 0000000..41f94bd
--- /dev/null
+++ b/watch
@@ -0,0 +1,2 @@
+version=4
+opts="mode=git" https://github.com/Fanael/rainbow-delimiters refs/tags/v([\d\.\d\.]+) debian \ No newline at end of file