Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel gettext*: update to 0.21.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7ecbaca9b42f
branches:  trunk
changeset: 436190:7ecbaca9b42f
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Jul 29 07:00:15 2020 +0000

description:
gettext*: update to 0.21.

Version 0.21 - July 2020

* Programming languages support:
  - Shell:
    o xgettext now recognizes and ignores 'env' invocations and environment
      variable assignments in front of commands.
  - Java:
    o xgettext now recognizes format strings in the Formatter syntax.  They
      are marked as 'java-printf-format' in POT and PO files.
    o xgettext now recognizes text blocks as string literals.
  - JavaScript:
    xgettext parses JSX expressions more reliably.
  - Ruby:
    o xgettext now supports Ruby.
    o 'msgfmt -c' now verifies the syntax of translations of Ruby format
      strings.

* Runtime behaviour:
  - On native Windows platforms, the directory that contains the message
    catalogs may now contain arbitrary Unicode characters. To make use of
    this feature, use the new function 'wbindtextdomain' instead of
    'bindtextdomain'. It allows to pass a directory name in wchar_t[] encoding.
    Note: 'wbindtextdomain' exists only on native Windows platforms.

* Improvements for translators:
  - When msgfmt writes a MO file, it now does so in such a way that processes
    that are currently using an older copy of the MO file will not crash.

* Libtextstyle:
  - Added support for emitting hyperlinks.
  - New API for doing formatted output.
  - The example programs support the NO_COLOR environment variable.

diffstat:

 devel/gettext-lib/distinfo         |  12 +++++-------
 devel/gettext-lib/patches/patch-aa |  20 --------------------
 devel/gettext-lib/patches/patch-ab |  13 -------------
 devel/gettext-m4/PLIST             |   3 +--
 devel/gettext/Makefile.common      |   4 ++--
 devel/gettext/distinfo             |  10 +++++-----
 6 files changed, 13 insertions(+), 49 deletions(-)

diffs (111 lines):

diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext-lib/distinfo
--- a/devel/gettext-lib/distinfo        Tue Jul 28 23:28:23 2020 +0000
+++ b/devel/gettext-lib/distinfo        Wed Jul 29 07:00:15 2020 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.35 2020/04/20 08:37:14 wiz Exp $
+$NetBSD: distinfo,v 1.36 2020/07/29 07:00:15 wiz Exp $
 
-SHA1 (gettext-0.20.2.tar.gz) = 3cb11e9648bacee4c56660d34de3ae3e8b143078
-RMD160 (gettext-0.20.2.tar.gz) = 32e99c55361970315dd9d43f9e36dd43f05fc09e
-SHA512 (gettext-0.20.2.tar.gz) = 50b0520230dba5da6e04e51b2317e073cacf1536d73ea88e4b5dc6cc5bd97cf2c9a279c3c3ada1067f39c8b3bb0b1ce8e0823cc1dd4c33f4f10860bdf787009d
-Size (gettext-0.20.2.tar.gz) = 23717789 bytes
-SHA1 (patch-aa) = aed0e4e34c45fd442ee15254f494fe02c9dd55f7
-SHA1 (patch-ab) = 85ac0357dd3f977550fd0d51fce87e9ddbe42d07
+SHA1 (gettext-0.21.tar.gz) = e6c0a0cba5b00a604c9118403a8199c77a538526
+RMD160 (gettext-0.21.tar.gz) = 93b5bf20f0cb7f0fb5342a948b86d55682b99521
+SHA512 (gettext-0.21.tar.gz) = bbe590c5dd3580c75bf30ff768da99a88eb8d466ec1ac9eea20be4cab4357ecf72448e6b81b47425e39d50fa6320ba426632914d7898dfebb4f159abc39c31d1
+Size (gettext-0.21.tar.gz) = 24181849 bytes
diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext-lib/patches/patch-aa
--- a/devel/gettext-lib/patches/patch-aa        Tue Jul 28 23:28:23 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.8 2013/01/31 21:45:04 adam Exp $
-
---- gettext-runtime/intl/localcharset.c.orig   2012-12-24 00:33:38.000000000 +0000
-+++ gettext-runtime/intl/localcharset.c
-@@ -19,6 +19,10 @@
- 
- #include <config.h>
- 
-+#if !defined(HAVE_GNU_ICONV)
-+
-+/* Provide our variant only if we don't use the GNU iconv library.  */
-+
- /* Specification.  */
- #include "localcharset.h"
- 
-@@ -556,3 +560,4 @@ locale_charset (void)
- 
-   return codeset;
- }
-+#endif
diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext-lib/patches/patch-ab
--- a/devel/gettext-lib/patches/patch-ab        Tue Jul 28 23:28:23 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.8 2019/05/27 13:21:41 ryoon Exp $
-
---- gettext-runtime/intl/Makefile.in.orig      2019-05-12 15:08:36.000000000 +0000
-+++ gettext-runtime/intl/Makefile.in
-@@ -1939,7 +1939,7 @@ intl-compat.lo:      ../config.h $(srcdi
- @USE_INCLUDED_LIBINTL_TRUE@install-exec-libintl: libintl.la
- @USE_INCLUDED_LIBINTL_TRUE@   $(mkdir_p) $(DESTDIR)$(libdir)
- @USE_INCLUDED_LIBINTL_TRUE@   $(LIBTOOL) --mode=install \
--@USE_INCLUDED_LIBINTL_TRUE@     $(INSTALL_DATA) libintl.la $(DESTDIR)$(libdir)/libintl.la; \
-+@USE_INCLUDED_LIBINTL_TRUE@     $(BSD_INSTALL_LIB) libintl.la $(DESTDIR)$(libdir)/libintl.la; \
- @USE_INCLUDED_LIBINTL_TRUE@   if test "@RELOCATABLE@" = yes; then \
- @USE_INCLUDED_LIBINTL_TRUE@     dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < $(DESTDIR)$(libdir)/libintl.la | sed -e "s,^',," -e "s,'\$$,,"`; \
- @USE_INCLUDED_LIBINTL_TRUE@     if test -n "$$dependencies"; then \
diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext-m4/PLIST
--- a/devel/gettext-m4/PLIST    Tue Jul 28 23:28:23 2020 +0000
+++ b/devel/gettext-m4/PLIST    Wed Jul 29 07:00:15 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2020/04/20 08:37:14 wiz Exp $
+@comment $NetBSD: PLIST,v 1.12 2020/07/29 07:00:16 wiz Exp $
 share/aclocal/codeset.m4
 share/aclocal/exported.m4
 share/aclocal/extern-inline.m4
@@ -14,7 +14,6 @@
 share/aclocal/intl.m4
 share/aclocal/intlmacosx.m4
 share/aclocal/intmax.m4
-share/aclocal/inttypes-pri.m4
 share/aclocal/inttypes_h.m4
 share/aclocal/lcmessage.m4
 share/aclocal/lib-ld.m4
diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext/Makefile.common
--- a/devel/gettext/Makefile.common     Tue Jul 28 23:28:23 2020 +0000
+++ b/devel/gettext/Makefile.common     Wed Jul 29 07:00:15 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.18 2020/05/13 03:38:24 rillig Exp $
+# $NetBSD: Makefile.common,v 1.19 2020/07/29 07:00:15 wiz Exp $
 #
 # used by devel/gettext/Makefile
 # used by devel/gettext-asprintf/Makefile
@@ -6,7 +6,7 @@
 # used by devel/gettext-m4/Makefile
 # used by devel/gettext-tools/Makefile
 
-DISTNAME=      gettext-0.20.2
+DISTNAME=      gettext-0.21
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GNU:=gettext/}
 
diff -r 6e4990a4a3d3 -r 7ecbaca9b42f devel/gettext/distinfo
--- a/devel/gettext/distinfo    Tue Jul 28 23:28:23 2020 +0000
+++ b/devel/gettext/distinfo    Wed Jul 29 07:00:15 2020 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.38 2020/04/20 08:37:14 wiz Exp $
+$NetBSD: distinfo,v 1.39 2020/07/29 07:00:15 wiz Exp $
 
-SHA1 (gettext-0.20.2.tar.gz) = 3cb11e9648bacee4c56660d34de3ae3e8b143078
-RMD160 (gettext-0.20.2.tar.gz) = 32e99c55361970315dd9d43f9e36dd43f05fc09e
-SHA512 (gettext-0.20.2.tar.gz) = 50b0520230dba5da6e04e51b2317e073cacf1536d73ea88e4b5dc6cc5bd97cf2c9a279c3c3ada1067f39c8b3bb0b1ce8e0823cc1dd4c33f4f10860bdf787009d
-Size (gettext-0.20.2.tar.gz) = 23717789 bytes
+SHA1 (gettext-0.21.tar.gz) = e6c0a0cba5b00a604c9118403a8199c77a538526
+RMD160 (gettext-0.21.tar.gz) = 93b5bf20f0cb7f0fb5342a948b86d55682b99521
+SHA512 (gettext-0.21.tar.gz) = bbe590c5dd3580c75bf30ff768da99a88eb8d466ec1ac9eea20be4cab4357ecf72448e6b81b47425e39d50fa6320ba426632914d7898dfebb4f159abc39c31d1
+Size (gettext-0.21.tar.gz) = 24181849 bytes
 SHA1 (patch-aa) = ec9cad88d5a0de67b70d417915ec0f1cfb3552b2
 SHA1 (patch-ad) = 56222fbc6f1db47a70457bb06d0b82f06f286563
 SHA1 (patch-ae) = 662975f811495f13604001964fcc6e3d13b1276c



Home | Main Index | Thread Index | Old Index