X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/4a65fe72194786c578193b0c6f44efa852fb387b..5214a41bbae94607b196b199b483710e1babf292:/cvs-entries.diff diff --git a/cvs-entries.diff b/cvs-entries.diff index f0cb813..851f89b 100644 --- a/cvs-entries.diff +++ b/cvs-entries.diff @@ -2,18 +2,26 @@ This patch causes the --cvs-exclude option to prefix the names listed in each dir's CVS/Entries file as per-dir includes before the dir's list of excludes taken from the .cvsignore file. ---- orig/exclude.c 2006-01-28 00:16:01 -+++ exclude.c 2005-12-17 21:18:38 -@@ -221,6 +221,8 @@ static void add_rule(struct filter_list_ - if (!(lp = new_array(struct filter_list_struct, 1))) +To use this patch, run these commands for a successful build: + + patch -p1 head = lp->tail = NULL; + lp->head = lp->tail = lp->parent_dirscan_head = NULL; + if (mflags & MATCHFLG_CVS_IGNORE) + cp = "CVS"; if (asprintf(&lp->debug_type, " [per-dir %s]", cp) < 0) out_of_memory("add_rule"); - ret->u.mergelist = lp; -@@ -454,6 +456,14 @@ void *push_local_filters(const char *dir + rule->u.mergelist = lp; +@@ -526,6 +528,14 @@ void *push_local_filters(const char *dir, unsigned int dirlen) set_filter_dir(dir, dirlen); } @@ -27,16 +35,16 @@ of excludes taken from the .cvsignore file. + } if (strlcpy(dirbuf + dirbuf_len, ex->pattern, MAXPATHLEN - dirbuf_len) < MAXPATHLEN - dirbuf_len) { - parse_filter_file(lp, dirbuf, ex->match_flags, -@@ -970,6 +980,7 @@ void parse_filter_file(struct filter_lis + parse_filter_file(lp, dirbuf, ex, +@@ -1151,6 +1161,7 @@ void parse_filter_file(filter_rule_list *listp, const char *fname, const filter_ char line[BIGPATHBUFLEN]; char *eob = line + sizeof line - 1; - int word_split = mflags & MATCHFLG_WORD_SPLIT; + BOOL word_split = (template->rflags & FILTRULE_WORD_SPLIT) != 0; + int slash_parse = xflags & XFLG_CVS_ENTRIES ? 1 : 0; if (!fname || !*fname) return; -@@ -1016,6 +1027,24 @@ void parse_filter_file(struct filter_lis +@@ -1197,6 +1208,24 @@ void parse_filter_file(filter_rule_list *listp, const char *fname, const filter_ } break; } @@ -61,7 +69,7 @@ of excludes taken from the .cvsignore file. if (word_split && isspace(ch)) break; if (eol_nulls? !ch : (ch == '\n' || ch == '\r')) -@@ -1025,13 +1054,15 @@ void parse_filter_file(struct filter_lis +@@ -1206,13 +1235,14 @@ void parse_filter_file(filter_rule_list *listp, const char *fname, const filter_ else overflow = 1; } @@ -73,24 +81,25 @@ of excludes taken from the .cvsignore file. *s = '\0'; /* Skip an empty token and (when line parsing) comments. */ - if (*line && (word_split || (*line != ';' && *line != '#'))) -+ if (*line && (word_split || slash_parse -+ || (*line != ';' && *line != '#'))) - parse_rule(listp, line, mflags, xflags); ++ if (*line && (word_split || slash_parse || (*line != ';' && *line != '#'))) + parse_filter_str(listp, line, template, xflags); if (ch == EOF) break; ---- orig/rsync.h 2006-01-30 20:39:09 -+++ rsync.h 2005-12-17 19:52:48 -@@ -116,6 +116,7 @@ - #define XFLG_OLD_PREFIXES (1<<1) - #define XFLG_ANCHORED2ABS (1<<2) - #define XFLG_ABS_IF_SLASH (1<<3) -+#define XFLG_CVS_ENTRIES (1<<4) +diff --git a/rsync.h b/rsync.h +--- a/rsync.h ++++ b/rsync.h +@@ -157,6 +157,7 @@ + #define XFLG_ANCHORED2ABS (1<<2) /* leading slash indicates absolute */ + #define XFLG_ABS_IF_SLASH (1<<3) /* leading or interior slash is absolute */ + #define XFLG_DIR2WILD3 (1<<4) /* dir/ match gets trailing *** added */ ++#define XFLG_CVS_ENTRIES (1<<5) #define ATTRS_REPORT (1<<0) #define ATTRS_SKIP_MTIME (1<<1) ---- orig/testsuite/exclude.test 2006-01-26 22:14:14 -+++ testsuite/exclude.test 2005-12-30 07:32:41 -@@ -21,6 +21,7 @@ set -x +diff --git a/testsuite/exclude.test b/testsuite/exclude.test +--- a/testsuite/exclude.test ++++ b/testsuite/exclude.test +@@ -19,6 +19,7 @@ export CVSIGNORE makepath "$fromdir/foo/down/to/you" makepath "$fromdir/foo/sub" @@ -98,7 +107,7 @@ of excludes taken from the .cvsignore file. makepath "$fromdir/bar/down/to/foo/too" makepath "$fromdir/bar/down/to/bar/baz" makepath "$fromdir/mid/for/foo/and/that/is/who" -@@ -59,6 +60,9 @@ echo cvsout >"$fromdir/bar/down/to/foo/f +@@ -57,6 +58,9 @@ echo cvsout >"$fromdir/bar/down/to/foo/file1.bak" echo gone >"$fromdir/bar/down/to/foo/file3" echo lost >"$fromdir/bar/down/to/foo/file4" echo weird >"$fromdir/bar/down/to/foo/+ file3" @@ -108,7 +117,7 @@ of excludes taken from the .cvsignore file. echo cvsout-but-filtin >"$fromdir/bar/down/to/foo/file4.junk" echo smashed >"$fromdir/bar/down/to/foo/to" cat >"$fromdir/bar/down/to/bar/.filt2" <"$excl" <"$excl" <"$scratchdir/.cvsignore" <