Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/libarchive/dist Merge changes



details:   https://anonhg.NetBSD.org/src/rev/893eeb700bdd
branches:  trunk
changeset: 752222:893eeb700bdd
user:      joerg <joerg%NetBSD.org@localhost>
date:      Sat Feb 20 02:51:32 2010 +0000

description:
Merge changes

diffstat:

 external/bsd/libarchive/dist/cpio/err.c                                                       |   73 -
 external/bsd/libarchive/dist/cpio/matching.c                                                  |  259 ---
 external/bsd/libarchive/dist/cpio/matching.h                                                  |   40 -
 external/bsd/libarchive/dist/cpio/pathmatch.c                                                 |  250 ---
 external/bsd/libarchive/dist/cpio/pathmatch.h                                                 |   37 -
 external/bsd/libarchive/dist/cpio/test/test_option_B.c                                        |   54 -
 external/bsd/libarchive/dist/cpio/test/test_option_L.c                                        |   84 -
 external/bsd/libarchive/dist/cpio/test/test_option_ell.c                                      |   66 -
 external/bsd/libarchive/dist/libarchive/archive_read.3                                        |  123 +-
 external/bsd/libarchive/dist/libarchive/archive_read_disk.3                                   |   20 +-
 external/bsd/libarchive/dist/libarchive/archive_write.3                                       |   83 +-
 external/bsd/libarchive/dist/libarchive/archive_write_disk.3                                  |    6 +-
 external/bsd/libarchive/dist/libarchive/config_freebsd.h                                      |  120 -
 external/bsd/libarchive/dist/libarchive/config_windows.h                                      |  682 --------
 external/bsd/libarchive/dist/libarchive/test/test_compat_gtar_1.tgz.uu                        |    9 -
 external/bsd/libarchive/dist/libarchive/test/test_pax_filename_encoding.tar.gz.uu             |   10 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_gtar_sparse_1_13.tgz.uu         |   26 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_gtar_sparse_1_17.tgz.uu         |   26 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_gtar_sparse_1_17_posix00.tgz.uu |   29 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_gtar_sparse_1_17_posix01.tgz.uu |   27 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_gtar_sparse_1_17_posix10.tgz.uu |   27 -
 external/bsd/libarchive/dist/libarchive/test/test_read_format_isorr_bz2.iso.bz2.uu            |   22 -
 external/bsd/libarchive/dist/tar/getdate.y                                                    |  811 ----------
 external/bsd/libarchive/dist/tar/matching.c                                                   |  444 -----
 external/bsd/libarchive/dist/tar/siginfo.c                                                    |  147 -
 external/bsd/libarchive/dist/tar/test/test_option_T.c                                         |  142 -
 26 files changed, 201 insertions(+), 3416 deletions(-)

diffs (truncated from 3907 to 300 lines):

diff -r 3c505b0b7a18 -r 893eeb700bdd external/bsd/libarchive/dist/cpio/err.c
--- a/external/bsd/libarchive/dist/cpio/err.c   Sat Feb 20 02:48:21 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +0,0 @@
-/*-
- * Copyright (c) 2003-2007 Tim Kientzle
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer
- *    in this position and unchanged.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-
-#include "cpio_platform.h"
-__FBSDID("$FreeBSD$");
-
-#ifdef HAVE_STDARG_H
-#include <stdarg.h>
-#endif
-#include <stdio.h>
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
-
-#include "cpio.h"
-
-static void
-cpio_vwarnc(int code, const char *fmt, va_list ap)
-{
-       fprintf(stderr, "%s: ", cpio_progname);
-       vfprintf(stderr, fmt, ap);
-       if (code != 0)
-               fprintf(stderr, ": %s", strerror(code));
-       fprintf(stderr, "\n");
-}
-
-void
-cpio_warnc(int code, const char *fmt, ...)
-{
-       va_list ap;
-
-       va_start(ap, fmt);
-       cpio_vwarnc(code, fmt, ap);
-       va_end(ap);
-}
-
-void
-cpio_errc(int eval, int code, const char *fmt, ...)
-{
-       va_list ap;
-
-       va_start(ap, fmt);
-       cpio_vwarnc(code, fmt, ap);
-       va_end(ap);
-       exit(eval);
-}
diff -r 3c505b0b7a18 -r 893eeb700bdd external/bsd/libarchive/dist/cpio/matching.c
--- a/external/bsd/libarchive/dist/cpio/matching.c      Sat Feb 20 02:48:21 2010 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,259 +0,0 @@
-/*-
- * Copyright (c) 2003-2007 Tim Kientzle
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "cpio_platform.h"
-__FBSDID("$FreeBSD: src/usr.bin/cpio/matching.c,v 1.2 2008/06/21 02:20:20 kientzle Exp $");
-
-#ifdef HAVE_ERRNO_H
-#include <errno.h>
-#endif
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
-
-#include "matching.h"
-#include "pathmatch.h"
-
-struct match {
-       struct match     *next;
-       int               matches;
-       char              pattern[1];
-};
-
-struct matching {
-       struct match     *exclusions;
-       int               exclusions_count;
-       struct match     *inclusions;
-       int               inclusions_count;
-       int               inclusions_unmatched_count;
-};
-
-static void    add_pattern(struct match **list, const char *pattern);
-static void    initialize_matching(struct cpio *);
-static int     match_exclusion(struct match *, const char *pathname);
-static int     match_inclusion(struct match *, const char *pathname);
-
-/*
- * The matching logic here needs to be re-thought.  I started out to
- * try to mimic gtar's matching logic, but it's not entirely
- * consistent.  In particular 'tar -t' and 'tar -x' interpret patterns
- * on the command line as anchored, but --exclude doesn't.
- */
-
-/*
- * Utility functions to manage exclusion/inclusion patterns
- */
-
-int
-exclude(struct cpio *cpio, const char *pattern)
-{
-       struct matching *matching;
-
-       if (cpio->matching == NULL)
-               initialize_matching(cpio);
-       matching = cpio->matching;
-       add_pattern(&(matching->exclusions), pattern);
-       matching->exclusions_count++;
-       return (0);
-}
-
-#if 0
-int
-exclude_from_file(struct cpio *cpio, const char *pathname)
-{
-       return (process_lines(cpio, pathname, &exclude));
-}
-#endif
-
-int
-include(struct cpio *cpio, const char *pattern)
-{
-       struct matching *matching;
-
-       if (cpio->matching == NULL)
-               initialize_matching(cpio);
-       matching = cpio->matching;
-       add_pattern(&(matching->inclusions), pattern);
-       matching->inclusions_count++;
-       matching->inclusions_unmatched_count++;
-       return (0);
-}
-
-int
-include_from_file(struct cpio *cpio, const char *pathname)
-{
-       struct line_reader *lr;
-       const char *p;
-       int ret = 0;
-
-       lr = process_lines_init(pathname, '\n');
-       while ((p = process_lines_next(lr)) != NULL)
-               if (include(cpio, p) != 0)
-                       ret = -1;
-       process_lines_free(lr);
-       return (ret);
-}
-
-static void
-add_pattern(struct match **list, const char *pattern)
-{
-       struct match *match;
-
-       match = malloc(sizeof(*match) + strlen(pattern) + 1);
-       if (match == NULL)
-               cpio_errc(1, errno, "Out of memory");
-       if (pattern[0] == '/')
-               pattern++;
-       strcpy(match->pattern, pattern);
-       /* Both "foo/" and "foo" should match "foo/bar". */
-       if (match->pattern[strlen(match->pattern)-1] == '/')
-               match->pattern[strlen(match->pattern)-1] = '\0';
-       match->next = *list;
-       *list = match;
-       match->matches = 0;
-}
-
-
-int
-excluded(struct cpio *cpio, const char *pathname)
-{
-       struct matching *matching;
-       struct match *match;
-       struct match *matched;
-
-       matching = cpio->matching;
-       if (matching == NULL)
-               return (0);
-
-       /* Exclusions take priority */
-       for (match = matching->exclusions; match != NULL; match = match->next){
-               if (match_exclusion(match, pathname))
-                       return (1);
-       }
-
-       /* Then check for inclusions */
-       matched = NULL;
-       for (match = matching->inclusions; match != NULL; match = match->next){
-               if (match_inclusion(match, pathname)) {
-                       /*
-                        * If this pattern has never been matched,
-                        * then we're done.
-                        */
-                       if (match->matches == 0) {
-                               match->matches++;
-                               matching->inclusions_unmatched_count++;
-                               return (0);
-                       }
-                       /*
-                        * Otherwise, remember the match but keep checking
-                        * in case we can tick off an unmatched pattern.
-                        */
-                       matched = match;
-               }
-       }
-       /*
-        * We didn't find a pattern that had never been matched, but
-        * we did find a match, so count it and exit.
-        */
-       if (matched != NULL) {
-               matched->matches++;
-               return (0);
-       }
-
-       /* If there were inclusions, default is to exclude. */
-       if (matching->inclusions != NULL)
-           return (1);
-
-       /* No explicit inclusions, default is to match. */
-       return (0);
-}
-
-/*
- * This is a little odd, but it matches the default behavior of
- * gtar.  In particular, 'a*b' will match 'foo/a1111/222b/bar'
- *
- */
-int
-match_exclusion(struct match *match, const char *pathname)
-{
-       return (pathmatch(match->pattern,
-                   pathname,
-                   PATHMATCH_NO_ANCHOR_START | PATHMATCH_NO_ANCHOR_END));
-}
-
-/*
- * Again, mimic gtar:  inclusions are always anchored (have to match
- * the beginning of the path) even though exclusions are not anchored.
- */
-int
-match_inclusion(struct match *match, const char *pathname)
-{
-       return (pathmatch(match->pattern, pathname, 0));
-}
-
-void



Home | Main Index | Thread Index | Old Index