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

Evangelos Foutras foutrelis at archlinux.org
Sat Sep 19 17:34:49 UTC 2015


    Date: Saturday, September 19, 2015 @ 19:34:49
  Author: foutrelis
Revision: 141054

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

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

-----------------------------------+
 community-staging-i686/PKGBUILD   |   97 ++++++++++++++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD |   97 ++++++++++++++++++++++++++++++++++++
 2 files changed, 194 insertions(+)

Copied: python-pandas/repos/community-staging-i686/PKGBUILD (from rev 141053, python-pandas/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-09-19 17:34:49 UTC (rev 141054)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Keith Hughitt <khughitt at umd.edu>
+
+pkgbase=python-pandas
+pkgname=('python2-pandas' 'python-pandas')
+pkgver=0.16.2
+pkgrel=2
+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')
+source=("https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz")
+md5sums=('a92787bcdf0fc0c6d5f4fe4877335ab5')
+
+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' 'python2-setuptools')
+  optdepends=('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-statsmodels: needed for parts of pandas.stats'
+              'python2-openpyxl: needed for Excel XLSX input/output'
+              'python2-xlsxwriter: alternative Excel XLSX output'
+              'python2-xlrd: needed for Excel XLS input'
+              'python2-xlwt: needed for Excel XLS output'
+              'python2-boto: needed for access to Amazon S3 storage'
+              '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)'
+              'python2-httplib2: needed for gbq'
+              'python2-google-api-python-client: needed for gbq'
+              'python2-gflags: needed for gbq'
+              'xsel: needed for read_clipboard function (or xclip)'
+              'xclip: needed for read_clipboard function (or xsel)')
+
+  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' 'python-setuptools')
+  optdepends=('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-statsmodels: needed for parts of pandas.stats'
+              'python-openpyxl: needed for Excel XLSX input/output'
+              'python-xlsxwriter: alternative Excel XLSX output'
+              'python-xlrd: needed for Excel XLS input'
+              'python-xlwt: needed for Excel XLS output'
+              'python-boto: needed for access to Amazon S3 storage'
+              '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)'
+              'xsel: needed for read_clipboard function (or xclip)'
+              'xclip: needed for read_clipboard function (or xsel)')
+
+  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-staging-x86_64/PKGBUILD (from rev 141053, python-pandas/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-09-19 17:34:49 UTC (rev 141054)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Keith Hughitt <khughitt at umd.edu>
+
+pkgbase=python-pandas
+pkgname=('python2-pandas' 'python-pandas')
+pkgver=0.16.2
+pkgrel=2
+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')
+source=("https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz")
+md5sums=('a92787bcdf0fc0c6d5f4fe4877335ab5')
+
+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' 'python2-setuptools')
+  optdepends=('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-statsmodels: needed for parts of pandas.stats'
+              'python2-openpyxl: needed for Excel XLSX input/output'
+              'python2-xlsxwriter: alternative Excel XLSX output'
+              'python2-xlrd: needed for Excel XLS input'
+              'python2-xlwt: needed for Excel XLS output'
+              'python2-boto: needed for access to Amazon S3 storage'
+              '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)'
+              'python2-httplib2: needed for gbq'
+              'python2-google-api-python-client: needed for gbq'
+              'python2-gflags: needed for gbq'
+              'xsel: needed for read_clipboard function (or xclip)'
+              'xclip: needed for read_clipboard function (or xsel)')
+
+  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' 'python-setuptools')
+  optdepends=('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-statsmodels: needed for parts of pandas.stats'
+              'python-openpyxl: needed for Excel XLSX input/output'
+              'python-xlsxwriter: alternative Excel XLSX output'
+              'python-xlrd: needed for Excel XLS input'
+              'python-xlwt: needed for Excel XLS output'
+              'python-boto: needed for access to Amazon S3 storage'
+              '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)'
+              'xsel: needed for read_clipboard function (or xclip)'
+              'xclip: needed for read_clipboard function (or xsel)')
+
+  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