1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
|
# ChangeLog for net-mail/notmuch
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.114 2015/03/25 13:51:47 aidecoe Exp $
25 Mar 2015; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.19.ebuild:
Remove old, testing revision of 0.19.
25 Mar 2015; Agostino Sarubbo <ago@gentoo.org> notmuch-0.19-r1.ebuild:
Stable for x86, wrt bug #543890
24 Mar 2015; Agostino Sarubbo <ago@gentoo.org> notmuch-0.19-r1.ebuild:
Stable for amd64, wrt bug #543890
*notmuch-0.19-r1 (29 Jan 2015)
29 Jan 2015; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.19-r1.ebuild,
+files/0.19-0001-doc-gzipped-notmuch.3-before-trying-to.patch,
+files/0.19-0002-Rename-rst2man-to-rst2man.py-for-Gento.patch,
+files/0.19-0003-build-eliminate-use-of-python-execfile.patch:
Apply rst2man related fixes. Fallback from sphinx to rst2man was ending up
with build failure. Rels bug #530522.
02 Dec 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild, notmuch-0.18.2.ebuild,
notmuch-0.19.ebuild:
Put bash-completion file into correct location.
*notmuch-0.19 (30 Nov 2014)
30 Nov 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.19.ebuild:
Version bump.
NEWS
~~~~
Command-Line Interface
----------------------
- Stopped `notmuch dump` failing if someone writes to the database
- `notmuch insert` requires succesful message indexing for success status
- `notmuch insert` has gained support for `post-insert` hook
- `notmuch deliver` is deprecated
- `notmuch search` now supports `--duplicate=N` option with
`--output=messages`
- Added `notmuch address` subcommand
Emacs Interface
---------------
- Use the `j` key to access saved searches from anywhere in notmuch
- Improved handling of the unread tag
- Expanded default saved search settings
- Improved `q` binding in notmuch buffers
- `notmuch-show-stash-mlarchive-link-alist` now supports functions
Library changes
---------------
- Introduced database version 3 with support for "database features."
- Library users are no longer required to call `notmuch_database_upgrade`
- Library users can now abort an atomic section by closing the database
- Add return status to notmuch_database_close and notmuch_database_destroy
- Bug fixes and performance improvements for thread linking
nmbug
-----
`nmbug help` is not `nmbug --help`, and the following nmbug commands have
slightly different interfaces: `archive`, `commit`, `fetch`, `log`, `pull`,
`push`, and `status`. For details on the new interface for a given command,
run `nmbug COMMAND --help`.
nmbug-status
------------
`nmbug-status` can now optionally load header and footer templates
from the config file. Use something like:
Python Bindings
---------------
Add support for `notmuch_query_add_tag_exclude`
28 Nov 2014; Pacho Ramos <pacho@gentoo.org> notmuch-0.18.2.ebuild:
Support python 3.4
23 Nov 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.18.1.ebuild:
Remove 0.18.1 version.
11 Nov 2014; Chema Alonso <nimiux@gentoo.org> notmuch-0.18.2.ebuild:
Stable for amd64 wrt bug #516756
*notmuch-0.18.2 (01 Nov 2014)
01 Nov 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.18.2.ebuild:
Version bump.
NEWS
~~~~
- Fix test suite to work with gdb 7.8
- Emacs 24.4 related bug fixes
18 Sep 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild, notmuch-0.18.1.ebuild:
Block gdb-7.8 because it breaks atomicity tests.
01 Sep 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild:
Install zsh and bash completion files unconditionally.
28 Aug 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.18.1.ebuild:
src_prepare() doesn't have 'default'.
28 Aug 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.18.1.ebuild:
Moved check for /etc/mutt/notmuch-mutt.rc to pkg_preinst(). Now it should
work fine with binpkgs.
28 Aug 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.18.1.ebuild:
Unconditional installation of zsh/bash completion files. Fixes bug #521372.
28 Aug 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild, notmuch-0.18.1.ebuild:
Prefixed paths with $EPREFIX instead of $ROOT. Thanks to mgorny for the
report.
21 Jul 2014; Andreas K. Huettel <dilfridge@gentoo.org>
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild, notmuch-0.18.1.ebuild:
PodParser becomes Pod-Parser
09 Jul 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/0.12-0001-test-exit-with-nonzero-value-when-not-.patch,
-files/0.13.1-0001-test-exit-with-nonzero-value-when-not-.patch,
-files/0.14-0001-test-exit-with-nonzero-value-when-not-.patch,
-files/0.15.2-0001-test-exit-with-nonzero-value-when-not-.patch:
Removed orphaned patches.
09 Jul 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.18-r1.ebuild,
-files/0.18-0001-emacs-install-make-sure-all-components.patch,
-files/0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch,
-files/0.18-0003-Unset-html_static_path-in-Python-bindi.patch:
0.18.1 comes with important fixes for 0.18, thus removing 0.18.
09 Jul 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.18.1.ebuild:
Include database upgrade test.
*notmuch-0.18.1 (25 Jun 2014)
25 Jun 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.18.1.ebuild:
Version bump.
NEWS
~~~~
This is a bug fix and portability release.
Build System
------------
Make emacs install robust against the non-existence of emacs
Put notmuch lib directory first in RPATH
Fix handling of html_static_path in sphinx
Test Suite
----------
Use --quick when starting emacs (avoids a hang in the T160-json tests)
Allow pending break points in atomicity script
Command-Line Interface
----------------------
To improve portability use fsync instead of fdatasync in
`notmuch-dump`. There should be no functional difference.
Library changes
---------------
Resurrect support for single-message mbox files
Fix for phrase indexing
Emacs Interface
---------------
Make sure tagging on an empty query is harmless
20 May 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.18.ebuild:
Removed old revision of 0.18.
*notmuch-0.18-r1 (14 May 2014)
14 May 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.18-r1.ebuild,
+files/0.18-0001-emacs-install-make-sure-all-components.patch,
+files/0.18-0002-doc-conf.py-Remove-_static-from-html_s.patch,
+files/0.18-0003-Unset-html_static_path-in-Python-bindi.patch:
Fixes compilation in case if emacs is not present and prevents infinite loops
on generating docs with newer Sphinx.
*notmuch-0.18 (07 May 2014)
07 May 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.18.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
General
-------
The `folder:` search prefix now requires an exact match
There is a new `path:` search prefix.
Notmuch database upgrade due to `folder:` and `path:` changes
Library changes
---------------
Support for indexing mbox files has been dropped
Message header parsing changes (from internal GMime)
Command-Line Interface
----------------------
`notmuch dump` now defaults to `batch-tag` format
`notmuch new` has a --quiet option
`notmuch insert` respects maildir.synchronize_flags config option
The commands set consistent exit status codes on failures
Bug fix for checking configured new.tags for invalid tags
Emacs Interface
---------------
Init file pointed by new variable `notmuch-init-file`
Changed format for saved searches
The keys of `notmuch-tag-formats` are now regexps
Changed tags are now shown in the buffer
Ido-completing-read initialization in Emacs 23
Bug fix for saved searches with newlines in them
Bug fixes for sender identities
Replies to encrypted messages will be encrypted by default
Reply pushes mark before signature
Message piping uses the originating buffer's working directory
12 Mar 2014; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.15.2.ebuild, metadata.xml:
Removed old stable version using deprecated distutils eclass.
09 Mar 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> notmuch-0.17.ebuild:
x86 stable wrt bug #500556
26 Feb 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.15.2.ebuild,
notmuch-0.16-r1.ebuild, notmuch-0.17.ebuild:
Verbose compilation.
18 Feb 2014; Chema Alonso <nimiux@gentoo.org> notmuch-0.17.ebuild:
Stable for amd64 wrt bug #500556
15 Feb 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.17.ebuild:
Don't call gcc directly, honor CC and CXX. Fixes bug #500864.
02 Jan 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.12.ebuild,
-notmuch-0.13.1.ebuild, -notmuch-0.14-r1.ebuild:
Removed old versions which don't pass tests anymore.
*notmuch-0.17 (02 Jan 2014)
02 Jan 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.17.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
- Incompatible change in SHA1 computation for big-endian architectures.
Command-Line Interface
----------------------
- New options to better support handling duplicate messages
- Improved `notmuch new` performance for unchanged folders
- `notmuch reply --format=text` RFC 2047-encodes headers
- `notmuch compact` command
Emacs Interface
---------------
- `notmuch-tree` (formerly `notmuch-pick`) has been added to mainline
- Tagging threads in search is now race-free
- `notmuch-hello` refreshes when switching to the buffer
- Specific mini-buffer prompts for tagging operations
- Built-in help improvements
- Quote replies as they are displayed in show view
- Fixed inconsistent use of configured search order
- Common keymap for notmuch-wide bindings
- The `notmuch-tag` function now requires a list of tag changes
- Fixed `notmuch-reply` putting reply in primary selection
- Fixed `notmuch-show` invisible part handling
- Fixed `notmuch-show` attachment viewers and stderr
- Fixed `notmuch-mua-reply` point placement when signature involved
Vim Interface
-------------
- Composing new messages in the Vim interface (as opposed reply to existing
messages)
- Support for going straight to a search
22 Sep 2013; Agostino Sarubbo <ago@gentoo.org> notmuch-0.16-r1.ebuild:
Stable for x86, wrt bug #484926
15 Sep 2013; Agostino Sarubbo <ago@gentoo.org> notmuch-0.16-r1.ebuild:
Stable for amd64, wrt bug #484926
14 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.10.2-r3.ebuild, -notmuch-0.11.1-r3.ebuild,
-files/0.10.2-build-with-gmime-2.4-only.patch,
-files/0.10.2-emacsui-mml-tags-quoting-fix.patch,
-files/0.10.2-emacsui-mml-tags-quoting-test.patch,
-files/0.10.2-fix-test-build.patch,
-files/0.10.2-lib-call-g_mime_init-db-open.patch,
-files/0.11.1-build-with-gmime-2.4-only.patch:
Removed the oldest versions: 0.10 and 0.11.
14 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/0.15-0001-lib-Makefile.local-depend-on-libs-we-a.patch,
-files/0.15.1-0001-lib-Makefile.local-depend-on-libs-we-a.patch:
Removed old, unused patches.
14 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.12.ebuild,
notmuch-0.13.1.ebuild, notmuch-0.14-r1.ebuild, notmuch-0.15.2.ebuild,
notmuch-0.16-r1.ebuild,
+files/0.12-0001-test-exit-with-nonzero-value-when-not-.patch,
+files/0.13.1-0001-test-exit-with-nonzero-value-when-not-.patch,
+files/0.14-0001-test-exit-with-nonzero-value-when-not-.patch,
+files/0.15.2-0001-test-exit-with-nonzero-value-when-not-.patch,
+files/0.16-0001-test-exit-with-nonzero-value-when-not-.patch:
Ensure test phase fails if any test in suite fails. Rels bug #483988.
06 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.16.ebuild:
Removing old revision of 0.16 version.
*notmuch-0.16-r1 (06 Sep 2013)
06 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.16-r1.ebuild:
Bumping 0.16 to r1 to enforce rebuild for ~arch users. It rels bug #483988.
Stable users should not be affected by the bug.
06 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r3.ebuild, notmuch-0.11.1-r3.ebuild, notmuch-0.12.ebuild,
notmuch-0.13.1.ebuild, notmuch-0.14-r1.ebuild, notmuch-0.15.2.ebuild,
notmuch-0.16.ebuild:
Block >=xapian-1.3 for notmuch, because half of tests fail with new xapian.
It rels bug #483988.
*notmuch-0.16 (03 Aug 2013)
03 Aug 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.16.ebuild:
Version bump.
Bumped EAPI to 5 and migrated to distutils-r1 (thanks to Mike
Gilbert <floppym@gentoo.org> for help with that).
Notmuch 0.16 has new Vim UI which needs Ruby bindings. Unfortunatelly the
ebuild doesn't support Ruby bindings until somebody add it. Patches with
support for Ruby bindings using ruby-ng eclass are welcome. See bug #475624.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
Command-Line Interface
----------------------
- Support for delivering messages to Maildir (new command `insert`)
- `notmuch count --batch` option
- `notmuch tag` option to remove all tags from matching messages (`notmuch
tag --remove-all`)
- Decrypting commands explicitly expect a gpg-agent
- Configuration file saves follow symbolic links
- Top level option to specify configuration file (`notmuch --config=FILE`)
- Bash command-line completion improved
- Deprecated commands "part" and "search-tags" are removed.
Emacs Interface
---------------
- New keymap to view/save parts; removed s/v/o/| part button bindings
- Default part save directory is now `mm-default-directory`
- Key bindings for next/previous thread (M-n and M-p)
- Better handling of errors in search buffers
- Faster search and show
10 Mar 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.15.ebuild,
-notmuch-0.15.1.ebuild:
Remove all 0.15.x but latest.
09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> notmuch-0.15.2.ebuild:
Stable for x86, wrt bug #460144
05 Mar 2013; Agostino Sarubbo <ago@gentoo.org> notmuch-0.15.2.ebuild:
Stable for amd64, wrt bug #460144
*notmuch-0.15.2 (17 Feb 2013)
17 Feb 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.15.2.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
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 (27 Jan 2013)
27 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.15.1.ebuild,
+files/0.15.1-0001-lib-Makefile.local-depend-on-libs-we-a.patch:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
Internal test framework changes
-------------------------------
- Set a default value for TERM when running tests
22 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.15.ebuild,
+files/0.15-0001-lib-Makefile.local-depend-on-libs-we-a.patch:
Patch fixing parallel build. It is already accepted by upstream.
Fixes bug #453314.
20 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.15.ebuild:
Fix dependency on emacs.
*notmuch-0.15 (20 Jan 2013)
20 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/60notmuch-pick-gentoo.el, +notmuch-0.15.ebuild, metadata.xml:
Version bump. Added site-init file for notmuch-pick by Ulrich Müller
<ulm@gentoo.org> - thanks! :-)
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
General
-------
- Date range search support
- Empty tag names and tags beginning with "-" are deprecated
- New add-on tool: notmuch-pick (installed on 'pick' USE flag)
Command-Line Interface
----------------------
- `notmuch new` no longer chokes on mboxes
- Support for single message mboxes is deprecated
- Fixed `notmuch new` to skip ignored broken symlinks
- New dump/restore format and tagging interface
- Bcc and Reply-To headers are now available in notmuch show json output
- CLI callers can now request a specific output format version
- `notmuch search` has gained a null character separated text output format
Emacs Interface
---------------
- Removal of the deprecated `notmuch-folders` variable
- Visibility of MIME parts can be toggled
- Emacs now buttonizes mid: links
- Handle errors from bodypart insertions
- Emacs now detects version mismatches with the notmuch CLI
- Improved text/calendar content handling
- Disabled coding conversions when reading in
`with-current-notmuch-show-message`
- Fixed errors with HTML email containing images in Emacs 24
- Fixed handling of tags with unusual characters in them
- Fixed buttonization of id: links without quote characters
- `notmuch-hello` refresh point placement improvements
- Automatic tag changes are now unified and customizable
- Support for stashing the thread id in show view
20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.14-r1.ebuild:
Stable for x86, wrt bug #441466
06 Nov 2012; <ago@gentoo.org> notmuch-0.14-r1.ebuild:
Stable for amd64, wrt bug #441466
*notmuch-0.14-r1 (19 Sep 2012)
19 Sep 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.14.ebuild,
+notmuch-0.14-r1.ebuild:
Added two missing dependencies for 'mutt' flag. Fixes bug #435450.
27 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.13.ebuild:
Removed old not stable revisions: 0.13.
27 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.14.ebuild:
Path of nmbug has changed inside upstream's archive. Fixed that in the
ebuild.
*notmuch-0.14 (26 Aug 2012)
26 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.14.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
General bug fixes
- Maildir tag synchronization
Command-Line Interface
- Changes to notmuch dump/restore syntax
Emacs Interface
- Search results now get re-colored when tags are updated
- The formatting of tags in search results can now be customized
- Experimental support for multi-line search result formats
- Next/previous in search and show now move by boundaries
- Search now uses the JSON format internally
- The date shown in search results is no longer padded before applying
user-specified formatting
04 Jul 2012; Jeff Horelick <jdhore@gentoo.org> notmuch-0.13.1.ebuild:
marked x86 per bug 422861
26 Jun 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.13.1.ebuild:
Stable for amd64, wrt bug #422861
*notmuch-0.13.1 (29 May 2012)
29 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.13.1.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
- Fix inserting of UTF-8 characters from *text/plain* parts in reply
- `notmuch_database_get_directory` and
`notmuch_database_find_message_by_filename` now work on read-only databases
19 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r3.ebuild, notmuch-0.11.1-r3.ebuild, notmuch-0.12.ebuild,
notmuch-0.13.ebuild:
dev-python/sphinx moved from common deps to build-time deps.
16 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.13.ebuild:
Removed unused function from the ebuild.
16 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> metadata.xml:
Changed descriptions of flags: emacs, nmbug and vim.
*notmuch-0.13 (16 May 2012)
16 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.13.ebuild,
metadata.xml:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
Command-Line Interface
- JSON reply format
- Tag exclusion (as an option in the config file)
- Raw show format changes
- Listing configuration items (new "config list" command)
Emacs Interface
- Changes to tagging interface (breaks compatibility with old tagging
functions)
- Reply improvement using the JSON format
New add-on tool: notmuch-mutt
Library changes
The API changes break binary and source compatibility, so libnotmuch has been
bumped to version 3.0.0.
03 May 2012; Jeff Horelick <jdhore@gentoo.org> notmuch-0.10.2-r3.ebuild,
notmuch-0.11.1-r3.ebuild, notmuch-0.12.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
29 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.10.2-r2.ebuild, -notmuch-0.11.1-r2.ebuild:
Removed oldest revisions of versions 0.10.2 and 0.11.1.
29 Apr 2012; Markus Meier <maekke@gentoo.org> notmuch-0.12.ebuild:
x86 stable, bug #413323
29 Apr 2012; Jeff Horelick <jdhore@gentoo.org> notmuch-0.10.2-r3.ebuild,
notmuch-0.11.1-r3.ebuild:
marked x86 per bug 413349
24 Apr 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.12.ebuild:
Stable for amd64, wrt bug #413323
24 Apr 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.10.2-r3.ebuild,
notmuch-0.11.1-r3.ebuild:
Stable for amd64, wrt bug #413349
24 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2-r2.ebuild,
notmuch-0.10.2-r3.ebuild, notmuch-0.11.1-r2.ebuild, notmuch-0.11.1-r3.ebuild,
notmuch-0.12.ebuild:
Better short description.
24 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2-r3.ebuild,
notmuch-0.11.1-r3.ebuild:
Synced ebuilds structures between 0.10.2-r3 and 0.11.1-r3. In result
autotools-utils usage has been dropped in 0.10.2-r3 and nmbug script
installation has been added. In 0.11.1-r3 patch has been moved to PATCHES
variable.
*notmuch-0.11.1-r3 (24 Apr 2012)
*notmuch-0.10.2-r3 (24 Apr 2012)
24 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.10.2-build-with-gmime-2.4-only.patch,
+files/0.11.1-build-with-gmime-2.4-only.patch, +notmuch-0.10.2-r3.ebuild,
+notmuch-0.11.1-r3.ebuild:
Added patch enforcing build with GMime 2.4 only, because 2.6 is not supported
in Notmuch 0.10.2 and it's not fully supported in 0.11.1.
24 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2-r2.ebuild,
notmuch-0.11.1-r2.ebuild, notmuch-0.12.ebuild:
Combined pax-mark flags -z and -e into -ze, because pax-mark interpreted later
-e as file name.
24 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2-r2.ebuild,
notmuch-0.11.1-r2.ebuild:
Added PaX markings for test phase in stable ebuilds, too. It's required for
test in which gdb break is used (on PaX kernel).
23 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.12.ebuild:
Added PaX markings for test phase. It's required for test in which gdb break
is used.
24 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
notmuch-0.11.1-r2.ebuild:
x86 stable wrt bug #408577
20 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r2.ebuild, notmuch-0.11.1-r2.ebuild, notmuch-0.12.ebuild:
'|| die' fix for previous change.
20 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r2.ebuild, notmuch-0.11.1-r2.ebuild, notmuch-0.12.ebuild:
Renamed Python bindings README to README-python, because it used to overwrite
main Notmuch README file.
*notmuch-0.12 (20 Mar 2012)
20 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.12.ebuild:
Version bump.
Notmuch 0.12 is compatible with both GMime 2.4 and 2.6, but ebuild depends
only on >=2.6.7. Python bindings are compatible with Python 3.2.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
Command-Line Interface
- Reply to sender (ability to create a reply template just to the sender)
- Mail store folder/file ignore
- Unified help and manual pages
- Manual page for notmuch configuration options
Emacs Interface
- Reply to sender
- More flexible and consistent tagging operations
- Refreshing the show view ('=' by default) no longer opens or closes
messages
- Attachment buttons can be used to view or save attachments.
- New functions
- Fix MML tag quoting in replies
- Show view archiving key binding changes
- Support text/calendar MIME type
- Generate inline patch fake attachment file names from message subject
- Enable `notmuch-search-line-faces' by default
Library changes
- New functions
Python bindings changes
- Python 3.2 compatibility
- Added missing unicode conversions
Build fixes
- Compatibility with GMime 2.6 (>=2.6.7)
20 Mar 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.11.1-r2.ebuild:
Stable for amd64, wrt bug #408577
08 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
notmuch-0.10.2-r2.ebuild:
x86 stable wrt bug #405417
02 Mar 2012; Agostino Sarubbo <ago@gentoo.org> notmuch-0.10.2-r2.ebuild:
Stable for amd64, wrt bug #405417
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r2.ebuild, notmuch-0.11.1-r2.ebuild:
Fixed LD_LIBRARY_PATH for Python docs build and added for test suites.
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r2.ebuild, notmuch-0.11.1-r2.ebuild:
Require 'python' flag for 'test', because tests suite include test for Python
bindings.
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.10.2.ebuild, -notmuch-0.10.2-r1.ebuild, -notmuch-0.11.1-r1.ebuild:
Removed old revisions of 0.10.2 and 0.11.1.
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
notmuch-0.10.2-r2.ebuild:
Cosmetic change in SRC_URI.
*notmuch-0.10.2-r2 (29 Feb 2012)
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.10.2-emacsui-mml-tags-quoting-fix.patch,
+files/0.10.2-emacsui-mml-tags-quoting-test.patch,
+files/0.10.2-lib-call-g_mime_init-db-open.patch, +notmuch-0.10.2-r2.ebuild:
Fixes bug #406175 (security fix for Emacs UI) and bug #406177 (Python
bindings tests used to fail). I have backported patches from 0.11.1 and 0.11
releases.
28 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2.ebuild,
notmuch-0.10.2-r1.ebuild, notmuch-0.11.1-r1.ebuild, notmuch-0.11.1-r2.ebuild:
Since Wed Nov 17 14:28:26 2010 -0500 glib-2.22 or newer is required. This
nothing changes for Gentoo users, actually, because the oldest 2 version is
2.28 at this time.
*notmuch-0.11.1-r2 (28 Feb 2012)
*notmuch-0.10.2-r1 (28 Feb 2012)
28 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.10.2-r1.ebuild, +notmuch-0.11.1-r2.ebuild:
Support for Ruby bindings is removed. Rels bug #405429 and makes it
OBSOLETE.
Ruby bindings don't have so much care as the rest of the project. There's no
test suite for Ruby bindings to even check if bindings are compatible and I
have no sufficient Ruby knowledge to maintain them without any help. I have a
bit tested them only once when adding package. Notmuch is developed too
rapidly in comparison to Ruby bindings. I haven't heard of any project
depending on Notmuch Ruby bindings so far. Also Debian doesn't include them
in package. Therefore I'm removing them.
28 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.11.ebuild,
-notmuch-0.11.1.ebuild:
Removed old 0.11.* versions.
23 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.10.2.ebuild,
notmuch-0.11.ebuild, notmuch-0.11.1.ebuild, notmuch-0.11.1-r1.ebuild:
Removed postinst info about Python API documentation. It's useless info,
since this documentation can be easily found.
*notmuch-0.11.1-r1 (21 Feb 2012)
21 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.11.1-r1.ebuild, metadata.xml:
Added 'nmbug' USE flag.
*notmuch-0.11.1 (15 Feb 2012)
15 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.11.1.ebuild:
Version bump.
NEWS
~~~~
- Fix error handling bug in python bindings
- Fix vulnerability in emacs reply handling
25 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/0.10.1-fix-test-build.patch, -notmuch-0.10.1.ebuild:
Removed old versions: 0.10.1
*notmuch-0.11 (25 Jan 2012)
25 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.11.ebuild:
Version bump.
NEWS
~~~~
(Extracted headlines from NEWS file. See it for details.)
Command-Line Interface
- Hooks have been introduced to notmuch
- notmuch reply --decrypt bugfix
Performance
- Automatic tag query optimization
- Don't sort messages when creating a dump file
Memory Management
- Reduction of memory leaks
Emacs Interface
- Bug fixes
- Support "notmuch new" as a notmuch-poll-script
- Improvements in saved search management
- Hooks for notmuch-hello
- New face for crypto parts headers
- Use space as default thousands separator
- New function notmuch-show-advance
- Various performance improvements
New add-on tool
Upstream has added also notmuch-deliver into contrib, which is not installed
by this ebuild. I'll create separate ebuild for it or add contrib USE flag in
the future.
*notmuch-0.10.2 (11 Dec 2011)
11 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.10.2-fix-test-build.patch, +notmuch-0.10.2.ebuild:
Version bump.
NEWS
~~~~
Fix crash in python bindings.
The python bindings did not call g_type_init, which caused crashes for some,
but not all users.
02 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/0.10-fix-test-build.patch, -notmuch-0.10.ebuild:
Removed old versions: 0.10.
*notmuch-0.10.1 (02 Dec 2011)
02 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.10.1-fix-test-build.patch, +notmuch-0.10.1.ebuild:
Version bump.
NEWS
~~~~
Fix --help argument
Argument processing changes in 0.10 introduced a bug where "notmuch --help"
crashed while "notmuch help" worked fine.
25 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/0.9-emacsetcdir.patch, -files/0.9-fix-lib-makefile-local.patch,
-notmuch-0.9-r2.ebuild:
Removed old versions: 0.9.
25 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.10-fix-test-build.patch, notmuch-0.10.ebuild:
Fixed out of tree build of test-suites. Corrected postinst message, btw.
*notmuch-0.10 (24 Nov 2011)
24 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +notmuch-0.10.ebuild:
Version bump. Raised minimum Python version to 2.6 for Python bindings.
24 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r2.ebuild:
Added app-misc/dtach which is required in test phase. Sphinx (doc builder)
couldn't find libnotmuch - fixed by defining LD_LIBRARY_PATH. libnotmuch.so
couldn't be found when building ruby bindings - fixed by altering extconf.rb.
07 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r2.ebuild:
Removed some debug echo.
05 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
-notmuch-0.9-r1.ebuild:
Removed old 0.9-r1 revision.
05 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r2.ebuild:
Use elog instead of einfo in postinst.
*notmuch-0.9-r2 (04 Nov 2011)
04 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.9-r2.ebuild, metadata.xml:
Added ruby bindings and API documentation for both python and ruby bindings.
03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.9.ebuild:
Removed old 0.9 revision.
03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r1.ebuild,
metadata.xml:
Added 'crypt' flag which just pulls app-crypt/gnupg and missing build time
dev-util/pkgconfig dependency.
03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r1.ebuild:
Added support for test suite.
*notmuch-0.9-r1 (03 Nov 2011)
03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+notmuch-0.9-r1.ebuild:
Added python bindings.
02 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
files/0.9-emacsetcdir.patch, files/0.9-fix-lib-makefile-local.patch,
notmuch-0.9.ebuild:
~x86 keyword. Notmuch works fine in terminal, Vim and Emacs.
For x86 >=dev-libs/xapian-1.2.7-r2 is required.
Patches as applied by upstream.
02 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.9-emacsetcdir.patch, +files/0.9-fix-lib-makefile-local.patch,
+notmuch-0.9.ebuild, +files/50notmuch-gentoo.el, +metadata.xml:
Moved from app-text/notmuch to net-mail/notmuch.
26 Oct 2011; Ulrich Mueller <ulm@gentoo.org> files/50notmuch-gentoo.el:
Use SITEETC instead of absolute path in emacs site-init file.
24 Oct 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9.ebuild:
~amd64 keyword. Notmuch works fine in terminal, Vim and Emacs.
24 Oct 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.9-emacsetcdir.patch, +files/50notmuch-gentoo.el, notmuch-0.9.ebuild:
Improved emacs support. Added site-init file by Ulrich Müller
<ulm@gentoo.org>.
24 Oct 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9.ebuild,
metadata.xml:
Checking emacs version in pkg_setup(), not in pkg_pretend(). Paths in
src_install() were prefixed with ${ROOT} and emacs files were put into ${PN}
subdirectory. Better descriptions for vim and emacs flags in metadata.xml.
*notmuch-0.9 (23 Oct 2011)
23 Oct 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/0.9-fix-lib-makefile-local.patch, +notmuch-0.9.ebuild, +metadata.xml:
Initial ebuild without python and ruby bindings yet.
|