mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 18:32:12 +02:00
gettext: update 0.20.2 -> 0.21
Drop add-with-bisonlocaledir.patch as upstream (gnulib, not bison) now determines the directory from datadir. (From OE-Core rev: 8a89c77e5b5a7915b9cce4979ee8caa593847e51) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
742c773a93
commit
2457432ad9
@@ -1,58 +0,0 @@
|
||||
From 04bd40fe2c48c6e01ab418a04d27c4aff644ad96 Mon Sep 17 00:00:00 2001
|
||||
From: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
Date: Wed, 17 Feb 2016 23:54:02 -0500
|
||||
Subject: [PATCH] m4/bison-i18n.m4: add --with-bisonlocaledir to assign
|
||||
BISON_LOCALEDIR
|
||||
|
||||
The variable BISON_LOCALEDIR is assigned only by the output of
|
||||
'bison --print-localedir', we add option --with-bisonlocaledir
|
||||
to assign it explicitly. It is helpful for user to split the
|
||||
native compile and cross compile.
|
||||
|
||||
For backward compatibility, if option not used, it still
|
||||
make use of the output of 'bison --print-localedir'.
|
||||
|
||||
Upstream-Status: Submitted [bison-patches@gnu.org]
|
||||
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
---
|
||||
gettext-tools/gnulib-m4/bison-i18n.m4 | 10 ++++++++--
|
||||
1 file changed, 8 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/gettext-tools/gnulib-m4/bison-i18n.m4 b/gettext-tools/gnulib-m4/bison-i18n.m4
|
||||
index f5cfd3a..fb6ac4d 100644
|
||||
--- a/gettext-tools/gnulib-m4/bison-i18n.m4
|
||||
+++ b/gettext-tools/gnulib-m4/bison-i18n.m4
|
||||
@@ -14,11 +14,16 @@ dnl sets BISON_LOCALEDIR to indicate where to find the bison-runtime.mo files
|
||||
dnl and defines YYENABLE_NLS if there are bison-runtime.mo files at all.
|
||||
AC_DEFUN([BISON_I18N],
|
||||
[
|
||||
+ dnl Default is not to set bisonlocaledir
|
||||
+ AC_ARG_WITH([bisonlocaledir],
|
||||
+ [ --with-bisonlocaledir sets BISON_LOCALEDIR to indicate where to find the bison-runtime.mo files],
|
||||
+ BISON_LOCALEDIR=$withval,
|
||||
+ BISON_LOCALEDIR=)
|
||||
+
|
||||
if test -z "$USE_NLS"; then
|
||||
echo "The BISON-I18N macro is used without being preceded by AM-GNU-GETTEXT." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
- BISON_LOCALEDIR=
|
||||
BISON_USE_NLS=no
|
||||
if test "$USE_NLS" = yes; then
|
||||
dnl Determine bison's localedir.
|
||||
@@ -26,9 +31,10 @@ AC_DEFUN([BISON_I18N],
|
||||
dnl But even is YACC is called "yacc", it may be a script that invokes bison
|
||||
dnl and accepts the --print-localedir option.
|
||||
dnl YACC's default value is empty; BISON's default value is :.
|
||||
- if (${YACC-${BISON-:}} --print-localedir) >/dev/null 2>&1; then
|
||||
+ if test -z "$BISON_LOCALEDIR" -a ${YACC-${BISON-:}} --print-localedir >/dev/null 2>&1; then
|
||||
BISON_LOCALEDIR=`${YACC-${BISON-:}} --print-localedir`
|
||||
fi
|
||||
+ AC_MSG_RESULT([$BISON_LOCALEDIR])
|
||||
AC_SUBST([BISON_LOCALEDIR])
|
||||
if test -n "$BISON_LOCALEDIR"; then
|
||||
dnl There is no need to enable internationalization if the user doesn't
|
||||
--
|
||||
1.9.1
|
||||
|
||||
28
meta/recipes-core/gettext/gettext-0.21/mingw.patch
Normal file
28
meta/recipes-core/gettext/gettext-0.21/mingw.patch
Normal file
@@ -0,0 +1,28 @@
|
||||
From 7cf68dffb2adb76375bfb0781e277510523a1f3e Mon Sep 17 00:00:00 2001
|
||||
From: Michele Locati <michele@locati.it>
|
||||
Date: Thu, 30 Jul 2020 18:58:02 +0200
|
||||
Subject: [PATCH] build: Fix build failure on Cygwin and mingw.
|
||||
|
||||
* gettext-tools/woe32dll/gettextsrc-exports.c: Export formatstring_ruby.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
---
|
||||
gettext-tools/woe32dll/gettextsrc-exports.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/gettext-tools/woe32dll/gettextsrc-exports.c b/gettext-tools/woe32dll/gettextsrc-exports.c
|
||||
index 4477ae8..6d76089 100644
|
||||
--- a/gettext-tools/woe32dll/gettextsrc-exports.c
|
||||
+++ b/gettext-tools/woe32dll/gettextsrc-exports.c
|
||||
@@ -50,6 +50,7 @@ VARIABLE(formatstring_python)
|
||||
VARIABLE(formatstring_python_brace)
|
||||
VARIABLE(formatstring_qt)
|
||||
VARIABLE(formatstring_qt_plural)
|
||||
+VARIABLE(formatstring_ruby)
|
||||
VARIABLE(formatstring_scheme)
|
||||
VARIABLE(formatstring_sh)
|
||||
VARIABLE(formatstring_smalltalk)
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
From c832880c5242b454a2c9e61b6a2dc26aecdc51bd Mon Sep 17 00:00:00 2001
|
||||
From 15647f679834be633fb4a9aeff4671b9cb95ccb8 Mon Sep 17 00:00:00 2001
|
||||
From: Ross Burton <ross.burton@intel.com>
|
||||
Date: Tue, 23 Jan 2018 00:54:13 +0000
|
||||
Subject: [PATCH] gettext: beat library detection into shape
|
||||
@@ -25,7 +25,7 @@ Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
8 files changed, 83 insertions(+), 450 deletions(-)
|
||||
|
||||
diff --git a/gettext-tools/gnulib-m4/libxml.m4 b/gettext-tools/gnulib-m4/libxml.m4
|
||||
index 05b9550..031ee65 100644
|
||||
index 2f80c37..30ce58e 100644
|
||||
--- a/gettext-tools/gnulib-m4/libxml.m4
|
||||
+++ b/gettext-tools/gnulib-m4/libxml.m4
|
||||
@@ -13,6 +13,7 @@ dnl gl_LIBXML(FORCE-INCLUDED)
|
||||
@@ -142,7 +142,7 @@ index 05b9550..031ee65 100644
|
||||
])
|
||||
AC_SUBST([LIBXML])
|
||||
diff --git a/libtextstyle/gnulib-local/lib/term-styled-ostream.oo.c b/libtextstyle/gnulib-local/lib/term-styled-ostream.oo.c
|
||||
index 2cfd4a8..d42c8b4 100644
|
||||
index 2ff978f..5ffb17a 100644
|
||||
--- a/libtextstyle/gnulib-local/lib/term-styled-ostream.oo.c
|
||||
+++ b/libtextstyle/gnulib-local/lib/term-styled-ostream.oo.c
|
||||
@@ -22,15 +22,15 @@
|
||||
@@ -166,7 +166,7 @@ index 2cfd4a8..d42c8b4 100644
|
||||
+#include <libcroco/cr-string.h>
|
||||
|
||||
#include "term-ostream.h"
|
||||
#include "hash.h"
|
||||
#include "mem-hash-map.h"
|
||||
diff --git a/libtextstyle/gnulib-local/m4/libcroco.m4 b/libtextstyle/gnulib-local/m4/libcroco.m4
|
||||
index bc53cc6..10b2455 100644
|
||||
--- a/libtextstyle/gnulib-local/m4/libcroco.m4
|
||||
@@ -646,7 +646,7 @@ index 5853772..767fba2 100644
|
||||
AC_SUBST([LTLIBGLIB])
|
||||
AC_SUBST([INCGLIB])
|
||||
diff --git a/libtextstyle/lib/term-styled-ostream.c b/libtextstyle/lib/term-styled-ostream.c
|
||||
index 3675b5f..811e546 100644
|
||||
index 5484800..16793fa 100644
|
||||
--- a/libtextstyle/lib/term-styled-ostream.c
|
||||
+++ b/libtextstyle/lib/term-styled-ostream.c
|
||||
@@ -28,15 +28,15 @@
|
||||
@@ -670,9 +670,9 @@ index 3675b5f..811e546 100644
|
||||
+#include <libcroco/cr-string.h>
|
||||
|
||||
#include "term-ostream.h"
|
||||
#include "hash.h"
|
||||
#include "mem-hash-map.h"
|
||||
diff --git a/libtextstyle/lib/term-styled-ostream.oo.c b/libtextstyle/lib/term-styled-ostream.oo.c
|
||||
index 2cfd4a8..d42c8b4 100644
|
||||
index 2ff978f..5ffb17a 100644
|
||||
--- a/libtextstyle/lib/term-styled-ostream.oo.c
|
||||
+++ b/libtextstyle/lib/term-styled-ostream.oo.c
|
||||
@@ -22,15 +22,15 @@
|
||||
@@ -696,4 +696,4 @@ index 2cfd4a8..d42c8b4 100644
|
||||
+#include <libcroco/cr-string.h>
|
||||
|
||||
#include "term-ostream.h"
|
||||
#include "hash.h"
|
||||
#include "mem-hash-map.h"
|
||||
@@ -7,7 +7,7 @@
|
||||
# notice and this notice are preserved. This file is offered as-is,
|
||||
# without any warranty.
|
||||
#
|
||||
# Origin: gettext-0.20.2
|
||||
# Origin: gettext-0.21
|
||||
GETTEXT_MACRO_VERSION = 0.20
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
@@ -415,12 +415,17 @@ dist distdir:
|
||||
@$(MAKE) dist2
|
||||
# This is a separate target because 'update-po' must be executed before.
|
||||
dist2: $(srcdir)/stamp-po $(DISTFILES)
|
||||
dists="$(DISTFILES)"; \
|
||||
@dists="$(DISTFILES)"; \
|
||||
if test "$(PACKAGE)" = "gettext-tools"; then \
|
||||
dists="$$dists Makevars.template"; \
|
||||
fi; \
|
||||
if test -f $(srcdir)/$(DOMAIN).pot; then \
|
||||
dists="$$dists $(DOMAIN).pot stamp-po"; \
|
||||
else \
|
||||
case $(XGETTEXT) in \
|
||||
:) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \
|
||||
*) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the contents of the POTFILES.in file and the XGETTEXT_OPTIONS in the Makevars file." 1>&2;; \
|
||||
esac; \
|
||||
fi; \
|
||||
if test -f $(srcdir)/ChangeLog; then \
|
||||
dists="$$dists ChangeLog"; \
|
||||
@@ -18,15 +18,14 @@ PROVIDES_class-native = "virtual/gettext-native"
|
||||
RCONFLICTS_${PN} = "proxy-libintl"
|
||||
SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \
|
||||
file://parallel.patch \
|
||||
file://add-with-bisonlocaledir.patch \
|
||||
file://use-pkgconfig.patch \
|
||||
file://run-ptest \
|
||||
file://serial-tests-config.patch \
|
||||
file://0001-tests-autopoint-3-unset-MAKEFLAGS.patch \
|
||||
file://0001-init-env.in-do-not-add-C-CXX-parameters.patch \
|
||||
file://mingw.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "30fec34a895fab4c02584449c500aac2"
|
||||
SRC_URI[sha256sum] = "ecb9d0908ca41d5ca5fef974323b3bba6bec19eebba0b44f396de98cfcc089f1"
|
||||
SRC_URI[sha256sum] = "c77d0da3102aec9c07f43671e60611ebff89a996ef159497ce8e59d075786b12"
|
||||
|
||||
inherit autotools texinfo pkgconfig ptest
|
||||
|
||||
@@ -130,7 +129,7 @@ do_install_append_class-native () {
|
||||
rm ${D}${datadir}/gettext/po/remove-potcdate.sin
|
||||
|
||||
create_wrapper ${D}${bindir}/msgfmt \
|
||||
GETTEXTDATADIR="${STAGING_DATADIR_NATIVE}/gettext-0.20.2/"
|
||||
GETTEXTDATADIR="${STAGING_DATADIR_NATIVE}/gettext-${PV}/"
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user