Impending release 0.6.1, Debian versioning scheme.

2011-07-17 Thread David Bremner

I'm about ready to roll a bug fix release 0.6.1.

You can take a look at 

git://pivot.cs.unb.ca/notmuch.git
branch: release

This fixes two annoying bugs:

 The debian packages now depend strictly on the same version
 libnotmuch (thanks ukleink). This makes upgrades slightly more
 robust in the face of query syntax changes.

 (Some of) the Xapian symbols are back. This fixes termination with
 uncaught exceptions on (at least) gcc 4.4.5. Thanks to jvalroff,
 among others for reporting this. This is a pre-requisite for a
 backport to Debian Squeeze.

I snuck in a few changes to the "make release" target, essentially what
I posted in  "1309781021-32062-1-git-send-email-david at tethera.net". At
the moment those only really affect Carl and I (although one of the
things I tried to do is make it more possible for for everybody to run
the release related targets).

Another change is that the Debian packages will become non-native (at
least until we change our minds again).  This will make it easier to
make uploads of just Debian packaging fixes. This will not involve any
seperate branch or repo for debian packaging.

I want to get this out the door so we can concentrate on the 0.7
release. So far this will have only python and vim changes, but I live
in hope of the atomicity series of amdragon and the jrollins rfc822 fix
making it in.

If anybody finds showstoppers, let me know before say 2359UTC, otherwise
I'll follow the wise words of Grace Hopper and ask forgiveness later.

d
-- next part --
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 315 bytes
Desc: not available
URL: 
<http://notmuchmail.org/pipermail/notmuch/attachments/20110717/3efe5385/attachment.pgp>


xapian exceptions not caught in python bindings?

2011-07-17 Thread Patrick Totzke
Hi all,

I know this issue is not easy to fix and that it's partly a problem
with xapians bad error handling. I just want to state another problem we run
into with xapians exceptions in combination with the python bindings.
If you run the following snippet, you notice that not only do we get
xapian-garbage on stderr but we don't really get any exceptions at the
position where it would make sense:


from notmuch import Database
bad_querystring = "test AND"

# This should raise a NotmuchError and query should be NoneType
query = Database().create_query(bad_querystring)

# this prints to stderr but returns a Threads object.
threads = query.search_threads()

# this finally raises a NotmuchError(STATUS.NOT_INITIALIZED)
for t in threads: print t


Although the querystring is invalid syntactically, the query object gets 
instantiated and can of course not behave as it should later on.


xapian exceptions not caught in python bindings?

2011-07-17 Thread David Bremner
On Sun, 17 Jul 2011 20:35:38 +0100, Patrick Totzke  wrote:
> If you run the following snippet, you notice that not only do we get
> xapian-garbage on stderr but we don't really get any exceptions at the
> position where it would make sense:

I wouldn't call that "xapian-garbage" since it is output from
libnotmuch.

d


notmuch release 0.6.1 now available

2011-07-17 Thread David Bremner

Where to obtain notmuch 0.6.1
===
  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz

Which can be verified with:

  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz.sha1
  ea18d618499d0dd03fdb0defaddaf263e1e5c312  notmuch-0.6.1.tar.gz

  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz.sha1.asc
  (signed by David Bremner)

What's new in notmuch 0.6.1
=

Bug-fix release.


Re-export Xapian exception typeinfo symbols.

  It turned out our aggressive symbol hiding caused problems for
  people running gcc 4.4.5.

What is notmuch
===
Notmuch is a system for indexing, searching, reading, and tagging
large collections of email messages in maildir or mh format. It uses
the Xapian library to provide fast, full-text search with a convenient
search syntax.

For more about notmuch, see http://notmuchmail.org



Impending release 0.6.1, Debian versioning scheme.

2011-07-17 Thread David Bremner

I'm about ready to roll a bug fix release 0.6.1.

You can take a look at 

git://pivot.cs.unb.ca/notmuch.git
branch: release

This fixes two annoying bugs:

 The debian packages now depend strictly on the same version
 libnotmuch (thanks ukleink). This makes upgrades slightly more
 robust in the face of query syntax changes.

 (Some of) the Xapian symbols are back. This fixes termination with
 uncaught exceptions on (at least) gcc 4.4.5. Thanks to jvalroff,
 among others for reporting this. This is a pre-requisite for a
 backport to Debian Squeeze.

I snuck in a few changes to the "make release" target, essentially what
I posted in  "1309781021-32062-1-git-send-email-da...@tethera.net". At
the moment those only really affect Carl and I (although one of the
things I tried to do is make it more possible for for everybody to run
the release related targets).

Another change is that the Debian packages will become non-native (at
least until we change our minds again).  This will make it easier to
make uploads of just Debian packaging fixes. This will not involve any
seperate branch or repo for debian packaging.

I want to get this out the door so we can concentrate on the 0.7
release. So far this will have only python and vim changes, but I live
in hope of the atomicity series of amdragon and the jrollins rfc822 fix
making it in.

If anybody finds showstoppers, let me know before say 2359UTC, otherwise
I'll follow the wise words of Grace Hopper and ask forgiveness later.

d


pgpvKG2surKXv.pgp
Description: PGP signature
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: xapian exceptions not caught in python bindings?

2011-07-17 Thread Patrick Totzke
Hi all,

I know this issue is not easy to fix and that it's partly a problem
with xapians bad error handling. I just want to state another problem we run
into with xapians exceptions in combination with the python bindings.
If you run the following snippet, you notice that not only do we get
xapian-garbage on stderr but we don't really get any exceptions at the
position where it would make sense:


from notmuch import Database
bad_querystring = "test AND"

# This should raise a NotmuchError and query should be NoneType
query = Database().create_query(bad_querystring)

# this prints to stderr but returns a Threads object.
threads = query.search_threads()

# this finally raises a NotmuchError(STATUS.NOT_INITIALIZED)
for t in threads: print t


Although the querystring is invalid syntactically, the query object gets 
instantiated and can of course not behave as it should later on.
From a user point of view it is really quite strange that only later
(if one iterates over threads) an exception is raised.

One solution that comes to mind here is simply bending sys.sdterr to something 
internal,
interpreting its output and raising the correct exceptions accordingly.
The downside is, this would have to happen every time the library gets called.
Also, a fix like this would be python specific, so everybody else would still 
get
garbage printed to stderr occasionally.

Thoughts anyone?
/p



On Sun, Jun 26, 2011 at 09:27:33PM +0100, Patrick Totzke wrote:
> Hi all!
> It's me again, with some strange python behaviour :/
> 
> When I iterate over threads or messages only partially,
> then make changes to the index and continue the iteration,
> then I don't necessarily get NotmuchError's but the underlying
> libnotmuch seems to call terminate. I get the following two lines on
> stderr:
>   terminate called after throwing an instance of 
> 'Xapian::DatabaseModifiedError'
>   Aborted
> then python aborts without an exception.
> This happens on current master with current python bindings. To reproduce
> use this to iterate over messages:
> 
> --%<---
> #it_read.py
> from notmuch import Query,Database
> msgs = Database().create_query('*').search_messages()
> 
> i=0
> for m in msgs:
> i=i+1
> if i%50==0:
> raw_input()
> readit = str(m)
> -->%---
> 
> start it, then use this to change the index:
> 
> --%<---
> #it_write.py 
> from notmuch import Query,Database
> db = Database(mode = Database.MODE.READ_WRITE)
> msgs = Query(db,'*').search_messages()
> 
> i=0
> for m in msgs:
> i=i+1
> if i%20==0:
> m.add_tag('REMOVEME')
> -->%---
> 
> you have to alternate a bit between hitting enter in the
> read code and rerunning the write code.
> Read will fail at some point.
> 
> The strange thing is that its not consistent:
> I stumbled upon this while reading a list of threads from notmuch.threads on
> demand. If reading from the iterator catches a NotmuchError, i create a new 
> one
> and update my list threads read so far. This does work, but: on every
> NotmuchError, I get this on stderr:
>  A Xapian exception occurred performing query: The revision being read has 
> been discarded - you should call Xapian::Database::reopen() and retry the 
> operation
>  Query string was: thread:1876
> 
> After a couple of resets this does not happen again but the next time i read
> from an outdated index, the whole UI terminates with the "Aborted" message
> stated above.
> 
> To sum up, I think there are two bad things happening here:
> 1) should libnotmuch really print to stderr?
> 2) the python bindings are either not relaying all exceptions or libnotmuch 
> is not relaying 
> all xapian exceptions in order for the bindings to intercept them
> 
> cheers,
> /p




signature.asc
Description: Digital signature
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: xapian exceptions not caught in python bindings?

2011-07-17 Thread David Bremner
On Sun, 17 Jul 2011 20:35:38 +0100, Patrick Totzke 
 wrote:
> If you run the following snippet, you notice that not only do we get
> xapian-garbage on stderr but we don't really get any exceptions at the
> position where it would make sense:

I wouldn't call that "xapian-garbage" since it is output from
libnotmuch.

d
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


notmuch release 0.6.1 now available

2011-07-17 Thread David Bremner

Where to obtain notmuch 0.6.1
===
  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz

Which can be verified with:

  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz.sha1
  ea18d618499d0dd03fdb0defaddaf263e1e5c312  notmuch-0.6.1.tar.gz

  http://notmuchmail.org/releases/notmuch-0.6.1.tar.gz.sha1.asc
  (signed by David Bremner)

What's new in notmuch 0.6.1
=

Bug-fix release.


Re-export Xapian exception typeinfo symbols.
  
  It turned out our aggressive symbol hiding caused problems for
  people running gcc 4.4.5.

What is notmuch
===
Notmuch is a system for indexing, searching, reading, and tagging
large collections of email messages in maildir or mh format. It uses
the Xapian library to provide fast, full-text search with a convenient
search syntax.

For more about notmuch, see http://notmuchmail.org

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch