Relax libarchive version requirement to 2.8.0.
This commit is contained in:
@@ -45,4 +45,36 @@ int remove_obsoletes(struct xbps_handle *, const char *);
|
||||
int repodata_flush(struct xbps_handle *, const char *,
|
||||
xbps_dictionary_t, xbps_dictionary_t);
|
||||
|
||||
/* libarchive compat */
|
||||
#if ARCHIVE_VERSION_NUMBER >= 3000000
|
||||
|
||||
#define archive_read_support_compression_gzip(x) \
|
||||
archive_read_support_filter_gzip(x)
|
||||
|
||||
#define archive_read_support_compression_bzip2(x) \
|
||||
archive_read_support_filter_bzip2(x)
|
||||
|
||||
#define archive_read_support_compression_xz(x) \
|
||||
archive_read_support_filter_xz(x)
|
||||
|
||||
#define archive_write_set_compression_gzip(x) \
|
||||
archive_write_add_filter_gzip(x)
|
||||
|
||||
#define archive_write_set_compression_bzip2(x) \
|
||||
archive_write_add_filter_bzip2(x)
|
||||
|
||||
#define archive_write_set_compression_xz(x) \
|
||||
archive_write_add_filter_xz(x)
|
||||
|
||||
#define archive_read_finish(x) \
|
||||
archive_read_free(x)
|
||||
|
||||
#define archive_write_finish(x) \
|
||||
archive_write_free(x)
|
||||
|
||||
#define archive_compression_name(x) \
|
||||
archive_filter_name(x, 0)
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* !_XBPS_RINDEX_DEFS_H_ */
|
||||
|
@@ -55,7 +55,7 @@ repodata_flush(struct xbps_handle *xhp, const char *repodir,
|
||||
/* Create and write our repository archive */
|
||||
ar = archive_write_new();
|
||||
assert(ar);
|
||||
archive_write_support_compression_gzip(ar);
|
||||
archive_write_set_compression_gzip(ar);
|
||||
archive_write_set_format_pax_restricted(ar);
|
||||
archive_write_set_options(ar, "compression-level=9");
|
||||
archive_write_open_fd(ar, repofd);
|
||||
|
Reference in New Issue
Block a user