Date: Saturday, January 26, 2019 @ 11:33:09 Author: aginiewicz Revision: 428069
upgpkg: python-pandas 0.24.0-1 python-pandas: new upstream release Modified: python-pandas/trunk/PKGBUILD ----------+ PKGBUILD | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-01-26 11:18:22 UTC (rev 428068) +++ PKGBUILD 2019-01-26 11:33:09 UTC (rev 428069) @@ -1,25 +1,28 @@ # Maintainer: Andrzej Giniewicz <[email protected]> # Contributor: Keith Hughitt <[email protected]> -# TODO: move python-xarray from AUR to community (with dependencies) -# TODO: package python-s3fs -# TODO: package pandas-gbq -# TODO: Feather Format support -# TODO: Apache Parquet support +# TODO: move python-xarray from AUR to community (converting Panels to xarray) +# TODO: move python-pyarrow from AUR to community (Feather Format and Apache Parquet) +# TODO: move python-fastparque from AUR to community (Apache Parquet) +# TODO: move python-snappy from AUR to community (compression for Apache Parquet) +# TODO: optdepend on python-brotlipy (compression for Apache Parquet) +# TODO: move python-s3fs from AUR to community (Amazon S3 access) +# TODO: move python-gcsfs from AUR to community (Google Cloud Storage access) +# TODO: package pandas-gbq (Google BigQuery I/O) pkgbase=python-pandas pkgname=('python2-pandas' 'python-pandas') -pkgver=0.23.4 +pkgver=0.24.0 pkgrel=1 pkgdesc="Cross-section and time series data analysis toolkit" arch=('x86_64') -url="http://pandas.pydata.org/" +url="https://pandas.pydata.org/" license=('BSD') makedepends=('python-setuptools' 'python-dateutil' 'python-numpy' 'python-pytz' 'python2-setuptools' 'python2-dateutil' 'python2-numpy' 'python2-pytz' 'cython' 'cython2') -source=("https://github.com/pydata/pandas/archive/v${pkgver}.tar.gz") -md5sums=('6ce319605a73db4ebd39021718f382c6') +source=("https://github.com/pandas-dev/pandas/releases/download/v${pkgver}/pandas-${pkgver}.tar.gz") +sha1sums=('74b1f8a60631522c33b79957c4f2a1fb05cb160b') prepare() { cd "$srcdir" @@ -33,12 +36,12 @@ } build() { - msg "Building Python2" + # "Building Python2" cd "$srcdir"/pandas-py2-${pkgver} python2 setup.py build_ext --inplace python2 setup.py build - msg "Building Python3" + # "Building Python3" cd "$srcdir"/pandas-${pkgver} python setup.py build_ext --inplace python setup.py build @@ -59,6 +62,7 @@ 'python2-xlsxwriter: alternative Excel XLSX output' 'python2-jinja: needed for conditional HTML formatting' 'python2-blosc: for msgpack compression using blosc' + 'python2-qtpy: needed for read_clipboard function (only one needed)' 'python2-pyqt5: needed for read_clipboard function (only one needed)' 'pygtk: needed for read_clipboard function (only one needed)' 'xsel: needed for read_clipboard function (only one needed)' @@ -90,8 +94,8 @@ 'python-xlsxwriter: alternative Excel XLSX output' 'python-jinja: needed for conditional HTML formatting' 'python-blosc: for msgpack compression using blosc' + 'python-qtpy: needed for read_clipboard function (only one needed)' 'python-pyqt5: needed for read_clipboard function (only one needed)' - 'pyside2: needed for read_clipboard function (only one needed)' 'xsel: needed for read_clipboard function (only one needed)' 'xclip: needed for read_clipboard function (only one needed)' 'python-beautifulsoup4: needed for read_html function' @@ -104,4 +108,3 @@ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } -
