Skip to content

Commit

Permalink
Update 24 packages
Browse files Browse the repository at this point in the history
libpcre (8.45-4 -> 8.45-5)
libpcre16 (8.45-4 -> 8.45-5)
libpcre32 (8.45-4 -> 8.45-5)
libpcrecpp (8.45-4 -> 8.45-5)
libpcreposix (8.45-4 -> 8.45-5)
libutil-linux (2.35.2-4 -> 2.35.2-5)
mingw-w64-i686-crt-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-i686-gdb (16.1-1 -> 16.2-1)
mingw-w64-i686-headers-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-i686-libmangle-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-i686-libwinpthread-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-i686-tools-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-i686-winpthreads-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-crt-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-gdb (16.1-1 -> 16.2-1)
mingw-w64-x86_64-headers-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-libmangle-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-libwinpthread-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-tools-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
mingw-w64-x86_64-winpthreads-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1)
patch (2.7.6-2 -> 2.7.6-3)
pcre (8.45-4 -> 8.45-5)
python (3.12.8-2 -> 3.12.8-3)
util-linux (2.35.2-4 -> 2.35.2-5)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Feb 2, 2025
1 parent cb9ab42 commit cfb2cfd
Show file tree
Hide file tree
Showing 290 changed files with 162 additions and 129 deletions.
Binary file modified mingw32/bin/gdb.exe
Binary file not shown.
Binary file modified mingw32/bin/gdbserver.exe
Binary file not shown.
Binary file modified mingw32/bin/gendef.exe
Binary file not shown.
Binary file modified mingw32/bin/genidl.exe
Binary file not shown.
Binary file modified mingw32/bin/genpeimg.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/bin/gstack
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GDB=${GDB:-$(command -v gdb)}
GDBARGS=${GDBARGS:-}
AWK=${AWK:-}
PKGVERSION=(GDB)
VERSION=16.1
VERSION=16.2

# Find an appropriate awk interpreter if one was not specified
# via the environment.
Expand Down
Binary file modified mingw32/bin/libwinpthread-1.dll
Binary file not shown.
Binary file modified mingw32/bin/widl.exe
Binary file not shown.
15 changes: 9 additions & 6 deletions mingw32/include/_mingw_mac.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#ifndef _INC_CRTDEFS_MACRO
#define _INC_CRTDEFS_MACRO

#define __PASTE(x, y) x ## y
#define __MINGW64_PASTE(x, y) __PASTE(x, y)

#define __STRINGIFY(x) #x
#define __MINGW64_STRINGIFY(x) \
__STRINGIFY(x)
Expand Down Expand Up @@ -123,14 +126,14 @@
#endif /* ifndef _X86_ */

#if __MINGW_USE_UNDERSCORE_PREFIX == 0
# define __MINGW_IMP_SYMBOL(sym) __imp_##sym
# define __MINGW_IMP_LSYMBOL(sym) __imp_##sym
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
# define __MINGW_USYMBOL(sym) sym
# define __MINGW_LSYMBOL(sym) _##sym
# define __MINGW_LSYMBOL(sym) __MINGW64_PASTE(_,sym)
#else /* ! if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
# define __MINGW_IMP_SYMBOL(sym) _imp__##sym
# define __MINGW_IMP_LSYMBOL(sym) __imp__##sym
# define __MINGW_USYMBOL(sym) _##sym
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(_imp__,sym)
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp__,sym)
# define __MINGW_USYMBOL(sym) __MINGW64_PASTE(_,sym)
# define __MINGW_LSYMBOL(sym) sym
#endif /* if __MINGW_USE_UNDERSCORE_PREFIX == 0 */

Expand Down
4 changes: 2 additions & 2 deletions mingw32/include/shlwapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ extern "C" {
LWSTDAPI_(WINBOOL) PathMatchSpecW(LPCWSTR pszFile,LPCWSTR pszSpec);
LWSTDAPI_(int) PathParseIconLocationA(LPSTR pszIconFile);
LWSTDAPI_(int) PathParseIconLocationW(LPWSTR pszIconFile);
LWSTDAPI_(void) PathQuoteSpacesA(LPSTR lpsz);
LWSTDAPI_(void) PathQuoteSpacesW(LPWSTR lpsz);
LWSTDAPI_(WINBOOL) PathQuoteSpacesA(LPSTR lpsz);
LWSTDAPI_(WINBOOL) PathQuoteSpacesW(LPWSTR lpsz);
LWSTDAPI_(WINBOOL) PathRelativePathToA(LPSTR pszPath,LPCSTR pszFrom,DWORD dwAttrFrom,LPCSTR pszTo,DWORD dwAttrTo);
LWSTDAPI_(WINBOOL) PathRelativePathToW(LPWSTR pszPath,LPCWSTR pszFrom,DWORD dwAttrFrom,LPCWSTR pszTo,DWORD dwAttrTo);
LWSTDAPI_(void) PathRemoveArgsA(LPSTR pszPath);
Expand Down
Binary file modified mingw32/lib/libcrtdll.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcr40d.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcr70.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcr70d.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcr71.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcr71d.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrt-os.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrt.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrt10.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrt20.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrt40.a
Binary file not shown.
Binary file modified mingw32/lib/libmsvcrtd.a
Binary file not shown.
Binary file modified mingw32/lib/libucrt.a
Binary file not shown.
Binary file modified mingw32/lib/libucrtapp.a
Binary file not shown.
Binary file modified mingw32/lib/libucrtbase.a
Binary file not shown.
Binary file modified mingw32/lib/libucrtbased.a
Binary file not shown.
Binary file modified mingw64/bin/gdb.exe
Binary file not shown.
Binary file modified mingw64/bin/gdbserver.exe
Binary file not shown.
Binary file modified mingw64/bin/gendef.exe
Binary file not shown.
Binary file modified mingw64/bin/genidl.exe
Binary file not shown.
Binary file modified mingw64/bin/genpeimg.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw64/bin/gstack
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GDB=${GDB:-$(command -v gdb)}
GDBARGS=${GDBARGS:-}
AWK=${AWK:-}
PKGVERSION=(GDB)
VERSION=16.1
VERSION=16.2

# Find an appropriate awk interpreter if one was not specified
# via the environment.
Expand Down
Binary file modified mingw64/bin/libwinpthread-1.dll
Binary file not shown.
Binary file modified mingw64/bin/widl.exe
Binary file not shown.
15 changes: 9 additions & 6 deletions mingw64/include/_mingw_mac.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#ifndef _INC_CRTDEFS_MACRO
#define _INC_CRTDEFS_MACRO

#define __PASTE(x, y) x ## y
#define __MINGW64_PASTE(x, y) __PASTE(x, y)

#define __STRINGIFY(x) #x
#define __MINGW64_STRINGIFY(x) \
__STRINGIFY(x)
Expand Down Expand Up @@ -123,14 +126,14 @@
#endif /* ifndef _X86_ */

#if __MINGW_USE_UNDERSCORE_PREFIX == 0
# define __MINGW_IMP_SYMBOL(sym) __imp_##sym
# define __MINGW_IMP_LSYMBOL(sym) __imp_##sym
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
# define __MINGW_USYMBOL(sym) sym
# define __MINGW_LSYMBOL(sym) _##sym
# define __MINGW_LSYMBOL(sym) __MINGW64_PASTE(_,sym)
#else /* ! if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
# define __MINGW_IMP_SYMBOL(sym) _imp__##sym
# define __MINGW_IMP_LSYMBOL(sym) __imp__##sym
# define __MINGW_USYMBOL(sym) _##sym
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(_imp__,sym)
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp__,sym)
# define __MINGW_USYMBOL(sym) __MINGW64_PASTE(_,sym)
# define __MINGW_LSYMBOL(sym) sym
#endif /* if __MINGW_USE_UNDERSCORE_PREFIX == 0 */

Expand Down
4 changes: 2 additions & 2 deletions mingw64/include/shlwapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ extern "C" {
LWSTDAPI_(WINBOOL) PathMatchSpecW(LPCWSTR pszFile,LPCWSTR pszSpec);
LWSTDAPI_(int) PathParseIconLocationA(LPSTR pszIconFile);
LWSTDAPI_(int) PathParseIconLocationW(LPWSTR pszIconFile);
LWSTDAPI_(void) PathQuoteSpacesA(LPSTR lpsz);
LWSTDAPI_(void) PathQuoteSpacesW(LPWSTR lpsz);
LWSTDAPI_(WINBOOL) PathQuoteSpacesA(LPSTR lpsz);
LWSTDAPI_(WINBOOL) PathQuoteSpacesW(LPWSTR lpsz);
LWSTDAPI_(WINBOOL) PathRelativePathToA(LPSTR pszPath,LPCSTR pszFrom,DWORD dwAttrFrom,LPCSTR pszTo,DWORD dwAttrTo);
LWSTDAPI_(WINBOOL) PathRelativePathToW(LPWSTR pszPath,LPCWSTR pszFrom,DWORD dwAttrFrom,LPCWSTR pszTo,DWORD dwAttrTo);
LWSTDAPI_(void) PathRemoveArgsA(LPSTR pszPath);
Expand Down
Binary file modified mingw64/lib/libmsvcrt-os.a
Binary file not shown.
Binary file modified mingw64/lib/libmsvcrt.a
Binary file not shown.
Binary file modified mingw64/lib/libucrt.a
Binary file not shown.
Binary file modified mingw64/lib/libucrtapp.a
Binary file not shown.
Binary file modified mingw64/lib/libucrtbase.a
Binary file not shown.
Binary file modified mingw64/lib/libucrtbased.a
Binary file not shown.
Binary file modified usr/bin/agetty.exe
Binary file not shown.
Binary file modified usr/bin/blkid.exe
Binary file not shown.
Binary file modified usr/bin/cal.exe
Binary file not shown.
Binary file modified usr/bin/cfdisk.exe
Binary file not shown.
Binary file modified usr/bin/chrt.exe
Binary file not shown.
Binary file modified usr/bin/col.exe
Binary file not shown.
Binary file modified usr/bin/colcrt.exe
Binary file not shown.
Binary file modified usr/bin/colrm.exe
Binary file not shown.
Binary file modified usr/bin/column.exe
Binary file not shown.
Binary file modified usr/bin/fdisk.exe
Binary file not shown.
Binary file modified usr/bin/findfs.exe
Binary file not shown.
Binary file modified usr/bin/flock.exe
Binary file not shown.
Binary file modified usr/bin/fsck.cramfs.exe
Binary file not shown.
Binary file modified usr/bin/fsck.minix.exe
Binary file not shown.
Binary file modified usr/bin/getopt.exe
Binary file not shown.
Binary file modified usr/bin/hardlink.exe
Binary file not shown.
Binary file modified usr/bin/hexdump.exe
Binary file not shown.
Binary file modified usr/bin/ipcmk.exe
Binary file not shown.
Binary file modified usr/bin/isosize.exe
Binary file not shown.
Binary file modified usr/bin/logger.exe
Binary file not shown.
Binary file modified usr/bin/look.exe
Binary file not shown.
Binary file modified usr/bin/mcookie.exe
Binary file not shown.
Binary file modified usr/bin/mkfs.bfs.exe
Binary file not shown.
Binary file modified usr/bin/mkfs.cramfs.exe
Binary file not shown.
Binary file modified usr/bin/mkfs.exe
Binary file not shown.
Binary file modified usr/bin/mkfs.minix.exe
Binary file not shown.
Binary file modified usr/bin/mkswap.exe
Binary file not shown.
Binary file modified usr/bin/more.exe
Binary file not shown.
Binary file modified usr/bin/msys-blkid-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-fdisk-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-pcre-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-pcre16-0.dll
Binary file not shown.
Binary file modified usr/bin/msys-pcre32-0.dll
Binary file not shown.
Binary file modified usr/bin/msys-pcrecpp-0.dll
Binary file not shown.
Binary file modified usr/bin/msys-pcreposix-0.dll
Binary file not shown.
Binary file modified usr/bin/msys-python3.12.dll
Binary file not shown.
Binary file modified usr/bin/msys-smartcols-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-uuid-1.dll
Binary file not shown.
Binary file modified usr/bin/namei.exe
Binary file not shown.
Binary file modified usr/bin/nologin.exe
Binary file not shown.
Binary file modified usr/bin/patch.exe
Binary file not shown.
Binary file modified usr/bin/pcregrep.exe
Binary file not shown.
Binary file modified usr/bin/pcretest.exe
Binary file not shown.
Binary file modified usr/bin/pg.exe
Binary file not shown.
Binary file modified usr/bin/python.exe
Binary file not shown.
Binary file modified usr/bin/python3.12.exe
Binary file not shown.
Binary file modified usr/bin/python3.exe
Binary file not shown.
Binary file modified usr/bin/rename.exe
Binary file not shown.
Binary file modified usr/bin/renice.exe
Binary file not shown.
Binary file modified usr/bin/rev.exe
Binary file not shown.
Binary file modified usr/bin/script.exe
Binary file not shown.
Binary file modified usr/bin/scriptlive.exe
Binary file not shown.
Binary file modified usr/bin/scriptreplay.exe
Binary file not shown.
Binary file modified usr/bin/setsid.exe
Binary file not shown.
Binary file modified usr/bin/sfdisk.exe
Binary file not shown.
Binary file modified usr/bin/swaplabel.exe
Binary file not shown.
Binary file modified usr/bin/taskset.exe
Binary file not shown.
Binary file modified usr/bin/ul.exe
Binary file not shown.
Binary file modified usr/bin/uuidd.exe
Binary file not shown.
Binary file modified usr/bin/uuidgen.exe
Binary file not shown.
Binary file modified usr/bin/uuidparse.exe
Binary file not shown.
Binary file modified usr/bin/whereis.exe
Binary file not shown.
Binary file modified usr/bin/wipefs.exe
Binary file not shown.
Binary file modified usr/lib/libpython3.12.dll.a
Binary file not shown.
Binary file modified usr/lib/python3.12/config-3.12-x86_64-cygwin/libpython3.12.dll.a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified usr/lib/python3.12/lib-dynload/grp.cpython-312-x86_64-cygwin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion usr/lib/python3.12/sysconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ def get_platform():
elif osname[:3] == "aix":
from _aix_support import aix_platform
return aix_platform()
elif osname[:6] == "cygwin" or osname[:4] == "msys":
elif sys.platform == "cygwin":
# https://github.com/msys2/MSYS2-packages/issues/5143
# Various build tools use the platform to derive the wheel tag
# and the wheel tag needs to be stable for a specific platform
Expand Down
Binary file removed var/lib/pacman/local/libpcre-8.45-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libpcre

%VERSION%
8.45-4
8.45-5

%BASE%
pcre
Expand All @@ -17,13 +17,13 @@ https://www.pcre.org/
x86_64

%BUILDDATE%
1694793991
1738171707

%INSTALLDATE%
1695006025
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/0852421d/6199630447)
CI (msys2/msys2-autobuild/bdd38ec7/13036922047)

%SIZE%
289270
Expand All @@ -43,3 +43,6 @@ pgp
%DEPENDS%
gcc-libs

%XDATA%
pkgtype=split

File renamed without changes.
Binary file added var/lib/pacman/local/libpcre-8.45-5/mtree
Binary file not shown.
Binary file removed var/lib/pacman/local/libpcre16-8.45-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libpcre16

%VERSION%
8.45-4
8.45-5

%BASE%
pcre
Expand All @@ -17,13 +17,13 @@ https://www.pcre.org/
x86_64

%BUILDDATE%
1694793991
1738171707

%INSTALLDATE%
1695006025
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/0852421d/6199630447)
CI (msys2/msys2-autobuild/bdd38ec7/13036922047)

%SIZE%
261528
Expand All @@ -43,3 +43,6 @@ pgp
%DEPENDS%
gcc-libs

%XDATA%
pkgtype=split

File renamed without changes.
Binary file added var/lib/pacman/local/libpcre16-8.45-5/mtree
Binary file not shown.
Binary file removed var/lib/pacman/local/libpcre32-8.45-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libpcre32

%VERSION%
8.45-4
8.45-5

%BASE%
pcre
Expand All @@ -17,13 +17,13 @@ https://www.pcre.org/
x86_64

%BUILDDATE%
1694793991
1738171707

%INSTALLDATE%
1695006025
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/0852421d/6199630447)
CI (msys2/msys2-autobuild/bdd38ec7/13036922047)

%SIZE%
251800
Expand All @@ -43,3 +43,6 @@ pgp
%DEPENDS%
gcc-libs

%XDATA%
pkgtype=split

File renamed without changes.
Binary file added var/lib/pacman/local/libpcre32-8.45-5/mtree
Binary file not shown.
Binary file removed var/lib/pacman/local/libpcrecpp-8.45-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libpcrecpp

%VERSION%
8.45-4
8.45-5

%BASE%
pcre
Expand All @@ -17,13 +17,13 @@ https://www.pcre.org/
x86_64

%BUILDDATE%
1694793991
1738171707

%INSTALLDATE%
1695006025
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/0852421d/6199630447)
CI (msys2/msys2-autobuild/bdd38ec7/13036922047)

%SIZE%
40284
Expand All @@ -44,3 +44,6 @@ pgp
libpcre
gcc-libs

%XDATA%
pkgtype=split

Binary file added var/lib/pacman/local/libpcrecpp-8.45-5/mtree
Binary file not shown.
Binary file removed var/lib/pacman/local/libpcreposix-8.45-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libpcreposix

%VERSION%
8.45-4
8.45-5

%BASE%
pcre
Expand All @@ -17,13 +17,13 @@ https://www.pcre.org/
x86_64

%BUILDDATE%
1694793991
1738171707

%INSTALLDATE%
1695006025
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/0852421d/6199630447)
CI (msys2/msys2-autobuild/bdd38ec7/13036922047)

%SIZE%
10755
Expand All @@ -43,3 +43,6 @@ pgp
%DEPENDS%
libpcre

%XDATA%
pkgtype=split

Binary file added var/lib/pacman/local/libpcreposix-8.45-5/mtree
Binary file not shown.
Binary file removed var/lib/pacman/local/libutil-linux-2.35.2-4/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
libutil-linux

%VERSION%
2.35.2-4
2.35.2-5

%BASE%
util-linux
Expand All @@ -17,16 +17,16 @@ https://www.kernel.org/pub/linux/utils/util-linux/
x86_64

%BUILDDATE%
1689324085
1738315935

%INSTALLDATE%
1689391429
1738465870

%PACKAGER%
CI (msys2/msys2-autobuild/95ab14df/5552188419)
CI (msys2/msys2-autobuild/bdd38ec7/13069996151)

%SIZE%
781410
774442

%REASON%
1
Expand All @@ -46,3 +46,6 @@ libblkid
libuuid
libsmartcols

%XDATA%
pkgtype=split

Binary file added var/lib/pacman/local/libutil-linux-2.35.2-5/mtree
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-i686-crt-git

%VERSION%
12.0.0.r473.gce0d0bfb7-1
12.0.0.r480.gea22a99cb-1

%BASE%
mingw-w64-crt-git
Expand All @@ -17,16 +17,16 @@ https://www.mingw-w64.org/
any

%BUILDDATE%
1736630753
1738224535

%INSTALLDATE%
1736738331
1738465872

%PACKAGER%
CI (msys2/msys2-autobuild/a977f9de/12727706817)
CI (msys2/msys2-autobuild/bdd38ec7/13048007508)

%SIZE%
128497439
128511507

%GROUPS%
mingw-w64-i686-toolchain
Expand Down
Binary file not shown.
Binary file removed var/lib/pacman/local/mingw-w64-i686-gdb-16.1-1/mtree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-i686-gdb

%VERSION%
16.1-1
16.2-1

%BASE%
mingw-w64-gdb
Expand All @@ -17,16 +17,16 @@ https://www.gnu.org/software/gdb/
any

%BUILDDATE%
1737216058
1738438974

%INSTALLDATE%
1737342687
1738465873

%PACKAGER%
CI (msys2/msys2-autobuild/a977f9de/12845424930)
CI (msys2/msys2-autobuild/b4421681/13091824887)

%SIZE%
14738679
14739703

%GROUPS%
mingw-w64-i686-toolchain
Expand Down Expand Up @@ -57,5 +57,5 @@ mingw-w64-i686-zstd
mingw-w64-i686-python-pygments: for syntax highlighting

%XDATA%
pkgtype=pkg
pkgtype=split

Binary file not shown.
Binary file not shown.
Loading

0 comments on commit cfb2cfd

Please sign in to comment.