[arch-commits] Commit in python-pandas/repos (4 files)

Andrzej Giniewicz aginiewicz at archlinux.org
Tue Oct 4 21:02:08 UTC 2016


    Date: Tuesday, October 4, 2016 @ 21:02:07
  Author: aginiewicz
Revision: 191339

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python-pandas/repos/community-i686/PKGBUILD
    (from rev 191338, python-pandas/trunk/PKGBUILD)
  python-pandas/repos/community-x86_64/PKGBUILD
    (from rev 191338, python-pandas/trunk/PKGBUILD)
Deleted:
  python-pandas/repos/community-i686/PKGBUILD
  python-pandas/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  226 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |  112 ---------------------
 community-x86_64/PKGBUILD |  112 ---------------------
 3 files changed, 226 insertions(+), 224 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-10-04 21:01:55 UTC (rev 191338)
+++ community-i686/PKGBUILD	2016-10-04 21:02:07 UTC (rev 191339)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Keith Hughitt <khughitt at umd.edu>
-
-# TODO: add gbq dependencies for python3 when python-gflags gets released
-# TODO: move python-xarray from AUR to community, add as optdepends
-
-pkgbase=python-pandas
-pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.18.1
-pkgrel=1
-pkgdesc="Cross-section and time series data analysis toolkit"
-arch=('i686' 'x86_64')
-url="http://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=('c6cb010d115a05842878c77f6959b8b0')
-
-prepare() {
-  cd "$srcdir"
-  cp -a pandas-${pkgver} pandas-py2-${pkgver}
-  cd pandas-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-      -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/pandas-py2-${pkgver}
-  python2 setup.py build_ext --inplace
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/pandas-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package_python2-pandas() {
-  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz')
-  optdepends=('python2-pandas-datareader: pandas.io.data replacement (recommended)'
-              'python2-numexpr: needed for accelerating certain numerical operations (recommended)'
-              'python2-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
-              'python2-scipy: needed for miscellaneous statistical functions'
-              'python2-pytables: needed for HDF5-based storage'
-              'python2-sqlalchemy: needed for SQL database support'
-              'python2-matplotlib: needed for plotting'
-              'python2-openpyxl: needed for Excel XLSX input/output'
-              'python2-xlrd: needed for Excel XLS input'
-              'python2-xlwt: needed for Excel XLS output'
-              'python2-xlsxwriter: alternative Excel XLSX output'
-              'python2-jinja: needed for conditional HTML formatting'
-              'python2-boto: needed for access to Amazon S3 storage'
-              'python2-blosc: for msgpack compression using blosc'
-              'python2-pyqt4: needed for read_clipboard function (only one needed)'
-              'python2-pyside: 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)'
-              'xclip: needed for read_clipboard function (only one needed)'
-              'python2-gflags: needed for gbq'
-              'python2-oauth2client: needed for gbq'
-              'python2-httplib2: needed for gbq'
-              'python2-google-api-python-client: needed for gbq'
-              'python2-setuptools: needed for gbq'
-              'python2-beautifulsoup4: needed for read_html function'
-              'python2-lxml: needed for read_html function (and/or python2-html5lib)'
-              'python2-html5lib: needed for read_hmlt function (and/or python2-lxml)')
-
-  cd "$srcdir"/pandas-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-pandas() {
-  depends=('python-numpy' 'python-dateutil' 'python-pytz')
-  optdepends=('python-pandas-datareader: pandas.io.data replacement (recommended)'
-              'python-numexpr: needed for accelerating certain numerical operations (recommended)'
-              'python-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
-              'python-scipy: needed for miscellaneous statistical functions'
-              'python-pytables: needed for HDF5-based storage'
-              'python-sqlalchemy: needed for SQL database support'
-              'python-matplotlib: needed for plotting'
-              'python-openpyxl: needed for Excel XLSX input/output'
-              'python-xlrd: needed for Excel XLS input'
-              'python-xlwt: needed for Excel XLS output'
-              'python-xlsxwriter: alternative Excel XLSX output'
-              'python-jinja: needed for conditional HTML formatting'
-              'python-boto: needed for access to Amazon S3 storage'
-              'python-blosc: for msgpack compression using blosc'
-              'python-pyqt4: needed for read_clipboard function (only one needed)'
-              'python-pyside: 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'
-              'python-lxml: needed for read_html function (and/or python-html5lib)'
-              'python-html5lib: needed for read_hmlt function (and/or python-lxml)')
-
-  cd "$srcdir"/pandas-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-pandas/repos/community-i686/PKGBUILD (from rev 191338, python-pandas/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-10-04 21:02:07 UTC (rev 191339)
@@ -0,0 +1,113 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Keith Hughitt <khughitt at umd.edu>
+
+# TODO: add python-gflags>=3.0.0
+# TODO: add python2-backports-lzma
+# TODO: move python-xarray from AUR to community (with dependencies)
+
+pkgbase=python-pandas
+pkgname=('python2-pandas' 'python-pandas')
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Cross-section and time series data analysis toolkit"
+arch=('i686' 'x86_64')
+url="http://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=('ad13ddbb0b1e47934f8914facc7dbc94')
+
+prepare() {
+  cd "$srcdir"
+  cp -a pandas-${pkgver} pandas-py2-${pkgver}
+  cd pandas-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+      -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/pandas-py2-${pkgver}
+  python2 setup.py build_ext --inplace
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/pandas-${pkgver}
+  python setup.py build_ext --inplace
+  python setup.py build
+}
+
+package_python2-pandas() {
+  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz')
+  optdepends=('python2-pandas-datareader: pandas.io.data replacement (recommended)'
+              'python2-numexpr: needed for accelerating certain numerical operations (recommended)'
+              'python2-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
+              'python2-scipy: needed for miscellaneous statistical functions'
+              'python2-pytables: needed for HDF5-based storage'
+              'python2-sqlalchemy: needed for SQL database support'
+              'python2-matplotlib: needed for plotting'
+              'python2-openpyxl: needed for Excel XLSX input/output'
+              'python2-xlrd: needed for Excel XLS input'
+              'python2-xlwt: needed for Excel XLS output'
+              'python2-xlsxwriter: alternative Excel XLSX output'
+              'python2-jinja: needed for conditional HTML formatting'
+              'python2-boto: needed for access to Amazon S3 storage'
+              'python2-blosc: for msgpack compression using blosc'
+              'python2-pyqt4: needed for read_clipboard function (only one needed)'
+              'python2-pyside: 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)'
+              'xclip: needed for read_clipboard function (only one needed)'
+              'python2-gflags: needed for gbq'
+              'python2-oauth2client: needed for gbq'
+              'python2-httplib2: needed for gbq'
+              'python2-google-api-python-client: needed for gbq'
+              'python2-setuptools: needed for gbq'
+              'python2-beautifulsoup4: needed for read_html function'
+              'python2-lxml: needed for read_html function (and/or python2-html5lib)'
+              'python2-html5lib: needed for read_hmlt function (and/or python2-lxml)')
+
+  cd "$srcdir"/pandas-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-pandas() {
+  depends=('python-numpy' 'python-dateutil' 'python-pytz')
+  optdepends=('python-pandas-datareader: pandas.io.data replacement (recommended)'
+              'python-numexpr: needed for accelerating certain numerical operations (recommended)'
+              'python-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
+              'python-scipy: needed for miscellaneous statistical functions'
+              'python-pytables: needed for HDF5-based storage'
+              'python-sqlalchemy: needed for SQL database support'
+              'python-matplotlib: needed for plotting'
+              'python-openpyxl: needed for Excel XLSX input/output'
+              'python-xlrd: needed for Excel XLS input'
+              'python-xlwt: needed for Excel XLS output'
+              'python-xlsxwriter: alternative Excel XLSX output'
+              'python-jinja: needed for conditional HTML formatting'
+              'python-boto: needed for access to Amazon S3 storage'
+              'python-blosc: for msgpack compression using blosc'
+              'python-pyqt4: needed for read_clipboard function (only one needed)'
+              'python-pyside: 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'
+              'python-lxml: needed for read_html function (and/or python-html5lib)'
+              'python-html5lib: needed for read_hmlt function (and/or python-lxml)')
+
+  cd "$srcdir"/pandas-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-10-04 21:01:55 UTC (rev 191338)
+++ community-x86_64/PKGBUILD	2016-10-04 21:02:07 UTC (rev 191339)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Keith Hughitt <khughitt at umd.edu>
-
-# TODO: add gbq dependencies for python3 when python-gflags gets released
-# TODO: move python-xarray from AUR to community, add as optdepends
-
-pkgbase=python-pandas
-pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.18.1
-pkgrel=1
-pkgdesc="Cross-section and time series data analysis toolkit"
-arch=('i686' 'x86_64')
-url="http://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=('c6cb010d115a05842878c77f6959b8b0')
-
-prepare() {
-  cd "$srcdir"
-  cp -a pandas-${pkgver} pandas-py2-${pkgver}
-  cd pandas-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-      -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/pandas-py2-${pkgver}
-  python2 setup.py build_ext --inplace
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/pandas-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package_python2-pandas() {
-  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz')
-  optdepends=('python2-pandas-datareader: pandas.io.data replacement (recommended)'
-              'python2-numexpr: needed for accelerating certain numerical operations (recommended)'
-              'python2-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
-              'python2-scipy: needed for miscellaneous statistical functions'
-              'python2-pytables: needed for HDF5-based storage'
-              'python2-sqlalchemy: needed for SQL database support'
-              'python2-matplotlib: needed for plotting'
-              'python2-openpyxl: needed for Excel XLSX input/output'
-              'python2-xlrd: needed for Excel XLS input'
-              'python2-xlwt: needed for Excel XLS output'
-              'python2-xlsxwriter: alternative Excel XLSX output'
-              'python2-jinja: needed for conditional HTML formatting'
-              'python2-boto: needed for access to Amazon S3 storage'
-              'python2-blosc: for msgpack compression using blosc'
-              'python2-pyqt4: needed for read_clipboard function (only one needed)'
-              'python2-pyside: 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)'
-              'xclip: needed for read_clipboard function (only one needed)'
-              'python2-gflags: needed for gbq'
-              'python2-oauth2client: needed for gbq'
-              'python2-httplib2: needed for gbq'
-              'python2-google-api-python-client: needed for gbq'
-              'python2-setuptools: needed for gbq'
-              'python2-beautifulsoup4: needed for read_html function'
-              'python2-lxml: needed for read_html function (and/or python2-html5lib)'
-              'python2-html5lib: needed for read_hmlt function (and/or python2-lxml)')
-
-  cd "$srcdir"/pandas-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-pandas() {
-  depends=('python-numpy' 'python-dateutil' 'python-pytz')
-  optdepends=('python-pandas-datareader: pandas.io.data replacement (recommended)'
-              'python-numexpr: needed for accelerating certain numerical operations (recommended)'
-              'python-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
-              'python-scipy: needed for miscellaneous statistical functions'
-              'python-pytables: needed for HDF5-based storage'
-              'python-sqlalchemy: needed for SQL database support'
-              'python-matplotlib: needed for plotting'
-              'python-openpyxl: needed for Excel XLSX input/output'
-              'python-xlrd: needed for Excel XLS input'
-              'python-xlwt: needed for Excel XLS output'
-              'python-xlsxwriter: alternative Excel XLSX output'
-              'python-jinja: needed for conditional HTML formatting'
-              'python-boto: needed for access to Amazon S3 storage'
-              'python-blosc: for msgpack compression using blosc'
-              'python-pyqt4: needed for read_clipboard function (only one needed)'
-              'python-pyside: 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'
-              'python-lxml: needed for read_html function (and/or python-html5lib)'
-              'python-html5lib: needed for read_hmlt function (and/or python-lxml)')
-
-  cd "$srcdir"/pandas-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-pandas/repos/community-x86_64/PKGBUILD (from rev 191338, python-pandas/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-10-04 21:02:07 UTC (rev 191339)
@@ -0,0 +1,113 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Keith Hughitt <khughitt at umd.edu>
+
+# TODO: add python-gflags>=3.0.0
+# TODO: add python2-backports-lzma
+# TODO: move python-xarray from AUR to community (with dependencies)
+
+pkgbase=python-pandas
+pkgname=('python2-pandas' 'python-pandas')
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Cross-section and time series data analysis toolkit"
+arch=('i686' 'x86_64')
+url="http://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=('ad13ddbb0b1e47934f8914facc7dbc94')
+
+prepare() {
+  cd "$srcdir"
+  cp -a pandas-${pkgver} pandas-py2-${pkgver}
+  cd pandas-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+      -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+      -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+      -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/pandas-py2-${pkgver}
+  python2 setup.py build_ext --inplace
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/pandas-${pkgver}
+  python setup.py build_ext --inplace
+  python setup.py build
+}
+
+package_python2-pandas() {
+  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz')
+  optdepends=('python2-pandas-datareader: pandas.io.data replacement (recommended)'
+              'python2-numexpr: needed for accelerating certain numerical operations (recommended)'
+              'python2-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
+              'python2-scipy: needed for miscellaneous statistical functions'
+              'python2-pytables: needed for HDF5-based storage'
+              'python2-sqlalchemy: needed for SQL database support'
+              'python2-matplotlib: needed for plotting'
+              'python2-openpyxl: needed for Excel XLSX input/output'
+              'python2-xlrd: needed for Excel XLS input'
+              'python2-xlwt: needed for Excel XLS output'
+              'python2-xlsxwriter: alternative Excel XLSX output'
+              'python2-jinja: needed for conditional HTML formatting'
+              'python2-boto: needed for access to Amazon S3 storage'
+              'python2-blosc: for msgpack compression using blosc'
+              'python2-pyqt4: needed for read_clipboard function (only one needed)'
+              'python2-pyside: 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)'
+              'xclip: needed for read_clipboard function (only one needed)'
+              'python2-gflags: needed for gbq'
+              'python2-oauth2client: needed for gbq'
+              'python2-httplib2: needed for gbq'
+              'python2-google-api-python-client: needed for gbq'
+              'python2-setuptools: needed for gbq'
+              'python2-beautifulsoup4: needed for read_html function'
+              'python2-lxml: needed for read_html function (and/or python2-html5lib)'
+              'python2-html5lib: needed for read_hmlt function (and/or python2-lxml)')
+
+  cd "$srcdir"/pandas-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-pandas() {
+  depends=('python-numpy' 'python-dateutil' 'python-pytz')
+  optdepends=('python-pandas-datareader: pandas.io.data replacement (recommended)'
+              'python-numexpr: needed for accelerating certain numerical operations (recommended)'
+              'python-bottleneck: needed for accelerating certain types of nan evaluations (recommended)'
+              'python-scipy: needed for miscellaneous statistical functions'
+              'python-pytables: needed for HDF5-based storage'
+              'python-sqlalchemy: needed for SQL database support'
+              'python-matplotlib: needed for plotting'
+              'python-openpyxl: needed for Excel XLSX input/output'
+              'python-xlrd: needed for Excel XLS input'
+              'python-xlwt: needed for Excel XLS output'
+              'python-xlsxwriter: alternative Excel XLSX output'
+              'python-jinja: needed for conditional HTML formatting'
+              'python-boto: needed for access to Amazon S3 storage'
+              'python-blosc: for msgpack compression using blosc'
+              'python-pyqt4: needed for read_clipboard function (only one needed)'
+              'python-pyside: 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'
+              'python-lxml: needed for read_html function (and/or python-html5lib)'
+              'python-html5lib: needed for read_hmlt function (and/or python-lxml)')
+
+  cd "$srcdir"/pandas-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+



More information about the arch-commits mailing list