Re: Log of tagging actions

2014-05-09 Thread Istvan Marko
Sebastian Fischmeister sfisc...@uwaterloo.ca writes: Is there a possibility to log all tagging actions done in notmuch? I use a shell wrapper around notmuch to get this: #! /bin/sh

[PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread David Edmondson
emacs: Allow saving of threads and messages Similar to the pipe (|) support, allow saving of threads and messages. David Edmondson (3): emacs: Fix indentation. emacs: Minor re-work of `notmuch-show-pipe-message' emacs: Add `notmuch-show-save-message' to save messages

[PATCH v1 2/3] emacs: Minor re-work of `notmuch-show-pipe-message'

2014-05-09 Thread David Edmondson
Stylistic only - no functional change. --- emacs/notmuch-show.el | 59 +-- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 2ed221a..62c0be6 100644 --- a/emacs/notmuch-show.el +++

[PATCH v1 3/3] emacs: Add `notmuch-show-save-message' to save messages

2014-05-09 Thread David Edmondson
Following `notmuch-show-pipe-message', add a binding 'S' to save either the current or all open messages, depending on prefix argument. --- emacs/notmuch-show.el | 24 +++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/emacs/notmuch-show.el

Re: [PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread David Edmondson
On Fri, May 09 2014, Mark Walters wrote: This is v4 of this set. v3 is at id:139593-13297-1-git-send-email-markwalters1...@gmail.com David (dme) was not keen on the logic in the previous patch so I have tried to make it rather more customisable and made this version much closer to the

Re: Log of tagging actions

2014-05-09 Thread Tomi Ollila
On Fri, May 09 2014, Istvan Marko notm...@kismala.com wrote: Sebastian Fischmeister sfisc...@uwaterloo.ca writes: Is there a possibility to log all tagging actions done in notmuch? I use a shell wrapper around notmuch to get this: #! /bin/sh echo notmuch $@ $HOME/logs/notmuch.log

Re: [PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread Mark Walters
On Fri, 09 May 2014, David Edmondson d...@dme.org wrote: On Fri, May 09 2014, Mark Walters wrote: This is v4 of this set. v3 is at id:139593-13297-1-git-send-email-markwalters1...@gmail.com David (dme) was not keen on the logic in the previous patch so I have tried to make it rather

Re: Submodules for language bindings (was: Github?)

2014-05-09 Thread Suvayu Ali
Hi Trevor, On Thu, May 08, 2014 at 04:35:30PM -0700, W. Trevor King wrote: On Fri, May 09, 2014 at 12:45:27AM +0200, Suvayu Ali wrote: On Thu, May 08, 2014 at 03:29:31PM -0700, W. Trevor King wrote: On Fri, May 09, 2014 at 12:00:46AM +0200, Suvayu Ali wrote: One of my TODOs is to also

Re: [PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread Mark Walters
Hi I think the functionality is well worth having (| cat - a-file is ugly!). However, I am not sure about this approach. The first two patches are fine, although I think I like constructing a query then quoting rather than quoting bits of a query and bolting them together (even the both work).

Re: Github?

2014-05-09 Thread Amadeusz Żołnowski
Hi, Wael Nasreddine wael.nasredd...@gmail.com writes: I was a bit disappointed that the project is not living (or at least mirrored) to Github, it would have made my search much easier. How GitHub would help with this? I believe that most of search engines reach Notmuch home page. GitHub is

Re: Github?

2014-05-09 Thread Felipe Contreras
Amadeusz Żołnowski wrote: The same goes for Travis. There's already a build bot. Why bother with Travis? I've never seen any buildbot results. TravisCI's interface is just simple and easy. And all it requires is one file. -- Felipe Contreras ___

Re: Submodules for language bindings (was: Github?)

2014-05-09 Thread Felipe Contreras
Suvayu Ali wrote: You have a point, however I would still disagree. You seem to use Gentoo, and I think what you say works better for Gentoo because it is a source distribution. For binary distributions, this is a bit harder (and limiting). No, it's not harder. To explain my point with

Re: Submodules for language bindings (was: Github?)

2014-05-09 Thread Suvayu Ali
On Fri, May 09, 2014 at 07:40:27AM -0500, Felipe Contreras wrote: Suvayu Ali wrote: To explain my point with RPM specifics, if I were to use separate spec files, python-notmuch would have: Requires: notmuch = version-string As you can see this only allows for tracking dependency

Re: [PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread David Edmondson
On Fri, May 09 2014, Mark Walters wrote: Just to confirm: you can get your desired behaviour by writing an alternative `notmuch-show-mark-read-function'? Yes I can confirm that. So if this went in I can get the behaviour of the earlier series without needing to patch notmuch. We can decide

Re: Submodules for language bindings (was: Github?)

2014-05-09 Thread Felipe Contreras
Suvayu Ali wrote: On Fri, May 09, 2014 at 07:40:27AM -0500, Felipe Contreras wrote: Suvayu Ali wrote: To explain my point with RPM specifics, if I were to use separate spec files, python-notmuch would have: Requires: notmuch = version-string As you can see this only

Re: [PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread David Edmondson
On Fri, May 09 2014, Mark Walters wrote: The first two patches are fine, although I think I like constructing a query then quoting rather than quoting bits of a query and bolting them together (even the both work). Agreed. I've no idea what I was thinking. My concern is that the current

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael M. Nasreddine
--- .travis.yml | 10 ++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..8d92cdc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: c +before_install: + - sudo apt-get update -qq + -

RE: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael M. Nasreddine wrote: --- .travis.yml | 10 ++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..8d92cdc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: c

RE: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael Nasreddine
On Travis Zlib is old and notmuch configure script exits with a failure, please see the Travis build #1 On Friday, May 9, 2014 7:52:44 AM, Felipe Contreras felipe.contre...@gmail.com wrote: Wael M. Nasreddine wrote: --- .travis.yml | 10 ++ 1 file changed, 10 insertions(+)

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Tomi Ollila
On Fri, May 09 2014, Wael M. Nasreddine wael.nasredd...@gmail.com wrote: --- Could this work so, that there is separate repo whete .travis.yml resides and notmuch is there as a git submodule ? To my eyes this approach looks pretty intrusive: the repository root directory is polluted with

RE: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael Nasreddine wrote: On Travis Zlib is old and notmuch configure script exits with a failure, please see the Travis build #1 Please do not top-post. I had to manually find the build. In case anybody wants to check it out: https://travis-ci.org/notmuch/notmuch/builds -- Felipe Contreras

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael M. Nasreddine
On Fri, May 9, 2014 at 8:16 AM, Tomi Ollila tomi.oll...@iki.fi wrote: On Fri, May 09 2014, Wael M. Nasreddine wael.nasredd...@gmail.com wrote: --- Could this work so, that there is separate repo whete .travis.yml resides and notmuch is there as a git submodule ? To my eyes this approach

[RFC PATCH] emacs: show: mark messages unread if seen in buffer

2014-05-09 Thread Mark Walters
This adds a function that marks messages unread if they are seen that is a user configurable amount of them has been visible in the buffer. To use set notmuch-show-mark-read-function to #'notmuch-show-do-seen --- This adds the functionality to do my previous mark unread logic (see

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael M. Nasreddine
On Fri, May 9, 2014 at 8:24 AM, Felipe Contreras felipe.contre...@gmail.com wrote: Wael Nasreddine wrote: On Travis Zlib is old and notmuch configure script exits with a failure, please see the Travis build #1 Please do not top-post. Apologies for that, I was dropping off my son at school

Re: [RFC PATCH] emacs: show: mark messages unread if seen in buffer

2014-05-09 Thread David Edmondson
On Fri, May 09 2014, Mark Walters wrote: To use set notmuch-show-mark-read-function to #'notmuch-show-do-seen I haven't test this function, but I'd expect it to be an option when manipulating `notmuch-show-mark-read-function' using custom. ___ notmuch

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread W. Trevor King
On Fri, May 09, 2014 at 02:59:02PM +, Wael Nasreddine wrote: On Travis Zlib is old and notmuch configure script exits with a failure, please see the Travis build #1 I'm just dropping a cross-link to the recent old-zlib discussion here [1]. Cheers, Trevor [1]:

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael M. Nasreddine wrote: On Fri, May 9, 2014 at 8:24 AM, Felipe Contreras felipe.contre...@gmail.com wrote: I had to manually find the build. In case anybody wants to check it out: https://travis-ci.org/notmuch/notmuch/builds To be specific it's build #2 you see the error right here

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael Nasreddine
On Fri, May 9, 2014 at 9:35 AM, Felipe Contreras felipe.contre...@gmail.com wrote: Wael M. Nasreddine wrote: On Fri, May 9, 2014 at 8:24 AM, Felipe Contreras felipe.contre...@gmail.com wrote: I had to manually find the build. In case anybody wants to check it out:

Re: folder and path completely broken in HEAD?

2014-05-09 Thread Jameson Graef Rollins
On Sat, May 03 2014, dm-list-email-notm...@scs.stanford.edu wrote: First, are there people out there who do not use a collection of maildir directories, with all mail in cur and new? o/ I completely abandoned the usage of separate mail folders since I started using notmuch. All my mail now

Re: pkg-config zlib check in 3c13bc

2014-05-09 Thread Tomi Ollila
On Thu, May 08 2014, David Bremner da...@tethera.net wrote: Tomi Ollila tomi.oll...@iki.fi writes: But, I'd like suggest alternate option to create a test c program and test whether it compiles (analogous to what there is already done with many other checks) -- this same would apply to

Re: [PATCH] Add Travis-CI config file.

2014-05-09 Thread Daniel Kahn Gillmor
On 05/09/2014 11:19 AM, Wael M. Nasreddine wrote: --- .travis.yml | 10 ++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..8d92cdc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@

Re: pkg-config zlib check in 3c13bc

2014-05-09 Thread David Bremner
Tomi Ollila tomi.oll...@iki.fi writes: Actually my suggestion would be that if that pkg-config line for zlib does not work (btw why does it not work) I guess because FreeBSD (and maybe other systems) have a distinction between the base system and add on packages and pkg-config only works

Re: Github?

2014-05-09 Thread David Bremner
Felipe Contreras felipe.contre...@gmail.com writes: Amadeusz Żołnowski wrote: The same goes for Travis. There's already a build bot. Why bother with Travis? I've never seen any buildbot results. TravisCI's interface is just simple and easy. And all it requires is one file. Not to take a

Re: pkg-config zlib check in 3c13bc

2014-05-09 Thread Xīcò
On Sat, May 10, 2014 at 09:46:00AM +0900, David Bremner wrote: int main(void) { return(ZLIB_VERNUM = 0x1252); } OK, that sounds like it could work. Ideally, somebody on FreeBSD could check... d Such check will work on FreeBSD, and would be great! As a side note, is there any

Re: pkg-config zlib check in 3c13bc

2014-05-09 Thread David Bremner
Xīcò x...@atelo.org writes: On Sat, May 10, 2014 at 09:46:00AM +0900, David Bremner wrote: int main(void) { return(ZLIB_VERNUM = 0x1252); } OK, that sounds like it could work. Ideally, somebody on FreeBSD could check... d Such check will work on FreeBSD, and would be great!

Re: pkg-config zlib check in 3c13bc

2014-05-09 Thread Felipe Contreras
David Bremner wrote: Xīcò x...@atelo.org writes: As a side note, is there any rationale for the hand-made configure? Not that I am a big fan of autoconf/cmake/whatever either... Carl Worth had a lot of (negative) experience with autoconf when he started the project, which motivated him to

Re: Github?

2014-05-09 Thread Wael M. Nasreddine
On Fri, May 9, 2014 at 6:21 PM, David Bremner da...@tethera.net wrote: Felipe Contreras felipe.contre...@gmail.com writes: Amadeusz Żołnowski wrote: The same goes for Travis. There's already a build bot. Why bother with Travis? I've never seen any buildbot results. TravisCI's interface is

[PATCH] Fallback check for zlib

2014-05-09 Thread Xīcò
Added the fallback check for zlib. Tested on FreeBSD stable/10. C test checks for major zlib compatibility (see zlib doc/examples). Xīcò (1): Fallback check for zlib. compat/have_zlib.c | 6 ++ configure | 21 - 2 files changed, 22 insertions(+), 5

[PATCH] Fallback check for zlib.

2014-05-09 Thread Xīcò
--- compat/have_zlib.c | 6 ++ configure | 21 - 2 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 compat/have_zlib.c diff --git a/compat/have_zlib.c b/compat/have_zlib.c new file mode 100644 index 000..998c697 --- /dev/null +++

Github?

2014-05-09 Thread guyzmo
On Thu, May 08, 2014 at 10:30:19PM +0200, Suvayu Ali wrote: > On Thu, May 08, 2014 at 01:14:51PM -0700, Wael M. Nasreddine wrote: > > On Thu, May 8, 2014 at 12:54 PM, Wael Nasreddine > > wrote: [...] > > Can you guys at least consider splitting contrib/ and bindings/ into their > > own repo? It

Github?

2014-05-09 Thread Suvayu Ali
On Thu, May 08, 2014 at 11:21:00PM +0200, guyzmo wrote: > On Thu, May 08, 2014 at 10:30:19PM +0200, Suvayu Ali wrote: > > On Thu, May 08, 2014 at 01:14:51PM -0700, Wael M. Nasreddine wrote: > > > On Thu, May 8, 2014 at 12:54 PM, Wael Nasreddine > > > wrote: > [...] > > > Can you guys at least

[PATCH v2 5/5] T360-symbol-hiding: Use nm instead of objdump.

2014-05-09 Thread David Bremner
Charles Celerier writes: > David Bremner writes: > >> Charles Celerier writes: >>> test_begin_subtest 'comparing existing to exported symbols' >>> -objdump -t $TEST_DIRECTORY/../lib/*.o | awk '$4 == ".text" && $6 ~ >>> "^notmuch" {print $6}' | sort | uniq > ACTUAL >>> +nm -g

[PATCH 2/5] configure, test: Added variables for paths to true and false.

2014-05-09 Thread David Bremner
Charles Celerier writes: > I will be the first too admit that I do not know much about configure > scripts, but adding a TRUE variable seemed straightforward. configure is already big enough, I'd prefer not to add new things unless they are needed. This is not likely to be something the user

Github?

2014-05-09 Thread David Bremner
Wael Nasreddine writes: > I didn't see the previous email about it, thank you Jani for the link. It > looks like you guys have your hands full and everything setup the way you > like it, so here's what I'll do myself (if it's acceptable with you, > otherwise I'll just remove everything): > > -

Submodules for language bindings (was: Github?)

2014-05-09 Thread Suvayu Ali
On Thu, May 08, 2014 at 03:29:31PM -0700, W. Trevor King wrote: > On Fri, May 09, 2014 at 12:00:46AM +0200, Suvayu Ali wrote: > > One of my TODOs is to also package the ruby bindings, and > > notmuch-vim. The only thing preventing me now is my unfamiliarty > > with ruby, and Fedora packaging

Github?

2014-05-09 Thread Wael Nasreddine
Well like I said in my first email, if you guys are interested in owning and maintaining the GitHub repo it is yours, besides I have not done anything with the history I only added one commit which will never conflict with upstream unless you add a .Travis.yml file :) On Thursday, May 8, 2014

Github?

2014-05-09 Thread David Bremner
too much to entrust to somebody we just "met". d -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 647 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/7d713f07/attachment.pgp>

emacs reply fills X clipboard with reply message body

2014-05-09 Thread David Bremner
Jameson Graef Rollins writes: > On Thu, May 08 2014, David Edmondson wrote: >> [ I'm cycling around back through some old mail. ] >> >> On Tue, Sep 17 2013, Jameson Graef Rollins wrote: >>> I've just started noticing that when I reply to messages from the emacs >>> UI, my X clipboard is filled

Github?

2014-05-09 Thread Wael Nasreddine
/wiki/Pretty_Good_Privacy > -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/89808ba7/attachment.html>

[PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread Mark Walters
This is v4 of this set. v3 is at id:139593-13297-1-git-send-email-markwalters1009 at gmail.com David (dme) was not keen on the logic in the previous patch so I have tried to make it rather more customisable and made this version much closer to the existing logic. This version marks the

Github?

2014-05-09 Thread Wael Nasreddine
ications was called something else, like > 'travis-ci'. > > -- > Felipe Contreras -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/a6838aa3/attachment.html>

Github?

2014-05-09 Thread Douglas Campos
On Thu, May 08, 2014 at 08:01:56PM -0700, W. Trevor King wrote: > Agreed. The only problem I'd have is that you'd want to say that the > GitHub repo was a mirror, since the primary repo would still be > git://notmuchmail.org/git/notmuch. If it's a mirror, I think it > should mirror all refs on

Log of tagging actions

2014-05-09 Thread Istvan Marko
Sebastian Fischmeister writes: > Is there a possibility to log all tagging actions done in notmuch? I use a shell wrapper around notmuch to get this: #! /bin/sh

[PATCH v1 2/3] emacs: Minor re-work of `notmuch-show-pipe-message'

2014-05-09 Thread David Edmondson
Stylistic only - no functional change. --- emacs/notmuch-show.el | 59 +-- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 2ed221a..62c0be6 100644 --- a/emacs/notmuch-show.el +++

[PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread David Edmondson
emacs: Allow saving of threads and messages Similar to the pipe (|) support, allow saving of threads and messages. David Edmondson (3): emacs: Fix indentation. emacs: Minor re-work of `notmuch-show-pipe-message' emacs: Add `notmuch-show-save-message' to save messages

[PATCH v1 3/3] emacs: Add `notmuch-show-save-message' to save messages

2014-05-09 Thread David Edmondson
Following `notmuch-show-pipe-message', add a binding 'S' to save either the current or all open messages, depending on prefix argument. --- emacs/notmuch-show.el | 24 +++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/emacs/notmuch-show.el

[PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread David Edmondson
your desired behaviour by writing an alternative `notmuch-show-mark-read-function'? -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 310 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/84a15507/attachment.pgp>

Log of tagging actions

2014-05-09 Thread Tomi Ollila
On Fri, May 09 2014, Istvan Marko wrote: > Sebastian Fischmeister writes: > >> Is there a possibility to log all tagging actions done in notmuch? > > I use a shell wrapper around notmuch to get this: > > #! /bin/sh > echo "notmuch $@" >>$HOME/logs/notmuch.log > /usr/local/bin/notmuch "$@" You

[PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread Mark Walters
On Fri, 09 May 2014, David Edmondson wrote: > On Fri, May 09 2014, Mark Walters wrote: >> This is v4 of this set. v3 is at >> id:139593-13297-1-git-send-email-markwalters1009 at gmail.com >> >> David (dme) was not keen on the logic in the previous patch so I have >> tried to make it rather

Submodules for language bindings (was: Github?)

2014-05-09 Thread Suvayu Ali
Hi Trevor, On Thu, May 08, 2014 at 04:35:30PM -0700, W. Trevor King wrote: > On Fri, May 09, 2014 at 12:45:27AM +0200, Suvayu Ali wrote: > > On Thu, May 08, 2014 at 03:29:31PM -0700, W. Trevor King wrote: > > > On Fri, May 09, 2014 at 12:00:46AM +0200, Suvayu Ali wrote: > > > > One of my TODOs is

[PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread Mark Walters
Hi I think the functionality is well worth having ("|" cat - > a-file is ugly!). However, I am not sure about this approach. The first two patches are fine, although I think I like constructing a query then quoting rather than quoting bits of a query and bolting them together (even the both

Github?

2014-05-09 Thread Amadeusz Żołnowski
n-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 489 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/3157ffb4/attachment.pgp>

Github?

2014-05-09 Thread Felipe Contreras
Amadeusz ?o?nowski wrote: > The same goes for Travis. There's already a build bot. Why bother > with Travis? I've never seen any buildbot results. TravisCI's interface is just simple and easy. And all it requires is one file. -- Felipe Contreras

Submodules for language bindings (was: Github?)

2014-05-09 Thread Felipe Contreras
Suvayu Ali wrote: > You have a point, however I would still disagree. You seem to use > Gentoo, and I think what you say works better for Gentoo because it is > a source distribution. For binary distributions, this is a bit harder > (and limiting). No, it's not harder. > To explain my point

Submodules for language bindings (was: Github?)

2014-05-09 Thread Suvayu Ali
On Fri, May 09, 2014 at 07:40:27AM -0500, Felipe Contreras wrote: > Suvayu Ali wrote: > > > To explain my point with RPM specifics, if I were to > > use separate spec files, python-notmuch would have: > > > > Requires: notmuch >= > > > > As you can see this only allows for tracking

[PATCH v4 0/2] emacs: show: redesign unread/read logic

2014-05-09 Thread David Edmondson
how they would like it to behave. -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 310 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/07794693/attachment.pgp>

Submodules for language bindings (was: Github?)

2014-05-09 Thread Felipe Contreras
Suvayu Ali wrote: > On Fri, May 09, 2014 at 07:40:27AM -0500, Felipe Contreras wrote: > > Suvayu Ali wrote: > > > > > To explain my point with RPM specifics, if I were to > > > use separate spec files, python-notmuch would have: > > > > > > Requires: notmuch >= > > > > > > As you can see

[PATCH v1 0/3] emacs: Allow saving of threads and messages

2014-05-09 Thread David Edmondson
s Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/c9427931/attachment.pgp>

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael M. Nasreddine
--- .travis.yml | 10 ++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000..8d92cdc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: c +before_install: + - sudo apt-get update -qq + -

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael M. Nasreddine wrote: > --- > .travis.yml | 10 ++ > 1 file changed, 10 insertions(+) > create mode 100644 .travis.yml > > diff --git a/.travis.yml b/.travis.yml > new file mode 100644 > index 000..8d92cdc > --- /dev/null > +++ b/.travis.yml > @@ -0,0 +1,10 @@ > +language: c >

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael Nasreddine
n-sphinx > > + > > +script: make test > > -- > Felipe Contreras > -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/4e359687/attachment.html>

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Tomi Ollila
On Fri, May 09 2014, "Wael M. Nasreddine" wrote: > --- Could this work so, that there is separate repo whete .travis.yml resides and notmuch is there as a git submodule ? To my eyes this approach looks pretty intrusive: the repository root directory is polluted with specific .travis.yml file

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael Nasreddine wrote: > On Travis Zlib is old and notmuch configure script exits with a > failure, please see the Travis build #1 Please do not top-post. I had to manually find the build. In case anybody wants to check it out: https://travis-ci.org/notmuch/notmuch/builds -- Felipe Contreras

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael M. Nasreddine
On Fri, May 9, 2014 at 8:16 AM, Tomi Ollila wrote: > On Fri, May 09 2014, "Wael M. Nasreddine" > wrote: > >> --- > > Could this work so, that there is separate repo whete .travis.yml resides > and notmuch is there as a git submodule ? > > To my eyes this approach looks pretty intrusive: the

[PATCH] Add Travis-CI config file.

2014-05-09 Thread W. Trevor King
t part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: OpenPGP digital signature URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/c83677d9/attachment.pgp>

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Felipe Contreras
Wael M. Nasreddine wrote: > On Fri, May 9, 2014 at 8:24 AM, Felipe Contreras > wrote: > > I had to manually find the build. In case anybody wants to check it out: > > > > https://travis-ci.org/notmuch/notmuch/builds > > To be specific it's build #2 you see the error right here >

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Wael Nasreddine
was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/7b0478cf/attachment-0001.html>

folder and path completely broken in HEAD?

2014-05-09 Thread Jameson Graef Rollins
bout such things (thank god!). jamie. -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/868729c7/attachment.pgp>

[PATCH] Add Travis-CI config file.

2014-05-09 Thread Daniel Kahn Gillmor
--dkg -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 1010 bytes Desc: OpenPGP digital signature URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140509/6d480033/attachment.pgp>

pkg-config zlib check in 3c13bc

2014-05-09 Thread Xīcò
On Sat, May 10, 2014 at 09:46:00AM +0900, David Bremner wrote: > > int main(void) > > { > > return(ZLIB_VERNUM >= 0x1252); > > } > > OK, that sounds like it could work. Ideally, somebody on FreeBSD could > check... > > d Such check will work on FreeBSD, and would be great! As a side note,

Github?

2014-05-09 Thread Wael M. Nasreddine
On Fri, May 9, 2014 at 6:21 PM, David Bremner wrote: > Felipe Contreras writes: > >> Amadeusz ?o?nowski wrote: >>> The same goes for Travis. There's already a build bot. Why bother >>> with Travis? >> >> I've never seen any buildbot results. TravisCI's interface is just >> simple and easy. And

[PATCH] Fallback check for zlib

2014-05-09 Thread Xīcò
Added the fallback check for zlib. Tested on FreeBSD stable/10. C test checks for major zlib compatibility (see zlib doc/examples). X?c? (1): Fallback check for zlib. compat/have_zlib.c | 6 ++ configure | 21 - 2 files changed, 22 insertions(+), 5

[PATCH] Fallback check for zlib.

2014-05-09 Thread Xīcò
--- compat/have_zlib.c | 6 ++ configure | 21 - 2 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 compat/have_zlib.c diff --git a/compat/have_zlib.c b/compat/have_zlib.c new file mode 100644 index 000..998c697 --- /dev/null +++