[arch-commits] Commit in python-editdistance/repos (6 files)

Felix Yan felixonmars at archlinux.org
Wed Jan 11 15:23:16 UTC 2017


    Date: Wednesday, January 11, 2017 @ 15:23:15
  Author: felixonmars
Revision: 206827

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

Added:
  python-editdistance/repos/community-i686/
  python-editdistance/repos/community-i686/LICENSE
    (from rev 206826, python-editdistance/trunk/LICENSE)
  python-editdistance/repos/community-i686/PKGBUILD
    (from rev 206826, python-editdistance/trunk/PKGBUILD)
  python-editdistance/repos/community-x86_64/
  python-editdistance/repos/community-x86_64/LICENSE
    (from rev 206826, python-editdistance/trunk/LICENSE)
  python-editdistance/repos/community-x86_64/PKGBUILD
    (from rev 206826, python-editdistance/trunk/PKGBUILD)

---------------------------+
 community-i686/LICENSE    |    7 ++++++
 community-i686/PKGBUILD   |   47 ++++++++++++++++++++++++++++++++++++++++++++
 community-x86_64/LICENSE  |    7 ++++++
 community-x86_64/PKGBUILD |   47 ++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 108 insertions(+)

Copied: python-editdistance/repos/community-i686/LICENSE (from rev 206826, python-editdistance/trunk/LICENSE)
===================================================================
--- community-i686/LICENSE	                        (rev 0)
+++ community-i686/LICENSE	2017-01-11 15:23:15 UTC (rev 206827)
@@ -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

Copied: python-editdistance/repos/community-i686/PKGBUILD (from rev 206826, python-editdistance/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-01-11 15:23:15 UTC (rev 206827)
@@ -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
+}

Copied: python-editdistance/repos/community-x86_64/LICENSE (from rev 206826, python-editdistance/trunk/LICENSE)
===================================================================
--- community-x86_64/LICENSE	                        (rev 0)
+++ community-x86_64/LICENSE	2017-01-11 15:23:15 UTC (rev 206827)
@@ -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

Copied: python-editdistance/repos/community-x86_64/PKGBUILD (from rev 206826, python-editdistance/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-01-11 15:23:15 UTC (rev 206827)
@@ -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
+}



More information about the arch-commits mailing list