summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Koch <thomas@koch.ro>2015-11-04 13:45:58 -0400
committerThomas Koch <thomas@koch.ro>2015-11-04 13:45:58 -0400
commit52e28094b4f4d3e5137e5cacae07132ba42d5a84 (patch)
tree967726d171eb66817f900eed902bfe08765215aa
parent9bdf0a721aec5effb15bc9fb4f37b3ad6aab0fd9 (diff)
parent7f27c0649a75d587ca36ea1892f20785030fd611 (diff)
editorconfig-emacs (0.4+git20151028.3835e4-1) unstable; urgency=medium
* Initial release. (Closes: #711695) [dgit import unpatched editorconfig-emacs 0.4+git20151028.3835e4-1]
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control29
-rw-r--r--debian/copyright38
-rw-r--r--debian/elpa-editorconfig.elpa1
-rwxr-xr-xdebian/rules11
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch4
8 files changed, 90 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d0919cd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+editorconfig-emacs (0.4+git20151028.3835e4-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #711695)
+
+ -- Thomas Koch <thomas@koch.ro> Wed, 04 Nov 2015 18:45:58 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6fb4c3c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: editorconfig-emacs
+Section: editors
+Priority: extra
+Maintainer: Debian Emacs addons team <pkg-emacsen-addons@lists.alioth.debian.org>
+Uploaders: Thomas Koch <thomas@koch.ro>
+Build-Depends: debhelper (>= 9), dh-elpa
+Standards-Version: 3.9.6
+Homepage: https://github.com/editorconfig/editorconfig-emacs
+Vcs-Git: git://anonscm.debian.org/pkg-emacsen/pkg/editorconfig.git
+Vcs-Browser: http://anonscm.debian.org/cgit/pkg-emacsen/pkg/editorconfig.git/
+
+Package: elpa-editorconfig
+Architecture: all
+Depends: ${misc:Depends}, editorconfig
+Recommends: emacsen-common (>= 2.0.8), emacs
+Enhances: emacs, emacs24
+Description: coding style indenter for all editors - Emacsen plugin
+ EditorConfig helps developers define and maintain consistent coding
+ styles between different editors and IDEs. The EditorConfig project
+ consists of a file format for defining coding styles and a collection of
+ text editor plugins that enable editors to read the file format and
+ adhere to defined styles.
+ .
+ EditorConfig files are easily readable and they work nicely with version
+ control systems.
+ .
+ This package provides the EditorConfig plugin for Emacsen which
+ automatically sets Emacs' indenting and formatting options per project
+ based on the project's editorconfig configuration files. \ No newline at end of file
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d1054af
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: editorconfig-emacs
+Source: https://github.com/editorconfig/editorconfig-emacs
+Upstream-Contact: editorconfig@googlegroups.com
+
+Files: *
+Copyright: 2011-2015 EditorConfig Team <editorconfig@googlegroups.com>
+Comment: content of CONTRIBUTORS file:
+ Contributors to EditorConfig Emacs plugin:
+ .
+ Trey Hunner
+ Jonas Bernoulli
+ Johan Sundström
+ Desmond O. Chang
+ Steve Jordan
+ Hong Xu
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2015 Thomas Koch <thomas@koch.ro>
+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 \ No newline at end of file
diff --git a/debian/elpa-editorconfig.elpa b/debian/elpa-editorconfig.elpa
new file mode 100644
index 0000000..abf136d
--- /dev/null
+++ b/debian/elpa-editorconfig.elpa
@@ -0,0 +1 @@
+*.el
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2786c54
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --parallel
+
+override_dh_install:
+ dh_install
+ dh_elpa
+
+override_dh_auto_build:
+# NO-OP to ignore upstreams Makefile
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/watch b/debian/watch
new file mode 100644
index 0000000..bfcd13d
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+
+opts="filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/editorconfig-emacs-$1.tar.gz/" \
+ https://github.com/editorconfig/editorconfig-emacs/tags (?:.*?/)?v?(\d[\d.]*)\.tar\.gz \ No newline at end of file