summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Lamberov <dogsleg@debian.org>2017-06-21 17:36:22 +0500
committerLev Lamberov <dogsleg@debian.org>2017-06-21 18:03:33 +0500
commit836201275694a440e7451691c261e8abb25f455f (patch)
treeb2efe346715625794d7a6563ee6501e82f30fd3c
parentbfa48b37863813367ece66da4208bf8432cc474b (diff)
Initial packaging
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control30
-rw-r--r--debian/copyright29
-rw-r--r--debian/docs1
-rw-r--r--debian/elpa1
-rw-r--r--debian/patches/0001-fix-documentation.diff22
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch6
11 files changed, 101 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..eecf50b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+dired-du (0.5-1) unstable; urgency=medium
+
+ * Initial release (Closes: #865438)
+
+ -- Lev Lamberov <dogsleg@debian.org> Wed, 21 Jun 2017 17:26:33 +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..2aefbb9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: dired-du
+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,
+ coreutils (>= 8.26)
+Standards-Version: 3.9.8
+Testsuite: autopkgtest-pkg-elpa
+Homepage: https://elpa.gnu.org/packages/dired-du.html
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-emacsen/pkg/dired-du.git/
+Vcs-Git: https://anonscm.debian.org/git/pkg-emacsen/pkg/dired-du.git
+
+Package: elpa-dired-du
+Architecture: all
+Depends: ${elpa:Depends},
+ ${misc:Depends},
+ emacsen-common (>= 2.0.8)
+Recommends: emacs (>= 46.0),
+ coreutils (>= 8.26)
+Enhances: emacs,
+ emacs24,
+ emacs25
+Built-Using: ${misc:Built-Using}
+Description: dired with recursive directory sizes
+ This package defines a minor mode `dired-du-mode' to show the
+ recursive size of directories in Dired buffers. If `du' program is
+ available, then the directory sizes are obtained with it. Otherwise,
+ the directory sizes are obtained with Lisp.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..691c071
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dired-du
+Upstream-Contact: Tino Calancha <tino.calancha@gmail.com>
+Source: https://elpa.gnu.org/packages/dired-du.html
+
+Files: *
+Copyright: (C) 2016-2017 Free Software Foundation, Inc.
+License: GPL-3+
+
+Files: debian/*
+Copyright: (C) 2017 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 <https://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..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/elpa b/debian/elpa
new file mode 100644
index 0000000..8eac86e
--- /dev/null
+++ b/debian/elpa
@@ -0,0 +1 @@
+dired-du.el
diff --git a/debian/patches/0001-fix-documentation.diff b/debian/patches/0001-fix-documentation.diff
new file mode 100644
index 0000000..30d5e6c
--- /dev/null
+++ b/debian/patches/0001-fix-documentation.diff
@@ -0,0 +1,22 @@
+From: Lev Lamberov <dogsleg@debian.org>
+Subject: Remove badge icons from README file
+
+This patch removes badges icons from README file. These icons are
+intended rather for developers and are loaded from several external
+web sites.
+
+--- a/README.md
++++ b/README.md
+@@ -1,7 +1,5 @@
+ # dired-du
+
+-[![Build Status](https://api.travis-ci.org/calancha/dired-du.svg?branch=master)](https://travis-ci.org/calancha/dired-du)
+-
+ ## Display the recursive size of directories in Dired
+
+ This file defines a minor mode **dired-du-mode** to show
+@@ -36,4 +34,3 @@ In adition, this library adds a command,
+ to count the number of marked files and how much space
+ they use; the command accepts a particular character mark
+ i.e., '*' or all kind of marks i.e, any character other than ?\s.
+-
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..db340cf
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-fix-documentation.diff
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e8e22ba
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --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/watch b/debian/watch
new file mode 100644
index 0000000..4e5a112
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,6 @@
+# This watch file won't produce the orig.tar file and will in fact exit with
+# an error. This is okay: we're using gbp to produce orig.tar files so we only
+# need uscan to download.
+
+version=3
+https://elpa.gnu.org/packages/dired-du.html dired-du-(.+).tar