Codebase list libmodule-build-tiny-perl / 30025c2
drop manpage-section-mismatch.patch manpage sections are now read from %Config Git-Dch: Ignore gregor herrmann 10 years ago
2 changed file(s) with 0 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
+0
-21
debian/patches/manpage-section-mismatch.patch less more
0 Description: fix manpage sections, same as in Module::Build
1 This is a Debian-specific change that is supposed to stay, and upstream agrees.
2 Origin: vendor
3 Bug: https://rt.cpan.org/Ticket/Display.html?id=86551
4 Forwarded: not-needed
5 Author: gregor herrmann <gregoa@debian.org>
6 Last-Update: 2013-06-29
7
8 --- a/lib/Module/Build/Tiny.pm
9 +++ b/lib/Module/Build/Tiny.pm
10 @@ -87,8 +87,8 @@
11 process_xs($_, \%opt) for find(qr/.xs$/, 'lib');
12
13 if ($opt{install_paths}->install_destination('libdoc') && $opt{install_paths}->is_default_installable('libdoc')) {
14 - manify($_, catfile('blib', 'bindoc', man1_pagename($_)), 1, \%opt) for keys %scripts;
15 - manify($_, catfile('blib', 'libdoc', man3_pagename($_)), 3, \%opt) for keys %modules;
16 + manify($_, catfile('blib', 'bindoc', man1_pagename($_)), '1p', \%opt) for keys %scripts;
17 + manify($_, catfile('blib', 'libdoc', man3_pagename($_)), '3pm', \%opt) for keys %modules;
18 }
19 },
20 test => sub {
+0
-1
debian/patches/series less more
0 manpage-section-mismatch.patch