[arch-commits] Commit in python-nltk/repos (2 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Sun Dec 25 18:14:23 UTC 2016


    Date: Sunday, December 25, 2016 @ 18:14:23
  Author: bpiotrowski
Revision: 202229

archrelease: copy trunk to community-staging-any

Added:
  python-nltk/repos/community-staging-any/
  python-nltk/repos/community-staging-any/PKGBUILD
    (from rev 202228, python-nltk/trunk/PKGBUILD)

----------+
 PKGBUILD |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

Copied: python-nltk/repos/community-staging-any/PKGBUILD (from rev 202228, python-nltk/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-25 18:14:23 UTC (rev 202229)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Thomas Dziedzic <gostrc at gmail.com>
+# Contributor: Chris Baker <baker.chris.3 at gmail.com>
+
+pkgbase=python-nltk
+pkgname=('python2-nltk' 'python-nltk')
+pkgver=3.2.1
+pkgrel=2
+pkgdesc='Natural language processing in Python'
+arch=('any')
+url='http://www.nltk.org/'
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=("git+https://github.com/nltk/nltk#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cp -r nltk nltk-py2
+  # python 2 fix
+  cd nltk-py2
+  find . -type f -exec sed -i 's:^#.*env python:#!/usr/bin/env python2:' {} +
+}
+
+build() {
+  (cd nltk; python setup.py build)
+  (cd nltk-py2; python2 setup.py build)
+}
+
+package_python-nltk() {
+  optdepends=('nltk-data: test data'
+              'python-numpy: used for calculations'
+              'python-matplotlib: used for plotting')
+  depends=('python-yaml')
+
+  (cd nltk; python setup.py install --root="$pkgdir" --optimize=1)
+}
+
+package_python2-nltk() {
+  optdepends=('nltk-data: test data'
+              'python2-numpy: used for calculations'
+              'python2-matplotlib: used for plotting')
+  depends=('python2-yaml')
+
+  (cd nltk-py2; python2 setup.py install --root="$pkgdir" --optimize=1)
+}
+
+# getver: pypi.python.org/pypi/nltk
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list