summaryrefslogtreecommitdiff
path: root/dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch')
-rw-r--r--dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch b/dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch
deleted file mode 100644
index 39bdf20c095c..000000000000
--- a/dev-tcltk/tclpython/files/tclpython-5.0-gentoo.patch
+++ /dev/null
@@ -1,46 +0,0 @@
---- a/Makefile 2018-10-28 17:21:20.274137396 +0100
-+++ b/Makefile 2018-10-28 17:21:47.696694473 +0100
-@@ -16,11 +16,11 @@
- LIBRARY:= $(PKG_NAME).so.$(PKG_VERSION)
-
- TCL_VERSION=$(shell echo 'puts $\$$tcl_version' | tclsh)
--CFLAGS:= -O2 -Wall -fPIC -DUSE_TCL_STUBS
-+CFLAGS:= $(MYCFLAGS) -fPIC -DUSE_TCL_STUBS
- CFLAGS+= $(shell $(PYTHON_CONFIG) --includes)
- CFLAGS+= -I/usr/include/tcl$(TCL_VERSION)
- CFLAGS+= -DTCLPYTHON_VERSION=$(PKG_VERSION)
--LDFLAGS:= -shared -s
-+LDFLAGS:= $(MYLDFLAGS) -shared
- LDFLAGS+= $(shell $(PYTHON_CONFIG) --libs)
- LDFLAGS+= -ltclstub$(TCL_VERSION)
-
-@@ -62,7 +62,8 @@
- $(OUTPUT_DIR)/pkgIndex.tcl:pkg/pkgIndex.tcl
- cp -t $(dir $@) $^
-
--package: $(OUTPUT_DIR)/$(LIBRARY) $(OUTPUT_DIR)/pkgIndex.tcl
-+package: $(OUTPUT_DIR)/$(LIBRARY)
-+ ${MAKE} $(OUTPUT_DIR)/pkgIndex.tcl
-
- ifneq ($(MAKECMDGOALS), clean)
- -include $(DEPEND)
---- a/src/py.c 2022-02-06 10:20:03.352580186 +0100
-+++ b/src/py.c 2022-02-06 11:16:49.504796684 +0100
-@@ -24,7 +24,6 @@
- // First time initializing Python
- Py_NoSiteFlag = 1;
- Py_Initialize();
-- PyEval_InitThreads();
- GlobalThread = PyEval_SaveThread();
- }
-
-@@ -60,7 +59,8 @@
- #ifdef WITH_THREAD
- PyEval_RestoreThread(interp->thread_state);
- Py_EndInterpreter(interp->thread_state);
-- PyEval_ReleaseLock();
-+ PyThreadState_Swap(GlobalThread);
-+ PyEval_SaveThread();
- #endif
-
- free(interp);