Hi, Collin Funk <collin.fu...@gmail.com> writes:
> I submitted these two patches a few months ago, but it seems they got > lost. It would also be nice to revisit a small patch I wrote a few months ago to ignore "LIBARCHIVE.creationtime" headers without annoying error spam [1]: diff --git a/src/xheader.c b/src/xheader.c index e2b124b8..d00b0c90 100644 --- a/src/xheader.c +++ b/src/xheader.c @@ -1761,6 +1761,9 @@ struct xhdr_tab const xhdr_tab[] = { { "GNU.volume.offset", volume_offset_coder, volume_offset_decoder, XHDR_PROTECTED | XHDR_GLOBAL, false }, + /* Unused. */ + { "LIBARCHIVE.creationtime", dummy_coder, dummy_decoder, 0, false }, + /* We get the SELinux value from filecon, so add a namespace for SELinux instead of storing it in SCHILY.xattr.* (which would be RAW). */ { "RHT.security.selinux", These warnings have caused some annoyance among Java projects [2] [3] [4]. I originally noticed that Eclipse packages have the header in their releases. Collin [1] https://lists.gnu.org/archive/html/bug-tar/2024-03/msg00020.html [2] https://bugs.eclipse.org/bugs/show_bug.cgi?id=582413 [3] https://github.com/apache/commons-compress/pull/254 [4] https://github.com/eclipse-tycho/tycho/issues/2586