Displaying 10 results from an estimated 10 matches for "exclude_pattern".
Did you mean:
exclude_patterns
2008 Aug 13
1
no backup for excluded files?
Hi,
I use rsync 3.0.2 for daily incremental backups:
rsync -aAzHRxby -f '. -' --numeric-ids --delete-during --delete-excluded \
--suffix='' --backup-dir=$BACKUP_ROOT/$BACKUP_HOST/${TODAY} \
${DESTINATION}$BACKUP_ROOT/$BACKUP_HOST/current <<< $EXCLUDE_PATTERNS
Sometimes I add a new item to $EXCLUDE_PATTERNS but then the excluded
files are backed up in $BACKUP_ROOT/$BACKUP_HOST/$TODAY. Is there a way
to avoid that?
Thanks,
PS: the --suffix option is useless when using --backup-dir, right?
2011 Nov 01
7
corrupted btrfs after suspend2ram uncorrectable with scrub
Hello,
I''m using kernel 3.1.0 and I have both / and /home as btrfs. I used
suspend to ram quite often and never had a problem, but yesterday I''ve
suspended to get into a plane and when I resumed my /home was all
about input/output errors. Reboot did not help either. My root (/)
did not suffer any problems.
Today I''ve upgraded btrfs-progs to latest GIT and tried scrub
2007 Jun 29
1
R CMD build with mingw and msys (PR#9766)
...diff -u build build.orig
--- build Fri Jun 29 13:50:16 2007
+++ build.orig Fri Jun 29 08:51:48 2007
@@ -47,7 +47,6 @@
R::Vars::error("R_HOME", "R_EXE");
my $WINDOWS = ($R::Vars::OSTYPE eq "windows");
-my $MSYS = ( $ENV{OSTYPE} eq "msys" );
my @exclude_patterns = R::Utils::get_exclude_patterns();
@@ -222,14 +221,10 @@
my $filepath = &file_path($startdir, $filename);
## under Windows, need separate Cygwin and Windows versions of path.
my $origfilepath = $filepath;
- if ($MSYS) {
- ## different workwaround for MSYS
-...
2008 Jan 23
4
[wishlist, patch] Removing .bzr/ directory when calling R CMD build (PR#10625)
...EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.arch-ids$/);
print EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.git$/);
+ print EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.bzr$/);
## Windows DLL resource file
push(@exclude_patterns, "^src/" . $pkgname . "_res\\.rc");
my $filename = $File::Find::name;
2006 Jul 10
1
Add .git to SCM excludes for build and INSTALL scripts
...EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.svn$/);
print EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.arch-ids$/);
+ print EXCLUDE "$File::Find::name\n" if(-d $_ && /^\.git$/);
## Windows DLL resource file
push(@exclude_patterns, "^src/" . $pkgname . "_res\\.rc");
my $filename = $File::Find::name;
--
+ seth
2014 Apr 15
0
Problem: Importing two packages which export a function with the same name
...both my
NAMESPACE and my DESCRIPTION file but couldn't see any difference in the
result: gamlss.dist is always loaded after mboost and thus it breaks my
code.
Actually, I would love to use something similar to importFrom() with a
pattern that excludes Family, i.e.,
importFrom(gamlss.dist, exclude_pattern = "Family")
or the same with an include pattern designed to exclude Family in my
NAMESPACE. Is this possible anyhow?
As gamlss.dist keeps evolving over time with more families to be added,
I cannot manually importFrom(...) all the relevant families. I would
have to change the list of...
2008 Oct 14
2
dos-style line endings in .Rbuildignore result in files not being excluded
...to match
filenames to patterns like "NOTES.txt^M".
I don't know what the best solution to this is, but I got it working by
putting a substitute command in the bin/build file like this:
while(<RBUILDIGNORE>) {
chomp;
s/^M$//;
push(@exclude_patterns, $_) if $_;
(When I cut and paste that code here it ends up as two separate
characters ^ and M, but in the bin/build file it's one <CR> character.)
One could of course say it is stupid user error to have <CR>'s in the
.Rbuildignore file, but it can happen easily, and it wou...
2013 Jan 09
4
[PATCH] doc: fix out-of-tree build
It seems the mail you are referring to never made the list: it's not in
the archives and not in my mailbox. Take a look here:
http://lists.xiph.org/pipermail/flac-dev/2012-December/thread.html It's
probably still waiting for moderation.
On 07-01-13 17:07, Olivier BLIN wrote:
> On 29/12/2012 00:06, Olivier Blin wrote:
>> When building outside of the source tree, the Doxyfile
2012 Dec 28
0
[PATCH] doc: fix out-of-tree build
...=
-
-# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
-# directories that are symbolic links (a Unix filesystem feature) are excluded
-# from the input.
-
-EXCLUDE_SYMLINKS = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories.
-
-EXCLUDE_PATTERNS =
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or
-# directories that contain example code fragments that are included (see
-# the \include command)....
2012 Dec 28
3
[PATCH] doc: fix out-of-tree build
...=
-
-# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
-# directories that are symbolic links (a Unix filesystem feature) are excluded
-# from the input.
-
-EXCLUDE_SYMLINKS = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories.
-
-EXCLUDE_PATTERNS =
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or
-# directories that contain example code fragments that are included (see
-# the \include command)....