git » python-html5lib.git » commit 0d95ed3

Backport pytest 7.4 patch

author Daniel M. Capella
2023-10-21 08:39:28 UTC
committer Daniel M. Capella
2023-10-21 08:39:28 UTC
parent c701e83f2a3d91e233839e8d00e498eefefbe61e

Backport pytest 7.4 patch

PKGBUILD +11 -7

diff --git a/PKGBUILD b/PKGBUILD
index 42aef7a..0d7744a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,35 +20,39 @@ optdepends=('python-lxml: lxml treebuilder'
 _test_commit=71eebd59772d1d39aced0c0582ae9c09acf3ce6e
 source=("$pkgname-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz"
         "https://github.com/html5lib/html5lib-python/commit/2c19b9899ab3a3e8bd0ca35e5d78544334204169.patch"
-        "https://github.com/html5lib/html5lib-tests/archive/${_test_commit}.tar.gz")
+        "https://github.com/html5lib/html5lib-tests/archive/${_test_commit}.tar.gz"
+        'html5lib_pytest74.patch::https://github.com/html5lib/html5lib-python/pull/570/commits/51cd4b9d331da8b167d0d0a77deb62357b42a1b7.patch')
 sha256sums=('66e9e24a53c10c27abb6be8a3cf2cf55824c6ea1cef8570a633cb223ec46e894'
             '6f37b33667e35ea138279be9842f012792821b1497b81ae4b108a74180cfe249'
-            'c866f5e4ae9ef34313e2b61fcb74849b6f8aef970bf8249956b6a5d142197087')
+            'c866f5e4ae9ef34313e2b61fcb74849b6f8aef970bf8249956b6a5d142197087'
+            '12921399944e191a01a93c26f684b780bc17182b8b642f39591446fd52ae5a34')
 
 prepare() {
-    cd "${srcdir}"/html5lib-python-${pkgver}
+    cd html5lib-python-${pkgver}
 
     # fix pytest 6 compat
     patch -p1 -i ../2c19b9899ab3a3e8bd0ca35e5d78544334204169.patch
 
+    patch -p1 -i ../html5lib_pytest74.patch
+
     rmdir html5lib/tests/testdata
     ln -sfT ../../../html5lib-tests-${_test_commit} html5lib/tests/testdata
 }
 
 build() {
-    cd "${srcdir}"/html5lib-python-${pkgver}
+    cd html5lib-python-${pkgver}
 
     python setup.py build
 }
 
 check() {
-    cd "${srcdir}"/html5lib-python-${pkgver}
+    cd html5lib-python-${pkgver}
 
-    py.test
+    pytest
 }
 
 package() {
-    cd "${srcdir}"/html5lib-python-${pkgver}
+    cd html5lib-python-${pkgver}
 
     python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
     install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE