summaryrefslogtreecommitdiff
path: root/dh_installchangelogs
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-04-24 00:19:58 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-04-24 00:19:58 -0400
commit472a8f123ef2fde0eb5ad29b8ec95449097fee6f (patch)
treea53ef7fe15fb27143ccd93037d867b4c610eae8d /dh_installchangelogs
parentb2d0350c56519f092335596790da9efe91df3369 (diff)
I lied, one more v7 change slipped in..
* dh_installchangelogs: In v7 mode, if no upstream changelog is specified, and the package is not native, guess at a few common changelog filenames.
Diffstat (limited to 'dh_installchangelogs')
-rwxr-xr-xdh_installchangelogs33
1 files changed, 23 insertions, 10 deletions
diff --git a/dh_installchangelogs b/dh_installchangelogs
index 9ce6dc10..339313a2 100755
--- a/dh_installchangelogs
+++ b/dh_installchangelogs
@@ -30,12 +30,16 @@ NEWS.Debian files. If there is a debian/NEWS file, it is installed as
usr/share/doc/package/NEWS.Debian. debian/package.NEWS files can also be
used.
-If an upstream changelog file is specified as an option, then this upstream
-changelog will be installed as usr/share/doc/package/changelog in the
-package build directory. If the changelog is a html file (determined by
-file extension), it will be installed as
-usr/share/doc/package/changelog.html instead, and will be converted to
-plain text with html2text to generate usr/share/doc/package/changelog.
+An upstream changelog file may be specified as an option. If none is
+specified, a few common filenames are tried. (In compatability level 7 and
+above.)
+
+If there is an upstream changelog file, it will be be installed as
+usr/share/doc/package/changelog in the package build directory. If the
+changelog is a html file (determined by file extension), it will be
+installed as usr/share/doc/package/changelog.html instead, and will be
+converted to plain text with html2text to generate
+usr/share/doc/package/changelog.
=head1 OPTIONS
@@ -60,10 +64,19 @@ Install this file as the upstream changelog.
init();
my $upstream=shift;
-
my $changelog_name="changelog.Debian";
-if (isnative($dh{MAINPACKAGE}) && ! defined $upstream) {
- $changelog_name='changelog';
+if (! defined $upstream) {
+ if (! isnative($dh{MAINPACKAGE}) && !compat(6)) {
+ foreach my $name (qw{ChangeLog Changelog Changes CHANGES changelog}) {
+ if (-e $name) {
+ $upstream=$name;
+ last;
+ }
+ }
+ }
+ if (isnative($dh{MAINPACKAGE})) {
+ $changelog_name='changelog';
+ }
}
my $news_name="NEWS.Debian";
@@ -100,7 +113,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
"$tmp/usr/share/doc/$package/$news_name");
}
- if ($upstream) {
+ if (defined $upstream) {
my $link_to;
if ($upstream=~m/\.html?$/i) {
# HTML changelog