libarchive-static 1.0.6 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,391 +0,0 @@
|
|
1
|
-
/*-
|
2
|
-
* Copyright (c) 2009 Michihiro NAKAJIMA
|
3
|
-
* Copyright (c) 2003-2007 Tim Kientzle
|
4
|
-
* All rights reserved.
|
5
|
-
*
|
6
|
-
* Redistribution and use in source and binary forms, with or without
|
7
|
-
* modification, are permitted provided that the following conditions
|
8
|
-
* are met:
|
9
|
-
* 1. Redistributions of source code must retain the above copyright
|
10
|
-
* notice, this list of conditions and the following disclaimer.
|
11
|
-
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
-
* notice, this list of conditions and the following disclaimer in the
|
13
|
-
* documentation and/or other materials provided with the distribution.
|
14
|
-
*
|
15
|
-
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
16
|
-
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
17
|
-
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
18
|
-
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
19
|
-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
20
|
-
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
21
|
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
22
|
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
24
|
-
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
-
*/
|
26
|
-
|
27
|
-
#include "archive_platform.h"
|
28
|
-
__FBSDID("$FreeBSD: head/lib/libarchive/archive_util.c 201098 2009-12-28 02:58:14Z kientzle $");
|
29
|
-
|
30
|
-
#ifdef HAVE_SYS_TYPES_H
|
31
|
-
#include <sys/types.h>
|
32
|
-
#endif
|
33
|
-
#ifdef HAVE_STDLIB_H
|
34
|
-
#include <stdlib.h>
|
35
|
-
#endif
|
36
|
-
#ifdef HAVE_STRING_H
|
37
|
-
#include <string.h>
|
38
|
-
#endif
|
39
|
-
|
40
|
-
#include "archive.h"
|
41
|
-
#include "archive_private.h"
|
42
|
-
#include "archive_string.h"
|
43
|
-
|
44
|
-
#if ARCHIVE_VERSION_NUMBER < 3000000
|
45
|
-
/* These disappear in libarchive 3.0 */
|
46
|
-
/* Deprecated. */
|
47
|
-
int
|
48
|
-
archive_api_feature(void)
|
49
|
-
{
|
50
|
-
return (ARCHIVE_API_FEATURE);
|
51
|
-
}
|
52
|
-
|
53
|
-
/* Deprecated. */
|
54
|
-
int
|
55
|
-
archive_api_version(void)
|
56
|
-
{
|
57
|
-
return (ARCHIVE_API_VERSION);
|
58
|
-
}
|
59
|
-
|
60
|
-
/* Deprecated synonym for archive_version_number() */
|
61
|
-
int
|
62
|
-
archive_version_stamp(void)
|
63
|
-
{
|
64
|
-
return (archive_version_number());
|
65
|
-
}
|
66
|
-
|
67
|
-
/* Deprecated synonym for archive_version_string() */
|
68
|
-
const char *
|
69
|
-
archive_version(void)
|
70
|
-
{
|
71
|
-
return (archive_version_string());
|
72
|
-
}
|
73
|
-
#endif
|
74
|
-
|
75
|
-
int
|
76
|
-
archive_version_number(void)
|
77
|
-
{
|
78
|
-
return (ARCHIVE_VERSION_NUMBER);
|
79
|
-
}
|
80
|
-
|
81
|
-
const char *
|
82
|
-
archive_version_string(void)
|
83
|
-
{
|
84
|
-
return (ARCHIVE_VERSION_STRING);
|
85
|
-
}
|
86
|
-
|
87
|
-
int
|
88
|
-
archive_errno(struct archive *a)
|
89
|
-
{
|
90
|
-
return (a->archive_error_number);
|
91
|
-
}
|
92
|
-
|
93
|
-
const char *
|
94
|
-
archive_error_string(struct archive *a)
|
95
|
-
{
|
96
|
-
|
97
|
-
if (a->error != NULL && *a->error != '\0')
|
98
|
-
return (a->error);
|
99
|
-
else
|
100
|
-
return ("(Empty error message)");
|
101
|
-
}
|
102
|
-
|
103
|
-
int
|
104
|
-
archive_file_count(struct archive *a)
|
105
|
-
{
|
106
|
-
return (a->file_count);
|
107
|
-
}
|
108
|
-
|
109
|
-
int
|
110
|
-
archive_format(struct archive *a)
|
111
|
-
{
|
112
|
-
return (a->archive_format);
|
113
|
-
}
|
114
|
-
|
115
|
-
const char *
|
116
|
-
archive_format_name(struct archive *a)
|
117
|
-
{
|
118
|
-
return (a->archive_format_name);
|
119
|
-
}
|
120
|
-
|
121
|
-
|
122
|
-
int
|
123
|
-
archive_compression(struct archive *a)
|
124
|
-
{
|
125
|
-
return (a->compression_code);
|
126
|
-
}
|
127
|
-
|
128
|
-
const char *
|
129
|
-
archive_compression_name(struct archive *a)
|
130
|
-
{
|
131
|
-
return (a->compression_name);
|
132
|
-
}
|
133
|
-
|
134
|
-
|
135
|
-
/*
|
136
|
-
* Return a count of the number of compressed bytes processed.
|
137
|
-
*/
|
138
|
-
int64_t
|
139
|
-
archive_position_compressed(struct archive *a)
|
140
|
-
{
|
141
|
-
return (a->raw_position);
|
142
|
-
}
|
143
|
-
|
144
|
-
/*
|
145
|
-
* Return a count of the number of uncompressed bytes processed.
|
146
|
-
*/
|
147
|
-
int64_t
|
148
|
-
archive_position_uncompressed(struct archive *a)
|
149
|
-
{
|
150
|
-
return (a->file_position);
|
151
|
-
}
|
152
|
-
|
153
|
-
void
|
154
|
-
archive_clear_error(struct archive *a)
|
155
|
-
{
|
156
|
-
archive_string_empty(&a->error_string);
|
157
|
-
a->error = NULL;
|
158
|
-
}
|
159
|
-
|
160
|
-
void
|
161
|
-
archive_set_error(struct archive *a, int error_number, const char *fmt, ...)
|
162
|
-
{
|
163
|
-
va_list ap;
|
164
|
-
|
165
|
-
a->archive_error_number = error_number;
|
166
|
-
if (fmt == NULL) {
|
167
|
-
a->error = NULL;
|
168
|
-
return;
|
169
|
-
}
|
170
|
-
|
171
|
-
va_start(ap, fmt);
|
172
|
-
archive_string_vsprintf(&(a->error_string), fmt, ap);
|
173
|
-
va_end(ap);
|
174
|
-
a->error = a->error_string.s;
|
175
|
-
}
|
176
|
-
|
177
|
-
void
|
178
|
-
archive_copy_error(struct archive *dest, struct archive *src)
|
179
|
-
{
|
180
|
-
dest->archive_error_number = src->archive_error_number;
|
181
|
-
|
182
|
-
archive_string_copy(&dest->error_string, &src->error_string);
|
183
|
-
dest->error = dest->error_string.s;
|
184
|
-
}
|
185
|
-
|
186
|
-
void
|
187
|
-
__archive_errx(int retvalue, const char *msg)
|
188
|
-
{
|
189
|
-
static const char *msg1 = "Fatal Internal Error in libarchive: ";
|
190
|
-
size_t s;
|
191
|
-
|
192
|
-
s = write(2, msg1, strlen(msg1));
|
193
|
-
(void)s; /* UNUSED */
|
194
|
-
s = write(2, msg, strlen(msg));
|
195
|
-
(void)s; /* UNUSED */
|
196
|
-
s = write(2, "\n", 1);
|
197
|
-
(void)s; /* UNUSED */
|
198
|
-
exit(retvalue);
|
199
|
-
}
|
200
|
-
|
201
|
-
/*
|
202
|
-
* Parse option strings
|
203
|
-
* Detail of option format.
|
204
|
-
* - The option can accept:
|
205
|
-
* "opt-name", "!opt-name", "opt-name=value".
|
206
|
-
*
|
207
|
-
* - The option entries are separated by comma.
|
208
|
-
* e.g "compression=9,opt=XXX,opt-b=ZZZ"
|
209
|
-
*
|
210
|
-
* - The name of option string consist of '-' and alphabet
|
211
|
-
* but character '-' cannot be used for the first character.
|
212
|
-
* (Regular expression is [a-z][-a-z]+)
|
213
|
-
*
|
214
|
-
* - For a specfic format/filter, using the format name with ':'.
|
215
|
-
* e.g "zip:compression=9"
|
216
|
-
* (This "compression=9" option entry is for "zip" format only)
|
217
|
-
*
|
218
|
-
* If another entries follow it, those are not for
|
219
|
-
* the specfic format/filter.
|
220
|
-
* e.g handle "zip:compression=9,opt=XXX,opt-b=ZZZ"
|
221
|
-
* "zip" format/filter handler will get "compression=9"
|
222
|
-
* all format/filter handler will get "opt=XXX"
|
223
|
-
* all format/filter handler will get "opt-b=ZZZ"
|
224
|
-
*
|
225
|
-
* - Whitespace and tab are bypassed.
|
226
|
-
*
|
227
|
-
*/
|
228
|
-
int
|
229
|
-
__archive_parse_options(const char *p, const char *fn, int keysize, char *key,
|
230
|
-
int valsize, char *val)
|
231
|
-
{
|
232
|
-
const char *p_org;
|
233
|
-
int apply;
|
234
|
-
int kidx, vidx;
|
235
|
-
int negative;
|
236
|
-
enum {
|
237
|
-
/* Requested for initialization. */
|
238
|
-
INIT,
|
239
|
-
/* Finding format/filter-name and option-name. */
|
240
|
-
F_BOTH,
|
241
|
-
/* Finding option-name only.
|
242
|
-
* (already detected format/filter-name) */
|
243
|
-
F_NAME,
|
244
|
-
/* Getting option-value. */
|
245
|
-
G_VALUE,
|
246
|
-
} state;
|
247
|
-
|
248
|
-
p_org = p;
|
249
|
-
state = INIT;
|
250
|
-
kidx = vidx = negative = 0;
|
251
|
-
apply = 1;
|
252
|
-
while (*p) {
|
253
|
-
switch (state) {
|
254
|
-
case INIT:
|
255
|
-
kidx = vidx = 0;
|
256
|
-
negative = 0;
|
257
|
-
apply = 1;
|
258
|
-
state = F_BOTH;
|
259
|
-
break;
|
260
|
-
case F_BOTH:
|
261
|
-
case F_NAME:
|
262
|
-
if ((*p >= 'a' && *p <= 'z') ||
|
263
|
-
(*p >= '0' && *p <= '9') || *p == '-') {
|
264
|
-
if (kidx == 0 && !(*p >= 'a' && *p <= 'z'))
|
265
|
-
/* Illegal sequence. */
|
266
|
-
return (-1);
|
267
|
-
if (kidx >= keysize -1)
|
268
|
-
/* Too many characters. */
|
269
|
-
return (-1);
|
270
|
-
key[kidx++] = *p++;
|
271
|
-
} else if (*p == '!') {
|
272
|
-
if (kidx != 0)
|
273
|
-
/* Illegal sequence. */
|
274
|
-
return (-1);
|
275
|
-
negative = 1;
|
276
|
-
++p;
|
277
|
-
} else if (*p == ',') {
|
278
|
-
if (kidx == 0)
|
279
|
-
/* Illegal sequence. */
|
280
|
-
return (-1);
|
281
|
-
if (!negative)
|
282
|
-
val[vidx++] = '1';
|
283
|
-
/* We have got boolean option data. */
|
284
|
-
++p;
|
285
|
-
if (apply)
|
286
|
-
goto complete;
|
287
|
-
else
|
288
|
-
/* This option does not apply to the
|
289
|
-
* format which the fn variable
|
290
|
-
* indicate. */
|
291
|
-
state = INIT;
|
292
|
-
} else if (*p == ':') {
|
293
|
-
/* obuf data is format name */
|
294
|
-
if (state == F_NAME)
|
295
|
-
/* We already found it. */
|
296
|
-
return (-1);
|
297
|
-
if (kidx == 0)
|
298
|
-
/* Illegal sequence. */
|
299
|
-
return (-1);
|
300
|
-
if (negative)
|
301
|
-
/* We cannot accept "!format-name:". */
|
302
|
-
return (-1);
|
303
|
-
key[kidx] = '\0';
|
304
|
-
if (strcmp(fn, key) != 0)
|
305
|
-
/* This option does not apply to the
|
306
|
-
* format which the fn variable
|
307
|
-
* indicate. */
|
308
|
-
apply = 0;
|
309
|
-
kidx = 0;
|
310
|
-
++p;
|
311
|
-
state = F_NAME;
|
312
|
-
} else if (*p == '=') {
|
313
|
-
if (kidx == 0)
|
314
|
-
/* Illegal sequence. */
|
315
|
-
return (-1);
|
316
|
-
if (negative)
|
317
|
-
/* We cannot accept "!opt-name=value". */
|
318
|
-
return (-1);
|
319
|
-
++p;
|
320
|
-
state = G_VALUE;
|
321
|
-
} else if (*p == ' ') {
|
322
|
-
/* Pass the space character */
|
323
|
-
++p;
|
324
|
-
} else {
|
325
|
-
/* Illegal character. */
|
326
|
-
return (-1);
|
327
|
-
}
|
328
|
-
break;
|
329
|
-
case G_VALUE:
|
330
|
-
if (*p == ',') {
|
331
|
-
if (vidx == 0)
|
332
|
-
/* Illegal sequence. */
|
333
|
-
return (-1);
|
334
|
-
/* We have got option data. */
|
335
|
-
++p;
|
336
|
-
if (apply)
|
337
|
-
goto complete;
|
338
|
-
else
|
339
|
-
/* This option does not apply to the
|
340
|
-
* format which the fn variable
|
341
|
-
* indicate. */
|
342
|
-
state = INIT;
|
343
|
-
} else if (*p == ' ') {
|
344
|
-
/* Pass the space character */
|
345
|
-
++p;
|
346
|
-
} else {
|
347
|
-
if (vidx >= valsize -1)
|
348
|
-
/* Too many characters. */
|
349
|
-
return (-1);
|
350
|
-
val[vidx++] = *p++;
|
351
|
-
}
|
352
|
-
break;
|
353
|
-
}
|
354
|
-
}
|
355
|
-
|
356
|
-
switch (state) {
|
357
|
-
case F_BOTH:
|
358
|
-
case F_NAME:
|
359
|
-
if (kidx != 0) {
|
360
|
-
if (!negative)
|
361
|
-
val[vidx++] = '1';
|
362
|
-
/* We have got boolean option. */
|
363
|
-
if (apply)
|
364
|
-
/* This option apply to the format which the
|
365
|
-
* fn variable indicate. */
|
366
|
-
goto complete;
|
367
|
-
}
|
368
|
-
break;
|
369
|
-
case G_VALUE:
|
370
|
-
if (vidx == 0)
|
371
|
-
/* Illegal sequence. */
|
372
|
-
return (-1);
|
373
|
-
/* We have got option value. */
|
374
|
-
if (apply)
|
375
|
-
/* This option apply to the format which the fn
|
376
|
-
* variable indicate. */
|
377
|
-
goto complete;
|
378
|
-
break;
|
379
|
-
case INIT:/* nothing */
|
380
|
-
break;
|
381
|
-
}
|
382
|
-
|
383
|
-
/* End of Option string. */
|
384
|
-
return (0);
|
385
|
-
|
386
|
-
complete:
|
387
|
-
key[kidx] = '\0';
|
388
|
-
val[vidx] = '\0';
|
389
|
-
/* Return a size which we've consumed for detecting option */
|
390
|
-
return ((int)(p - p_org));
|
391
|
-
}
|