forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
1115 lines (650 loc) · 33 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
gramps (5.1.5-1) unstable; urgency=medium
* New release
* Update copyright file
* Drop patch, incorporated upstream
-- Ross Gammon <rossgammon@debian.org> Sat, 12 Feb 2022 17:01:21 +0100
gramps (5.1.4-1) unstable; urgency=medium
* New release
* Add new copyrights
* Update watch file
* Patch probably alive test to fix FTBFS
-- Ross Gammon <rossgammon@debian.org> Sun, 15 Aug 2021 18:31:56 +0200
gramps (5.1.3-1) focal; urgency=medium
* New release
* Update debian/copyright for Alex Roitman
-- Ross Gammon <rosco2@ubuntu.com> Sun, 16 Aug 2020 20:23:34 +0200
gramps (5.1.2-1) unstable; urgency=medium
* New release
-- Ross Gammon <rossgammon@debian.org> Sat, 11 Jan 2020 19:07:08 +0100
gramps (5.1.1-1) unstable; urgency=medium
* New release
* Add python3-fontconfig to recommends
-- Ross Gammon <rossgammon@debian.org> Tue, 17 Sep 2019 15:21:43 +0200
gramps (5.1.0-1) unstable; urgency=medium
* New release
* Update copyrights
* Bump gtk+ version to 3.12
* Add new geocode-glib dependency
-- Ross Gammon <rossgammon@debian.org> Sat, 24 Aug 2019 19:49:27 +0200
gramps (5.0.2-1) unstable; urgency=medium
* New release
* Remove ancient python version field from debian/control
* Bump standards version, no changes required
-- Ross Gammon <rossgammon@debian.org> Sun, 11 Aug 2019 14:11:35 +0200
gramps (5.0.1-1) unstable; urgency=medium
* New release
* Update copyright file
-- Ross Gammon <rossgammon@debian.org> Thu, 20 Dec 2018 20:41:23 +0100
gramps (5.0.0-1) unstable; urgency=medium
* New Gramps release
-- Ross Gammon <rossgammon@debian.org> Wed, 25 Jul 2018 21:19:00 +0200
gramps (5.0.0~rc1-1) unstable; urgency=medium
* First release candidate for Gramps 5.0
* Drop patch applied upstream
* Update copyrights
-- Ross Gammon <rossgammon@debian.org> Sun, 01 Jul 2018 21:57:10 +0200
gramps (5.0.0~beta1-1) unstable; urgency=medium
* First beta release of gramps 5.0
* Sync debian directory with Debian experimental branch on salsa
* Point Vcs URLs at the Gramps Project on Github
* Correct spelling in debian/rules, node > nose
* Delete gbp.conf, not required as gbp not used to build package
* Delete NEWS file, only really applicable in Debian
* Fix syntax errors in d/changelog and remove trailing whitespace
* Patch person_rules_test.py to remove hard coded build path from
import. Fixes FTBFS due to test failure.
* Enable extra tests that were failing for alpha3
-- Ross Gammon <rossgammon@debian.org> Mon, 19 Feb 2018 19:25:25 +0100
gramps (4.2.8) unstable; urgency=medium
* Quick bug fix release
-- Ross Gammon <rossgammon@debian.org> Sat, 10 Feb 2018 08:30:33 +0100
gramps (5.0.0-alpha3) experimental; urgency=medium
* New alpha release for Gramps 5.0.0
-- Ross Gammon <rossgammon@debian.org> Mon, 04 Sep 2017 16:55:41 +0200
gramps (4.2.6) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.6
-- Jérôme Rapinat <romjerome@yahoo.fr> Tue, 01 Aug 2017 14:10:19 +0200
gramps (5.0.0-alpha2) experimental; urgency=medium
* 2nd Alpha release for testing
-- Ross Gammon <rosco2@ubuntu.com> Mon, 12 Jun 2017 19:42:39 +0200
gramps (4.2.5) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.5
-- Jérôme Rapinat <romjerome@yahoo.fr> Thu, 15 Dec 2016 18:52:08 +0100
gramps (4.2.4) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.4
-- Jérôme Rapinat <romjerome@yahoo.fr> Sun, 04 Sep 2016 18:34:49 +0200
gramps (5.0.0-alpha1) UNRELEASED; urgency=medium
* Alpha stream for Gramps 5.0.0
-- système <romjerome@yahoo.fr> Sat, 04 Jun 2016 20:07:14 +0200
gramps (4.2.3) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.3
-- Jérôme Rapinat <romjerome@yahoo.fr> Sun, 10 Apr 2016 21:09:19 +0200
gramps (4.2.2) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.2
-- Jérôme Rapinat <romjerome@yahoo.fr> Wed, 06 Jan 2016 19:38:25 +0100
gramps (4.2.1) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.1
-- Jérôme Rapinat <romjerome@yahoo.fr> Tue, 13 Oct 2015 05:08:30 +0200
gramps (4.2.0) UNRELEASED; urgency=medium
* New upstream for Gramps 4.2.0
-- Jérôme Rapinat <romjerome@yahoo.fr> Sun, 02 Aug 2015 17:03:37 +0200
gramps (4.1.3) precise; urgency=low
* New upstream for Gramps 4.1 branch (4.1.3)
-- Jérôme Rapinat <romjerome@yahoo.fr> Thu, 30 Apr 2015 18:42:34 +0200
gramps (3.4.9-1) precise; urgency=low
* New upstream release for 3.4.x branch
-- Jérôme Rapinat <romjerome@yahoo.fr> Thu, 30 Apr 2015 16:02:44 +0200
gramps (4.0.4) precise; urgency=low
* New upsteam for Gramps 4.0.4
-- Jérôme Rapinat <romjerome@yahoo.fr> Fri, 23 May 2014 17:07:41 +0200
gramps (4.0.3) precise; urgency=low
* - 4.0.4-git.f08e40 Experimental stream gramps.git
-- Jérôme Rapinat <romjerome@yahoo.fr> Tue, 04 Feb 2014 19:49:32 +0100
gramps (4.0.2) precise; urgency=low
* experimental .deb for gramps 4.0.2
-- Jérôme Rapinat <romjerome@yahoo.fr> Wed, 04 Dec 2013 10:23:36 +0100
gramps (4.0.1-2) precise; urgency=low
* bug 6918: make package more compliant according to Debian policy
-- Jérôme Rapinat <romjerome@yahoo.fr> Mon, 29 Jul 2013 18:00:11 +0200
gramps (3.3.0-1) lucid; urgency=low
* New upstream release
-- Stephane Charette <stephanecharette@gmail.com> Sun, 12 Jun 2011 02:22:02 -0700
gramps (3.2.0-0beta1) unstable; urgency=low
* New upstream release
* works with gtk 2.19. Closes: #566958
-- James A. Treacy <treacy@debian.org> Fri, 05 Mar 2010 14:05:39 -0500
gramps (3.1.3-2) unstable; urgency=low
* Switch to dpkg-source 3.0 (quilt) format
-- James A. Treacy <treacy@debian.org> Tue, 05 Jan 2010 20:04:30 -0500
gramps (3.1.3-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Sun, 06 Dec 2009 13:46:48 -0500
gramps (3.1.2-2) unstable; urgency=low
* allow python >= 2.5. Closes: #547150
* fix Relationship Graph to use new format for URLs. Closes: #532559
* Web report creation fixed. Closes: #537355
-- James A. Treacy <treacy@debian.org> Tue, 17 Nov 2009 11:38:43 -0500
gramps (3.1.2-1.1) unstable; urgency=low
* Non-maintainer upload.
* debian/control: drop Recommends on python-gnome2-desktop: it is now
gone and none of its modules are used anyhow (Closes: #541560)
-- Stefano Zacchiroli <zack@debian.org> Thu, 08 Oct 2009 13:52:35 +0200
gramps (3.1.2-1) unstable; urgency=low
* New upstream release.
* Replace Recommends on python-gnome2-extras with python-gtkspell
* Do not create the directory /etc/gconf/schemas/. Closes: Bug#525683
-- James A. Treacy <treacy@debian.org> Sun, 07 Jun 2009 14:01:16 -0400
gramps (3.1.1-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Tue, 10 Mar 2009 09:26:52 -0400
gramps (3.1.0-1) unstable; urgency=low
* New upstream release.
* link /usr/share/common-licenses/GPL-2 from /usr/share/gramps/COPYING
so gramps can find the file.
-- James A. Treacy <treacy@debian.org> Sat, 07 Mar 2009 22:03:09 -0500
gramps (3.0.4-1) unstable; urgency=low
* New upstream version. Closes: #506621, #506818
-- James A. Treacy <treacy@debian.org> Sun, 07 Dec 2008 21:39:55 -0500
gramps (3.0.3-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 20 Oct 2008 20:43:35 -0400
gramps (3.0.2-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Sat, 27 Sep 2008 17:25:09 -0400
gramps (3.0.1-2) unstable; urgency=low
* Remove dependency on gnome-doc-utils and scrollkeeper
* Disable spell checking in src/Spell.py due to the spell checker
crashing. Closes: #492212
Spell checking will be reenabled once the offending package is
identified and fixed.
-- James A. Treacy <treacy@debian.org> Fri, 29 Aug 2008 11:09:04 -0400
gramps (3.0.1-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 19 May 2008 09:38:28 -0400
gramps (3.0.0-6) unstable; urgency=low
* Fix typo in _EditChildRef.py which can cause gramps to crash. Closes: #476163
-- James A. Treacy <treacy@debian.org> Tue, 15 Apr 2008 23:37:04 -0400
gramps (3.0.0-5) unstable; urgency=low
* Remove gtkspell Recommends as it is now provided by python-gnome2-extras.
Closes: Bug#474755
-- James A. Treacy <treacy@debian.org> Mon, 07 Apr 2008 17:25:18 -0400
gramps (3.0.0-4) unstable; urgency=low
* Fix the binary package python dependency properly. A recent python
(>= 2.4.4-6) is needed to ensure python2.5 is supported properly.
Closes: #474056
-- James A. Treacy <treacy@debian.org> Thu, 03 Apr 2008 09:46:28 -0400
gramps (3.0.0-3) unstable; urgency=low
* Build-Depends on Python2.5. Closes: Bug#473946, #474056
-- James A. Treacy <treacy@debian.org> Wed, 02 Apr 2008 08:28:27 -0400
gramps (3.0.0-2) unstable; urgency=low
* Explicitly require python version >= 2.5
-- James A. Treacy <treacy@debian.org> Wed, 26 Mar 2008 09:34:25 -0400
gramps (3.0.0-1) unstable; urgency=low
* New upstream release. Closes: #472681
-- James A. Treacy <treacy@debian.org> Tue, 25 Mar 2008 09:35:00 -0400
gramps (2.2.10-2) unstable; urgency=low
* Remove build dependency on python-xml. Closes: Bug#468625
-- James A. Treacy <treacy@debian.org> Fri, 29 Feb 2008 13:30:11 -0500
gramps (2.2.10-1) unstable; urgency=low
* New upstream release
* Added dh_icons to debian/rules. Closes: #454761
* Remove version from scrollkeeper dependency. Closes: #456600
* Fixed typos in description. Closes: #433559
-- James A. Treacy <treacy@debian.org> Mon, 14 Jan 2008 09:57:25 -0500
gramps (2.2.9-2) unstable; urgency=low
* Move debhelper to Build-Depends. Closes: #447948
-- James A. Treacy <treacy@debian.org> Wed, 24 Oct 2007 20:03:36 -0400
gramps (2.2.9-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Thu, 18 Oct 2007 13:14:30 -0400
gramps (2.2.8-2) unstable; urgency=low
* Work around a bug in gnome-python-extras which caused a deallocation
of the TextView in the check if a spell checker is present.
Closes: #445864
-- James A. Treacy <treacy@debian.org> Tue, 09 Oct 2007 17:26:54 -0400
gramps (2.2.8-1) unstable; urgency=low
* New Upstream version
* Misleading error message changed. Closes: #418033
-- James A. Treacy <treacy@debian.org> Mon, 28 May 2007 21:00:51 -0400
gramps (2.2.7-2) unstable; urgency=low
* Added dependency on librsvg2-common
-- James A. Treacy <treacy@debian.org> Mon, 23 Apr 2007 19:32:00 -0400
gramps (2.2.7-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Sun, 22 Apr 2007 20:08:55 -0400
gramps (2.2.6-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 29 Jan 2007 20:12:05 -0500
gramps (2.2.5-0rc1-1) unstable; urgency=low
* rc1 of 2.2.5
-- James A. Treacy <treacy@debian.org> Thu, 25 Jan 2007 23:04:24 -0500
gramps (2.2.4-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Wed, 27 Dec 2006 18:04:11 -0500
gramps (2.2.3-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Mon, 27 Nov 2006 00:27:23 -0500
gramps (2.2.2-2) unstable; urgency=low
* call dh_desktop in debian/rules so .desktop file is registered. Closes: Bug#398423
-- James A. Treacy <treacy@debian.org> Mon, 13 Nov 2006 20:26:00 -0500
gramps (2.2.2-1) unstable; urgency=low
* Bumped upstream version number. 2.2.1-3 and -4 should have been 2.2.2
-- James A. Treacy <treacy@debian.org> Sat, 4 Nov 2006 16:34:47 -0500
gramps (2.2.1-4) unstable; urgency=low
* add missing Build-Depends-Indep. Closes: #396874
-- James A. Treacy <treacy@debian.org> Fri, 3 Nov 2006 11:03:35 -0500
gramps (2.2.1-3) unstable; urgency=low
* New Upstream release
-- James A. Treacy <treacy@debian.org> Fri, 3 Nov 2006 08:07:38 -0500
gramps (2.2.1-2) unstable; urgency=low
* Upload to sid
-- James A. Treacy <treacy@debian.org> Wed, 1 Nov 2006 20:50:28 -0500
gramps (2.2.1-1) experimental; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Mon, 30 Oct 2006 10:32:43 -0500
gramps (2.1.95-1) experimental; urgency=low
* Beta release of version 2.2
-- James A. Treacy <treacy@debian.org> Tue, 29 Aug 2006 11:40:08 -0400
gramps (2.1.90-1) experimental; urgency=low
* Beta release of version 2.2
-- James A. Treacy <treacy@debian.org> Tue, 25 Jul 2006 00:18:15 -0400
gramps (2.0.11-2) unstable; urgency=low
* Complies with new python policy
-- James A. Treacy <treacy@debian.org> Wed, 5 Jul 2006 14:47:56 -0400
gramps (2.0.11-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Sun, 30 Apr 2006 00:10:02 -0400
gramps (2.0.10-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Mon, 27 Feb 2006 13:14:39 -0500
gramps (2.0.9-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Mon, 12 Dec 2005 11:21:29 -0500
gramps (2.0.8-5) unstable; urgency=low
* added dependency on ${misc:Depends}
-- James A. Treacy <treacy@debian.org> Wed, 16 Nov 2005 12:06:13 -0500
gramps (2.0.8-4) unstable; urgency=low
* Move gconf file out of /etc.
-- James A. Treacy <treacy@debian.org> Wed, 16 Nov 2005 09:33:16 -0500
gramps (2.0.8-3) unstable; urgency=low
* patched Spell.py to temporarily avoid a locale issue while a proper
fix is worked on. See bug #335968.
-- James A. Treacy <treacy@debian.org> Fri, 28 Oct 2005 00:25:37 -0400
gramps (2.0.8-2) unstable; urgency=low
* fix python dependency as per debian python policy.
-- James A. Treacy <treacy@debian.org> Sun, 23 Oct 2005 15:23:34 -0400
gramps (2.0.8-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Tue, 6 Sep 2005 01:46:11 -0400
gramps (2.0.6-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Mon, 22 Aug 2005 16:10:03 -0400
gramps (2.0.5-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Wed, 6 Jul 2005 00:42:39 -0400
gramps (2.0.4-1) unstable; urgency=low
* New upstream release.
* German translation updated. Closes: #314057
-- James A. Treacy <treacy@debian.org> Tue, 28 Jun 2005 14:57:26 -0400
gramps (2.0.3-1) unstable; urgency=low
* New upstream release.
* install xpm icon. Closes: #312016
-- James A. Treacy <treacy@debian.org> Sun, 5 Jun 2005 09:37:17 -0400
gramps (2.0.2-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Sat, 4 Jun 2005 23:05:27 -0400
gramps (2.0.1-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Tue, 24 May 2005 20:56:55 -0400
gramps (2.0.0-2) unstable; urgency=low
* removed rcs and added graphviz as a Recommends
* remove erroneous files in /usr/share/mime. Closes: #308866
* fixed bashisms in post*. Closes: #308870
* apply upstream patch to fix some bugs (will be in next release)
-- James A. Treacy <treacy@debian.org> Thu, 12 May 2005 12:39:05 -0400
gramps (2.0.0-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Wed, 11 May 2005 00:34:07 -0400
gramps (1.0.11-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Sun, 20 Mar 2005 14:41:11 -0500
gramps (1.0.10-5) unstable; urgency=low
* Apply upstream patch to allow gramps to work with newer versions of expat.
Closes: #296155
-- James A. Treacy <treacy@debian.org> Sun, 20 Feb 2005 15:57:48 -0500
gramps (1.0.10-4) unstable; urgency=low
* Remove erroneous lines from gramps.sh
-- James A. Treacy <treacy@debian.org> Fri, 11 Feb 2005 23:24:57 -0500
gramps (1.0.10-3) unstable; urgency=low
* Same changes as -2 but done properly this time
-- James A. Treacy <treacy@debian.org> Fri, 11 Feb 2005 20:59:09 -0500
gramps (1.0.10-2) unstable; urgency=low
* kept upstream patch to remove grampslib but backed out the glade patch
as it is no longer needed.
* Recommend graphviz
-- James A. Treacy <treacy@debian.org> Fri, 11 Feb 2005 20:16:54 -0500
gramps (1.0.10-1) unstable; urgency=low
* New upstream source. Closes: #288732
* Applied upstream patch to remove the grampslib library
* Applied upstream patch to glade
-- James A. Treacy <treacy@debian.org> Sun, 30 Jan 2005 21:35:13 -0500
gramps (1.0.9-1) unstable; urgency=low
* Remove use of deprecated GTK function. Closes: Bug#288732
-- James A. Treacy <treacy@debian.org> Thu, 4 Nov 2004 22:36:10 -0500
gramps (1.0.8-2) unstable; urgency=low
* Make sure /usr/share/applications/gramps.desktop is installed
* remove /usr/share/gramps/gramps.desktop. Closes: Bug#278626
-- James A. Treacy <treacy@debian.org> Thu, 4 Nov 2004 22:36:10 -0500
gramps (1.0.8-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Thu, 4 Nov 2004 14:13:11 -0500
gramps (1.0.7-4) unstable; urgency=low
* apply patch from upstream to fix import issue. Closes: #273769
* replace icon with a 32x32 one.
-- James A. Treacy <treacy@debian.org> Tue, 28 Sep 2004 14:10:42 -0400
gramps (1.0.7-3) unstable; urgency=low
* Add version to scrollkeeper dependency. Closes: #269611
-- James A. Treacy <treacy@debian.org> Thu, 16 Sep 2004 13:32:52 -0400
gramps (1.0.7-2) unstable; urgency=low
* s/python2.3-/python-/ in the dependencies. Closes: #267239
-- James A. Treacy <treacy@debian.org> Sat, 4 Sep 2004 00:53:24 -0400
gramps (1.0.7-1) unstable; urgency=low
* New upstream source.
-- James A. Treacy <treacy@debian.org> Mon, 16 Aug 2004 13:27:16 -0400
gramps (1.0.6-1) unstable; urgency=low
* New upstream source
* Remove Build-Depends on libgnomevfs2-dev
* Add Recommends on ttf-freefont
-- James A. Treacy <treacy@debian.org> Sat, 14 Aug 2004 23:55:38 -0400
gramps (1.0.5a-1) unstable; urgency=low
* Upstream fixed a bug in 1.0.5
-- James A. Treacy <treacy@debian.org> Sat, 31 Jul 2004 20:54:10 -0400
gramps (1.0.5-1) unstable; urgency=low
* New upstream release.
* Depends on yelp.
-- James A. Treacy <treacy@debian.org> Tue, 27 Jul 2004 17:03:10 -0400
gramps (1.0.4-2) unstable; urgency=low
* Recommends rcs. Closes: #253602
-- James A. Treacy <treacy@debian.org> Wed, 16 Jun 2004 16:53:36 -0400
gramps (1.0.4-1) unstable; urgency=low
* New upstream version.
* Applied a patch from upstream that gets rid of the last library.
* s/OpenOffice/OpenOffice.org/ in description. Closes: #254042
-- James A. Treacy <treacy@debian.org> Wed, 16 Jun 2004 11:35:52 -0400
gramps (1.0.3-4) unstable; urgency=low
* Applied fix to upstream patch.
-- James A. Treacy <treacy@debian.org> Mon, 26 Apr 2004 18:18:19 -0400
gramps (1.0.3-3) unstable; urgency=low
* Applied a patch from upstream that gets rid of the last library. This
allows a single package for all arches. Closes: Bug#245422
-- James A. Treacy <treacy@debian.org> Fri, 23 Apr 2004 16:39:39 -0400
gramps (1.0.3-1) unstable; urgency=low
* New upstream release.
* Wall chart now works. Closes: #244331
-- James A. Treacy <treacy@debian.org> Thu, 22 Apr 2004 11:37:49 -0400
gramps (1.0.2-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Sun, 4 Apr 2004 18:40:53 -0400
gramps (1.0.1-1) unstable; urgency=low
* Architecture independent files moved to gramps-common. Closes: #233368
* New upstream release.
-- James A. Treacy <treacy@debian.org> Wed, 18 Feb 2004 00:48:45 -0500
gramps (1.0.0-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Wed, 11 Feb 2004 18:20:47 -0500
gramps (0.99-1) unstable; urgency=low
* 1.0 release candidate
-- James A. Treacy <treacy@debian.org> Wed, 28 Jan 2004 00:51:47 -0500
gramps (0.98.0-1) unstable; urgency=low
* New upstream version.
-- James A. Treacy <treacy@debian.org> Mon, 8 Dec 2003 11:39:33 -0500
gramps (0.9.5-2) unstable; urgency=low
* Remove python2.3-xmlbase from the Depends line. Closes: #218203
-- James A. Treacy <treacy@debian.org> Wed, 29 Oct 2003 16:21:04 -0500
gramps (0.9.5-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Thu, 16 Oct 2003 16:19:55 -0400
gramps (0.9.4-2) unstable; urgency=low
* Upstream changelog stopped being included. Fixed. Closes: #213499
-- James A. Treacy <treacy@debian.org> Tue, 30 Sep 2003 20:34:36 -0400
gramps (0.9.4-1) unstable; urgency=low
* New upstream release
* Bashisms fixed. Closes: #208167
* FonstScale.py fixed. Closes: #201961
* DeprecationWarning messages no longer printed. Closes: #206231
-- James A. Treacy <treacy@debian.org> Tue, 30 Sep 2003 00:51:45 -0400
gramps (0.9.3-3) unstable; urgency=low
* Reuploaded do to minor glitch
-- James A. Treacy <treacy@debian.org> Tue, 9 Sep 2003 14:31:17 -0400
gramps (0.9.3-2) unstable; urgency=low
* Updated to use python 2.3
* Temporarily use local copy of dtd file so install with no net connection
works. Closes: #205008
-- James A. Treacy <treacy@debian.org> Fri, 8 Aug 2003 22:30:51 -0400
gramps (0.9.3-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Tue, 15 Jul 2003 10:28:50 -0400
gramps (0.9.2-2) unstable; urgency=low
* cat output of config.log on configure failure to help catch problem on hppa.
-- James A. Treacy <treacy@debian.org> Thu, 12 Jun 2003 23:01:35 -0400
gramps (0.9.2-1) unstable; urgency=low
* New upstream release.
-- James A. Treacy <treacy@debian.org> Wed, 28 May 2003 10:30:51 -0400
gramps (0.9.1-2) unstable; urgency=low
* rm src/grampslib.so so it will be built on every arch
-- James A. Treacy <treacy@debian.org> Sun, 18 May 2003 14:20:38 -0400
gramps (0.9.1-1) unstable; urgency=low
* New upstream release. Closes: #183031
* Depends on scrollkeeper. Closes: #185875
* Changed python dependencies to python 2.2. Closes: #180201
* Website generation fixed. Closes: #169780
-- James A. Treacy <treacy@debian.org> Mon, 24 Mar 2003 10:16:48 -0500
gramps (0.8.1-1) unstable; urgency=low
* New upstream source
* Upstream implemented better dialog defaults. Closes: #167978
-- James A. Treacy <treacy@debian.org> Mon, 16 Dec 2002 22:02:30 -0500
gramps (0.8.0-6) unstable; urgency=low
* patched to work independent of whether python-xml is installed
-- James A. Treacy <treacy@debian.org> Wed, 23 Oct 2002 16:51:19 -0400
gramps (0.8.0-5) unstable; urgency=low
* rm src/intl??.so during clean. Upstream has been notified and will remove
these files from the tar file in the future. Closes: #159311
-- James A. Treacy <treacy@debian.org> Tue, 3 Sep 2002 14:38:24 -0400
gramps (0.8.0-4) unstable; urgency=low
* recompiled against python2.2
* update the .omf files to work with scrollkeeper. Sent upstream.
-- James A. Treacy <treacy@debian.org> Fri, 30 Aug 2002 11:26:30 -0400
gramps (0.8.0-3) unstable; urgency=low
* Add Build-Depends on gettext. Fixes another autobuilder problem
-- James A. Treacy <treacy@debian.org> Sat, 24 Aug 2002 10:28:57 -0400
gramps (0.8.0-2) unstable; urgency=low
* Revert to previous way of running configure. Closes: #157993
* Added scrollkeeper to the Build-Depends. Should now build on the
autobuilders
-- James A. Treacy <treacy@debian.org> Sat, 24 Aug 2002 00:26:19 -0400
gramps (0.8.0-1) unstable; urgency=low
* New upstream version.
-- James A. Treacy <treacy@debian.org> Thu, 8 Aug 2002 00:48:23 -0400
gramps (0.7.3-4) unstable; urgency=low
* Add dependency on python (<< 2.2)
-- James A. Treacy <treacy@debian.org> Thu, 18 Jul 2002 08:55:58 -0400
gramps (0.7.3-3) unstable; urgency=low
* Official release of new upstream version by new maintainer
-- James A. Treacy <treacy@debian.org> Fri, 5 Jul 2002 10:51:59 -0400
gramps (0.7.3-2) unstable; urgency=low
* Switched to generating HTML docs at build time.
-- Alex Roitman <shura@alex.neuro.umn.edu> Wed, 26 Jun 2002 19:56:06 -0500
gramps (0.7.3-1) unstable; urgency=low
* New upstream release
* Added new entry to the upstream NEWS file - it was missing.
* Added '#! usr/bin/python -O' line to src/AddMedia.py to make lintian happy.
Also removed this line from src/DbPrompter.py for the same reason.
* Edited debian/rules to call '$(MAKE) clean' instead of
'$(MAKE) distclean' which did not exist.
* Edited src/Makefile.in - 'clean' target should also remove *.so files.
* Pre-built static HTMLs since the on-the-fly generation from SGML is buggy.
This required editing debian/rules to call '$(MAKE) install-html',
and editing doc/*/C/Makefile.in to not remove static HTMLs.
-- Alex Roitman <shura@alex.neuro.umn.edu> Mon, 24 Jun 2002 12:18:57 -0500
gramps (0.7.2-1) unstable; urgency=low
* New upstream release
* Gramps now depends on python2.
* Changes some of the 'depends' issues to not point towards specific debian
revisions of the package.
* Edited gramps.in.sh to use /usr/bin/python2.1 instead of /usr/bin/python.
Closes: #127401
-- Brandon L. Griffith <brandon@debian.org> Thu, 4 Apr 2002 07:30:17 -0500
gramps (0.7.0-1) unstable; urgency=low
* New upstream release
* This version fixes the bug reported by a user in Bug #120738 which kept
him from importing his GEDCOM files correctly.
Closes: #120738
-- Brandon L. Griffith <brandon@debian.org> Mon, 24 Dec 2001 08:11:44 -0500
gramps (0.6.2-1) unstable; urgency=low
* New upstream release
* This version should fix the XPM data with color > 32766 problem that
was keeping gramps from starting on systems using puthon > 1.5
Closes: #119950
Closes: #116893
-- Brandon L. Griffith <brandon@debian.org> Mon, 19 Nov 2001 04:29:47 -0500
gramps (0.6.1-1) unstable; urgency=low
* New upstream release
* Removed dependencies on python-base
Closes: #118782
-- Brandon L. Griffith <brandon@debian.org> Thu, 15 Nov 2001 15:31:51 -0500
gramps (0.5.1-1) unstable; urgency=low
* New upstream release
* gramps-extending and gramps-manual are now integrated into the gramps
help function so I'm removing them from the docs dir.
* Updated the README.Debian
* Included a gramps icon in the menu file
* Fixed some gramatical problems in the control file.
-- Brandon L. Griffith <brandon@debian.org> Wed, 3 Oct 2001 21:00:28 -0400
gramps (0.5.0-2) unstable; urgency=low
* A change in the way the makefile was used caused the executables to not
be installed correctly, this version should fix that.
Closes: #113147
* I have included two sets of DOCS with this package.
- The Gramps Manual
- Extending Gramps
I'm not registering these with doc-base, read the README.Debian if
you'd like to know why.
-- Brandon L. Griffith <brandon@debian.org> Sat, 22 Sep 2001 12:02:24 -0400
gramps (0.5.0-1) unstable; urgency=low
* New upstream release
-- Brandon L. Griffith <brandon@debian.org> Tue, 18 Sep 2001 21:23:06 -0400
gramps (0.4.1-3) unstable; urgency=low
* Paul Slootman was nice enough to point out my ignorance in the rules file
where I expected a script to be executable and indeed it wasn't. Thanks,
Paul for the patch.
Closes: #110570
-- Brandon L. Griffith <brandon@debian.org> Wed, 29 Aug 2001 15:01:38 -0400
gramps (0.4.1-2) unstable; urgency=low
* Lintian was yelling hard at me. It seems that every_single file is set with
an executable bit. I wrote a shell script to remove it from the files that
do not need it and am informing the upstream author.
* Fixed the menu entry where I left in a | where it was not needed.
* A few more lintian clean-ups as well such as me using an "ancient"
standards version and a typo in the copyright.
-- Brandon L. Griffith <brandon@debian.org> Sun, 26 Aug 2001 23:42:05 -0400
gramps (0.4.1-1) unstable; urgency=low
* New upstream release
-- Brandon L. Griffith <brandon@debian.org> Tue, 14 Aug 2001 10:37:14 -0400
gramps (0.4.0-1) unstable; urgency=low
* New upstream release
* Added a bit more docs, but nothing major.
-- Brandon L. Griffith <brandon@debian.org> Fri, 10 Aug 2001 08:40:07 -0400
gramps (0.3.2-1) unstable; urgency=low
* New upstream release
* This version of the gramps package for debian includes the upstream authors
changes for fixing bug #101466
* Fixed some minor typos in the changelog as well.
-- Brandon L. Griffith <brandon@debian.org> Fri, 6 Jul 2001 19:59:23 -0500
gramps (0.3.1-2) unstable; urgency=low