-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2506 lines (1688 loc) · 101 KB
/
ChangeLog
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2010-09-28 Vincent Untz <[email protected]>
* configure.ac, evince/evince.defs, evince/wscript: Update evince bindings to
2.32 API
2010-06-11 Lucas Rocha <[email protected]>
* configure.ac, wscript: Version 2.31.1 This is just to make new release
using proper unstable version number.
2010-06-10 Lucas Rocha <[email protected]>
* configure.ac, wscript: Version 2.30.1
* evince/evince.defs: Update evince bindings to latest api
2010-03-31 Gustavo Carneiro <[email protected]>
* wscript: Use the 3rd party waf tool 'cflags'
2010-03-30 Gustavo Carneiro <[email protected]>
* configure.ac, wscript: Version 2.30
2010-03-30 Vincent Untz <[email protected]>
* configure.ac: Bug 614310 - bug-buddy 2.30 not found by configure script
2010-03-30 Gustavo Carneiro <[email protected]>
* configure.ac, evince/wscript: Bug 614323 - configure checks for
evince-*-2.29, which doesn't work for evince 2.30
2010-03-11 Gustavo Carneiro <[email protected]>
* configure.ac, wscript: Bump version to 2.29.92
2010-01-28 Gustavo Carneiro <[email protected]>
* totem/plparser.defs, totem/plparser.override: Bug 608331 - totem-pl-parser
doesn't build with latest totem-pl-parser
2010-01-04 Gustavo Carneiro <[email protected]>
* docs/pygtk-ref-docs.make: gtkdoc-fixxref fails in autotools build too
* braseroburn/wscript, braseromedia/wscript, configure.ac, wscript: Bump
version, bump required brasero version.
* evince/evince.defs: Comment out removed APIs
2009-12-16 Tomeu Vizoso <[email protected]>
* evince/evince.defs, evince/evince.override: Update the evince bindings to
HEAD https://bugzilla.gnome.org/show_bug.cgi?id=604751
2009-12-09 Gustavo Carneiro <[email protected]>
* wscript: forget gtkdoc-fixxref for now, it is broken
2009-12-05 Gustavo Carneiro <[email protected]>
* examples/wnck_example.py: Bug 600952 - examples/wnck_example.py has crazy
O(n^2) loop
* wnck/wnck.defs: WnckWindowState, WnckWindowActions, and
WnckWindowMoveResizeMask now are enums, not flags
* braseromedia/bm_module.c: Bug 595342 - braseromedia fails because threads
aren't initialized (patch by Andrew Price)
* configure.ac, evince/evince.defs, evince/evince.override,
evince/evincemodule.c, evince/wscript: Bug 603659 - Needs update for evince
2.29
2009-11-28 Frédéric Péters <[email protected]>
* braseroburn/brasero_burn.defs: Do not expose BraseroTrackDataType any
longer https://bugzilla.gnome.org/show_bug.cgi?id=603231
2009-10-30 Frank Solensky <[email protected]>
* wscript: Fix crash when parsing "bug-buddy --version" _bug_buddy_check
crashed when the third output token from "bug-buddy --version" isn't a
version identifier. Use the final token
2009-11-20 Vincent Untz <[email protected]>
* gnomekeyring/gnomekeyring.override: Fix crash in
gnomekeyringk.item_get_attributes_sync This was crashing when requesting
attributes from a keyring that doesn't exist.
https://bugzilla.gnome.org/show_bug.cgi?id=598835
2009-09-21 Gustavo Carneiro <[email protected]>
* configure.ac, wscript: Bump version for 2.28.0
* NEWS: NEWS for 2.28.0
* Makefile.am: Bug 595380 - braseroburn examples not shipped in tarballs
2009-09-17 Gustavo Carneiro <[email protected]>
* braseroburn/brasero_burn_module.c: The braseroburn module is missing
important constants (#595373)
* examples/braseromedia/drive_selection.py: Workaround bug #595342 in the
example program
2009-09-15 Sayamindu Dasgupta <[email protected]>
* evince/evince.defs, evince/evince.override: Bug 594334 - Wrap DocumentLinks
bit
2009-09-14 Gustavo Carneiro <[email protected]>
* braseroburn/Makefile.am: Bug 594688 - Fails to build out of tree
* COPYING: Add brasero modules license information
2009-09-01 Gustavo Carneiro <[email protected]>
* autogen.sh: newer automake to adapt to newer libtool
* NEWS, configure.ac, wscript: Prepare for release 2.27.3
* gnomekeyring/gnomekeyring.override: Wrap gnome_keyring_find_items
2009-08-16 Philippe Rouquier <[email protected]>
* braseroburn/Makefile.am, braseroburn/brasero-types.c,
braseroburn/brasero-types.h, braseroburn/brasero_burn.defs,
braseroburn/brasero_burn.override, braseroburn/brasero_burn_module.c,
braseroburn/wscript, braseromedia/Makefile.am,
braseromedia/brasero_media.override, configure.ac,
examples/braseroburn/write-audio-video.py,
examples/braseroburn/write-data.py, examples/braseroburn/write-image.py,
examples/braseromedia/drive_selection.py: Fix #591572 - Update for
braseromedia and braseromedium bindings Extends libbrasero-media and
libbrasero-burn support
2009-07-20 Gustavo Carneiro <[email protected]>
* wscript: Bug 589012: build error, missing html/ directories
2009-07-14 Gustavo Carneiro <[email protected]>
* Makefile.am, braseroburn/Makefile.am, configure.ac: Fix autotools build of
the braseroburn module
* examples/braseromedia/drive_selection.py: Missing example from git!
* NEWS: Update NEWS for 2.27.2.
* configure.ac, wscript: Bump version.
2009-07-12 Frédéric Péters <[email protected]>
* braseroburn/brasero_burn.defs: update to API change in libbraseroburn
2009-06-21 Gustavo Carneiro <[email protected]>
* braseroburn/Makefile.am, braseroburn/brasero_burn.defs,
braseroburn/brasero_burn.override, braseroburn/brasero_burn_module.c,
braseroburn/wscript, tests/common.py, wscript: Bug 584831 – add python
bindings for libbrasero-burn
* COPYING: Bug 585722 – No licensing information for evince module
* evince/evince.defs: Bug 586413 – compilation error due to: evince.c:857:
error: implicit declaration of function ‘ev_view_update_view_size’
2009-05-03 Gustavo Carneiro <[email protected]>
* Makefile.am: minor autotools fixes
* Makefile.am: autotools fixes wrt the new braseromedia module
* NEWS: Update NEWS
* tests/common.py: import braseromedia on waf check
2009-05-03 Frederic Peters <[email protected]>
* braseromedia/Makefile.am, braseromedia/bm_module.c,
braseromedia/brasero_media.defs, braseromedia/brasero_media.override,
braseromedia/wscript, configure.ac, wscript: Bug 569055 – add python
bindings for libbrasero-media
2009-05-03 Gustavo Carneiro <[email protected]>
* configure.ac, wscript: bump version
2009-05-02 Gustavo Carneiro <[email protected]>
* generate-ChangeLog, gitlog2changelog.py: ChangeLog generation from GIT
2009-04-28 Gustavo Carneiro <[email protected]>
* gnomeapplet/applet.override: Missing include
2009-04-26 Gustavo Carneiro <[email protected]>
* gnomeapplet/applet.override: Add missing GNOME_CLIENT_PARAM_SM_CONNECT,
FALSE in gnomeapplet module. Closes #579390.
2009-04-24 Gustavo Carneiro <[email protected]>
* : Bug 579396 – cannot build from git (missing empty directory)
2009-03-14 Gustavo J. A. M. Carneiro <[email protected]>
* NEWS, configure.ac, wscript: Version 2.26.0 svn path=/trunk/; revision=549
2009-03-08 Gustavo J. A. M. Carneiro <[email protected]>
* gnomedesktop/_gnomedesktop.defs: Add caller-owns-return annotations for
xxx_new_from_xxx functions. Fixes #570540. svn path=/trunk/; revision=548
2009-02-24 John Stowers <[email protected]>
* evolution/ebookmodule.c, evolution/ecalmodule.c: Correctly include the
GNOME_PYTHON_DESKTOP_*_VERSION attributes in the module __version__
attribute. svn path=/trunk/; revision=547
2009-02-24 Gustavo J. A. M. Carneiro <[email protected]>
* evolution/ebookmodule.c, evolution/ecalmodule.c: Automatically import
bonobo during evolution modules initialization, to avoid certain problems
(see #561354). svn path=/trunk/; revision=546
* evolution/wscript: Fix typos in waf install path for evolution modules svn
path=/trunk/; revision=545
2009-02-23 Gustavo J. A. M. Carneiro <[email protected]>
* tests/common.py, totem/plparsermodule.c: Add bug #571829 test case svn
path=/trunk/; revision=544
* evince/evince.override: (patch from Tomeu Vizoso) Bug 572575 –
evince.JobFind() crashes caller svn path=/trunk/; revision=543
2009-02-15 Gustavo J. A. M. Carneiro <[email protected]>
* NEWS, configure.ac, wscript: Release 2.25.91 svn path=/trunk/;
revision=541
2009-02-05 Gustavo J. A. M. Carneiro <[email protected]>
* evince/evincemodule.c: Call ev_shutdown() on a python atexit handler;
closes #570622. svn path=/trunk/; revision=540
2009-02-01 Gustavo J. A. M. Carneiro <[email protected]>
* NEWS, configure.ac, wscript: Prepare 2.25.90 release svn path=/trunk/;
revision=536
2009-01-31 Gustavo J. A. M. Carneiro <[email protected]>
* gnomeapplet/appletmodule.c: Bug 569823 – get_popup_component does not
return correct object svn path=/trunk/; revision=535
* wnck/wscript: (from Tomeu Vizoso) Bug 568284 – Error building wnck
bindings svn path=/trunk/; revision=534
* waf: Upgrade to WAF 1.5.3 svn path=/trunk/; revision=533
2009-01-30 Christian Persch <[email protected]>
* evince/evince.defs, evince/evince.override, evince/evincemodule.c: Update
evince bindings for new evince initialisation function. Bug #569873 svn
path=/trunk/; revision=532
2009-01-28 Gustavo J. A. M. Carneiro <[email protected]>
* evince/evince.override, evince/evincemodule.c: (patch by Tomeu Vizoso)
Initialize evince in module init, instead of wrapping an init function.
Closes #568287. svn path=/trunk/; revision=531
2009-01-28 Frederic Peters <[email protected]>
* Makefile.am, configure.ac, evince/Makefile.am: added support for building
the evince module when using autotools. svn path=/trunk/; revision=530
2009-01-27 Gustavo J. A. M. Carneiro <[email protected]>
* evince/evince.defs, evince/evince.override, evince/evincemodule.c,
evince/wscript, tests/common.py, wscript: (from Tomeu Vizoso) Bug 568287 –
Add python bindings for evince. svn path=/trunk/; revision=529
2009-01-17 Gustavo J. A. M. Carneiro <[email protected]>
* Makefile.am: automake disthook fixes svn path=/trunk/; revision=527
* .bzrignore: ignore files svn path=/trunk/; revision=526
* configure.ac, wscript: Version 2.25.1 svn path=/trunk/; revision=525
* NEWS: Update svn path=/trunk/; revision=524
* gtop/gtop.c: [Jasper Lievisse Adriaanse] Bug 565469 – missing #include in
gtop.c svn path=/trunk/; revision=523
* evolution/__init__.py, evolution/wscript: Bug 561727 – evolution still
installed even if disabled svn path=/trunk/; revision=522
* waf, wscript: Upgrade to a newer waf svn path=/trunk/; revision=521
2009-01-04 Gustavo J. A. M. Carneiro <[email protected]>
* wscript: Bug 555137 – WAF build system does not install bugbuddy module
svn path=/trunk/; revision=520
2009-01-03 Gustavo J. A. M. Carneiro <[email protected]>
* wscript: Use the gnu_dirs waf tool, so that --libdir configure option works
svn path=/trunk/; revision=519
* waf: Add standalone waf script svn path=/trunk/; revision=518
* .bzrignore: ignore file svn path=/trunk/; revision=516
* wscript: Fix WAF dist_hook svn path=/trunk/; revision=515
* wscript: Properly enable autoconfig in WAF svn path=/trunk/; revision=514
* docs/gnomeprint/wscript: cleanup svn path=/trunk/; revision=513
* README, docs/gnomeprint/wscript, docs/gnomeprintui/wscript,
docs/gtksourceview/wscript, evolution/wscript, gnomeapplet/wscript,
gnomedesktop/wscript, gnomekeyring/wscript, gnomeprint/wscript,
gtksourceview/wscript, gtop/wscript, mediaprofiles/wscript,
consortium/consortium.override, consortium/wscript, nautilusburn/wscript,
rsvg/wscript, totem/wscript, wnck/wscript, wscript: Port to modified version
of WAF 1.5.x svn path=/trunk/; revision=512
2008-12-25 Gustavo J. A. M. Carneiro <[email protected]>
* tests/runtests.py: typo svn path=/trunk/; revision=510
* ChangeLog, tests/common.py, tests/runtests.py: Don't use ltihooks in the
WAF build system. Closes #565598. svn path=/trunk/; revision=509
* ChangeLog, tests/common.py, tests/runtests.py, wscript: Run tests from the
WAF build system too svn path=/trunk/; revision=508
2008-12-21 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac: bug #564525, autotools part svn path=/trunk/;
revision=507
2008-12-19 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, wscript: 2.24.1 svn path=/trunk/; revision=505
* ChangeLog, configure.ac: Bug 564550 – gnome-python libtool-2.2 patch svn
path=/trunk/; revision=504
* gtop/ChangeLog: clean svn path=/trunk/; revision=503
* gtop/ChangeLog, gtop/gtop.c: Bug 560390 – gtop.c fails to compile svn
path=/trunk/; revision=502
2008-12-16 Luis Medinas <[email protected]>
* ChangeLog, gnomeapplet/applet.override, gnomeapplet/appletmodule.c,
gnomeapplet/wscript: Fix build error with missing libgnome/libgnomeui flags.
Patch from Lucas 2008-12-16 Luis Medinas <[email protected]> *
gnomeapplet/applet.override: * gnomeapplet/appletmodule.c: *
gnomeapplet/wscript: Fix build error with missing libgnome/libgnomeui flags.
Patch from Lucas Rocha <[email protected]> closes bgo #564525 svn
path=/trunk/; revision=501
2008-10-18 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, tests/common.py: bug fix svn path=/trunk/; revision=500
2008-09-21 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, wscript: 2.24.0 svn path=/trunk/;
revision=498
2008-08-31 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, wscript: 2.23.1 svn path=/trunk/; revision=496
* ChangeLog, totem/plparsermodule.c: [Bug 503343] Can't load playlist files
svn path=/trunk/; revision=495
2008-08-23 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/wscript, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, gtksourceview/wscript,
mediaprofiles/wscript, consortium/wscript, nautilusburn/wscript, rsvg/wscript,
totem/wscript, wnck/wscript, wscript: Bug 548535 – pygtk-codegen-2.0 ->
pygobject-codegen-2.0 (WAF part). svn path=/trunk/; revision=494
2008-06-15 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS: version 2.23.0 svn path=/trunk/; revision=490
2008-05-31 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/wscript, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, gtksourceview/wscript,
gtop/ChangeLog, gtop/wscript, mediaprofiles/wscript, consortium/wscript,
nautilusburn/wscript, rsvg/wscript, totem/wscript, wnck/wscript, wscript: Add
--enable-modules option to the WAF build svn path=/trunk/; revision=489
2008-05-24 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, Makefile.am, configure.ac, docs/Makefile.am: Bug 534307 –
configure script could really use the ability to select particular modules
svn path=/trunk/; revision=488
2008-05-09 John Stowers <[email protected]>
* ChangeLog, evolution/ebook.defs, evolution/evo-contact.c: Wrap more
addressbook functions, is_opened, is_writable, is_online, open, 2008-05-09
John Stowers <[email protected]> * evolution/ebook.defs: Wrap more
addressbook functions, is_opened, is_writable, is_online, open,
new_{default,system}_addressbook, get_uri, set_default_addressbook. *
evolution/evo-contact.c (evo_contact_get_name): Stop warning when contact
doesnt have a name set. svn path=/trunk/; revision=487
2008-05-08 John Stowers <[email protected]>
* ChangeLog, evolution/ebook.defs, evolution/ecal.defs,
evolution/evo-addressbook.c, evolution/evo-addressbook.h,
evolution/evo-calendar.c, evolution/evo-calendar.h,
examples/evolution/evo-test.py: Wrap e_source_peek_uid() as ebook.get_uid()
and ecalsource.get_uid(). 2008-05-09 John Stowers <[email protected]>
* evolution/ebook.defs: * evolution/ecal.defs: * evolution/evo-addressbook.c
(evo_addressbook_get_uid): * evolution/evo-addressbook.h: *
evolution/evo-calendar.c (evo_cal_source_get_uid): *
evolution/evo-calendar.h: * examples/evolution/evo-test.py: Wrap
e_source_peek_uid() as ebook.get_uid() and ecalsource.get_uid(). Fixes
#519258 svn path=/trunk/; revision=486
2008-05-04 Gustavo J. A. M. Carneiro <[email protected]>
* evolution/wscript, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, gtksourceview/wscript,
gtop/wscript, mediaprofiles/wscript, consortium/wscript, nautilusburn/wscript,
rsvg/wscript, totem/wscript, wnck/wscript, wscript: This time it should
really work with WAF 1.4.1... (API change) svn path=/trunk/; revision=485
* ChangeLog, docs/gnomeprint/wscript, docs/gnomeprintui/wscript,
docs/gtksourceview/wscript, evolution/wscript, gnomeapplet/wscript,
gnomedesktop/wscript, gnomekeyring/wscript, gnomeprint/wscript,
gtksourceview/wscript, gtop/ChangeLog, gtop/wscript, mediaprofiles/wscript,
consortium/wscript, nautilusburn/wscript, rsvg/wscript, totem/wscript,
wnck/wscript, wscript: Fixes for the upcoming WAF 1.4.1 (but still also works
with WAF 1.3.2) svn path=/trunk/; revision=484
* ChangeLog, gnomekeyring/gnomekeyring.override: Bug 531254 – [PATCH]
gnomekeyring.get_default_keyring_sync() always returns None svn
path=/trunk/; revision=483
2008-04-12 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, wscript: Bump to version 2.23.0 svn path=/trunk/;
revision=481
2008-03-09 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, wscript: 2.22.0 svn path=/trunk/;
revision=478
2008-02-23 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog: 2.21.3 svn path=/trunk/; revision=476
* ChangeLog, wscript: wscript typo svn path=/trunk/; revision=475
* ChangeLog, NEWS: Update NEWS svn path=/trunk/; revision=474
* configure.ac, wscript: Bump version svn path=/trunk/; revision=473
* ChangeLog, INSTALL.WAF, Makefile.am, configure.ac: Add autotools
deprecation warning and WAF build instructions. svn path=/trunk/;
revision=472
2008-02-18 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/evo-calendar.c: Fix potential NULL strings inside
g_warnings (bug #505647). * evolution/evo-calendar.c
(evo_cal_source_open_source) (evo_cal_source_open_new_with_absolute_uri): Fix
potential NULL strings inside g_warnings (bug #505647). svn path=/trunk/;
revision=471
2008-02-16 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/wscript, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, gtksourceview/wscript,
gtop/ChangeLog, gtop/wscript, mediaprofiles/wscript, consortium/wscript,
nautilusburn/wscript, rsvg/wscript, totem/wscript, wnck/wscript: Fix Mac OS X
build with WAF. svn path=/trunk/; revision=470
* ChangeLog, gnomekeyring/gnomekeyring.override: Bug 516788 – gnomekeyring:
find_network_password_sync returns None instead of results svn path=/trunk/;
revision=469
2008-02-03 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, wscript: WAF: allow python tool to use libdir (with waf trunk)
svn path=/trunk/; revision=468
2008-01-14 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, wscript: 2.21.2 svn path=/trunk/;
revision=466
2008-01-05 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/ebook.override, evolution/ecal.defs,
evolution/ecal.override, evolution/evo-calendar.c, evolution/evo-calendar.h,
evolution/wscript, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, gtksourceview/wscript,
mediaprofiles/wscript, consortium/wscript, nautilusburn/wscript, rsvg/wscript,
totem/wscript, wnck/wscript: Fix bug #505305; fix WAF build errors; fix some
warnings. svn path=/trunk/; revision=465
* ChangeLog, evolution/wscript: Fix stupid error in the WAF build svn
path=/trunk/; revision=464
2007-12-30 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/ebook.override, evolution/evo-addressbook.c,
evolution/evo-addressbook.h, evolution/evo-calendar.c,
evolution/evo-calendar.h, evolution/evo-ebook-environment.c,
evolution/evo-ebook-environment.h, evolution/evo-ecal-environment.c,
evolution/evo-ecal-environment.h: Fix warnings in the evolution modules svn
path=/trunk/; revision=463
* ChangeLog, evolution/ebook.override, evolution/ecal.override: Bug 506401
– evolution *.override files need NO_IMPORT_PYGOBJECT defined to avoid
multiply defined symbols at link time svn path=/trunk/; revision=462
2007-12-29 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, consortium/consortium.defs: Bug 505307 – Compilation
fails against consortium 2.21 svn path=/trunk/; revision=461
2007-12-20 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, evolution/ebook.override, evolution/ecal.override: Add
__version__ to evolution modules svn path=/trunk/; revision=460
2007-12-16 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog: 2.21.1 svn path=/trunk/; revision=458
* gnomekeyring/wscript: waf fix svn path=/trunk/; revision=457
* ChangeLog, NEWS, configure.ac, gnomekeyring/gnomekeyringmodule.c,
gnomekeyring/wscript: compile with gnome-keyring < 2.20.1 svn path=/trunk/;
revision=456
* gtop/ChangeLog: cleanup svn path=/trunk/; revision=455
* ChangeLog, Makefile.am, docs/gnomeprint/Makefile.am,
docs/gnomeprintui/Makefile.am, docs/gtksourceview/Makefile.am,
evolution/Makefile.am, gnomeapplet/Makefile.am, gnomedesktop/Makefile.am,
gnomekeyring/Makefile.am, gnomeprint/Makefile.am, gtksourceview/Makefile.am,
gtop/ChangeLog, gtop/Makefile.am, mediaprofiles/Makefile.am,
consortium/Makefile.am, nautilusburn/Makefile.am, rsvg/Makefile.am,
totem/Makefile.am, wnck/Makefile.am: Ship the wscript files svn
path=/trunk/; revision=454
* ChangeLog, Makefile.am: ship waf svn path=/trunk/; revision=453
* ChangeLog, INSTALL, evolution/wscript: Fix compilation of override_common.c
twice svn path=/trunk/; revision=452
2007-12-16 Gian Mario Tagliaretti <[email protected]>
* ChangeLog, wnck/wnck.defs, wnck/wnck.override: Update wnck bindings up to
2.20 API. svn path=/trunk/; revision=451
2007-12-15 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, evolution/wscript, gnomeapplet/wscript,
gnomedesktop/wscript, gnomeprint/wscript, gtksourceview/wscript,
gtop/ChangeLog, gtop/wscript, mediaprofiles/wscript, consortium/wscript,
nautilusburn/wscript, rsvg/rsvgmodule.c, rsvg/wscript, totem/wscript,
wnck/wscript, wscript: Finish the WAF port. svn path=/trunk/; revision=450
* evolution/ebook.override, evolution/ecal.override: fix emacs modelines svn
path=/trunk/; revision=449
* docs/gnomeprint/Makefile.am, docs/gnomeprintui/Makefile.am,
docs/gtksourceview/Makefile.am: distcheck fixes svn path=/trunk/;
revision=448
* ChangeLog, mediaprofiles/mediaprofilesmodule.c: avoid error hiding svn
path=/trunk/; revision=446
2007-12-10 John Stowers <[email protected]>
* ChangeLog, evolution/Makefile.am, evolution/__init__.py,
evolution/ebook-enums.c, evolution/ebook-enums.h, evolution/ebook.defs,
evolution/ebook.override, evolution/ebookmodule.c, evolution/ecal.defs,
evolution/ecal.override, evolution/ecalmodule.c, evolution/evo-addressbook.c,
evolution/evo-addressbook.h, evolution/evo-calendar.c,
evolution/evo-calendar.h, evolution/evo-contact.c, evolution/evo-contact.h,
evolution/evo-ebook-environment.c, evolution/evo-ebook-environment.h,
evolution/evo-ecal-environment.c, evolution/evo-ecal-environment.h,
evolution/evolution.h, evolution/gen-defs.sh, evolution/override_common.c,
evolution/override_common.h, examples/evolution/Makefile.am,
examples/evolution/bookquery.py, examples/evolution/bookview.py,
examples/evolution/evo-test.py, examples/evolution/evolution.glade,
examples/evolution/vcal-test.py: Add basic evolution bindings svn
path=/trunk/; revision=444
2007-12-10 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, docs/gnomeprint/wscript, docs/gnomeprintui/wscript,
docs/gtksourceview/gtksourceview-classes.xml, docs/gtksourceview/wscript,
docs/pygtk-ref-docs.make, gnomeapplet/wscript, gnomedesktop/wscript,
gnomekeyring/wscript, gnomeprint/wscript, wscript: WAF support, work in
progress svn path=/trunk/; revision=443
2007-12-09 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyringmodule.c: Handle the GnomeKeyringResult
code 'GNOME_KEYRING_RESULT_NO_MATCH'. svn path=/trunk/; revision=442
* ChangeLog, gnomekeyring/gnomekeyringmodule.c: Handle unknown
GnomeKeyringResult codes more gracefully. svn path=/trunk/; revision=441
2007-11-24 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, wnck/wnck.defs: Bug 483529 – No bindings for
wnck_set_client_type and WnckClientType svn path=/trunk/; revision=440
2007-09-16 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.20.0 svn path=/trunk/; revision=437
2007-09-01 Gustavo J. A. M. Carneiro <[email protected]>
* MAINTAINERS: Fix the MAINTAINERS file to the new mandatory format. svn
path=/trunk/; revision=436
2007-08-22 Benoît Dejean <[email protected]>
* gtop/gtop.c: Fixed compile warning with return type of get_proclist. the
last CPU was * Fixed compile warning with return type of get_proclist. *
Fixed SMP handling : the last CPU was always omited. This also makes CPU
lists always non-empty, like cpu().cpus. svn path=/trunk/; revision=435
2007-07-30 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.19.2 svn path=/trunk/; revision=433
2007-07-26 Sebastian Rittau <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override: r14389@robinson: srittau |
2007-07-26 22:08:33 +0200 (gnome_keyring_set_network_password_sync): All
parameters except password are now optional. svn path=/trunk/; revision=432
* ChangeLog, gnomekeyring/gnomekeyring.override: r14386@robinson: srittau |
2007-07-26 20:53:04 +0200 made parameters of
_wrap_gnome_keyring_find_network_password_sync optional svn path=/trunk/;
revision=431
2007-07-26 Sebastian Rittau <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override: r14370@robinson: srittau |
2007-07-26 18:02:55 +0200 2007-07-26 Sebastian Rittau
<[email protected]> * gnomekeyring/gnomekeyring.override
(gnome_keyring_set_network_password_sync)
(gnome_keyring_find_network_password_sync): Allow most parameters to be
None/NULL. svn path=/trunk/; revision=430
2007-07-15 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override: Bug 455379 –
_wrap_gnome_keyring_get_default_keyring_sync doesn't check keyring variable
to be NULL. svn path=/trunk/; revision=429
* ChangeLog, gnomekeyring/gnomekeyring.defs,
gnomekeyring/gnomekeyring.override: Allow keyring parameters to be None/NULL
everywhere. svn path=/trunk/; revision=428
2007-07-08 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, totem/plparser.override, wnck/wnck.override: __version__ svn
path=/trunk/; revision=427
* ChangeLog, gnomeapplet/applet.override,
gnomedesktop/_gnomedesktop.override, gnomekeyring/gnomekeyring.override,
gnomeprint/print.override, gnomeprint/printui.override,
gtksourceview/gtksourceview.override, mediaprofiles/mediaprofiles.override,
consortium/consortium.override, nautilusburn/nautilus_burn.override,
rsvg/rsvg.override: module.__version__ == VERSION svn path=/trunk/;
revision=426
2007-07-07 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.19.1 svn path=/trunk/; revision=424
2007-06-17 Sebastien Bacher <[email protected]>
* ChangeLog, acinclude.m4: use python-config to get python includes (Closes
#448180) 2007-06-17 Sebastien Bacher <[email protected]> * acinclude.m4:
use python-config to get python includes (Closes #448180) svn path=/trunk/;
revision=423
2007-06-09 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, wnck/wnck.defs, wnck/wnck.override: wrap
WnckSelector svn path=/trunk/; revision=422
* ChangeLog, configure.ac: update consortium required version svn
path=/trunk/; revision=421
* ChangeLog, consortium/consortium.defs: Bug 428697 – The consortium API has
changed in 2.19.x svn path=/trunk/; revision=420
2007-04-09 Gian Mario Tagliaretti <[email protected]>
* COPYING, ChangeLog, autogen.sh: Update package names and their licences
svn path=/trunk/; revision=418
2007-03-12 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.18.0 svn path=/trunk/; revision=416
2007-03-10 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override: Bug 416240 –
gnome_keyring_find_items_sync wrapper crashes svn path=/trunk/; revision=415
2007-02-27 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.17.93 svn path=/trunk/; revision=413
* ChangeLog, configure.ac: bump consortium required version svn path=/trunk/;
revision=412
* ChangeLog, configure.ac: --enable-consortium svn path=/trunk/; revision=411
* ChangeLog, consortium/consortium.defs: consortium API changes svn path=/trunk/;
revision=410
2007-02-25 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS: 2.17.92 svn path=/trunk/; revision=408
* ChangeLog, configure.ac: require consortium 2.17.5 svn path=/trunk/;
revision=407
* ChangeLog, configure.ac: bump version svn path=/trunk/; revision=406
* ChangeLog, Makefile.am: Remove duplicate appearance of 'tests' in SUBDIRS
svn path=/trunk/; revision=405
2007-02-18 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, consortium/consortium.defs: Bug 409252 – binding does not follow
consortium svn path=/trunk/; revision=404
2007-02-11 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override, rsvg/rsvg.override: Bug
405328 – PyGObject_API multiply defined on darwin svn path=/trunk/;
revision=403
2007-01-28 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, totem/Makefile.am: Bug 401760 – plparser fails to build svn
path=/trunk/; revision=402
2007-01-20 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac: Bug 398305 – bugbuddy installation svn
path=/trunk/; revision=401
2007-01-08 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, gnome-python-desktop-2.0.pc.in: 2.17.3 svn
path=/trunk/; revision=399
2007-01-07 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, gnome-python-desktop-2.0.pc.in,
gnomeprint/__init__.py, tests/common.py: 2.17.2 svn path=/trunk/;
revision=397
* ChangeLog, Makefile.am, bugbuddy.py, configure.ac: Bug 346106 – Invoke
bug-buddy with unhandled exceptions svn path=/trunk/; revision=396
2007-01-06 Gustavo J. A. M. Carneiro <[email protected]>
* gnomekeyring/gnomekeyring.override: Py_ssize_t fix svn path=/trunk/;
revision=395
* ChangeLog, configure.ac, totem/plparser.override: update to old
totem_pl_parser API changes svn path=/trunk/; revision=394
* ChangeLog, wnck/wnckmodule.c: Add missing prototype for
pywnck_add_constants. svn path=/trunk/; revision=393
* ChangeLog, gnomeprint/__init__.py: deprecate gnomeprint svn path=/trunk/;
revision=392
* ChangeLog, configure.ac, gnomeapplet/Makefile.am, gnomedesktop/Makefile.am,
gnomekeyring/Makefile.am, gtksourceview/Makefile.am,
mediaprofiles/Makefile.am, consortium/Makefile.am, nautilusburn/Makefile.am,
rsvg/Makefile.am, rsvg/rsvg.override, totem/Makefile.am, wnck/Makefile.am:
Bug 338492 – Python 2.5, int vs ssize_t svn path=/trunk/; revision=391
* ChangeLog, gtksourceview/gtksourceview.override: Bug 351567 –
SourceLanguage.__repr__ should include language id svn path=/trunk/;
revision=390
* ChangeLog, gnomekeyring/gnomekeyringmodule.c: Bug 368364 – Referencing
static vars in inline function breaks on Solaris svn path=/trunk/;
revision=389
2007-01-05 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, consortium/consortium.defs: Bug 393198 – svn build fails svn
path=/trunk/; revision=388
2007-01-03 Kjartan Maraas <[email protected]>
* ChangeLog: Remove reference to META_MENU_OP_UNABOVE since that has been
removed from 2007-01-03 Kjartan Maraas <[email protected]> *
consortium/consortium.c: Remove reference to META_MENU_OP_UNABOVE since that has
been removed from consortium recently. Fixes build. svn path=/trunk/;
revision=387
2006-12-24 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring-argtypes.py,
gnomekeyring/gnomekeyring.defs, gnomekeyring/gnomekeyring.override: Bug
386366 – implementation of gnomekeyring.find_items_sync
2006-11-19 Paolo Borelli <[email protected]>
* ChangeLog, gtksourceview/gtksourceview.override: make get_mime_types()
returns the proper list. Fixes #351367. 2006-11-19 Paolo Borelli
<[email protected]> * gtksourceview/gtksourceview.override: make
get_mime_types() returns the proper list. Fixes #351367.
2006-10-15 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, Makefile.am, NEWS, configure.ac,
gtksourceview/gtksourceviewmodule.c, tests/Makefile.am, tests/common.py:
2.17.1
* ChangeLog, Makefile.am, examples/keyring-async.py, examples/keyring.py,
gnomekeyring/gnomekeyring.override, gnomekeyring/gnomekeyringmodule.c: wrap a
couple of keyring async functions
2006-10-14 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, consortium/consortium.defs: Bug 362056 – HEAD Compilation failed
because consortium.h has changed
2006-10-01 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, Makefile.am, examples/wnck_example.py: Bug 353112 – no wnck
example
2006-09-15 Marco Pesenti Gritti <[email protected]>
* ChangeLog, mediaprofiles/Makefile.am: Use the gnome-python defs dir for
gconf.defs 2006-09-15 Marco Pesenti Gritti <[email protected]> *
mediaprofiles/Makefile.am: Use the gnome-python defs dir for gconf.defs
2006-09-04 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.16.0
2006-08-30 Marco Pesenti Gritti <[email protected]>
* ChangeLog, gnomeapplet/Makefile.am: Use the gnome-python defs dir for
bonobo.defs 2006-08-31 Marco Pesenti Gritti <[email protected]> *
gnomeapplet/Makefile.am: Use the gnome-python defs dir for bonobo.defs
2006-08-26 Marco Pesenti Gritti <[email protected]>
* ChangeLog, configure.ac, gnomeprint/Makefile.am: Use the gnome-python defs
dir for canvas.defs (#352991). 2006-08-26 Marco Pesenti Gritti
<[email protected]> * configure.ac: * gnomeprint/Makefile.am: Use the
gnome-python defs dir for canvas.defs (#352991).
2006-07-24 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.15.90
2006-07-23 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, wnck/wnck.defs: Magnus Therning: Add wrapper for
wnck_window_set_geometry (#342900)
2006-07-20 Marco Pesenti Gritti <[email protected]>
* ChangeLog, wnck/wnck.defs: Add wnck_window_get_transient 2006-07-20 Marco
Pesenti Gritti <[email protected]> * wnck/wnck.defs: Add
wnck_window_get_transient
2006-07-10 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.15.4
2006-07-05 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, consortium/consortium.override, wnck/wnck.override: Bug 345148 –
Build failure on Mac OS X.
* ChangeLog, configure.ac: Blacklist pygtk 2.9.[01].
2006-06-11 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac: 2.15.3 release
2006-06-03 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, nautilusburn/nautilus_burn.defs: unblock threads around
nautilus_burn_recorder_blank_disc
* ChangeLog, nautilusburn/nautilus_burn.defs,
nautilusburn/nautilus_burn.override: finish nautilusburn API update
* ChangeLog, wnck/wnck.override: Bug 343332 – Binding to
wnck_window_get_geometry() missing
2006-06-02 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, nautilusburn/Makefile.am, nautilusburn/nautilus_burn.defs,
nautilusburn/nautilus_burn.override, nautilusburn/nb_drive.c,
nautilusburn/nb_drive.h, nautilusburn/nb_drive_selection.defs,
nautilusburn/nb_module.c, nautilusburn/nb_typebuiltins.c,
nautilusburn/nb_typebuiltins.h: Bug 343445 – libnautilus-burn API changes
2006-05-25 Frederic Peters <[email protected]>
* ChangeLog, consortium/consortium.defs: updated MetaCursor enum. 2006-05-25
Frederic Peters <[email protected]> * consortium/consortium.defs: updated
MetaCursor enum.
2006-05-21 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, Makefile.am, examples/keyring.py: new gnomekeyring example
2006-05-16 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomekeyring/gnomekeyring.override: check null attributes
* ChangeLog, gnomekeyring/gnomekeyring-argtypes.py,
gnomekeyring/gnomekeyring.defs, gnomekeyring/gnomekeyring.override,
gnomekeyring/gnomekeyringmodule.c: map gnomekeyring error codes to exceptions
* gnomekeyring/gnomekeyring.override: map gnomekeyring error codes to
exceptions
2006-05-15 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, consortium/consortiummodule.c: release 2.15.2
2006-05-08 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, docs/pygtk-ref-docs.make: force utf-8 encoding on reference docs
2006-04-30 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, gnomedesktop/_gnomedesktop.override: untabify..
2006-04-29 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, Makefile.am, configure.ac, gnomedesktop/Makefile.am,
tests/common.py: add gnomedesktop bindings from deskbar
2006-04-23 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, NEWS, configure.ac, gnomekeyring/Makefile.am: 2.15.1
* ChangeLog, gnomekeyring/gnomekeyring.defs,
gnomekeyring/gnomekeyring.override: wrap all remaining gnomekeyring _sync
APIs
* ChangeLog, gnomekeyring/gnomekeyring.defs,
gnomekeyring/gnomekeyring.override: _wrap_gnome_keyring_item_create_sync; fix
error in _wrap_gnome_keyring_get_info_sync; fix acl methods
* ChangeLog, gnomekeyring/gnomekeyring.defs,
gnomekeyring/gnomekeyring.override: unblock threads in _sync APIs
2006-04-22 Gustavo J. A. M. Carneiro <[email protected]>
* ChangeLog, configure.ac, gnomekeyring/Makefile.am,
gnomekeyring/gnomekeyring-argtypes.py, gnomekeyring/gnomekeyring.defs,
gnomekeyring/gnomekeyring.override, tests/common.py: improve coverage of
gnomekeyring module