diff --git a/0001-add-loongarch64-architecture-support.patch b/0001-add-loongarch64-architecture-support.patch new file mode 100644 index 0000000000000000000000000000000000000000..bc2222f994bfa8d0c319ecaf868874da34687723 --- /dev/null +++ b/0001-add-loongarch64-architecture-support.patch @@ -0,0 +1,65 @@ +From ca4845920d6587c5568d3ad294d17bbd9d9aa486 Mon Sep 17 00:00:00 2001 +From: wang--ge +Date: Thu, 1 Jun 2023 09:47:40 +0800 +Subject: [PATCH] add loongarch64 architecture support + +--- + .../platform/switch_loongarch64_linux.h | 31 +++++++++++++++++++ + src/greenlet/slp_platformselect.h | 2 ++ + 2 files changed, 33 insertions(+) + create mode 100644 src/greenlet/platform/switch_loongarch64_linux.h + +diff --git a/src/greenlet/platform/switch_loongarch64_linux.h b/src/greenlet/platform/switch_loongarch64_linux.h +new file mode 100644 +index 0000000..4252561 +--- /dev/null ++++ b/src/greenlet/platform/switch_loongarch64_linux.h +@@ -0,0 +1,31 @@ ++#define STACK_REFPLUS 1 ++ ++#ifdef SLP_EVAL ++#define STACK_MAGIC 0 ++ ++#define REGS_TO_SAVE "s0", "s1", "s2", "s3", "s4", "s5", \ ++ "s6", "s7", "s8", "fp", \ ++ "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31" ++ ++static int ++slp_switch(void) ++{ ++ register int ret; ++ register long *stackref, stsizediff; ++ __asm__ volatile ("" : : : REGS_TO_SAVE); ++ __asm__ volatile ("move %0, $sp" : "=r" (stackref) : ); ++ { ++ SLP_SAVE_STATE(stackref, stsizediff); ++ __asm__ volatile ( ++ "add.d $sp, $sp, %0\n\t" ++ : /* no outputs */ ++ : "r" (stsizediff) ++ ); ++ SLP_RESTORE_STATE(); ++ } ++ __asm__ volatile ("" : : : REGS_TO_SAVE); ++ __asm__ volatile ("move %0, $zero" : "=r" (ret) : ); ++ return ret; ++} ++ ++#endif +\ No newline at end of file +diff --git a/src/greenlet/slp_platformselect.h b/src/greenlet/slp_platformselect.h +index b6a3e70..d71db10 100644 +--- a/src/greenlet/slp_platformselect.h ++++ b/src/greenlet/slp_platformselect.h +@@ -49,6 +49,8 @@ extern "C" { + #endif + #elif defined(__GNUC__) && defined(__mips__) && defined(__linux__) + #include "platform/switch_mips_unix.h" /* Linux/MIPS */ ++#elif defined(__GNUC__) && defined(__loongarch64) && defined(__linux__) ++#include "platform/switch_loongarch64_linux.h" /* Linux/LoongArch64 */ + #elif defined(__GNUC__) && defined(__aarch64__) + #include "platform/switch_aarch64_gcc.h" /* Aarch64 ABI */ + #elif defined(__GNUC__) && defined(__mc68000__) +-- +2.33.0 + diff --git a/greenlet-1.1.3.tar.gz b/greenlet-1.1.3.tar.gz deleted file mode 100644 index 1cba422ab40218daf4fa702497b2b6ffe3ed8d7c..0000000000000000000000000000000000000000 Binary files a/greenlet-1.1.3.tar.gz and /dev/null differ diff --git a/greenlet-2.0.2.tar.gz b/greenlet-2.0.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..ff0639a8038b80b0adf8cec64340d12461948276 Binary files /dev/null and b/greenlet-2.0.2.tar.gz differ diff --git a/python-greenlet.spec b/python-greenlet.spec index 74a5e5a5b1b1186f65c0f699c9a58848fe07d3f0..b77aa7c93f957c7a9ec122116f3a6ff6214b2772 100644 --- a/python-greenlet.spec +++ b/python-greenlet.spec @@ -1,10 +1,12 @@ Name: python-greenlet -Version: 1.1.3 +Version: 2.0.2 Release: 1 Summary: lightweight coroutines for in-process concurrent programming License: Python-2.0 and MIT URL: https://github.com/python-greenlet/greenlet -Source0: https://files.pythonhosted.org/packages/a0/d5/70772b3693f086a362f122516225a43fe4f1182e17158c81ba1ab271ab9b/greenlet-1.1.3.tar.gz +Source0: %{pypi_source greenlet} + +Patch0: 0001-add-loongarch64-architecture-support.patch %description The greenlet package is a spin-off of Stackless, a version of CPython @@ -38,7 +40,10 @@ This package contains libraries and headier files for developing applications that use python3-greenlet. %prep -%autosetup -n greenlet-%{version} -p1 +%setup -n greenlet-%{version} +%ifarch loongarch64 +%patch0 -p1 +%endif %build %py3_build @@ -60,6 +65,9 @@ that use python3-greenlet. %{_includedir}/python%{python3_version}*/greenlet/ %changelog +* Wed Apr 24 2024 Han Guangyu - 2.0.2-1 +- update to 2.0.2 for Python 3.11 by merge master commit + * Thu Apr 11 2024 wangjing - 1.1.3-1 - update package of version 1.1.3