| Age | Commit message (Collapse) | Author |
|
The output from make is looking better all the time, (though the
columns still aren't lined up).
|
|
The default "make" would be quite quiet, but still conveniently print
the CFLAGS. The explicit "make V=0" was intended to be identical, (only
not printing the message about V=1 but was broken in that it left the
CFLAGS off). Fix this.
|
|
These just made the output look so ugly, and weren't actually making
the rule definitions any simpler. Good riddance.
|
|
We had a fairly ugly violation of modularity with the top-level
Makefile.local isntalling everything, (even when the build commands
for the library were down in lib/Makefile.local).
|
|
One of the supproted mechanisms we offer for configuration is
manually editing the Makefile.config file after it is generated
by the configure script. In this case it would be nice to be able
to change prefix only once, so allow that.
|
|
There's not any special configure logic for determining these variable
values, but if we did add some in the future, then these will now be
in the right place for that.
Additionally, this now makes Makefile.local the single place for the
user to look for manually tweaking a variable assignment, (say, for a
compiler that can't accept a particular warning argument).
With this change, there should rarely be any need for a user to poke
into any Makefile.local file.
|
|
Before it was impossible to know whether any particular setting or
rule definition was in Makefile or Makefile.local. So we strip the
Makefile down to little more than the list of sub-directories and
the logic to include all of the sub-directories' Makefile.local
fragments.
Then, all of the real work can happen inside of Makefile.local.
|
|
If an explicit --libdir is passed, then that is used directly. Otherwise
libdir is chosen as the value of $PREFIX/lib, (whether or not prefix was
passed explicitly or set by default).
|
|
Documentation is installed to PREFIX/man not PREFIX/share.
|
|
This allows packagers to specify to which directory libraries should be
installed.
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
|
|
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
|
|
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
|
|
This variable existed previously, but wasn't actually used for anything.
|
|
For the case of adding a file that already exist, (with the same
filename). In this case, nothing will happen to the database, but
that wasn't clear before.
|
|
When trying to restore the current position, if the "current" thread
no longer appears in the buffer, then '=' moves to the current line
instead. When near the end of the buffer, the "current" line should
be counted as the number of lines from the end.
|
|
This was suggested by Srinivasa and is intended to make it easier to
integrate notmuch into an mbox-loving mail client.
|
|
I just tried (and failed) to write a test for the recent magic
inference of phrase searches. That's a feature that makes me *really*
uncomfortable to not have an automated test. But I believe the
proposed modularization of the test suite should reduce some quoting
nightmares, so will hopefully make this easier.
|
|
With some extra qutotation marks, we are now doing actual phrase
searches so these tests pass.
|
|
These results have all the same terms as the target phrase, but
not in the expected order. They are designed to ensure that we
actually test phrase searches.
And as it turns out, we're not currently quoting the search terms
properly, so the phrase-search tests now fail with this commit.
|
|
It can not add and remove messages. However, message moves are not detected and we do not modify or honor the Directory entries yet.
|
|
|
|
This commit contains many minor and bigger changes, such as the removal of the logging import too.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Sebastian:
This replaces the patch it responds to. With this patch, we can now use
the cnotmuch with David's json ui. There are still issues, but this
allows interaction with emacs.
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
We are still missing Database.upgrade() as I am not sure how to implement the callback, and it's not that important for now. Documentation for the new classes is written inline, but not integrated in the docs yet.
|
|
|
|
These were the last 2 missing methods from the Message object, which should be feature complete now.
|
|
|
|
|
|
|
|
|