Skip to content

Commit

Permalink
Update 1 package
Browse files Browse the repository at this point in the history
mingw-w64-i686-python (3.11.4-5 -> 3.11.4-6)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Aug 24, 2023
1 parent 355f6f3 commit d818936
Show file tree
Hide file tree
Showing 93 changed files with 24 additions and 9 deletions.
Binary file modified mingw32/bin/libpython3.11.dll
Binary file not shown.
Binary file added mingw32/bin/libpython3.dll
Binary file not shown.
Binary file modified mingw32/bin/python.exe
Binary file not shown.
Binary file modified mingw32/bin/python3.11.exe
Binary file not shown.
Binary file modified mingw32/bin/python3.exe
Binary file not shown.
Binary file modified mingw32/bin/python3w.exe
Binary file not shown.
Binary file modified mingw32/bin/pythonw.exe
Binary file not shown.
Binary file added mingw32/lib/libpython3.dll.a
Binary file not shown.
4 changes: 3 additions & 1 deletion mingw32/lib/python3.11/_sysconfigdata__win32_.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import sys
# system configuration generated and used by the sysconfig module
build_time_vars = {'ABIFLAGS': '',
build_time_vars = {'ABI3DLLLIBRARY': 'libpython3.dll',
'ABI3LDLIBRARY': 'libpython3.dll.a',
'ABIFLAGS': '',
'AC_APPLE_UNIVERSAL_BUILD': 0,
'AIX_BUILDDATE': 0,
'AIX_GENUINE_CPLUSPLUS': 0,
Expand Down
15 changes: 13 additions & 2 deletions mingw32/lib/python3.11/config-3.11/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,8 @@ LIBRARY_DEPS= $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) $(EXPORTSYMS)
LINK_PYTHON_DEPS=$(LIBRARY_DEPS)
PY_ENABLE_SHARED= 1
STATIC_LIBPYTHON= 1
ABI3DLLLIBRARY= libpython3.dll
ABI3LDLIBRARY= libpython3.dll.a


LIBS= -lversion -lshlwapi -lpathcch -lbcrypt
Expand Down Expand Up @@ -732,7 +734,7 @@ LIBEXPAT_HEADERS= \
# Default target
all: profile-opt
build_all: check-clean-src $(BUILDPYTHON) $(BUILDPYTHONW) $(BUILDVENVLAUNCHER) $(BUILDVENVWLAUNCHER) platform oldsharedmods sharedmods \
gdbhooks Programs/_testembed python-config
gdbhooks Programs/_testembed python-config $(ABI3DLLLIBRARY) $(ABI3LDLIBRARY)
build_wasm: check-clean-src $(BUILDPYTHON) platform oldsharedmods python-config

# Check that the source is clean when building out of source.
Expand Down Expand Up @@ -856,6 +858,9 @@ pythonw_exe.o: $(srcdir)/PC/pythonw_exe.rc
python_nt.o: $(srcdir)/PC/python_nt.rc
$(WINDRES) $(RCFLAGS) -DORIGINAL_FILENAME=\\\"$(DLLLIBRARY)\\\" -I$(srcdir)/Include -I$(srcdir)/PC -I. $(srcdir)/PC/python_nt.rc $@

python3dll_nt.o: $(srcdir)/PC/python_nt.rc
$(WINDRES) $(RCFLAGS) -DORIGINAL_FILENAME=\\\"$(ABI3DLLLIBRARY)\\\" -I$(srcdir)/Include -I$(srcdir)/PC -I. $(srcdir)/PC/python_nt.rc $@

venvlauncher.o: $(srcdir)/PC/pylauncher.rc
$(WINDRES) $(RCFLAGS) -DPY_ICON -I$(srcdir)/Include -I$(srcdir)/PC -I. $(srcdir)/PC/pylauncher.rc $@

Expand Down Expand Up @@ -984,6 +989,10 @@ $(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS) python_nt.o
else true; \
fi

$(ABI3DLLLIBRARY) $(ABI3LDLIBRARY): python3dll_nt.o $(srcdir)/PC/launcher.c
$(LDSHARED) -DPYTHON_DLL_NAME=\"$(DLLLIBRARY)\" $(srcdir)/PC/python3dll.c -Wl,--out-implib=$(ABI3LDLIBRARY) -o $(ABI3DLLLIBRARY) python3dll_nt.o \
$(LDFLAGS_NODIST);

# wasm32-emscripten browser build
# wasm assets directory is relative to current build dir, e.g. "./usr/local".
# --preload-file turns a relative asset path into an absolute path.
Expand Down Expand Up @@ -1995,6 +2004,7 @@ altbininstall: $(BUILDPYTHON)
if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
if test -n "$(DLLLIBRARY)" ; then \
$(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
$(INSTALL_SHARED) $(ABI3DLLLIBRARY) $(DESTDIR)$(BINDIR); \
else \
$(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
if test $(LDLIBRARY) != $(INSTSONAME); then \
Expand Down Expand Up @@ -2407,6 +2417,7 @@ libainstall: all python-config
if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
if test "$(SHLIB_SUFFIX)" = .dll -o "$(SHLIB_SUFFIX)" = .pyd; then \
$(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBDIR) ; \
$(INSTALL_DATA) $(ABI3LDLIBRARY) $(DESTDIR)$(LIBDIR) ; \
else \
$(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
fi; \
Expand Down Expand Up @@ -2653,7 +2664,7 @@ clean: clean-retain-profile
fi

clobber: clean
-rm -f $(BUILDPYTHON) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
-rm -f $(BUILDPYTHON) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY)$(ABI3LDLIBRARY) $(ABI3DLLLIBRARY) \
tags TAGS \
config.cache config.log pyconfig.h Modules/config.c
-rm -rf build platform
Expand Down
Binary file modified mingw32/lib/python3.11/config-3.11/python.o
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_asyncio.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_bisect.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_blake2.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_bz2.cp311-mingw_i686.pyd
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 mingw32/lib/python3.11/lib-dynload/_csv.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_ctypes.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_curses.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_decimal.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_hashlib.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_json.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_lsprof.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_lzma.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_md5.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_msi.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_opcode.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_pickle.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_queue.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_random.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_sha1.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_sha256.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_sha3.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_sha512.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_socket.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_sqlite3.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_ssl.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_struct.cp311-mingw_i686.pyd
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 mingw32/lib/python3.11/lib-dynload/_tkinter.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/_typing.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/array.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/audioop.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/binascii.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/cmath.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/math.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/mmap.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/pyexpat.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/select.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/winsound.cp311-mingw_i686.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified mingw32/lib/python3.11/lib-dynload/zlib.cp311-mingw_i686.pyd
Binary file not shown.
Binary file modified mingw32/lib/python3.11/venv/scripts/nt/python.exe
Binary file not shown.
Binary file modified mingw32/lib/python3.11/venv/scripts/nt/pythonw.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ any
1682971561

%INSTALLDATE%
1692760402
1692846860

%PACKAGER%
Johannes Schindelin <[email protected]>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-i686-python

%VERSION%
3.11.4-5
3.11.4-6

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

%BUILDDATE%
1691427694
1692741390

%INSTALLDATE%
1691637196
1692846853

%PACKAGER%
CI (msys2/msys2-autobuild/1f1fabad/5787713918)
CI (msys2/msys2-autobuild/f368fb49/5944395837)

%SIZE%
200720249
201376900

%REASON%
1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ mingw32/bin/idle
mingw32/bin/idle3
mingw32/bin/idle3.11
mingw32/bin/libpython3.11.dll
mingw32/bin/libpython3.dll
mingw32/bin/pydoc
mingw32/bin/pydoc3
mingw32/bin/pydoc3.11
Expand Down Expand Up @@ -214,6 +215,7 @@ mingw32/include/python3.11/warnings.h
mingw32/include/python3.11/weakrefobject.h
mingw32/lib/
mingw32/lib/libpython3.11.dll.a
mingw32/lib/libpython3.dll.a
mingw32/lib/pkgconfig/
mingw32/lib/pkgconfig/python-3.11-embed.pc
mingw32/lib/pkgconfig/python-3.11.pc
Expand Down
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db.sig
Binary file not shown.

0 comments on commit d818936

Please sign in to comment.