cvs commit: src/lib/libarchive Makefile archive.h.in archive_entry.c archive_entry.h archive_entry_link_resolver.c archive_entry_private.h archive_entry_strmode.c archive_platform.h archive_read_support_compression_none.c archive_read_support_format_all.c archive_read_support_format_ar.c ...

Tim Kientzle kientzle at FreeBSD.org
Sun Aug 10 21:19:19 UTC 2008


kientzle    2008-08-10 21:18:59 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    lib/libarchive       Makefile archive.h.in archive_entry.c 
                         archive_entry.h archive_entry_private.h 
                         archive_platform.h 
                         archive_read_support_compression_none.c 
                         archive_read_support_format_all.c 
                         archive_read_support_format_ar.c 
                         archive_read_support_format_cpio.c 
                         archive_read_support_format_iso9660.c 
                         archive_read_support_format_tar.c 
                         archive_read_support_format_zip.c 
                         archive_util.c archive_write_disk.c 
                         archive_write_set_compression_none.c 
                         archive_write_set_format_cpio.c 
                         archive_write_set_format_pax.c 
                         archive_write_set_format_ustar.c 
                         filter_fork.c libarchive-formats.5 
                         libarchive_internals.3 
  Added files:           (Branch: RELENG_6)
    lib/libarchive       archive_entry_link_resolver.c 
                         archive_entry_strmode.c 
                         archive_read_support_format_mtree.c 
                         cpio.5 
    lib/libarchive/test  Makefile README main.c read_open_memory.c 
                         test.h test_acl_basic.c test_acl_pax.c 
                         test_archive_api_feature.c test_bad_fd.c 
                         test_compat_gtar.c 
                         test_compat_gtar_1.tgz.uu 
                         test_compat_zip.c 
                         test_compat_zip_1.zip.uu 
                         test_empty_write.c test_entry.c 
                         test_entry_strmode.c 
                         test_read_compress_program.c 
                         test_read_data_large.c 
                         test_read_extract.c test_read_format_ar.c 
                         test_read_format_cpio_bin.c 
                         test_read_format_cpio_bin_Z.c 
                         test_read_format_cpio_bin_bz2.c 
                         test_read_format_cpio_bin_gz.c 
                         test_read_format_cpio_odc.c 
                         test_read_format_cpio_svr4_gzip.c 
                         test_read_format_cpio_svr4c_Z.c 
                         test_read_format_empty.c 
                         test_read_format_gtar_gz.c 
                         test_read_format_gtar_sparse.c 
                         test_read_format_gtar_sparse_1_13.tgz.uu 
                         test_read_format_gtar_sparse_1_17.tgz.uu 
                         test_read_format_gtar_sparse_1_17_posix00.tgz.uu 
                         test_read_format_gtar_sparse_1_17_posix01.tgz.uu 
                         test_read_format_gtar_sparse_1_17_posix10.tgz.uu 
                         test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu 
                         test_read_format_iso_gz.c 
                         test_read_format_isorr_bz2.c 
                         test_read_format_mtree.c 
                         test_read_format_pax_bz2.c 
                         test_read_format_tar.c 
                         test_read_format_tbz.c 
                         test_read_format_tgz.c 
                         test_read_format_tz.c 
                         test_read_format_zip.c test_read_large.c 
                         test_read_pax_truncated.c 
                         test_read_position.c 
                         test_read_truncated.c 
                         test_tar_filenames.c test_tar_large.c 
                         test_write_compress_program.c 
                         test_write_disk.c test_write_disk_perms.c 
                         test_write_disk_secure.c 
                         test_write_format_ar.c 
                         test_write_format_cpio.c 
                         test_write_format_cpio_empty.c 
                         test_write_format_cpio_newc.c 
                         test_write_format_cpio_odc.c 
                         test_write_format_shar_empty.c 
                         test_write_format_tar.c 
                         test_write_format_tar_empty.c 
                         test_write_open_memory.c 
  Log:
  SVN rev 181543 on 2008-08-10 21:18:59Z by kientzle
  
  MFC libarchive 2.4.10, including test harness.
  
  Revision   Changes    Path
  1.36.2.11  +11 -15    src/lib/libarchive/Makefile
  1.23.2.8   +25 -33    src/lib/libarchive/archive.h.in
  1.29.2.5   +26 -5     src/lib/libarchive/archive_entry.c
  1.16.2.5   +30 -5     src/lib/libarchive/archive_entry.h
  1.3.2.1    +222 -0    src/lib/libarchive/archive_entry_link_resolver.c (new)
  1.1.2.2    +2 -0      src/lib/libarchive/archive_entry_private.h
  1.4.2.1    +83 -0     src/lib/libarchive/archive_entry_strmode.c (new)
  1.16.2.4   +3 -2      src/lib/libarchive/archive_platform.h
  1.6.2.8    +55 -50    src/lib/libarchive/archive_read_support_compression_none.c
  1.6.2.4    +1 -0      src/lib/libarchive/archive_read_support_format_all.c
  1.6.2.2    +1 -7      src/lib/libarchive/archive_read_support_format_ar.c
  1.13.2.6   +175 -7    src/lib/libarchive/archive_read_support_format_cpio.c
  1.8.2.4    +17 -11    src/lib/libarchive/archive_read_support_format_iso9660.c
  1.9.2.1    +705 -0    src/lib/libarchive/archive_read_support_format_mtree.c (new)
  1.32.2.10  +38 -37    src/lib/libarchive/archive_read_support_format_tar.c
  1.5.2.7    +13 -12    src/lib/libarchive/archive_read_support_format_zip.c
  1.9.2.4    +1 -1      src/lib/libarchive/archive_util.c
  1.12.2.5   +6 -0      src/lib/libarchive/archive_write_disk.c
  1.8.2.5    +30 -13    src/lib/libarchive/archive_write_set_compression_none.c
  1.5.2.5    +1 -0      src/lib/libarchive/archive_write_set_format_cpio.c
  1.27.2.4   +8 -5      src/lib/libarchive/archive_write_set_format_pax.c
  1.12.2.4   +8 -5      src/lib/libarchive/archive_write_set_format_ustar.c
  1.2.2.1    +325 -0    src/lib/libarchive/cpio.5 (new)
  1.1.2.2    +2 -0      src/lib/libarchive/filter_fork.c
  1.7.2.4    +23 -9     src/lib/libarchive/libarchive-formats.5
  1.1.2.2    +6 -16     src/lib/libarchive/libarchive_internals.3
  1.23.2.1   +129 -0    src/lib/libarchive/test/Makefile (new)
  1.3.2.1    +63 -0     src/lib/libarchive/test/README (new)
  1.13.2.1   +713 -0    src/lib/libarchive/test/main.c (new)
  1.2.2.1    +148 -0    src/lib/libarchive/test/read_open_memory.c (new)
  1.10.2.1   +163 -0    src/lib/libarchive/test/test.h (new)
  1.4.6.1    +230 -0    src/lib/libarchive/test/test_acl_basic.c (new)
  1.5.2.1    +521 -0    src/lib/libarchive/test/test_acl_pax.c (new)
  1.5.2.1    +51 -0     src/lib/libarchive/test/test_archive_api_feature.c (new)
  1.1.6.1    +41 -0     src/lib/libarchive/test/test_bad_fd.c (new)
  1.2.2.1    +110 -0    src/lib/libarchive/test/test_compat_gtar.c (new)
  1.2.2.1    +9 -0      src/lib/libarchive/test/test_compat_gtar_1.tgz.uu (new)
  1.2.2.1    +69 -0     src/lib/libarchive/test/test_compat_zip.c (new)
  1.2.2.1    +14 -0     src/lib/libarchive/test/test_compat_zip_1.zip.uu (new)
  1.2.2.1    +118 -0    src/lib/libarchive/test/test_empty_write.c (new)
  1.6.2.1    +675 -0    src/lib/libarchive/test/test_entry.c (new)
  1.1.4.1    +48 -0     src/lib/libarchive/test/test_entry_strmode.c (new)
  1.2.6.1    +59 -0     src/lib/libarchive/test/test_read_compress_program.c (new)
  1.3.6.1    +117 -0    src/lib/libarchive/test/test_read_data_large.c (new)
  1.4.2.1    +184 -0    src/lib/libarchive/test/test_read_extract.c (new)
  1.5.2.1    +121 -0    src/lib/libarchive/test/test_read_format_ar.c (new)
  1.1.6.1    +64 -0     src/lib/libarchive/test/test_read_format_cpio_bin.c (new)
  1.1.6.1    +53 -0     src/lib/libarchive/test/test_read_format_cpio_bin_Z.c (new)
  1.1.6.1    +54 -0     src/lib/libarchive/test/test_read_format_cpio_bin_bz2.c (new)
  1.1.6.1    +53 -0     src/lib/libarchive/test/test_read_format_cpio_bin_gz.c (new)
  1.2.2.1    +68 -0     src/lib/libarchive/test/test_read_format_cpio_odc.c (new)
  1.1.6.1    +54 -0     src/lib/libarchive/test/test_read_format_cpio_svr4_gzip.c (new)
  1.1.6.1    +56 -0     src/lib/libarchive/test/test_read_format_cpio_svr4c_Z.c (new)
  1.1.6.1    +49 -0     src/lib/libarchive/test/test_read_format_empty.c (new)
  1.1.6.1    +54 -0     src/lib/libarchive/test/test_read_format_gtar_gz.c (new)
  1.8.2.1    +322 -0    src/lib/libarchive/test/test_read_format_gtar_sparse.c (new)
  1.2.2.1    +26 -0     src/lib/libarchive/test/test_read_format_gtar_sparse_1_13.tgz.uu (new)
  1.2.2.1    +26 -0     src/lib/libarchive/test/test_read_format_gtar_sparse_1_17.tgz.uu (new)
  1.2.2.1    +29 -0     src/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix00.tgz.uu (new)
  1.2.2.1    +27 -0     src/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix01.tgz.uu (new)
  1.2.2.1    +27 -0     src/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10.tgz.uu (new)
  1.2.2.1    +1369 -0   src/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu (new)
  1.1.6.1    +73 -0     src/lib/libarchive/test/test_read_format_iso_gz.c (new)
  1.4.2.1    +183 -0    src/lib/libarchive/test/test_read_format_isorr_bz2.c (new)
  1.2.2.1    +113 -0    src/lib/libarchive/test/test_read_format_mtree.c (new)
  1.1.6.1    +62 -0     src/lib/libarchive/test/test_read_format_pax_bz2.c (new)
  1.3.2.1    +432 -0    src/lib/libarchive/test/test_read_format_tar.c (new)
  1.1.6.1    +55 -0     src/lib/libarchive/test/test_read_format_tbz.c (new)
  1.1.6.1    +54 -0     src/lib/libarchive/test/test_read_format_tgz.c (new)
  1.1.6.1    +56 -0     src/lib/libarchive/test/test_read_format_tz.c (new)
  1.6.2.1    +88 -0     src/lib/libarchive/test/test_read_format_zip.c (new)
  1.3.6.1    +94 -0     src/lib/libarchive/test/test_read_large.c (new)
  1.2.2.1    +281 -0    src/lib/libarchive/test/test_read_pax_truncated.c (new)
  1.3.6.1    +75 -0     src/lib/libarchive/test/test_read_position.c (new)
  1.3.6.1    +149 -0    src/lib/libarchive/test/test_read_truncated.c (new)
  1.9.2.1    +176 -0    src/lib/libarchive/test/test_tar_filenames.c (new)
  1.3.2.1    +309 -0    src/lib/libarchive/test/test_tar_large.c (new)
  1.2.6.1    +101 -0    src/lib/libarchive/test/test_write_compress_program.c (new)
  1.9.2.1    +175 -0    src/lib/libarchive/test/test_write_disk.c (new)
  1.9.2.1    +455 -0    src/lib/libarchive/test/test_write_disk_perms.c (new)
  1.4.2.1    +147 -0    src/lib/libarchive/test/test_write_disk_secure.c (new)
  1.7.2.1    +212 -0    src/lib/libarchive/test/test_write_format_ar.c (new)
  1.4.2.1    +203 -0    src/lib/libarchive/test/test_write_format_cpio.c (new)
  1.2.6.1    +75 -0     src/lib/libarchive/test/test_write_format_cpio_empty.c (new)
  1.2.4.1    +172 -0    src/lib/libarchive/test/test_write_format_cpio_newc.c (new)
  1.1.4.1    +224 -0    src/lib/libarchive/test/test_write_format_cpio_odc.c (new)
  1.2.6.1    +58 -0     src/lib/libarchive/test/test_write_format_shar_empty.c (new)
  1.3.6.1    +114 -0    src/lib/libarchive/test/test_write_format_tar.c (new)
  1.3.6.1    +92 -0     src/lib/libarchive/test/test_write_format_tar_empty.c (new)
  1.3.6.1    +76 -0     src/lib/libarchive/test/test_write_open_memory.c (new)


More information about the cvs-src mailing list