mirror of
https://codeberg.org/kiss-community/repo
synced 2025-04-01 10:42:52 -06:00
python: 3.10.0
This commit is contained in:
parent
6b882705b3
commit
0bcde10bff
@ -1,4 +1,3 @@
|
|||||||
f8145616e68c00041d1a6399b76387390388f8359581abc24432bb969b5e3c57
|
5a99f8e7a6a11a7b98b4e75e0d1303d3832cada5534068f69c7b6222a7b1b002
|
||||||
1e3dd58370fa3f5c9454f72479565e5282d16defdeec43c88e9a4dd233e00c1b
|
839bb1420041ea5fd68d3fe158bc234fc5bab6d8978ac12d9874366e697a6fcc
|
||||||
18ec738f531ff250c96b74f80bdba58433a39302ab69895593cc2fa2bdf4d0aa
|
|
||||||
e39e9562cf5b864500ef358960545787761fc4271829d22b19c893d1ce0e4546
|
e39e9562cf5b864500ef358960545787761fc4271829d22b19c893d1ce0e4546
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
||||||
index f3152a5..52f6312 100644
|
index f28ab11..6627189 100644
|
||||||
--- a/Lib/ensurepip/__init__.py
|
--- a/Lib/ensurepip/__init__.py
|
||||||
+++ b/Lib/ensurepip/__init__.py
|
+++ b/Lib/ensurepip/__init__.py
|
||||||
@@ -116,7 +116,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
@@ -180,7 +180,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
||||||
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
additional_paths.append(filename)
|
||||||
|
|
||||||
# Construct the arguments to be passed to the pip command
|
# Construct the arguments to be passed to the pip command
|
||||||
- args = ["install", "--no-cache-dir", "--no-index", "--find-links", tmpdir]
|
- args = ["install", "--no-cache-dir", "--no-index", "--find-links", tmpdir]
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
diff --git a/Makefile.pre.in b/Makefile.pre.in
|
|
||||||
index 2b68571..41871c9 100644
|
|
||||||
--- a/Makefile.pre.in
|
|
||||||
+++ b/Makefile.pre.in
|
|
||||||
@@ -589,7 +589,7 @@ clinic: check-clean-src $(srcdir)/Modules/_blake2/blake2s_impl.c
|
|
||||||
$(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py --make --srcdir $(srcdir)
|
|
||||||
|
|
||||||
# Build the interpreter
|
|
||||||
-$(BUILDPYTHON): Programs/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) $(EXPORTSYMS)
|
|
||||||
+$(BUILDPYTHON): Programs/python.o $(LDLIBRARY) $(PY3LIBRARY) $(EXPORTSYMS)
|
|
||||||
$(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
|
|
||||||
|
|
||||||
platform: $(BUILDPYTHON) pybuilddir.txt
|
|
||||||
@@ -638,11 +638,6 @@ sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
|
|
||||||
$(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
|
|
||||||
|
|
||||||
|
|
||||||
-# Build static library
|
|
||||||
-$(LIBRARY): $(LIBRARY_OBJS)
|
|
||||||
- -rm -f $@
|
|
||||||
- $(AR) $(ARFLAGS) $@ $(LIBRARY_OBJS)
|
|
||||||
-
|
|
||||||
libpython$(LDVERSION).so: $(LIBRARY_OBJS) $(DTRACE_OBJS)
|
|
||||||
if test $(INSTSONAME) != $(LDLIBRARY); then \
|
|
||||||
$(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM); \
|
|
||||||
@@ -724,7 +719,7 @@ Makefile Modules/config.c: Makefile.pre \
|
|
||||||
@echo "The Makefile was updated, you may need to re-run make."
|
|
||||||
|
|
||||||
|
|
||||||
-Programs/_testembed: Programs/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) $(EXPORTSYMS)
|
|
||||||
+Programs/_testembed: Programs/_testembed.o $(LDLIBRARY) $(PY3LIBRARY) $(EXPORTSYMS)
|
|
||||||
$(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
@@ -1652,17 +1647,6 @@ libainstall: @DEF_MAKE_RULE@ python-config
|
|
||||||
else true; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
- @if test -d $(LIBRARY); then :; else \
|
|
||||||
- if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
|
|
||||||
- if test "$(SHLIB_SUFFIX)" = .dll; then \
|
|
||||||
- $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
|
|
||||||
- else \
|
|
||||||
- $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
|
|
||||||
- fi; \
|
|
||||||
- else \
|
|
||||||
- echo Skip install of $(LIBRARY) - use make frameworkinstall; \
|
|
||||||
- fi; \
|
|
||||||
- fi
|
|
||||||
$(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
|
|
||||||
$(INSTALL_DATA) Programs/python.o $(DESTDIR)$(LIBPL)/python.o
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
|
|
@ -1,4 +1,3 @@
|
|||||||
https://www.python.org/ftp/python/VERSION/Python-VERSION.tar.xz
|
https://www.python.org/ftp/python/VERSION/Python-VERSION.tar.xz
|
||||||
patches/python3-always-pip.patch
|
patches/python3-always-pip.patch
|
||||||
patches/python3-no-static.patch
|
|
||||||
patches/python3-pyc-hash.patch
|
patches/python3-pyc-hash.patch
|
||||||
|
@ -1 +1 @@
|
|||||||
3.9.7 1
|
3.10.0 1
|
||||||
|
Loading…
Reference in New Issue
Block a user