libarchive-static 1.0.5 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- 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_internal.h +0 -1
- 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 +244 -137
- 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
|
/* deflate.h -- internal compression state
|
2
|
-
* Copyright (C) 1995-
|
2
|
+
* Copyright (C) 1995-2018 Jean-loup Gailly
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
4
|
*/
|
5
5
|
|
@@ -48,13 +48,19 @@
|
|
48
48
|
#define MAX_BITS 15
|
49
49
|
/* All codes must not exceed MAX_BITS bits */
|
50
50
|
|
51
|
-
#define
|
52
|
-
|
53
|
-
|
54
|
-
#define
|
55
|
-
#
|
56
|
-
#define BUSY_STATE
|
57
|
-
#
|
51
|
+
#define Buf_size 16
|
52
|
+
/* size of bit buffer in bi_buf */
|
53
|
+
|
54
|
+
#define INIT_STATE 42 /* zlib header -> BUSY_STATE */
|
55
|
+
#ifdef GZIP
|
56
|
+
# define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */
|
57
|
+
#endif
|
58
|
+
#define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */
|
59
|
+
#define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */
|
60
|
+
#define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */
|
61
|
+
#define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */
|
62
|
+
#define BUSY_STATE 113 /* deflate -> FINISH_STATE */
|
63
|
+
#define FINISH_STATE 666 /* stream complete */
|
58
64
|
/* Stream status */
|
59
65
|
|
60
66
|
|
@@ -80,7 +86,7 @@ typedef struct static_tree_desc_s static_tree_desc;
|
|
80
86
|
typedef struct tree_desc_s {
|
81
87
|
ct_data *dyn_tree; /* the dynamic tree */
|
82
88
|
int max_code; /* largest code with non zero frequency */
|
83
|
-
static_tree_desc *stat_desc;
|
89
|
+
const static_tree_desc *stat_desc; /* the corresponding static tree */
|
84
90
|
} FAR tree_desc;
|
85
91
|
|
86
92
|
typedef ush Pos;
|
@@ -97,11 +103,11 @@ typedef struct internal_state {
|
|
97
103
|
Bytef *pending_buf; /* output still pending */
|
98
104
|
ulg pending_buf_size; /* size of pending_buf */
|
99
105
|
Bytef *pending_out; /* next pending byte to output to the stream */
|
100
|
-
|
106
|
+
ulg pending; /* nb of bytes in the pending buffer */
|
101
107
|
int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
|
102
108
|
gz_headerp gzhead; /* gzip header information to write */
|
103
|
-
|
104
|
-
Byte method; /*
|
109
|
+
ulg gzindex; /* where in extra, name, or comment */
|
110
|
+
Byte method; /* can only be DEFLATED */
|
105
111
|
int last_flush; /* value of flush param for previous deflate call */
|
106
112
|
|
107
113
|
/* used by deflate.c: */
|
@@ -188,7 +194,7 @@ typedef struct internal_state {
|
|
188
194
|
int nice_match; /* Stop searching when current match exceeds this */
|
189
195
|
|
190
196
|
/* used by trees.c: */
|
191
|
-
/* Didn't use ct_data typedef below to
|
197
|
+
/* Didn't use ct_data typedef below to suppress compiler warning */
|
192
198
|
struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
|
193
199
|
struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
|
194
200
|
struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
|
@@ -211,7 +217,7 @@ typedef struct internal_state {
|
|
211
217
|
/* Depth of each subtree used as tie breaker for trees of equal frequency
|
212
218
|
*/
|
213
219
|
|
214
|
-
uchf *
|
220
|
+
uchf *sym_buf; /* buffer for distances and literals/lengths */
|
215
221
|
|
216
222
|
uInt lit_bufsize;
|
217
223
|
/* Size of match buffer for literals/lengths. There are 4 reasons for
|
@@ -233,20 +239,15 @@ typedef struct internal_state {
|
|
233
239
|
* - I can't count above 4
|
234
240
|
*/
|
235
241
|
|
236
|
-
uInt
|
237
|
-
|
238
|
-
ushf *d_buf;
|
239
|
-
/* Buffer for distances. To simplify the code, d_buf and l_buf have
|
240
|
-
* the same number of elements. To use different lengths, an extra flag
|
241
|
-
* array would be necessary.
|
242
|
-
*/
|
242
|
+
uInt sym_next; /* running index in sym_buf */
|
243
|
+
uInt sym_end; /* symbol table full when sym_next reaches this */
|
243
244
|
|
244
245
|
ulg opt_len; /* bit length of current block with optimal trees */
|
245
246
|
ulg static_len; /* bit length of current block with static trees */
|
246
247
|
uInt matches; /* number of string matches in current block */
|
247
|
-
|
248
|
+
uInt insert; /* bytes at end of window left to insert */
|
248
249
|
|
249
|
-
#ifdef
|
250
|
+
#ifdef ZLIB_DEBUG
|
250
251
|
ulg compressed_len; /* total bit length of compressed file mod 2^32 */
|
251
252
|
ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
|
252
253
|
#endif
|
@@ -272,7 +273,7 @@ typedef struct internal_state {
|
|
272
273
|
/* Output a byte on the stream.
|
273
274
|
* IN assertion: there is enough room in pending_buf.
|
274
275
|
*/
|
275
|
-
#define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
|
276
|
+
#define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
|
276
277
|
|
277
278
|
|
278
279
|
#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
|
@@ -294,6 +295,7 @@ void ZLIB_INTERNAL _tr_init OF((deflate_state *s));
|
|
294
295
|
int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
|
295
296
|
void ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf,
|
296
297
|
ulg stored_len, int last));
|
298
|
+
void ZLIB_INTERNAL _tr_flush_bits OF((deflate_state *s));
|
297
299
|
void ZLIB_INTERNAL _tr_align OF((deflate_state *s));
|
298
300
|
void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
|
299
301
|
ulg stored_len, int last));
|
@@ -305,7 +307,7 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
|
|
305
307
|
* used.
|
306
308
|
*/
|
307
309
|
|
308
|
-
#ifndef
|
310
|
+
#ifndef ZLIB_DEBUG
|
309
311
|
/* Inline versions of _tr_tally for speed: */
|
310
312
|
|
311
313
|
#if defined(GEN_TREES_H) || !defined(STDC)
|
@@ -318,20 +320,22 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
|
|
318
320
|
|
319
321
|
# define _tr_tally_lit(s, c, flush) \
|
320
322
|
{ uch cc = (c); \
|
321
|
-
s->
|
322
|
-
s->
|
323
|
+
s->sym_buf[s->sym_next++] = 0; \
|
324
|
+
s->sym_buf[s->sym_next++] = 0; \
|
325
|
+
s->sym_buf[s->sym_next++] = cc; \
|
323
326
|
s->dyn_ltree[cc].Freq++; \
|
324
|
-
flush = (s->
|
327
|
+
flush = (s->sym_next == s->sym_end); \
|
325
328
|
}
|
326
329
|
# define _tr_tally_dist(s, distance, length, flush) \
|
327
|
-
{ uch len = (length); \
|
328
|
-
ush dist = (distance); \
|
329
|
-
s->
|
330
|
-
s->
|
330
|
+
{ uch len = (uch)(length); \
|
331
|
+
ush dist = (ush)(distance); \
|
332
|
+
s->sym_buf[s->sym_next++] = (uch)dist; \
|
333
|
+
s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
|
334
|
+
s->sym_buf[s->sym_next++] = len; \
|
331
335
|
dist--; \
|
332
336
|
s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
|
333
337
|
s->dyn_dtree[d_code(dist)].Freq++; \
|
334
|
-
flush = (s->
|
338
|
+
flush = (s->sym_next == s->sym_end); \
|
335
339
|
}
|
336
340
|
#else
|
337
341
|
# define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
|
File without changes
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* gzguts.h -- zlib internal header definitions for gz* operations
|
2
|
-
* Copyright (C) 2004
|
2
|
+
* Copyright (C) 2004-2019 Mark Adler
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
4
|
*/
|
5
5
|
|
@@ -12,7 +12,7 @@
|
|
12
12
|
# endif
|
13
13
|
#endif
|
14
14
|
|
15
|
-
#
|
15
|
+
#ifdef HAVE_HIDDEN
|
16
16
|
# define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
|
17
17
|
#else
|
18
18
|
# define ZLIB_INTERNAL
|
@@ -25,21 +25,97 @@
|
|
25
25
|
# include <stdlib.h>
|
26
26
|
# include <limits.h>
|
27
27
|
#endif
|
28
|
+
|
29
|
+
#ifndef _POSIX_SOURCE
|
30
|
+
# define _POSIX_SOURCE
|
31
|
+
#endif
|
28
32
|
#include <fcntl.h>
|
29
33
|
|
34
|
+
#ifdef _WIN32
|
35
|
+
# include <stddef.h>
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#if defined(__TURBOC__) || defined(_MSC_VER) || defined(_WIN32)
|
39
|
+
# include <io.h>
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#if defined(_WIN32)
|
43
|
+
# define WIDECHAR
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#ifdef WINAPI_FAMILY
|
47
|
+
# define open _open
|
48
|
+
# define read _read
|
49
|
+
# define write _write
|
50
|
+
# define close _close
|
51
|
+
#endif
|
52
|
+
|
30
53
|
#ifdef NO_DEFLATE /* for compatibility with old definition */
|
31
54
|
# define NO_GZCOMPRESS
|
32
55
|
#endif
|
33
56
|
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
57
|
+
#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
|
58
|
+
# ifndef HAVE_VSNPRINTF
|
59
|
+
# define HAVE_VSNPRINTF
|
60
|
+
# endif
|
61
|
+
#endif
|
62
|
+
|
63
|
+
#if defined(__CYGWIN__)
|
64
|
+
# ifndef HAVE_VSNPRINTF
|
65
|
+
# define HAVE_VSNPRINTF
|
66
|
+
# endif
|
67
|
+
#endif
|
68
|
+
|
69
|
+
#if defined(MSDOS) && defined(__BORLANDC__) && (BORLANDC > 0x410)
|
70
|
+
# ifndef HAVE_VSNPRINTF
|
71
|
+
# define HAVE_VSNPRINTF
|
72
|
+
# endif
|
73
|
+
#endif
|
74
|
+
|
75
|
+
#ifndef HAVE_VSNPRINTF
|
76
|
+
# ifdef MSDOS
|
77
|
+
/* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
|
78
|
+
but for now we just assume it doesn't. */
|
79
|
+
# define NO_vsnprintf
|
80
|
+
# endif
|
81
|
+
# ifdef __TURBOC__
|
82
|
+
# define NO_vsnprintf
|
83
|
+
# endif
|
84
|
+
# ifdef WIN32
|
85
|
+
/* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
|
86
|
+
# if !defined(vsnprintf) && !defined(NO_vsnprintf)
|
87
|
+
# if !defined(_MSC_VER) || ( defined(_MSC_VER) && _MSC_VER < 1500 )
|
88
|
+
# define vsnprintf _vsnprintf
|
89
|
+
# endif
|
90
|
+
# endif
|
91
|
+
# endif
|
92
|
+
# ifdef __SASC
|
93
|
+
# define NO_vsnprintf
|
94
|
+
# endif
|
95
|
+
# ifdef VMS
|
96
|
+
# define NO_vsnprintf
|
97
|
+
# endif
|
98
|
+
# ifdef __OS400__
|
99
|
+
# define NO_vsnprintf
|
100
|
+
# endif
|
101
|
+
# ifdef __MVS__
|
102
|
+
# define NO_vsnprintf
|
103
|
+
# endif
|
104
|
+
#endif
|
105
|
+
|
106
|
+
/* unlike snprintf (which is required in C99), _snprintf does not guarantee
|
107
|
+
null termination of the result -- however this is only used in gzlib.c where
|
108
|
+
the result is assured to fit in the space provided */
|
109
|
+
#if defined(_MSC_VER) && _MSC_VER < 1900
|
110
|
+
# define snprintf _snprintf
|
37
111
|
#endif
|
38
112
|
|
39
113
|
#ifndef local
|
40
114
|
# define local static
|
41
115
|
#endif
|
42
|
-
/*
|
116
|
+
/* since "static" is used to mean two completely different things in C, we
|
117
|
+
define "local" for the non-static meaning of "static", for readability
|
118
|
+
(compile with -Dlocal if your debugger can't find static symbols) */
|
43
119
|
|
44
120
|
/* gz* functions always use library allocation functions */
|
45
121
|
#ifndef STDC
|
@@ -52,7 +128,7 @@
|
|
52
128
|
# include <windows.h>
|
53
129
|
# define zstrerror() gz_strwinerror((DWORD)GetLastError())
|
54
130
|
#else
|
55
|
-
#
|
131
|
+
# ifndef NO_STRERROR
|
56
132
|
# include <errno.h>
|
57
133
|
# define zstrerror() strerror(errno)
|
58
134
|
# else
|
@@ -68,7 +144,15 @@
|
|
68
144
|
ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
|
69
145
|
#endif
|
70
146
|
|
71
|
-
/* default
|
147
|
+
/* default memLevel */
|
148
|
+
#if MAX_MEM_LEVEL >= 8
|
149
|
+
# define DEF_MEM_LEVEL 8
|
150
|
+
#else
|
151
|
+
# define DEF_MEM_LEVEL MAX_MEM_LEVEL
|
152
|
+
#endif
|
153
|
+
|
154
|
+
/* default i/o buffer size -- double this for output when reading (this and
|
155
|
+
twice this must be able to fit in an unsigned type) */
|
72
156
|
#define GZBUFSIZE 8192
|
73
157
|
|
74
158
|
/* gzip modes, also provide a little integrity check on the passed structure */
|
@@ -84,26 +168,29 @@
|
|
84
168
|
|
85
169
|
/* internal gzip file state data structure */
|
86
170
|
typedef struct {
|
171
|
+
/* exposed contents for gzgetc() macro */
|
172
|
+
struct gzFile_s x; /* "x" for exposed */
|
173
|
+
/* x.have: number of bytes available at x.next */
|
174
|
+
/* x.next: next output data to deliver or write */
|
175
|
+
/* x.pos: current position in uncompressed data */
|
87
176
|
/* used for both reading and writing */
|
88
177
|
int mode; /* see gzip modes above */
|
89
178
|
int fd; /* file descriptor */
|
90
179
|
char *path; /* path or fd for error messages */
|
91
|
-
z_off64_t pos; /* current position in uncompressed data */
|
92
180
|
unsigned size; /* buffer size, zero if not allocated yet */
|
93
181
|
unsigned want; /* requested buffer size, default is GZBUFSIZE */
|
94
|
-
unsigned char *in; /* input buffer */
|
182
|
+
unsigned char *in; /* input buffer (double-sized when writing) */
|
95
183
|
unsigned char *out; /* output buffer (double-sized when reading) */
|
96
|
-
|
184
|
+
int direct; /* 0 if processing gzip, 1 if transparent */
|
97
185
|
/* just for reading */
|
98
|
-
unsigned have; /* amount of output data unused at next */
|
99
|
-
int eof; /* true if end of input file reached */
|
100
|
-
z_off64_t start; /* where the gzip data started, for rewinding */
|
101
|
-
z_off64_t raw; /* where the raw data started, for seeking */
|
102
186
|
int how; /* 0: get header, 1: copy, 2: decompress */
|
103
|
-
|
187
|
+
z_off64_t start; /* where the gzip data started, for rewinding */
|
188
|
+
int eof; /* true if end of input file reached */
|
189
|
+
int past; /* true if read requested past end */
|
104
190
|
/* just for writing */
|
105
191
|
int level; /* compression level */
|
106
192
|
int strategy; /* compression strategy */
|
193
|
+
int reset; /* true if a reset is pending after a Z_FINISH */
|
107
194
|
/* seek request */
|
108
195
|
z_off64_t skip; /* amount to skip (already rewound if backwards) */
|
109
196
|
int seek; /* true if seek request pending */
|