[PATCH] notmuch-mutt: replace gnu sed and xargs with perl

2012-04-12 Thread Taylor Carpenter
On Thu, Apr 12, 2012 at 02:07, Tomi Ollila wrote: > On Thu, Apr 12 2012, Taylor Carpenter wrote: > >> External software dependencies removed: sed and xargs. >> >> Sed shell escaping is handled automatically with perl symlink function. >> >> The xargs usage is

Re: [PATCH] notmuch-mutt: replace gnu sed and xargs with perl

2012-04-12 Thread Taylor Carpenter
On Thu, Apr 12, 2012 at 02:07, Tomi Ollila wrote: > On Thu, Apr 12 2012, Taylor Carpenter wrote: > >> External software dependencies removed: sed and xargs. >> >> Sed shell escaping is handled automatically with perl symlink function. >> >> The xargs usage is

[PATCH] notmuch-mutt: replace gnu sed and xargs with perl

2012-04-11 Thread Taylor Carpenter
External software dependencies removed: sed and xargs. Sed shell escaping is handled automatically with perl symlink function. The xargs usage is specific to gnu xargs (fails on bsd xargs, etc). NOTE: The current query pulls the list of files into an array all at once. The larger the list the m

[PATCH] notmuch-mutt: Using /usr/bin/env to call perl

2012-04-11 Thread Taylor Carpenter
Supports other perl install locations --- contrib/notmuch-mutt/notmuch-mutt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 71206c3..424f9a3 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/c

[PATCH] notmuch-mutt: replace gnu sed and xargs with perl

2012-04-11 Thread Taylor Carpenter
External software dependencies removed: sed and xargs. Sed shell escaping is handled automatically with perl symlink function. The xargs usage is specific to gnu xargs (fails on bsd xargs, etc). NOTE: The current query pulls the list of files into an array all at once. The larger the list the m

[PATCH] notmuch-mutt: Using /usr/bin/env to call perl

2012-04-11 Thread Taylor Carpenter
Supports other perl install locations --- contrib/notmuch-mutt/notmuch-mutt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 71206c3..424f9a3 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/c

[PATCH] replace gnu xargs usage in notmuch-mutt with perl

2012-04-09 Thread Taylor Carpenter
--- contrib/notmuch-mutt/notmuch-mutt | 12 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 71206c3..dbe7f2d 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/contrib/notmuch-mutt/notmuch-

[PATCH] replace gnu xargs usage in notmuch-mutt with perl

2012-04-09 Thread Taylor Carpenter
--- contrib/notmuch-mutt/notmuch-mutt | 12 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 71206c3..dbe7f2d 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/contrib/notmuch-mutt/notmuch-

Re: [PATCH] notmuch-new.c infinite recursion symlink bug

2011-06-20 Thread Taylor Carpenter
On 06/10/11 at 02:32P, Taylor Carpenter wrote: > If a symlink points to . then there will be an infinite recursion. The > included patch fixes that. I did not realize this was needed in the count function as well. New patch included that does both. --- notmuch-new.c.orig 2011-06-10

[PATCH] notmuch-new.c infinite recursion symlink bug

2011-06-20 Thread Taylor Carpenter
If a symlink points to . then there will be an infinite recursion. The included patch fixes that. --- notmuch-new.c.orig 2011-06-10 00:03:09.0 -0500 +++ notmuch-new.c 2011-06-10 02:10:37.0 -0500 @@ -233,6 +233,8 @@ struct stat st; notmuch_bool_t is_maildir, new_direct

[PATCH] notmuch-new.c infinite recursion symlink bug

2011-06-10 Thread Taylor Carpenter
On 06/10/11 at 02:32P, Taylor Carpenter wrote: > If a symlink points to . then there will be an infinite recursion. The > included patch fixes that. I did not realize this was needed in the count function as well. New patch included that does both. --- notmuch-new.c.orig 2011-06-10

[PATCH] notmuch-new.c infinite recursion symlink bug

2011-06-10 Thread Taylor Carpenter
If a symlink points to . then there will be an infinite recursion. The included patch fixes that. --- notmuch-new.c.orig 2011-06-10 00:03:09.0 -0500 +++ notmuch-new.c 2011-06-10 02:10:37.0 -0500 @@ -233,6 +233,8 @@ struct stat st; notmuch_bool_t is_maildir, new_direct