Skip to content

Commit a3d40a3

Browse files
author
Git for Windows Build Agent
committed
Update 4 packages
mingw-w64-i686 (7zip-24.09-3 -> 7zip-25.00-1) mingw-w64-i686-gettext-libtextstyle (0.25-1 -> 0.25.1-1) mingw-w64-i686-gettext-runtime (0.25-1 -> 0.25.1-1) mingw-w64-i686-gettext-tools (0.25-1 -> 0.25.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 1b045ce commit a3d40a3

File tree

163 files changed

+977
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+977
-200
lines changed

mingw32/bin/7z.dll

26.5 KB
Binary file not shown.

mingw32/bin/7z.exe

7.5 KB
Binary file not shown.

mingw32/bin/autopoint

Lines changed: 31 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
progname=$0
2424
package=gettext-tools
25-
version=0.25
26-
archive_version=0.25
25+
version=0.25.1
26+
archive_version=0.25.1
2727

2828
# Set variables
2929
# - gettext_datadir directory where the data files are stored.
@@ -159,11 +159,13 @@ m4_pushdef([m4_esyscmd])
159159

160160
# func_trace_sed macro configure.ac
161161
# traces an Autoconf macro call and outputs the arguments to stdout,
162-
# using sed.
162+
# using sed. For a macro call without arguments, print just a blank line.
163163
func_trace_sed ()
164164
{
165165
sed_extract_arguments='
166-
s,#.*$,,; s,^dnl .*$,,; s, dnl .*$,,;
166+
s,#.*$,,
167+
s,^dnl .*$,,
168+
s, dnl .*$,,
167169
/'"$1"'(/ {
168170
ta
169171
:a
@@ -175,6 +177,8 @@ s,#.*$,,; s,^dnl .*$,,; s, dnl .*$,,;
175177
:b
176178
s,^.*'"$1"'([[ ]*\([^]"$`\\)]*\).*$,\1,p
177179
}
180+
/'"$1"'[^A-Za-z0-9_(]/ s,^.*$,,p
181+
/'"$1"'$/ s,^.*$,,p
178182
d'
179183
sed -e "$sed_extract_arguments" "$2"
180184
}
@@ -374,7 +378,12 @@ else
374378
fi
375379

376380
if test -z "$ver"; then
377-
func_fatal_error "Missing version: please specify in $configure_in through a line 'AM_GNU_GETTEXT_VERSION(x.yy.zz)' the gettext version the package is using"
381+
# The $configure_in does not specify an AM_GNU_GETTEXT_VERSION.
382+
# This is OK in two cases:
383+
# - The package uses an old gettext infrastructure (from 2024 or earlier).
384+
# - The package merely uses AM_ICONV, not AM_GNU_GETTEXT.
385+
# Use the last version whose po.m4 is nearly identical to the older ones.
386+
ver=0.23.1
378387
fi
379388

380389
# Check whether the version number is supported.
@@ -392,9 +401,9 @@ case "$ver" in
392401
0.20 | 0.20.2 | \
393402
0.21 | 0.21.1 | \
394403
0.22 | 0.22.1 | 0.22.2 | 0.22.3 | 0.22.4 | 0.22.5 | \
395-
0.23 | 0.23.1 | \
396-
0.24 | 0.24.1 | \
397-
0.25 )
404+
0.23 | 0.23.1 | 0.23.2 | \
405+
0.24 | 0.24.1 | 0.24.2 | \
406+
0.25 | 0.25.1 )
398407
;;
399408
*)
400409
func_fatal_error "The AM_GNU_GETTEXT_VERSION declaration in your $configure_in
@@ -446,15 +455,20 @@ fi
446455
omitintl=
447456
# Need to use func_trace_sed instead of $func_trace, since
448457
# AM_GNU_GETTEXT is not a standard Autoconf trace.
449-
xargs=`func_trace_sed AM_GNU_GETTEXT "$configure_in"`
450-
save_IFS="$IFS"; IFS=:
451-
for arg in $xargs; do
452-
if test 'external' = "$arg"; then
453-
omitintl=yes
454-
break
455-
fi
456-
done
457-
IFS="$save_IFS"
458+
if test `func_trace_sed AM_GNU_GETTEXT "$configure_in" | wc -l` = 0; then
459+
# No AM_GNU_GETTEXT invocation.
460+
omitintl=yes
461+
else
462+
xargs=`func_trace_sed AM_GNU_GETTEXT "$configure_in"`
463+
save_IFS="$IFS"; IFS=:
464+
for arg in $xargs; do
465+
if test 'external' = "$arg"; then
466+
omitintl=yes
467+
break
468+
fi
469+
done
470+
IFS="$save_IFS"
471+
fi
458472

459473
if test -z "$omitintl"; then
460474
case "$ver" in

mingw32/bin/envsubst.exe

460 Bytes
Binary file not shown.

mingw32/bin/gettext.exe

460 Bytes
Binary file not shown.

mingw32/bin/gettext.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if test -z "${ZSH_VERSION+set}"; then
4848
gettext.sh | */gettext.sh | *\\gettext.sh)
4949
progname=$0
5050
package=gettext-runtime
51-
version=0.25
51+
version=0.25.1
5252
# func_usage
5353
# outputs to stdout the --help usage message.
5454
func_usage ()

mingw32/bin/gettextize

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
progname=$0
2424
package=gettext-tools
25-
version=0.25
26-
archive_version=0.25
25+
version=0.25.1
26+
archive_version=0.25.1
2727

2828
# Set variables
2929
# - gettext_datadir directory where the data files are stored.

mingw32/bin/libasprintf-0.dll

0 Bytes
Binary file not shown.

mingw32/bin/libgettextpo-0.dll

36 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)