libarchive-static 1.0.6 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/extconf.rb +2 -9
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/config.h +23 -0
- data/ext/libarchive-0.1.1/ext/config.log +230 -0
- data/ext/libarchive-0.1.1/ext/config.status +671 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
- data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
- data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
- data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
- data/ext/libarchive-3.6.2/Makefile.in +16892 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
- data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
- data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
- data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
- data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
- data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
- data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
- data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
- data/ext/libarchive-3.6.2/config.h.in +1504 -0
- data/ext/libarchive-3.6.2/configure +25558 -0
- data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
- data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
- data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
- data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
- data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
- data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
- data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
- data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
- data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_all.c → libarchive-3.6.2/libarchive/archive_read_support_filter_all.c} +35 -10
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c → libarchive-3.6.2/libarchive/archive_read_support_filter_bzip2.c} +38 -26
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c → libarchive-3.6.2/libarchive/archive_read_support_filter_compress.c} +52 -44
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c → libarchive-3.6.2/libarchive/archive_read_support_filter_gzip.c} +108 -37
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_none.c → libarchive-3.6.2/libarchive/archive_read_support_filter_none.c} +15 -3
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_program.c → libarchive-3.6.2/libarchive/archive_read_support_filter_program.c} +114 -77
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c → libarchive-3.6.2/libarchive/archive_read_support_filter_rpm.c} +31 -31
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c → libarchive-3.6.2/libarchive/archive_read_support_filter_uu.c} +141 -85
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c → libarchive-3.6.2/libarchive/archive_read_support_filter_xz.c} +369 -284
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
- data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
- data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
- data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c → libarchive-3.6.2/libarchive/archive_write_add_filter_compress.c} +86 -131
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_format_all.c → libarchive-3.6.2/libarchive/archive_write_add_filter_none.c} +11 -11
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
- data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
- data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
- data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
- data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
- data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
- data/ext/libarchive-static-makefile +144 -80
- data/ext/libarchive-static-wrapper-makefile +1 -1
- data/ext/zlib-1.2.13/Makefile.in +404 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
- data/ext/zlib-1.2.13/configure +922 -0
- data/ext/zlib-1.2.13/crc32.c +1125 -0
- data/ext/zlib-1.2.13/crc32.h +9446 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
- data/ext/zlib-1.2.13/gzread.c +650 -0
- data/ext/zlib-1.2.13/gzwrite.c +677 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
- data/ext/zlib-1.2.13/uncompr.c +93 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
- metadata +241 -133
- data/ext/libarchive-0.1.1/libarchive.c +0 -1762
- data/ext/libarchive-2.8.4/Makefile.in +0 -7076
- data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
- data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
- data/ext/libarchive-2.8.4/config.h.in +0 -772
- data/ext/libarchive-2.8.4/configure +0 -17916
- data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
- data/ext/zlib-1.2.5/Makefile.in +0 -257
- data/ext/zlib-1.2.5/configure +0 -596
- data/ext/zlib-1.2.5/crc32.c +0 -442
- data/ext/zlib-1.2.5/crc32.h +0 -441
- data/ext/zlib-1.2.5/example.c +0 -565
- data/ext/zlib-1.2.5/gzread.c +0 -653
- data/ext/zlib-1.2.5/gzwrite.c +0 -531
- data/ext/zlib-1.2.5/minigzip.c +0 -440
- data/ext/zlib-1.2.5/uncompr.c +0 -59
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* infback.c -- inflate using a call-back interface
|
|
2
|
-
* Copyright (C) 1995-
|
|
2
|
+
* Copyright (C) 1995-2022 Mark Adler
|
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -42,21 +42,31 @@ int stream_size;
|
|
|
42
42
|
return Z_STREAM_ERROR;
|
|
43
43
|
strm->msg = Z_NULL; /* in case we return an error */
|
|
44
44
|
if (strm->zalloc == (alloc_func)0) {
|
|
45
|
+
#ifdef Z_SOLO
|
|
46
|
+
return Z_STREAM_ERROR;
|
|
47
|
+
#else
|
|
45
48
|
strm->zalloc = zcalloc;
|
|
46
49
|
strm->opaque = (voidpf)0;
|
|
50
|
+
#endif
|
|
47
51
|
}
|
|
48
|
-
if (strm->zfree == (free_func)0)
|
|
52
|
+
if (strm->zfree == (free_func)0)
|
|
53
|
+
#ifdef Z_SOLO
|
|
54
|
+
return Z_STREAM_ERROR;
|
|
55
|
+
#else
|
|
56
|
+
strm->zfree = zcfree;
|
|
57
|
+
#endif
|
|
49
58
|
state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|
|
50
59
|
sizeof(struct inflate_state));
|
|
51
60
|
if (state == Z_NULL) return Z_MEM_ERROR;
|
|
52
61
|
Tracev((stderr, "inflate: allocated\n"));
|
|
53
62
|
strm->state = (struct internal_state FAR *)state;
|
|
54
63
|
state->dmax = 32768U;
|
|
55
|
-
state->wbits = windowBits;
|
|
64
|
+
state->wbits = (uInt)windowBits;
|
|
56
65
|
state->wsize = 1U << windowBits;
|
|
57
66
|
state->window = window;
|
|
58
67
|
state->wnext = 0;
|
|
59
68
|
state->whave = 0;
|
|
69
|
+
state->sane = 1;
|
|
60
70
|
return Z_OK;
|
|
61
71
|
}
|
|
62
72
|
|
|
@@ -246,7 +256,7 @@ out_func out;
|
|
|
246
256
|
void FAR *out_desc;
|
|
247
257
|
{
|
|
248
258
|
struct inflate_state FAR *state;
|
|
249
|
-
unsigned char FAR *next; /* next input */
|
|
259
|
+
z_const unsigned char FAR *next; /* next input */
|
|
250
260
|
unsigned char FAR *put; /* next output */
|
|
251
261
|
unsigned have, left; /* available input and output */
|
|
252
262
|
unsigned long hold; /* bit buffer */
|
|
@@ -394,7 +404,6 @@ void FAR *out_desc;
|
|
|
394
404
|
PULLBYTE();
|
|
395
405
|
}
|
|
396
406
|
if (here.val < 16) {
|
|
397
|
-
NEEDBITS(here.bits);
|
|
398
407
|
DROPBITS(here.bits);
|
|
399
408
|
state->lens[state->have++] = here.val;
|
|
400
409
|
}
|
|
@@ -469,6 +478,7 @@ void FAR *out_desc;
|
|
|
469
478
|
}
|
|
470
479
|
Tracev((stderr, "inflate: codes ok\n"));
|
|
471
480
|
state->mode = LEN;
|
|
481
|
+
/* fallthrough */
|
|
472
482
|
|
|
473
483
|
case LEN:
|
|
474
484
|
/* use inflate_fast() if we have enough input and output */
|
|
@@ -596,25 +606,27 @@ void FAR *out_desc;
|
|
|
596
606
|
break;
|
|
597
607
|
|
|
598
608
|
case DONE:
|
|
599
|
-
/* inflate stream terminated properly
|
|
609
|
+
/* inflate stream terminated properly */
|
|
600
610
|
ret = Z_STREAM_END;
|
|
601
|
-
if (left < state->wsize) {
|
|
602
|
-
if (out(out_desc, state->window, state->wsize - left))
|
|
603
|
-
ret = Z_BUF_ERROR;
|
|
604
|
-
}
|
|
605
611
|
goto inf_leave;
|
|
606
612
|
|
|
607
613
|
case BAD:
|
|
608
614
|
ret = Z_DATA_ERROR;
|
|
609
615
|
goto inf_leave;
|
|
610
616
|
|
|
611
|
-
default:
|
|
617
|
+
default:
|
|
618
|
+
/* can't happen, but makes compilers happy */
|
|
612
619
|
ret = Z_STREAM_ERROR;
|
|
613
620
|
goto inf_leave;
|
|
614
621
|
}
|
|
615
622
|
|
|
616
|
-
/*
|
|
623
|
+
/* Write leftover output and return unused input */
|
|
617
624
|
inf_leave:
|
|
625
|
+
if (left < state->wsize) {
|
|
626
|
+
if (out(out_desc, state->window, state->wsize - left) &&
|
|
627
|
+
ret == Z_STREAM_END)
|
|
628
|
+
ret = Z_BUF_ERROR;
|
|
629
|
+
}
|
|
618
630
|
strm->next_in = next;
|
|
619
631
|
strm->avail_in = have;
|
|
620
632
|
return ret;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* inffast.c -- fast decoding
|
|
2
|
-
* Copyright (C) 1995-
|
|
2
|
+
* Copyright (C) 1995-2017 Mark Adler
|
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -8,26 +8,9 @@
|
|
|
8
8
|
#include "inflate.h"
|
|
9
9
|
#include "inffast.h"
|
|
10
10
|
|
|
11
|
-
#
|
|
12
|
-
|
|
13
|
-
/* Allow machine dependent optimization for post-increment or pre-increment.
|
|
14
|
-
Based on testing to date,
|
|
15
|
-
Pre-increment preferred for:
|
|
16
|
-
- PowerPC G3 (Adler)
|
|
17
|
-
- MIPS R5000 (Randers-Pehrson)
|
|
18
|
-
Post-increment preferred for:
|
|
19
|
-
- none
|
|
20
|
-
No measurable difference:
|
|
21
|
-
- Pentium III (Anderson)
|
|
22
|
-
- M68060 (Nikl)
|
|
23
|
-
*/
|
|
24
|
-
#ifdef POSTINC
|
|
25
|
-
# define OFF 0
|
|
26
|
-
# define PUP(a) *(a)++
|
|
11
|
+
#ifdef ASMINF
|
|
12
|
+
# pragma message("Assembler code may have bugs -- use at your own risk")
|
|
27
13
|
#else
|
|
28
|
-
# define OFF 1
|
|
29
|
-
# define PUP(a) *++(a)
|
|
30
|
-
#endif
|
|
31
14
|
|
|
32
15
|
/*
|
|
33
16
|
Decode literal, length, and distance codes and write out the resulting
|
|
@@ -69,8 +52,8 @@ z_streamp strm;
|
|
|
69
52
|
unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
70
53
|
{
|
|
71
54
|
struct inflate_state FAR *state;
|
|
72
|
-
unsigned char FAR *in; /* local strm->next_in */
|
|
73
|
-
unsigned char FAR *last; /* while in < last
|
|
55
|
+
z_const unsigned char FAR *in; /* local strm->next_in */
|
|
56
|
+
z_const unsigned char FAR *last; /* have enough input while in < last */
|
|
74
57
|
unsigned char FAR *out; /* local strm->next_out */
|
|
75
58
|
unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
|
|
76
59
|
unsigned char FAR *end; /* while out < end, enough space available */
|
|
@@ -87,7 +70,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
87
70
|
code const FAR *dcode; /* local strm->distcode */
|
|
88
71
|
unsigned lmask; /* mask for first level of length codes */
|
|
89
72
|
unsigned dmask; /* mask for first level of distance codes */
|
|
90
|
-
code here;
|
|
73
|
+
code const *here; /* retrieved table entry */
|
|
91
74
|
unsigned op; /* code bits, operation, extra bits, or */
|
|
92
75
|
/* window position, window bytes to copy */
|
|
93
76
|
unsigned len; /* match length, unused bytes */
|
|
@@ -96,9 +79,9 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
96
79
|
|
|
97
80
|
/* copy state to local variables */
|
|
98
81
|
state = (struct inflate_state FAR *)strm->state;
|
|
99
|
-
in = strm->next_in
|
|
82
|
+
in = strm->next_in;
|
|
100
83
|
last = in + (strm->avail_in - 5);
|
|
101
|
-
out = strm->next_out
|
|
84
|
+
out = strm->next_out;
|
|
102
85
|
beg = out - (start - strm->avail_out);
|
|
103
86
|
end = out + (strm->avail_out - 257);
|
|
104
87
|
#ifdef INFLATE_STRICT
|
|
@@ -119,29 +102,29 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
119
102
|
input data or output space */
|
|
120
103
|
do {
|
|
121
104
|
if (bits < 15) {
|
|
122
|
-
hold += (unsigned long)(
|
|
105
|
+
hold += (unsigned long)(*in++) << bits;
|
|
123
106
|
bits += 8;
|
|
124
|
-
hold += (unsigned long)(
|
|
107
|
+
hold += (unsigned long)(*in++) << bits;
|
|
125
108
|
bits += 8;
|
|
126
109
|
}
|
|
127
|
-
here = lcode
|
|
110
|
+
here = lcode + (hold & lmask);
|
|
128
111
|
dolen:
|
|
129
|
-
op = (unsigned)(here
|
|
112
|
+
op = (unsigned)(here->bits);
|
|
130
113
|
hold >>= op;
|
|
131
114
|
bits -= op;
|
|
132
|
-
op = (unsigned)(here
|
|
115
|
+
op = (unsigned)(here->op);
|
|
133
116
|
if (op == 0) { /* literal */
|
|
134
|
-
Tracevv((stderr, here
|
|
117
|
+
Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
|
|
135
118
|
"inflate: literal '%c'\n" :
|
|
136
|
-
"inflate: literal 0x%02x\n", here
|
|
137
|
-
|
|
119
|
+
"inflate: literal 0x%02x\n", here->val));
|
|
120
|
+
*out++ = (unsigned char)(here->val);
|
|
138
121
|
}
|
|
139
122
|
else if (op & 16) { /* length base */
|
|
140
|
-
len = (unsigned)(here
|
|
123
|
+
len = (unsigned)(here->val);
|
|
141
124
|
op &= 15; /* number of extra bits */
|
|
142
125
|
if (op) {
|
|
143
126
|
if (bits < op) {
|
|
144
|
-
hold += (unsigned long)(
|
|
127
|
+
hold += (unsigned long)(*in++) << bits;
|
|
145
128
|
bits += 8;
|
|
146
129
|
}
|
|
147
130
|
len += (unsigned)hold & ((1U << op) - 1);
|
|
@@ -150,25 +133,25 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
150
133
|
}
|
|
151
134
|
Tracevv((stderr, "inflate: length %u\n", len));
|
|
152
135
|
if (bits < 15) {
|
|
153
|
-
hold += (unsigned long)(
|
|
136
|
+
hold += (unsigned long)(*in++) << bits;
|
|
154
137
|
bits += 8;
|
|
155
|
-
hold += (unsigned long)(
|
|
138
|
+
hold += (unsigned long)(*in++) << bits;
|
|
156
139
|
bits += 8;
|
|
157
140
|
}
|
|
158
|
-
here = dcode
|
|
141
|
+
here = dcode + (hold & dmask);
|
|
159
142
|
dodist:
|
|
160
|
-
op = (unsigned)(here
|
|
143
|
+
op = (unsigned)(here->bits);
|
|
161
144
|
hold >>= op;
|
|
162
145
|
bits -= op;
|
|
163
|
-
op = (unsigned)(here
|
|
146
|
+
op = (unsigned)(here->op);
|
|
164
147
|
if (op & 16) { /* distance base */
|
|
165
|
-
dist = (unsigned)(here
|
|
148
|
+
dist = (unsigned)(here->val);
|
|
166
149
|
op &= 15; /* number of extra bits */
|
|
167
150
|
if (bits < op) {
|
|
168
|
-
hold += (unsigned long)(
|
|
151
|
+
hold += (unsigned long)(*in++) << bits;
|
|
169
152
|
bits += 8;
|
|
170
153
|
if (bits < op) {
|
|
171
|
-
hold += (unsigned long)(
|
|
154
|
+
hold += (unsigned long)(*in++) << bits;
|
|
172
155
|
bits += 8;
|
|
173
156
|
}
|
|
174
157
|
}
|
|
@@ -196,30 +179,30 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
196
179
|
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
|
197
180
|
if (len <= op - whave) {
|
|
198
181
|
do {
|
|
199
|
-
|
|
182
|
+
*out++ = 0;
|
|
200
183
|
} while (--len);
|
|
201
184
|
continue;
|
|
202
185
|
}
|
|
203
186
|
len -= op - whave;
|
|
204
187
|
do {
|
|
205
|
-
|
|
188
|
+
*out++ = 0;
|
|
206
189
|
} while (--op > whave);
|
|
207
190
|
if (op == 0) {
|
|
208
191
|
from = out - dist;
|
|
209
192
|
do {
|
|
210
|
-
|
|
193
|
+
*out++ = *from++;
|
|
211
194
|
} while (--len);
|
|
212
195
|
continue;
|
|
213
196
|
}
|
|
214
197
|
#endif
|
|
215
198
|
}
|
|
216
|
-
from = window
|
|
199
|
+
from = window;
|
|
217
200
|
if (wnext == 0) { /* very common case */
|
|
218
201
|
from += wsize - op;
|
|
219
202
|
if (op < len) { /* some from window */
|
|
220
203
|
len -= op;
|
|
221
204
|
do {
|
|
222
|
-
|
|
205
|
+
*out++ = *from++;
|
|
223
206
|
} while (--op);
|
|
224
207
|
from = out - dist; /* rest from output */
|
|
225
208
|
}
|
|
@@ -230,14 +213,14 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
230
213
|
if (op < len) { /* some from end of window */
|
|
231
214
|
len -= op;
|
|
232
215
|
do {
|
|
233
|
-
|
|
216
|
+
*out++ = *from++;
|
|
234
217
|
} while (--op);
|
|
235
|
-
from = window
|
|
218
|
+
from = window;
|
|
236
219
|
if (wnext < len) { /* some from start of window */
|
|
237
220
|
op = wnext;
|
|
238
221
|
len -= op;
|
|
239
222
|
do {
|
|
240
|
-
|
|
223
|
+
*out++ = *from++;
|
|
241
224
|
} while (--op);
|
|
242
225
|
from = out - dist; /* rest from output */
|
|
243
226
|
}
|
|
@@ -248,40 +231,40 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
248
231
|
if (op < len) { /* some from window */
|
|
249
232
|
len -= op;
|
|
250
233
|
do {
|
|
251
|
-
|
|
234
|
+
*out++ = *from++;
|
|
252
235
|
} while (--op);
|
|
253
236
|
from = out - dist; /* rest from output */
|
|
254
237
|
}
|
|
255
238
|
}
|
|
256
239
|
while (len > 2) {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
240
|
+
*out++ = *from++;
|
|
241
|
+
*out++ = *from++;
|
|
242
|
+
*out++ = *from++;
|
|
260
243
|
len -= 3;
|
|
261
244
|
}
|
|
262
245
|
if (len) {
|
|
263
|
-
|
|
246
|
+
*out++ = *from++;
|
|
264
247
|
if (len > 1)
|
|
265
|
-
|
|
248
|
+
*out++ = *from++;
|
|
266
249
|
}
|
|
267
250
|
}
|
|
268
251
|
else {
|
|
269
252
|
from = out - dist; /* copy direct from output */
|
|
270
253
|
do { /* minimum length is three */
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
254
|
+
*out++ = *from++;
|
|
255
|
+
*out++ = *from++;
|
|
256
|
+
*out++ = *from++;
|
|
274
257
|
len -= 3;
|
|
275
258
|
} while (len > 2);
|
|
276
259
|
if (len) {
|
|
277
|
-
|
|
260
|
+
*out++ = *from++;
|
|
278
261
|
if (len > 1)
|
|
279
|
-
|
|
262
|
+
*out++ = *from++;
|
|
280
263
|
}
|
|
281
264
|
}
|
|
282
265
|
}
|
|
283
266
|
else if ((op & 64) == 0) { /* 2nd level distance code */
|
|
284
|
-
here = dcode
|
|
267
|
+
here = dcode + here->val + (hold & ((1U << op) - 1));
|
|
285
268
|
goto dodist;
|
|
286
269
|
}
|
|
287
270
|
else {
|
|
@@ -291,7 +274,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
291
274
|
}
|
|
292
275
|
}
|
|
293
276
|
else if ((op & 64) == 0) { /* 2nd level length code */
|
|
294
|
-
here = lcode
|
|
277
|
+
here = lcode + here->val + (hold & ((1U << op) - 1));
|
|
295
278
|
goto dolen;
|
|
296
279
|
}
|
|
297
280
|
else if (op & 32) { /* end-of-block */
|
|
@@ -313,8 +296,8 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
|
|
|
313
296
|
hold &= (1U << bits) - 1;
|
|
314
297
|
|
|
315
298
|
/* update state and return */
|
|
316
|
-
strm->next_in = in
|
|
317
|
-
strm->next_out = out
|
|
299
|
+
strm->next_in = in;
|
|
300
|
+
strm->next_out = out;
|
|
318
301
|
strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
|
|
319
302
|
strm->avail_out = (unsigned)(out < end ?
|
|
320
303
|
257 + (end - out) : 257 - (out - end));
|
|
File without changes
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* Generated automatically by makefixed().
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
/* WARNING: this file should *not* be used by applications.
|
|
6
|
-
is part of the implementation of
|
|
7
|
-
|
|
5
|
+
/* WARNING: this file should *not* be used by applications.
|
|
6
|
+
It is part of the implementation of this library and is
|
|
7
|
+
subject to change. Applications should only use zlib.h.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
static const code lenfix[512] = {
|