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 }