devel/py-pythran: Update to 0.15.0

This commit is contained in:
Wen Heping 2024-01-14 13:07:32 +00:00
parent ccb143bb5a
commit b2a9a5b48f
3 changed files with 4 additions and 20 deletions

View file

@ -1,5 +1,5 @@
PORTNAME= pythran
PORTVERSION= 0.14.0
PORTVERSION= 0.15.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1695039847
SHA256 (pythran-0.14.0.tar.gz) = 42f3473946205964844eff7f750e2541afb2006d53475d708f5ff2d048db89bd
SIZE (pythran-0.14.0.tar.gz) = 4015360
TIMESTAMP = 1705227477
SHA256 (pythran-0.15.0.tar.gz) = f9bc61bcb96df2cd4b578abc5a62dfb3fbb0b0ef02c264513dfb615c5f87871c
SIZE (pythran-0.15.0.tar.gz) = 2365746

View file

@ -1,16 +0,0 @@
--- third_party/xsimd/arch/xsimd_scalar.hpp.orig 2023-04-02 17:04:24 UTC
+++ third_party/xsimd/arch/xsimd_scalar.hpp
@@ -444,11 +444,11 @@ namespace xsimd
#if defined(_GNU_SOURCE) && !defined(__APPLE__) && !defined(__MINGW32__) && !defined(__ANDROID__)
inline float exp10(const float& x) noexcept
{
- return ::exp10f(x);
+ return ::expf(x*::logf(10));
}
inline double exp10(const double& x) noexcept
{
- return ::exp10(x);
+ return ::exp(x*::log(10));
}
#endif