Re: emacs integration

2014-05-23 Thread David Edmondson
On Thu, May 22 2014, Gauthier Östervall wrote: I just installed notmuch and could index from the command line. I read from the Setup section of the emacs tips page ( notmuch@notmuchmail.org ) that integrating to emacs is as simple as (require 'notmuch). 1. First, I had a hard time to get the

Re: [homebrew] Update notmuch to version 0.18 (#29497)

2014-05-23 Thread David Bremner
Wael M. Nasreddine wael.nasredd...@gmail.com writes: That's what it requests in ./configure anyway. @David does notmuch work with zlib 1.2.5.0 or does it really need 1.2.5.2? On May 22, 2014 1:08 PM, Jack Nagel notificati...@github.com wrote: OS X has zlib 1.2.5, so I'd like to find out if

[PATCH 0/3] Build and test Ruby bindings

2014-05-23 Thread Felipe Contreras
This patch series adds simple tests for the Ruby bindings, which don't really make sense to add unless we build the bindings by default, so I added support for that. Unfortunately the pkg-config files for Ruby are specific to each major version, so we have to check for Ruby 2.1, 2.0, 1.9, etc.

[PATCH 1/3] build: don't add sub Makefiles to the global deps

2014-05-23 Thread Felipe Contreras
They don't affect the global build. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4c0e8c6..2d1aee9 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ include

[PATCH 2/3] build: add support to build Ruby bindings

2014-05-23 Thread Felipe Contreras
So there's no need for the user to manually do that. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- bindings/ruby/Makefile.local | 21 + bindings/ruby/extconf.rb | 14 ++ configure| 21 + 3 files changed,

[PATCH 3/3] test: add tests for Ruby bindings

2014-05-23 Thread Felipe Contreras
Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- test/T540-ruby.sh | 98 +++ test/test-lib.sh | 1 + 2 files changed, 99 insertions(+) create mode 100755 test/T540-ruby.sh diff --git a/test/T540-ruby.sh b/test/T540-ruby.sh new

Re: [PATCH 2/3] build: add support to build Ruby bindings

2014-05-23 Thread Wael Nasreddine
Felipe Contreras felipe.contre...@gmail.com writes: So there's no need for the user to manually do that. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- bindings/ruby/Makefile.local | 21 + bindings/ruby/extconf.rb | 14 ++ configure

[PATCH v3] Enable Travis-CI as a backup continuous integration

2014-05-23 Thread Wael M. Nasreddine
V3 moves the downloaded debs to a Git repository (so we do not rely on an unknown URL that may or may not change) and add a comment explaining what is the hack for in the file itself. ___ notmuch mailing list notmuch@notmuchmail.org

[PATCH v3] Enable Travis-CI as a backup continuous integration service.

2014-05-23 Thread Wael M. Nasreddine
You can access the dashboard at https://travis-ci.org/notmuch/notmuch --- .travis.yml | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..dff57a7 --- /dev/null +++ b/.travis.yml @@

Re: [PATCH v3] Enable Travis-CI as a backup continuous integration service.

2014-05-23 Thread David Edmondson
Thanks for taking on board the comments. This looks much better to me. On 23 May 2014, at 06:51 pm, Wael M. Nasreddine wael.nasredd...@gmail.com wrote: You can access the dashboard at https://travis-ci.org/notmuch/notmuch --- .travis.yml | 19 +++ 1 file changed, 19

Re: [homebrew] Update notmuch to version 0.18 (#29497)

2014-05-23 Thread Wael Nasreddine
Jack Nagel notificati...@github.com writes: Are you suggesting linking notmuch statically? or zlib? Linking notmuch to zlib statically. @David, do you know how can I build notmuch statically built against zlib? I tried with `ZLIB_LDFLAGS=-Wl,-Bstatic make` but it does not seem to have an

Re: notmuch-emacs and bbdb

2014-05-23 Thread Wael Nasreddine
On 22.07.2012 02:24, Daniel Bergey wrote: Glad to hear I have another user! My function bbdb/notmuch-snarf-to doesn't work yet on more than one recipient. Once I get that working, I'd like to do what you suggest, and have some hook call bbdb/notmuch-snarf-to every time I send an email.

emacs integration

2014-05-23 Thread David Edmondson
e. It's better to go to the original (see above). -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 310 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140523/0701319b/attachment.pgp>

[homebrew] Update notmuch to version 0.18 (#29497)

2014-05-23 Thread David Bremner
"Wael M. Nasreddine" writes: > That's what it requests in ./configure anyway. > > @David does notmuch work with zlib 1.2.5.0 or does it really need 1.2.5.2? > On May 22, 2014 1:08 PM, "Jack Nagel" wrote: > >> OS X has zlib 1.2.5, so I'd like to find out if notmuch really, truly >> depends on

[PATCH 0/3] Build and test Ruby bindings

2014-05-23 Thread Felipe Contreras
This patch series adds simple tests for the Ruby bindings, which don't really make sense to add unless we build the bindings by default, so I added support for that. Unfortunately the pkg-config files for Ruby are specific to each major version, so we have to check for Ruby 2.1, 2.0, 1.9, etc.

[PATCH 1/3] build: don't add sub Makefiles to the global deps

2014-05-23 Thread Felipe Contreras
They don't affect the global build. Signed-off-by: Felipe Contreras --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4c0e8c6..2d1aee9 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ include Makefile.config # We make all targets

[PATCH 2/3] build: add support to build Ruby bindings

2014-05-23 Thread Felipe Contreras
So there's no need for the user to manually do that. Signed-off-by: Felipe Contreras --- bindings/ruby/Makefile.local | 21 + bindings/ruby/extconf.rb | 14 ++ configure| 21 + 3 files changed, 44 insertions(+), 12

[PATCH 3/3] test: add tests for Ruby bindings

2014-05-23 Thread Felipe Contreras
Signed-off-by: Felipe Contreras --- test/T540-ruby.sh | 98 +++ test/test-lib.sh | 1 + 2 files changed, 99 insertions(+) create mode 100755 test/T540-ruby.sh diff --git a/test/T540-ruby.sh b/test/T540-ruby.sh new file mode 100755 index

[PATCH 2/3] build: add support to build Ruby bindings

2014-05-23 Thread Wael Nasreddine
> +WITH_RUBY = ${WITH_RUBY} > + > # Combined flags for compiling and linking against all of the above > CONFIGURE_CFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS) \\ > > -DHAVE_CANONICALIZE_FILE_NAME=\$(HAVE_CANONICALIZE_FILE_NAME) \\ > -- > 1

[PATCH v3] Enable Travis-CI as a backup continuous integration

2014-05-23 Thread Wael M. Nasreddine
V3 moves the downloaded debs to a Git repository (so we do not rely on an unknown URL that may or may not change) and add a comment explaining what is the hack for in the file itself.

[PATCH v3] Enable Travis-CI as a backup continuous integration service.

2014-05-23 Thread Wael M. Nasreddine
You can access the dashboard at https://travis-ci.org/notmuch/notmuch --- .travis.yml | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..dff57a7 --- /dev/null +++ b/.travis.yml @@

[PATCH v3] Enable Travis-CI as a backup continuous integration service.

2014-05-23 Thread David Edmondson
Thanks for taking on board the comments. This looks much better to me. > On 23 May 2014, at 06:51 pm, "Wael M. Nasreddine" gmail.com> wrote: > > You can access the dashboard at https://travis-ci.org/notmuch/notmuch > --- > .travis.yml | 19 +++ > 1 file changed, 19 insertions(+)

[homebrew] Update notmuch to version 0.18 (#29497)

2014-05-23 Thread Wael Nasreddine
sreddine | SRE at Google | wael.nasreddine at gmail.com | (650) 735-1773 -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 180 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140523/a26be2f0/attachment-0001.pgp>

notmuch-emacs and bbdb

2014-05-23 Thread Wael Nasreddine
at gmail.com | (650) 735-1773 -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 180 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140523/0a080f16/attachment.pgp>

emacs integration

2014-05-23 Thread Gauthier Östervall
On Fri, May 23, 2014 at 9:20 AM, David Edmondson wrote: > On Thu, May 22 2014, Gauthier ?stervall wrote: >> 1. First, I had a hard time to get the el files at all. I finally got >> them from github.comb/chrisdone/notmuch.git. >> Is this ok? Where should I get them otherwise? > >