1 Detect .xbps as tarballs.
3 --- src/abg-tools-utils.cc.orig
4 +++ src/abg-tools-utils.cc
6 || string_ends_with(file_path, ".tlz")
7 || string_ends_with(file_path, ".tar.Z")
8 || string_ends_with(file_path, ".taz")
9 - || string_ends_with(file_path, ".tz"))
10 + || string_ends_with(file_path, ".tz")
11 + || string_ends_with(file_path, ".xbps"))
14 ifstream in(file_path.c_str(), ifstream::binary);