Simon de Vlieger
Simon de Vlieger
Hey there, just gauging interest as this is something I might want to add to `rpmlint`. As a starting packager some of the warnings such as the following: ```text python-token_bucket.src:...
Hey there, after suffering from a severe case of NIH I've decided to write some assembly for the ATtiny1614: https://www.microchip.com/wwwproducts/en/ATTINY1614 It's not directly listed in avra's devices list, if I...
Since we're slowly doing some more tidbits surrounding automatic code quality I propose running isort on our source files. This guarantees alphabetically ordered (and nicely grouped) imports. I hope this...
As discussed, we want to run our tests locally the same as on GH actions; moving them into the GHCI container makes that easier, this moves running mypy into test-src...
If you have a newer pylint version than the one in the GHCI container you get various new warnings. This PR disables one (`unspecified-encoding`) and fixes two others. The `unspecified-encoding`...
This builds on my previous PR which fixed the initial types; this however turns on strict mode which requires everything to be typed. It's very much a WIP but I...
Terminal escape sequences for formatting were defined multiple times. This is a prelude to more extensive (prettier) formatting.
The manifest stage is meant to leave behind a (partial) manifest in built images. **This is not complete either specification wise or code wise.** Just the initial naive implementation as...
An initial implementation of a sudoers stage. This is currently really basic as in it only takes some placeholders like so: ```json { "type": "org.osbuild.sudoers", "options": { "filename": "/etc/sudoers.d/10-test", "specifications":...
Due to some concerns listed in https://github.com/python-poetry/poetry/issues/3332 poetry does not as of yet support the PEP-621 form of shared metadata information. As I want to be able to more easily...