diff options
author | wiz <wiz@pkgsrc.org> | 2022-02-20 21:11:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-02-20 21:11:03 +0000 |
commit | 552985e752f407d348cf2259028c35875b2c8c15 (patch) | |
tree | 5c06ae268972838949b09dc79f9685b351ca0747 /converters/help2man/patches | |
parent | 939fde93ba79b43445ec8595948a255c08b2cb6b (diff) | |
download | pkgsrc-552985e752f407d348cf2259028c35875b2c8c15.tar.gz |
help2man: update to 1.49.1.
Version 1.49 February 14, 2022
* Use @samp{} around the option in the menu description for "--help
recommendations" to avoid rendering the -- as endash.
* Don't translate @documentencoding.
* Fall back to forking iconv for encodings which are not supported by
Perl's Encode module.
Diffstat (limited to 'converters/help2man/patches')
-rw-r--r-- | converters/help2man/patches/patch-help2man.PL | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/converters/help2man/patches/patch-help2man.PL b/converters/help2man/patches/patch-help2man.PL deleted file mode 100644 index 5df0762cd57..00000000000 --- a/converters/help2man/patches/patch-help2man.PL +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-help2man.PL,v 1.1 2014/07/15 14:54:52 ryoon Exp $ - -* SCO OpenServer 5.0.7/3.2's nl_langinfo(3) returns always empty. - Do not fail with error. - ---- help2man.PL.orig 2014-03-24 11:29:43.000000000 +0000 -+++ help2man.PL -@@ -124,7 +124,7 @@ my $encoding; - - sub dec { $encoding ? decode $encoding, $_[0] : $_[0] } - sub enc { $encoding ? encode $encoding, $_[0] : $_[0] } -- sub enc_user { encode $user_encoding, $_[0] } -+ sub enc_user { $user_encoding ? encode $user_encoding, $_[0] : $_[0] } - sub kark # die with message formatted in the invoking user's locale - { - setlocale LC_ALL, $user_locale; |