summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--debian/compat1
-rw-r--r--debian/control14
-rw-r--r--debian/copyright20
-rw-r--r--debian/install2
-rwxr-xr-xdebian/rules10
6 files changed, 53 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..52f8c79
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+dh-elpa (0.0.1) experimental; urgency=medium
+
+ * Initial upload, early adopters only.
+
+ -- David Bremner <bremner@debian.org> Sat, 11 Jul 2015 15:24:57 +0200
+
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..5b18e43
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: dh-elpa
+Section: unknown
+Priority: optional
+Maintainer: David Bremner <bremner@debian.org>
+Build-Depends: emacs24-nox | emacs24 (>=24~) | emacs24-lucid (>=24~)
+Standards-Version: 3.9.6
+
+Package: dh-elpa
+Architecture: any
+Depends: ${misc:Depends}, emacs24-nox | emacs24 (>=24~) | emacs24-lucid (>=24~)
+Description: Debian helper tools for packaging emacs lisp extensions
+ This package provides a helper for packaging emacs lisp extensions
+ in a way compatible with the GNU Emacs 'elpa' package repository.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..73bb727
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: Free Software Foundation, David Bremner <bremner@debian.org>
+License: GPL3+
+
+License: GPL3+
+ .
+ dh-elpa 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.
+ .
+ dh-elpa 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 dh-elpa. If not, see <http://www.gnu.org/licenses/>.
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..adc3fdf
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+usr/share/emacs
+usr/bin
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1c6778b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+DESTDIR=$(CURDIR)/debian/tmp
+
+%:
+ dh $@
+
+override_dh_auto_install:
+ ./dh_elpa dh-elpa.el $(DESTDIR)/usr/share/emacs/site-lisp/elpa
+ install -m 755 -D dh_elpa $(DESTDIR)/usr/bin/dh_elpa