Date: Thursday, April 13, 2023 @ 17:20:29
Author: arojas
Revision: 1445913
archrelease: copy trunk to community-staging-x86_64
Added:
python-py_stringmatching/repos/community-staging-x86_64/
python-py_stringmatching/repos/community-staging-x86_64/PKGBUILD
(from rev 1445912, python-py_stringmatching/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: python-py_stringmatching/repos/community-staging-x86_64/PKGBUILD (from
rev 1445912, python-py_stringmatching/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-13 17:20:29 UTC (rev 1445913)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani <[email protected]>
+
+_pkg=py_stringmatching
+pkgname=python-${_pkg}
+pkgver=0.4.3
+pkgrel=2
+pkgdesc="Comprehensive and scalable set of string tokenizers and similarity
measures"
+arch=(x86_64)
+url="https://github.com/anhaidgroup/py_stringmatching"
+license=(BSD)
+depends=(python-numpy python-six)
+makedepends=(python-setuptools cython)
+checkdepends=(python-nose)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/anhaidgroup/py_stringmatching/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('921b9bb163b310df341c33823913204f7b0ca9f6a319f5b451408300bd378dee')
+
+build() {
+ cd ${_pkg}-${pkgver}
+ sed -i 's|if not PIP_INSTALLED:|if False:|g' setup.py
+ python setup.py build
+}
+
+# `No module named
'py_stringmatching.similarity_measure.cython.cython_affine'` even with
PYTHONPATH
+#check() {
+# cd ${_pkg}-${pkgver}
+# local python_version=$(python -c 'import sys; print(".".join(map(str,
sys.version_info[:2])))')
+# PYTHONPATH="${PWD}"/build/lib.linux-${CARCH}-${python_version} nosetests
+#}
+
+package() {
+ cd ${_pkg}-${pkgver}
+ python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build
--optimize=1
+ install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}