Ross Burton
Ross Burton
The standard `zstd` tool has a `--stream-size` option so the file size can be set for streamed compression. However, `pzstd` doesn't support this option, so any file compressed with `pzstd`...
pypa/build is one possible build tool, but not the only build tool. Forcing build to be present as a build dependency is meaningless: either the user is using build so...
It would be nice if enums such as E_MACHINE were exposed as Python `enum.Enum` instead of strings? ``` >>> elf = elftools.elf.elffile.ELFFile(open("/usr/bin/find", "rb")) >>> elf.header.e_machine 'EM_X86_64' >>> type(elf.header.e_machine) ``` https://docs.python.org/3/library/enum.html...
As explain in https://docs.python.org/3/whatsnew/3.10.html#distutils-deprecated, distutils is deprecated and will be gone in Python 3.12.
I've a page that embeds a number of SVGs directly into the HTML using svg.js to create the nodes. The SVGs have elements and the HTML loads scoped.js in the...
oe-core now has Rust integrated, so there's eg `cargo.bbclass` in oe-core. This layer should merge any improvements it has into oe-core, and remove the classes. Ideally, it would simply be...
I just did a server install (so pretty minimal) and need `host` and `ping`. ``` $ sudo swupd search ping Bundle with the best search result: clr-network-troubleshooter - Tool to...
The generated HTML source contains a stub `` tag, from `layout.jade`: ``` Buildbot ``` In a browser, the title is rewritten at runtime with Javascript to reflect the page being...
`m4/lock.m4` uses gl_PTHREAD_RWLOCK_RDLOCK_PREFER_WRITER but nothing provides that function. For some reason this is only causing problems when I build `parted`, maybe that function ends up being pulled into most builds?
If you download the cbor tarball from Pypi (https://files.pythonhosted.org/packages/9b/99/01c6a987c920500189eb74a291bd3a388e6c7cf85736bb6b066d9833315e/cbor-1.0.0.tar.gz) there is no `LICENSE` file: ``` $ tar ztvf cbor-1.0.0.tar.gz drwxr-xr-x 0 bolson 501 0 9 Feb 2016 cbor-1.0.0/ drwxr-xr-x 0...