Files
haikuports/dev-python/pandas/pandas-1.3.2.recipe
OscarL 9b7b0af5e3 pandas: recipe cleanup, drop _python39 package. (#11513)
This version fails to build against Cython >= 3, but newer pandas versions
require numpy > 2. So just disable it for now until the needed dependencies
get sorted out.

(this should not break things on-tree, as nothing currently requires pandas)
2024-12-23 09:41:02 +01:00

87 lines
2.2 KiB
Bash

SUMMARY="A powerful data analysis library for Python"
DESCRIPTION="Pandas is a Python package providing fast, flexible \
and expressive data structures designed to make working with \
\"relational\" or \"labeled\" data both easy and intuitive. \
It aims to be the fundamental high-level building block for \
doing practical, real world data analysis in Python."
HOMEPAGE="https://pandas.pydata.org/"
COPYRIGHT="2008-2012 AQR Capital Management, LLC
Lambda Foundry, Inc.
PyData Development Team"
LICENSE="BSD (3-clause)"
REVISION="5"
SOURCE_URI="https://files.pythonhosted.org/packages/source/p/pandas/pandas-$portVersion.tar.gz"
CHECKSUM_SHA256="cbcb84d63867af3411fa063af3de64902665bb5b3d40b25b2059e40603594e87"
# Disable for now, as this version requires cython < 3, and newer versions require numpy > 2
ARCHITECTURES="?all !x86_gcc2"
SECONDARY_ARCHITECTURES="?x86"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
PYTHON_VERSIONS=(3.10)
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
pythonPackage=python${pythonVersion//.}
eval "PROVIDES_${pythonPackage}=\"
${portName}_$pythonPackage = $portVersion
\""
if [ "$targetArchitecture" = x86_gcc2 ]; then
eval "PROVIDES_$pythonPackage+=\"
pandas_$pythonPackage = $portVersion
\""
fi
eval "REQUIRES_$pythonPackage=\"
haiku$secondaryArchSuffix
dateutil_$pythonPackage
numpy_$pythonPackage
pytz_$pythonPackage
cmd:python$pythonVersion
\""
BUILD_REQUIRES+="
haiku${secondaryArchSuffix}_devel
numpy_$pythonPackage
setuptools_$pythonPackage
wheel_$pythonPackage
"
BUILD_PREREQUIRES+="
cmd:cython$pythonVersion
cmd:gcc$secondaryArchSuffix
# cmd:gfortran$secondaryArchSuffix
# cmd:pkg_config$secondaryArchSuffix
cmd:python$pythonVersion
"
done
INSTALL()
{
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
pythonPackage=python${pythonVersion//.}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}