mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/gmpy: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,4 +1 @@
|
||||
DIST gmpy-2.1.5-cache.patch 19769 BLAKE2B 72d61ea00fda608ae92c5319828cb5c0003a69cd4be4bf3cde62574a93987b2316df5334d290eca7d48e44e423227d0b5a22c142c4a95b42aebb4560c3bf7ea6 SHA512 f16dbd78a99f27c6f588b814bb9b307429927eae9828fcea04225f163c1cd28968c2994689c4802dc0b619cdfd7c50401d1ec06c220756268af17499613fda1b
|
||||
DIST gmpy-2.1.5-py3.12.patch.gz 1817 BLAKE2B cbea3a9c662d52c5bfddb82ab5e920474a52c1dd715b3b9fecf55e5ee097297168ddb7961b6156e4c1f902e911890c77252d119c3651f345f01cad144ed44127 SHA512 26195e8e9a87147a05fd07fa325f262c2004fcba2b8857dbc87ca7a1e9e5e64b4a47d35be77edc263829e5df1db6a0acda6904307d01529eba832feb4f0f3f71
|
||||
DIST gmpy2-2.1.5.tar.gz 261709 BLAKE2B 50958868866fadc49c97534780fa491fadfaaea902f3fd4bd51f4e76a94602a6d030a1ee6685aac742e25b5fbe4865e1419307f7215c8fb553b166761d63607a SHA512 92e16359ee1df63faaeae4a3cbefe8cdbbc576d8eda377f08d59f12b70dfe9337a299686e85d1efee6c2f5b41fc4583643fecc68ea38a500c7f876c56fc169e7
|
||||
DIST gmpy2-2.2.1.tar.gz 234228 BLAKE2B 80188c6abd30ee5b5ebc4d233d3d97dd78be7f9d21d0649429e87b23d3e6d8b5b9269c792d481f24bd3b43d28e012bdd64ee6bb5d0137e3ac759742c845186c1 SHA512 2a3dc011295a373e10455e1f133aa3063cff24cdac0151cee9f29ce5855c3e44c3e3aab61bf13c11c9df1147b9183c6c387db1cb4dcb270b9dce1a9cb521f5dc
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
From 68a6b489c3d8d95b2658a1ed884fb99f4bd955c1 Mon Sep 17 00:00:00 2001
|
||||
From: Sergey B Kirpichev <skirpichev@gmail.com>
|
||||
Date: Sun, 3 Sep 2023 02:35:19 +0300
|
||||
Subject: [PATCH] Exclude MPFR workaround for MPFR >= 4.2.1
|
||||
|
||||
Co-authored-by: Vincent Lefevre <vincent@vinc17.net>
|
||||
|
||||
Closes #418
|
||||
---
|
||||
src/gmpy2_format.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/gmpy2_format.c b/src/gmpy2_format.c
|
||||
index 3e450c96..303bb7bf 100644
|
||||
--- a/src/gmpy2_format.c
|
||||
+++ b/src/gmpy2_format.c
|
||||
@@ -592,12 +592,14 @@ GMPy_MPC_Format(PyObject *self, PyObject *args)
|
||||
if (mpcstyle)
|
||||
strcat(tempbuf, " ");
|
||||
else {
|
||||
+#if MPFR_VERSION < MPFR_VERSION_NUM(4,2,1)
|
||||
/* Need to insert + if imag is nan or +inf. */
|
||||
if (mpfr_nan_p(mpc_imagref(MPC(self))) ||
|
||||
(mpfr_inf_p(mpc_imagref(MPC(self))) &&
|
||||
mpfr_sgn(mpc_imagref(MPC(self))) > 0)) {
|
||||
strcat(tempbuf, "+");
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
strcat(tempbuf, imagbuf);
|
||||
if (strlen(imagbuf) < 50 &&
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_PN="gmpy2"
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python bindings for GMP, MPC, MPFR and MPIR libraries"
|
||||
HOMEPAGE="
|
||||
https://github.com/aleaxit/gmpy/
|
||||
https://pypi.org/project/gmpy2/
|
||||
"
|
||||
SRC_URI+="
|
||||
https://dev.gentoo.org/~grozin/${P}-py3.12.patch.gz
|
||||
https://github.com/tornaria/void-packages/raw/722b32aa405804b79a74256708de6a511e255b4b/srcpkgs/python3-gmpy2/patches/cleanup-object-caching.patch
|
||||
-> ${P}-cache.patch
|
||||
"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="2"
|
||||
KEYWORDS="amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/mpc-1.0.2:=
|
||||
>=dev-libs/mpfr-3.1.2:=
|
||||
dev-libs/gmp:0=
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
distutils_enable_sphinx docs
|
||||
|
||||
PATCHES=(
|
||||
"${WORKDIR}/${P}-py3.12.patch"
|
||||
# https://github.com/aleaxit/gmpy/commit/7351e2eb1abf4b37a47a822eb3f3f29f90c7f854
|
||||
# rebased by Void; needed for mpfr 4.2.1
|
||||
"${DISTDIR}/${P}-cache.patch"
|
||||
# https://github.com/aleaxit/gmpy/commit/68a6b489c3d8d95b2658a1ed884fb99f4bd955c1
|
||||
"${FILESDIR}/${P}-mpfr-4.2.1.patch"
|
||||
)
|
||||
|
||||
python_test() {
|
||||
cd test || die
|
||||
"${EPYTHON}" runtests.py || die "tests failed under ${EPYTHON}"
|
||||
}
|
||||
Reference in New Issue
Block a user