diff options
author | micha <micha@pkgsrc.org> | 2019-11-08 14:26:13 +0000 |
---|---|---|
committer | micha <micha@pkgsrc.org> | 2019-11-08 14:26:13 +0000 |
commit | 27d54be41d7307ba9cb5045451a0ee11dc11f943 (patch) | |
tree | 6b21d92b970a2c6040d1248bd11166d7d8740ee8 /shells | |
parent | 55d641bc732e54d8f9519d6676085837ef22e4df (diff) | |
download | pkgsrc-27d54be41d7307ba9cb5045451a0ee11dc11f943.tar.gz |
shells/pbosh: Update to 20191025
Based on schilytools release from 2019-10-25.
Changelog
=========
- include/schily/wchar.h: Some fallback definitions for
mbsinit() mbrtowc() wcrtomb() have been moved to make them always
visible and not only in case that <wchar.h> exists.
- include/schily/wchar.h: Before, we checked for HAVE_ISWPRINT to catch
the HP-UX-10.20 case where wchar_t is in stdlib.h. Now we check
(SIZEOF_WCHAR == 0 || SIZEOF_WCHAR_T == 0) as this works on Ultrix as
well.
- libgetopt: The getopt() function now supports options in the form:
+o, ++long-option or +long-option
if the optstring starts with a '+'. A new exported variable
"optflags" has the bit "OPT_PLUS" set, in case that an actual option
starts with '+'.
If more than one of the flag characters ':', '+' or "()" are used,
"()" must be last.
- Bourne Shell: The testsuite no longer tries to check ISO-8859-1 strings
as we cannot set this up reliably on all platforms and as Mac OS does
not allow to create the related filenames.
- Bourne Shell: The getopts(1) builtin command now supports options in.
the form:
+o, ++long-option or +long-option
if the optstring starts with a '+'. The shell variable "$NAME" has
a leading '+' in case that an actual option starts with '+'.
Note that this makes getopts(1) in the Bourne Shell compatible at
shell script level to the extensions in the getopts(1) implementation
in ksh93 for:
-o/+o Short options with either a leading - or +
--long GNU style long options as aliases to short -o options
++long GNU style long options as aliases to short +o options
Our enhancements to support:
-long UNIX style long options as aliases to short -o options
+long UNIX style long options as aliases to short +o options
- Long options the have no related short option
Are not supported by ksh93.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/pbosh/Makefile | 6 | ||||
-rw-r--r-- | shells/pbosh/distinfo | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/shells/pbosh/Makefile b/shells/pbosh/Makefile index 2592cb5131c..af846ebcd3d 100644 --- a/shells/pbosh/Makefile +++ b/shells/pbosh/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2019/10/24 17:08:02 micha Exp $ +# $NetBSD: Makefile,v 1.5 2019/11/08 14:26:13 micha Exp $ -DISTNAME= schily-2019-10-07 -PKGNAME= pbosh-20191007 +DISTNAME= schily-2019-10-25 +PKGNAME= pbosh-20191025 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=schilytools/} EXTRACT_SUFX= .tar.bz2 diff --git a/shells/pbosh/distinfo b/shells/pbosh/distinfo index 2b086cf1c8f..e5a01e348e0 100644 --- a/shells/pbosh/distinfo +++ b/shells/pbosh/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2019/10/24 17:08:02 micha Exp $ +$NetBSD: distinfo,v 1.5 2019/11/08 14:26:13 micha Exp $ -SHA1 (schily-2019-10-07.tar.bz2) = d9d901bb737bdeb3242aee92259955d7da17e684 -RMD160 (schily-2019-10-07.tar.bz2) = 23c47c0e0d85ce051cb9946718fc6bb87de6977c -SHA512 (schily-2019-10-07.tar.bz2) = 9d2ce93c104c1027fe96371929b7f78351248b2c73200b7762c7ce5b38ba680f0e8dae7d90d5ce83184a77a5d378890361f4b5c57383f601d0f11aafae5e430f -Size (schily-2019-10-07.tar.bz2) = 4404621 bytes +SHA1 (schily-2019-10-25.tar.bz2) = 2e32420f66700db63973414ba3b8cd1d1c4ba718 +RMD160 (schily-2019-10-25.tar.bz2) = 17d5542ec62165dacf7a82e5bba8335f16508de0 +SHA512 (schily-2019-10-25.tar.bz2) = c2f98bee65dc4c49a06f9a5795e11e17754c2869a18fc046d134ce83461fe3598ada1eae471a6b171542adddf2931d4d6e32b1d627a28f897e5e3dcc34b25149 +Size (schily-2019-10-25.tar.bz2) = 4412486 bytes |