Ian Leonard

Results 38 comments of Ian Leonard

I can't replicate on a RPi5 and I see banned addons + repo in your log. Reopen after purging the piracy addons with a new debug log.

Replaced storage-dirs.service with a tmpfiles.d method. I'm not aware of how the numbering/naming of the tmpfiles.d files works, so I picked early, but not first.

On line length, I need help understanding how config/options LINUX_DEPENDS (for example) is more understandable/maintainable as a single line of 187 characters instead of being split over 3 lines, the...

On indenting, I'd like the indent-within-comment to be replaced with something more python-esque, where indent is determined by the "level" of the code within a codeblock. Initial entries have no...

On braces/brackets/{}s, I use them purposefully when doing: - string manipulation (required) - default values (required) - inserting a variable into a string to remove ambiguity (optional, but good practice...

Use of `[ test1 -o test2]` versus `[ test1 ] || [ test 2]` ? same with -a and &&

Use of `echo` versus `printf`? I personally think of `echo` when I want to print text, but it seems to be an fairly even spread of what gets used.

> @antonlacon thanks - added reference to `[ test1 -o test2 ]` versus `[[ test1 ]] || [[ test2 ]]`. I came across this: https://stackoverflow.com/questions/3184164/what-is-the-bash-test-command-evaluation-order when looking for test operator...

This should be ready to replace tools/download-cleaner. The two features I didn't re-implement were downloading the current source tarball for an outdated package, and building a new sources directory. Fetching...

Added `--export` and `--import` to accommodate using between different git branches. `--export` will save the list of package names + package source tarballs to a file. `--import` will take one...