From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4548E15800A for ; Tue, 29 Aug 2023 05:54:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 889152BC014; Tue, 29 Aug 2023 05:54:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 693C62BC014 for ; Tue, 29 Aug 2023 05:54:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66F17340AE4 for ; Tue, 29 Aug 2023 05:54:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB14EE69 for ; Tue, 29 Aug 2023 05:54:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1693288462.fe04f24d7f2d11746412977289a2d47c9ac280d1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/thriftpy2/files/, dev-python/thriftpy2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/thriftpy2/files/thriftpy2-0.4.16-cython3.patch dev-python/thriftpy2/thriftpy2-0.4.16-r1.ebuild X-VCS-Directories: dev-python/thriftpy2/ dev-python/thriftpy2/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe04f24d7f2d11746412977289a2d47c9ac280d1 X-VCS-Branch: master Date: Tue, 29 Aug 2023 05:54:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a9d45af6-36e2-4201-b4f9-4a3d4bfc7278 X-Archives-Hash: b79523c6515d4160461c2f48e7b6a683 commit: fe04f24d7f2d11746412977289a2d47c9ac280d1 Author: Sam James gentoo org> AuthorDate: Tue Aug 29 05:48:13 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 29 05:54:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe04f24d dev-python/thriftpy2: fix cython-3 compat Closes: https://bugs.gentoo.org/898722 Signed-off-by: Sam James gentoo.org> .../thriftpy2/files/thriftpy2-0.4.16-cython3.patch | 25 +++++++++++ dev-python/thriftpy2/thriftpy2-0.4.16-r1.ebuild | 52 ++++++++++++++++++++++ 2 files changed, 77 insertions(+) diff --git a/dev-python/thriftpy2/files/thriftpy2-0.4.16-cython3.patch b/dev-python/thriftpy2/files/thriftpy2-0.4.16-cython3.patch new file mode 100644 index 000000000000..8e186d719d1e --- /dev/null +++ b/dev-python/thriftpy2/files/thriftpy2-0.4.16-cython3.patch @@ -0,0 +1,25 @@ +https://bugs.gentoo.org/898722 +https://github.com/Thriftpy/thriftpy2/commit/202ed5ef7b91399b86f8b3b76108a14612b38dbc + +From 202ed5ef7b91399b86f8b3b76108a14612b38dbc Mon Sep 17 00:00:00 2001 +From: AN Long +Date: Mon, 7 Aug 2023 17:11:51 +0800 +Subject: [PATCH] fix: compatible with cython3 + +--- + thriftpy2/transport/cybase.pyx | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/thriftpy2/transport/cybase.pyx b/thriftpy2/transport/cybase.pyx +index c05560f8..d0fc3696 100644 +--- a/thriftpy2/transport/cybase.pyx ++++ b/thriftpy2/transport/cybase.pyx +@@ -87,7 +87,7 @@ cdef class TCyBuffer(object): + if min_size <= self.buf_size: + return 0 + +- cdef int multiples = min_size / self.buf_size ++ cdef int multiples = min_size // self.buf_size + if min_size % self.buf_size != 0: + multiples += 1 + diff --git a/dev-python/thriftpy2/thriftpy2-0.4.16-r1.ebuild b/dev-python/thriftpy2/thriftpy2-0.4.16-r1.ebuild new file mode 100644 index 000000000000..c7e8bd364392 --- /dev/null +++ b/dev-python/thriftpy2/thriftpy2-0.4.16-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Pure python approach of Apache Thrift" +HOMEPAGE=" + https://github.com/Thriftpy/thriftpy2/ + https://pypi.org/project/thriftpy2/ +" +SRC_URI=" + https://github.com/Thriftpy/thriftpy2/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/ply[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/tornado[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}"/${P}-cython3.patch +) + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + tests/test_tornado.py::TornadoRPCTestCase::test_asynchronous_exception + tests/test_tornado.py::TornadoRPCTestCase::test_asynchronous_result + ) + + cd tests || die + epytest +}