Closed YukariChiba closed 4 weeks ago
Currently OBS has a problem with file lookups for the Arch repo, resulting in potentially incorrectly generated .files files (missing path prefixes).
.files
As described in https://perldoc.perl.org/Archive::Tar::File :
$path = $file->full_path Returns the full path from the tar header; this is basically a concatenation of the prefix and name fields.
$path = $file->full_path
Using only name will result in the loss of the prefix part, e.g. usr/lib or usr/lib/python3.xx in some python packages.
name
prefix
usr/lib
usr/lib/python3.xx
Currently OBS has a problem with file lookups for the Arch repo, resulting in potentially incorrectly generated
.files
files (missing path prefixes).As described in https://perldoc.perl.org/Archive::Tar::File :
Using only
name
will result in the loss of theprefix
part, e.g.usr/lib
orusr/lib/python3.xx
in some python packages.