The series is created, but when I sync it, the activity is failing with the following error message:
b"/usr/bin/unlzma: (stdin): Compressed data is corrupt
'/usr/bin/unlzma' < ./lists/update-jammy-cran40_%2F_Packages.lzma > ./lists/update-jammy-cran40_%2F_Packages exited with errorcode 1!
Error reading from ./lists/update-jammy-cran40_%2F_Packages.lzma: Trailing garbage after compressed data!
There have been errors!
"
After some digging I tried using xz but got the same error:
xz -d Packages.lzma
The original Landscape error message says the following at the end:
… Trailing garbage after compressed data!
I searched a bit more and found discussions around the trailing of data in .lzma files.
This command, which uses the option --single-stream, succeeds in decompressing the file:
xz -d --single-stream Packages.lzma
I don’t know what’s going on with this Package manifest, if this behavior should be supported by Landscape or there really shouldn’t be any trailing data added by CRAN.
Also I was not able to configure Landscape to use a different file other than the Packages.lzma, as there are other compressed options which I’m not able to use.
I’ve submitted bug 2108909 so that Landscape will be able to somehow handle these scenarios.