perl-Text-BibTeX/manual-pages-for-libbtparse.patch
Stephan Kulow e181edd696 Accepting request 596063 from home:WernerFink:branches:devel:languages:perl
For next TexLive 2018
- updated to 0.85
   see /usr/share/doc/packages/perl-Text-BibTeX/Changes
  0.85 2017-08-31
   * FreeBSD includes a definition of strlcat, so no need to redefine it.
  0.84 2017-08-31
   * Further buffer overflow fixes.
   * Spellchecking fixes by Julián Moreno Patiño, Lucas Kanashiro, and 
     Gregor Herrmann (debian community)
  0.83 2017-08-28
   * Remove unecessary depedency to YAML.
   * Fix further buffer overflow situations.
  0.82 2017-08-27
   * Fix buffer overflow (thanks to Hamid Ebadi).
   * Hide error messages on tests, and use them for testing purposes.
  0.81 2017-07-19
   * Fix issue with NameFormat and unitialized join-tokens.
     (thanks to Karl Wette for the bug report).

OBS-URL: https://build.opensuse.org/request/show/596063
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-BibTeX?expand=0&rev=19
2018-04-20 13:46:33 +00:00

14 lines
633 B
Diff

--- Text-BibTeX-0.80/inc/MyBuilder.pm 2017-03-25 20:41:12.000000000 +0000
+++ Text-BibTeX-0.80/inc/MyBuilder.pm 2017-05-31 09:58:18.898289185 +0000
@@ -172,8 +172,8 @@ sub ACTION_create_manpages {
my $version = $self->notes('btparse_version');
for my $pod (@$pods) {
my $man = $pod;
- $man =~ s!.pod!.1!;
- $man =~ s!btparse/doc!blib/bindoc!; ## FIXME - path
+ $man =~ s!.pod!.3!;
+ $man =~ s!btparse/doc!blib/libdoc!;
next if $self->up_to_date($pod, $man);
## FIXME
`pod2man --section=1 --center="btparse" --release="btparse, version $version" $pod $man`;