Package: debhelper Version: 9.20150101 Severity: wishlist Tags: patch Dear Maintainer,
Several projects that are hosted on Github use markdown files (.md) as their README and changelogs. CHANGES.md is used by a few projects, and it would be nice to have this file automatically picked up as an upstream changelog. Trivial patch (against 9.20150101) is included to add this file to dh_installchangelogs -- System Information: Debian Release: 8.0 APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.19.0-jpleau (SMP w/8 CPU cores) Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system) Versions of packages debhelper depends on: ii binutils 2.25-5 ii dpkg 1.17.24 ii dpkg-dev 1.17.24 ii file 1:5.22+15-1 ii libdpkg-perl 1.17.24 ii man-db 2.7.0.2-5 ii perl 5.20.1-5 ii po-debconf 1.0.16+nmu3 debhelper recommends no packages. Versions of packages debhelper suggests: ii dh-make 1.20140617
>From e07cd5a706caa8f742dd416cad26e8044a78fb5c Mon Sep 17 00:00:00 2001 From: Jason Pleau <[email protected]> Date: Sat, 28 Feb 2015 22:52:33 -0500 Subject: [PATCH] dh_installchangelogs: Add CHANGES.md to the list of common changelog filenames --- dh_installchangelogs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh_installchangelogs b/dh_installchangelogs index edd7f9f..df0f2c2 100755 --- a/dh_installchangelogs +++ b/dh_installchangelogs @@ -142,7 +142,7 @@ if (! defined $upstream) { if (! isnative($dh{MAINPACKAGE}) && !compat(6)) { foreach my $dir (qw{. doc docs}) { my @files=sort glob("$dir/*"); - foreach my $name (qw{changelog changes changelog.txt changes.txt history history.txt changelog.md}) { + foreach my $name (qw{changelog changes changelog.txt changes.txt history history.txt changelog.md changes.md}) { my @matches=grep { lc basename($_) eq $name && -s $_ && ! excludefile($_) } @files; -- 2.1.4

