Closed PolynomialDivision closed 1 year ago
I think we need the patch from
https://github.com/cjdelisle/cjdns/pull/1246/commits/20122611a5a3983dd4c67146f430533f1c61346e
can you test this patch on the builder with python 3.10?
cat /dev/shm/openwrt/feeds/routing/cjdns/patches/040-gyp-python_310.patch
...
--- a/node_build/dependencies/libuv/build/gyp/pylib/gyp/common.py
+++ b/node_build/dependencies/libuv/build/gyp/pylib/gyp/common.py
@@ -4,7 +4,11 @@
from __future__ import with_statement
-import collections
+try:
+ # Python 3.10
+ from six.moves import collections_abc as collections
+except ImportError:
+ import collections
import errno
import filecmp
import os.path
then retry
make V=99 -j10 packages/cjdns/{clean,compile}
...
Applying ./patches/040-gyp-python_310.patch using plaintext:
patching file node_build/dependencies/libuv/build/gyp/pylib/gyp/common.py
...
cjnds does not compile with gcc-13.
Maintainer: @wfleurant Environment: mt7622
Error Output: