[arch-commits] Commit in (5 files)

Felix Yan felixonmars at archlinux.org
Wed Jan 11 15:22:42 UTC 2017


    Date: Wednesday, January 11, 2017 @ 15:22:41
  Author: felixonmars
Revision: 206826

addpkg: python-editdistance 0.3.1-1

Added:
  python-editdistance/
  python-editdistance/repos/
  python-editdistance/trunk/
  python-editdistance/trunk/LICENSE
  python-editdistance/trunk/PKGBUILD

----------+
 LICENSE  |    7 +++++++
 PKGBUILD |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

Added: python-editdistance/trunk/LICENSE
===================================================================
--- python-editdistance/trunk/LICENSE	                        (rev 0)
+++ python-editdistance/trunk/LICENSE	2017-01-11 15:22:41 UTC (rev 206826)
@@ -0,0 +1,7 @@
+Copyright (c) 2013 Hiroyuki Tanaka
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Added: python-editdistance/trunk/PKGBUILD
===================================================================
--- python-editdistance/trunk/PKGBUILD	                        (rev 0)
+++ python-editdistance/trunk/PKGBUILD	2017-01-11 15:22:41 UTC (rev 206826)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-editdistance
+pkgname=('python-editdistance' 'python2-editdistance')
+pkgver=0.3.1
+_commit=3ea84a7dd3258c76aa3be851ef3d50e59c886846
+pkgrel=1
+pkgdesc="Fast implementation of the edit distance(Levenshtein distance)"
+arch=('i686' 'x86_64')
+license=('MIT')
+url="https://github.com/aflc/editdistance"
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=("git+https://github.com/aflc/editdistance.git#commit=$_commit"
+        LICENSE)
+sha512sums=('SKIP'
+            '590232c1e7fa5aaaaa77573c4ea23533522177ca0ac07a0ce7f00e446d47467df2e19936ecb5e057fddc664d1daca39e2217cb5f6e3192ef5edf49b1f73e0f10')
+
+prepare() {
+  cp -a editdistance{,-py2}
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/editdistance
+  python setup.py build
+
+  cd "$srcdir"/editdistance-py2
+  python2 setup.py build
+}
+
+package_python-editdistance() {
+  depends=('python')
+
+  cd editdistance
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-editdistance() {
+  depends=('python2')
+
+  cd editdistance-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: python-editdistance/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property



More information about the arch-commits mailing list