[Cmake-commits] CMake branch, next, updated. v2.8.2-568-g781e24c

Brad King brad.king at kitware.com
Fri Aug 27 09:23:26 EDT 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  781e24cf7aca961ba57d667ebed528dfdb72b656 (commit)
       via  e87b6bbddb2a7a7e3a2772645ee1d28531993cd5 (commit)
      from  27054ad2ea9ba26b3e1d8496044eae51a8c703da (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=781e24cf7aca961ba57d667ebed528dfdb72b656
commit 781e24cf7aca961ba57d667ebed528dfdb72b656
Merge: 27054ad e87b6bb
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 27 09:23:23 2010 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Aug 27 09:23:23 2010 -0400

    Merge topic 'libarchive-tar-headers' into next
    
    e87b6bb libarchive: Remove SCHILY dev,ino,nlink attributes (#11176)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e87b6bbddb2a7a7e3a2772645ee1d28531993cd5
commit e87b6bbddb2a7a7e3a2772645ee1d28531993cd5
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 27 09:15:29 2010 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Aug 27 09:15:29 2010 -0400

    libarchive: Remove SCHILY dev,ino,nlink attributes (#11176)
    
    At least one version of GNU tar (1.15.1 with Fedora patches) does not
    recognize these attributes and exits with error.  Do not generate them.
    Patch from upstream libarchive svn r2563.

diff --git a/Utilities/cmlibarchive/libarchive/archive_write_set_format_pax.c b/Utilities/cmlibarchive/libarchive/archive_write_set_format_pax.c
index c097108..ecd7871 100644
--- a/Utilities/cmlibarchive/libarchive/archive_write_set_format_pax.c
+++ b/Utilities/cmlibarchive/libarchive/archive_write_set_format_pax.c
@@ -813,16 +813,6 @@ archive_write_pax_header(struct archive_write *a,
             add_pax_attr_w(&(pax->pax_header),
                 "SCHILY.acl.default", wp);
 
-        /* Include star-compatible metadata info. */
-        /* Note: "SCHILY.dev{major,minor}" are NOT the
-         * major/minor portions of "SCHILY.dev". */
-        add_pax_attr_int(&(pax->pax_header), "SCHILY.dev",
-            archive_entry_dev(entry_main));
-        add_pax_attr_int(&(pax->pax_header), "SCHILY.ino",
-            archive_entry_ino64(entry_main));
-        add_pax_attr_int(&(pax->pax_header), "SCHILY.nlink",
-            archive_entry_nlink(entry_main));
-
         /* Store extended attributes */
         archive_write_pax_header_xattrs(pax, entry_original);
     }

-----------------------------------------------------------------------

Summary of changes:
 .../libarchive/archive_write_set_format_pax.c      |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list