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

Felix Yan fyan at archlinux.org
Sun Sep 20 09:44:36 UTC 2015


    Date: Sunday, September 20, 2015 @ 11:44:36
  Author: fyan
Revision: 141215

archrelease: copy trunk to community-staging-any

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

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

Copied: python-nltk/repos/community-staging-any/PKGBUILD (from rev 141214, python-nltk/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2015-09-20 09:44:36 UTC (rev 141215)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Chris Baker <baker.chris.3 at gmail.com>
+
+pkgbase=python-nltk
+pkgname=('python2-nltk' 'python-nltk')
+pkgver=3.0.4
+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 "$srcdir/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