From 59fb44d78522adf6e927af3a707d668dd2cf5108 Mon Sep 17 00:00:00 2001 From: Amadeusz Żołnowski Date: Mon, 21 Jan 2013 20:41:15 +0100 Subject: lib/Makefile.local: depend on libs we are linking with --- lib/Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile.local b/lib/Makefile.local index 77859447..155ac02f 100644 --- a/lib/Makefile.local +++ b/lib/Makefile.local @@ -73,7 +73,7 @@ libnotmuch_modules := $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o) $(dir)/libnotmuch.a: $(libnotmuch_modules) $(call quiet,AR) rcs $@ $^ -$(dir)/$(LIBNAME): $(libnotmuch_modules) notmuch.sym +$(dir)/$(LIBNAME): $(libnotmuch_modules) notmuch.sym util/libutil.a parse-time-string/libparse-time-string.a $(call quiet,CXX $(CXXFLAGS)) $(libnotmuch_modules) $(FINAL_LIBNOTMUCH_LDFLAGS) $(LIBRARY_LINK_FLAG) -o $@ util/libutil.a parse-time-string/libparse-time-string.a notmuch.sym: $(srcdir)/$(dir)/notmuch.h $(libnotmuch_modules) -- cgit v1.2.3 From f021a062888b7940fe7ee049a88ae176837bcd96 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Tue, 29 Jan 2013 19:06:37 -0400 Subject: test: delay watchdog checks in emacs. Instead of checking immediately for the watched process, delay a minute, or in the case that process-attributes returns nil, for two minutes. This is intended to cope with the case that process-attributes is unimplimented, and returns always returns nil. In this case, the watchdog check is the same as the two minute limit imposed by timeout. --- test/test-lib.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/test-lib.el b/test/test-lib.el index dece811e..d26b49f7 100644 --- a/test/test-lib.el +++ b/test/test-lib.el @@ -77,12 +77,19 @@ invisible text." (setq start next-pos))) str)) -(defun orphan-watchdog (pid) +(defun orphan-watchdog-check (pid) "Periodically check that the process with id PID is still running, quit if it terminated." (if (not (process-attributes pid)) - (kill-emacs) - (run-at-time "1 min" nil 'orphan-watchdog pid))) + (kill-emacs))) + +(defun orphan-watchdog (pid) + "Initiate orphan watchdog check." + ; If process-attributes returns nil right away, that probably means + ; it is unimplimented. So we delay two minutes before killing emacs. + (if (process-attributes pid) + (run-at-time 60 60 'orphan-watchdog-check pid) + (run-at-time 120 60 'orphan-watchdog-check pid))) (defun hook-counter (hook) "Count how many times a hook is called. Increments -- cgit v1.2.3 From e0e7743159e0b95872e8f3d367b64bd45e1fab41 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Tue, 29 Jan 2013 19:16:12 -0400 Subject: NEWS: News for 0.15.2 Another couple of build fixes. --- NEWS | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/NEWS b/NEWS index 97f23058..1cea2ecb 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +Notmuch 0.15.2 (2013-02-17) +=========================== + +Build fixes +----------- + +Update dependencies to avoid problems when building in parallel. + +Internal test framework changes +------------------------------- + +Adjust Emacs test watchdog mechanism to cope with `process-attributes` +being unimplimented. + Notmuch 0.15.1 (2013-01-24) ========================= -- cgit v1.2.3 From dd9851dcea62486d4a6a277a3f90e9ed56e5844d Mon Sep 17 00:00:00 2001 From: David Bremner Date: Tue, 29 Jan 2013 19:20:11 -0400 Subject: debian: changelog stanza for 0.15.2-1 --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 943ea91d..e9b1a8bb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +notmuch (0.15.2-1) experimental; urgency=low + + * Upstream bug fix release. + - Improve support for parallel building + - Update Emacs tests for portability, fix FTBFS on hurd-i386 + + -- David Bremner Tue, 29 Jan 2013 19:19:25 -0400 + notmuch (0.15.1-1) experimental; urgency=low * Upstream bug fix release: set default TERM for running tests. -- cgit v1.2.3 From bcccc2e1fe19003e28b6cd85d3f2b2beda40335f Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 17 Feb 2013 09:40:52 -0400 Subject: bump versions to 0.15.2 --- bindings/python/notmuch/version.py | 2 +- man/man1/notmuch-config.1 | 2 +- man/man1/notmuch-count.1 | 2 +- man/man1/notmuch-dump.1 | 2 +- man/man1/notmuch-new.1 | 2 +- man/man1/notmuch-reply.1 | 2 +- man/man1/notmuch-restore.1 | 2 +- man/man1/notmuch-search.1 | 2 +- man/man1/notmuch-show.1 | 2 +- man/man1/notmuch-tag.1 | 2 +- man/man1/notmuch.1 | 2 +- man/man5/notmuch-hooks.5 | 2 +- man/man7/notmuch-search-terms.7 | 2 +- version | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index 6a1b7084..6bfb1f2c 100644 --- a/bindings/python/notmuch/version.py +++ b/bindings/python/notmuch/version.py @@ -1,2 +1,2 @@ # this file should be kept in sync with ../../../version -__VERSION__ = '0.15.1' +__VERSION__ = '0.15.2' diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1 index 6204a594..db31166b 100644 --- a/man/man1/notmuch-config.1 +++ b/man/man1/notmuch-config.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-CONFIG 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-CONFIG 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-config \- access notmuch configuration file .SH SYNOPSIS diff --git a/man/man1/notmuch-count.1 b/man/man1/notmuch-count.1 index 7f8bbac7..86a67fe2 100644 --- a/man/man1/notmuch-count.1 +++ b/man/man1/notmuch-count.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-COUNT 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-COUNT 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-count \- count messages matching the given search terms .SH SYNOPSIS diff --git a/man/man1/notmuch-dump.1 b/man/man1/notmuch-dump.1 index 799fd7b6..3fa51bdd 100644 --- a/man/man1/notmuch-dump.1 +++ b/man/man1/notmuch-dump.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-DUMP 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-DUMP 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-dump \- creates a plain-text dump of the tags of each message diff --git a/man/man1/notmuch-new.1 b/man/man1/notmuch-new.1 index 2ee6a8f0..02f79543 100644 --- a/man/man1/notmuch-new.1 +++ b/man/man1/notmuch-new.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-NEW 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-NEW 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-new \- incorporate new mail into the notmuch database .SH SYNOPSIS diff --git a/man/man1/notmuch-reply.1 b/man/man1/notmuch-reply.1 index 2751e96b..454bdee3 100644 --- a/man/man1/notmuch-reply.1 +++ b/man/man1/notmuch-reply.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-REPLY 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-REPLY 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-reply \- constructs a reply template for a set of messages diff --git a/man/man1/notmuch-restore.1 b/man/man1/notmuch-restore.1 index 52aae41e..4ec4c801 100644 --- a/man/man1/notmuch-restore.1 +++ b/man/man1/notmuch-restore.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-RESTORE 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-RESTORE 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-restore \- restores the tags from the given file (see notmuch dump) diff --git a/man/man1/notmuch-search.1 b/man/man1/notmuch-search.1 index acd8863a..d3391f83 100644 --- a/man/man1/notmuch-search.1 +++ b/man/man1/notmuch-search.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-SEARCH 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-SEARCH 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-search \- search for messages matching the given search terms .SH SYNOPSIS diff --git a/man/man1/notmuch-show.1 b/man/man1/notmuch-show.1 index 5d4ccfab..8be9eaec 100644 --- a/man/man1/notmuch-show.1 +++ b/man/man1/notmuch-show.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-SHOW 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-SHOW 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-show \- show messages matching the given search terms .SH SYNOPSIS diff --git a/man/man1/notmuch-tag.1 b/man/man1/notmuch-tag.1 index a65eb426..0052ca21 100644 --- a/man/man1/notmuch-tag.1 +++ b/man/man1/notmuch-tag.1 @@ -1,4 +1,4 @@ -.TH NOTMUCH-TAG 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-TAG 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-tag \- add/remove tags for all messages matching the search terms diff --git a/man/man1/notmuch.1 b/man/man1/notmuch.1 index 9b25c275..a6573084 100644 --- a/man/man1/notmuch.1 +++ b/man/man1/notmuch.1 @@ -16,7 +16,7 @@ .\" along with this program. If not, see http://www.gnu.org/licenses/ . .\" .\" Author: Carl Worth -.TH NOTMUCH 1 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH 1 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch \- thread-based email index, search, and tagging .SH SYNOPSIS diff --git a/man/man5/notmuch-hooks.5 b/man/man5/notmuch-hooks.5 index a543d5d7..402c0ef6 100644 --- a/man/man5/notmuch-hooks.5 +++ b/man/man5/notmuch-hooks.5 @@ -1,4 +1,4 @@ -.TH NOTMUCH-HOOKS 5 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-HOOKS 5 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-hooks \- hooks for notmuch diff --git a/man/man7/notmuch-search-terms.7 b/man/man7/notmuch-search-terms.7 index 8916fdad..eb417ba6 100644 --- a/man/man7/notmuch-search-terms.7 +++ b/man/man7/notmuch-search-terms.7 @@ -1,4 +1,4 @@ -.TH NOTMUCH-SEARCH-TERMS 7 2013-01-24 "Notmuch 0.15.1" +.TH NOTMUCH-SEARCH-TERMS 7 2013-02-17 "Notmuch 0.15.2" .SH NAME notmuch-search-terms \- syntax for notmuch queries diff --git a/version b/version index e815b861..4312e0d0 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.15.1 +0.15.2 -- cgit v1.2.3