naddy@ and ajacoutot@, independently from each other, found that the recent update of py-matplotlib does not build. Issue is caused by me not noticing that matplotlib tries to download jquery-ui-1.12.1, which fails when building in a chroot using dpb. Instead of downloading jquery-ui use the bundled files. REVISION is not bumped as patched file is not included in the package, and no new files are added.
15 lines
366 B
Plaintext
15 lines
366 B
Plaintext
$OpenBSD: patch-setup_py,v 1.9 2019/05/03 07:35:59 bket Exp $
|
|
|
|
Index: setup.py
|
|
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -189,7 +189,7 @@ class develop_with_jquery(DevelopCommand):
|
|
|
|
|
|
cmdclass['sdist'] = sdist_with_jquery
|
|
-cmdclass['install_lib'] = install_lib_with_jquery
|
|
+#cmdclass['install_lib'] = install_lib_with_jquery
|
|
cmdclass['develop'] = develop_with_jquery
|
|
|
|
|