[arch-commits] Commit in python-llfuse/trunk (PKGBUILD)
Jelle van der Waa
jelle at archlinux.org
Thu Nov 19 21:54:58 UTC 2020
Date: Thursday, November 19, 2020 @ 21:54:58
Author: jelle
Revision: 757812
Update to latest version and make Python 3.9 compatible
Tests require pytest < 6 and are impossible fix for now.
Modified:
python-llfuse/trunk/PKGBUILD
----------+
PKGBUILD | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-11-19 21:39:05 UTC (rev 757811)
+++ PKGBUILD 2020-11-19 21:54:58 UTC (rev 757812)
@@ -2,8 +2,8 @@
# Contributor: Brendan MacDonell <macdonellba at gmail dot com>
pkgname=python-llfuse
-pkgver=1.3.6
-pkgrel=2
+pkgver=1.3.8
+pkgrel=1
pkgdesc="A set of Python bindings for the low level FUSE API."
arch=('x86_64')
url="https://github.com/python-llfuse/python-llfuse/"
@@ -12,17 +12,23 @@
makedepends=('python-setuptools' 'cython')
checkdepends=('python-pytest')
options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/l/llfuse/llfuse-$pkgver.tar.bz2")
-md5sums=('4996674fa327c6c93174c1f71961ac6c')
+source=("https://files.pythonhosted.org/packages/source/l/llfuse/llfuse-$pkgver.tar.gz")
+md5sums=('c83b01b3537cfbeb85c085ab0c6c3577')
+prepare() {
+ cd "${srcdir}/llfuse-${pkgver}"
+}
+
build() {
cd "${srcdir}/llfuse-${pkgver}"
+ python setup.py build_cython
python setup.py build_ext --inplace
}
check() {
cd "${srcdir}/llfuse-${pkgver}"
- python -m pytest test/
+ # https://github.com/python-llfuse/python-llfuse/issues/35 tests incompatible with pytest>=6
+ #python -m pytest test/
}
package() {
More information about the arch-commits
mailing list