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 | |
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')
-rw-r--r-- | converters/help2man/Makefile | 7 | ||||
-rw-r--r-- | converters/help2man/distinfo | 9 | ||||
-rw-r--r-- | converters/help2man/patches/patch-help2man.PL | 16 |
3 files changed, 6 insertions, 26 deletions
diff --git a/converters/help2man/Makefile b/converters/help2man/Makefile index 14074dede3e..70aa70d2aa9 100644 --- a/converters/help2man/Makefile +++ b/converters/help2man/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.67 2021/08/23 08:19:26 adam Exp $ +# $NetBSD: Makefile,v 1.68 2022/02/20 21:11:03 wiz Exp $ -DISTNAME= help2man-1.48.5 +DISTNAME= help2man-1.49.1 CATEGORIES= converters MASTER_SITES= ${MASTER_SITE_GNU:=help2man/} EXTRACT_SUFX= .tar.xz @@ -50,9 +50,6 @@ SUBST_SED.soext+= -e 's,$$(preload)\.so,$$(preload).${SOEXT},g' PLIST_SUBST+= SOEXT=${SOEXT} -post-patch: - ${TOUCH} -r ${WRKSRC}/help2man.PL.orig ${WRKSRC}/help2man.PL - .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/converters/help2man/distinfo b/converters/help2man/distinfo index 31854a33bc0..5bdf686c92c 100644 --- a/converters/help2man/distinfo +++ b/converters/help2man/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.46 2021/10/26 10:06:40 nia Exp $ +$NetBSD: distinfo,v 1.47 2022/02/20 21:11:03 wiz Exp $ -BLAKE2s (help2man-1.48.5.tar.xz) = 85e52bb8fb299dca92c3ef1e968c7f12ecae09150587e5ecf68aac3006055105 -SHA512 (help2man-1.48.5.tar.xz) = 800eb0daa9daef8e423d52ede55eee2960122ea0269865295afada4cf4fcc1c6791da8429c3a57c0fc1bf0a14c8a77953952325413a8faa5dd07b1bc5bc0edd1 -Size (help2man-1.48.5.tar.xz) = 204672 bytes +BLAKE2s (help2man-1.49.1.tar.xz) = 57ddf64804bf63b30b0b6788972a1368888b2bc5cd4984a169a70c49741d5526 +SHA512 (help2man-1.49.1.tar.xz) = 78ea063d49aa9a115ddd7eb8b1b30eaba3d597caf357cbdddeef93b19d1e938ea0f3808dbb63b459c06870ec62f0dc4565a40be8c67720d0185dbcf26ba408df +Size (help2man-1.49.1.tar.xz) = 214504 bytes SHA1 (patch-bindtextdomain.c) = 527f54db2b220bad60e80ed8959b9e9c20191cc7 -SHA1 (patch-help2man.PL) = 72b5a1cccbc832967a892ccf7e18d2cf44a21454 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; |