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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
|
gramps (4.2.5~dfsg-1) unstable; urgency=medium
* New upstream release
* Refresh patch, dropped some changes as applied upstream
* Update patch header
* Update copyrights
* Update testsuite execution according to upstream Travis CI
-- Ross Gammon <rosco2@ubuntu.com> Mon, 09 Jan 2017 19:18:18 +0100
gramps (4.2.4~dfsg-1~bpo8+1) jessie-backports; urgency=medium
* Rebuild for jessie-backports.
* Update branch in gbp.conf & Vcs-Git URL.
-- Ross Gammon <rosco2@ubuntu.com> Sat, 05 Nov 2016 18:16:10 +0100
gramps (4.2.4~dfsg-1) unstable; urgency=medium
* New upstream release
* Refresh gi-import-version.patch
* Drop appstream patch, applied upstream
* Use ubuntu email address
-- Ross Gammon <rosco2@ubuntu.com> Sun, 23 Oct 2016 19:59:03 +0200
gramps (4.2.3~dfsg-1) unstable; urgency=medium
* New upstream release
* Refresh patch
* Update copyright file
* Use secure Vcs URLs
* Bump standards version, no changes required
* Fixes gtk 3.20 issue (Closes: #821955)
* Fixes float conversion issue with Geography view (Closes: #816855)
* Patch appstream info to comply with latest specification (0.9)
* Attempt to fix Reproducible Builds FTBFS by creating temporary $HOME
* Switch Section to gnome to match ftp-master override
-- Ross Gammon <rossgammon@mail.dk> Sat, 07 May 2016 23:03:08 +0200
gramps (4.2.2~dfsg-1) unstable; urgency=medium
* New upstream release
* Contains fix for crash when entering death with no birth
(Closes: #810815)
* Update copyright years
* Fix spelling error in NEWS file
-- Ross Gammon <rossgammon@mail.dk> Mon, 18 Jan 2016 20:33:51 +0100
gramps (4.2.1~dfsg-2) unstable; urgency=medium
* Fix FTBFS by excluding nose from webapp directory
(Closes: #805202)
* Attempt to fix reproducibility issue by adding --force
option to setup.py
* Add patch to fix gi.respository import without version warnings
Thanks to Vincent Smeets (Closes: #802010)
-- Ross Gammon <rossgammon@mail.dk> Sun, 06 Dec 2015 13:54:16 +0100
gramps (4.2.1~dfsg-1) unstable; urgency=medium
* New upstream release
* Update watchfile to github tarball location
* Drop patch previously cherry picked from upstream
* Unapply patches from source
* Update copyright file
* Drop watch line from upstream/metadata file
* No PKG-INFO to install anymore
* Install NEWS file as the upstream changelog
* Change section from python to misc to avoid lintian warning
-- Ross Gammon <rossgammon@mail.dk> Mon, 19 Oct 2015 22:54:34 +0200
gramps (4.2.0~dfsg-1) unstable; urgency=medium
* New upstream release
* Drop patches applied upstream or cherry-picked from there
* Add version constraints for gtk and pygobject
* Add goocanvas dependency - available soon
* Drop webkit dpendency as HTML view has been removed
* Force removal of upstream packages when installing Debian one
(LP: #1464845)
* Drop fixperm override as permissions fixed upstream
* Fix spelling error in changelog
* Switch to nose for unit tests
* Add build dependencies for the nose tests
* Update copyright file
* Add uversionmangle to watch file to deal with alpha/beta versions
* Add manual test cases
* Drop FAQ URL from upstream metadata - changes every release
* Add patch to fix transparent windows in Ubuntu.
Thanks to Lance Orner (LP: #1451259)
-- Ross Gammon <rossgammon@mail.dk> Tue, 11 Aug 2015 23:03:11 +0200
gramps (4.1.3~dfsg-2) unstable; urgency=medium
* Update resource path patch - applied upstream
* Add patch to fix error message and freeze in Geography View
(Closes: #789333)
* Drop Xs-testsuite field as tests are found automatically now
-- Ross Gammon <rossgammon@mail.dk> Sun, 28 Jun 2015 12:12:42 +0200
gramps (4.1.3~dfsg-1) unstable; urgency=medium
* New upstream release
* Fixes manpage desription of import function (LP: #1427444)
* Fixes crash when closing detatched gramplet (Closes: #785393)
-- Ross Gammon <rossgammon@mail.dk> Sat, 16 May 2015 11:49:41 +0200
gramps (4.1.2~dfsg-1) unstable; urgency=medium
* Move gramps from experimental to unstable
* Switch gbp.conf debian-branch back to master
* Change Vcs URL to cgit instead of gitweb
* Update README.Debian as Python 3 happened in the past
* Refresh patches
-- Ross Gammon <rossgammon@mail.dk> Sun, 26 Apr 2015 12:18:04 +0200
gramps (4.1.2~dfsg-1~exp1) experimental; urgency=medium
* New upstream release
* Set gbp.conf debian branch to experimental
* Update upstream metadata with switch to github from sourceforge
* Refresh patch & drop pickle patch as it came from 4.1.2
* Update copyright years
* Add patch to fix HTML view
* Enable upstream unit tests during build (Closes: #739446)
* Add an autopkgtest for the commandline import & export
-- Ross Gammon <rossgammon@mail.dk> Thu, 26 Mar 2015 20:02:15 +0100
gramps (4.1.1~dfsg-3) unstable; urgency=medium
* Add patch to fix bugs when database upgraded to Python 3 (Closes: #779308)
-- Ross Gammon <rossgammon@mail.dk> Thu, 26 Feb 2015 21:57:31 +0100
gramps (4.1.1~dfsg-2) unstable; urgency=medium
* Fix clean target (Closes: #772573)
-- Ross Gammon <rossgammon@mail.dk> Mon, 08 Dec 2014 19:25:11 +0100
gramps (4.1.1~dfsg-1) unstable; urgency=medium
* New upstream release
* Fixes import of UTF-8 gedcoms (Closes: #765876)
* Drop patches applied upstream
-- Ross Gammon <rossgammon@mail.dk> Fri, 24 Oct 2014 19:30:41 +0200
gramps (4.1.0~dfsg-1) unstable; urgency=medium
[ Ross Gammon ]
* Update resourcepath patch for upstream use (Closes: #739223)
* Fix unused copyright entry
* Add Keywords entry to gramps.desktop file (Closes: #729133)
* Add an upstream/metadata file
[ IOhannes m zmölnig (Debian/GNU) ]
* Bumped standards-version to 3.9.6 (No change needed)
* Upload to unstable
-- Ross Gammon <rossgammon@mail.dk> Fri, 17 Oct 2014 17:31:47 +0200
gramps (4.1.0~dfsg-1~exp1) experimental; urgency=medium
* Debian packaging switches to Python 3 (Closes: #733607)
* New features include:
+ Full Python 3 support
+ Better Place handling
+ Tags now supported on Event, Place, Repository, Source, and Citation
+ Enhanced media related functions
-- Ross Gammon <rossgammon@mail.dk> Tue, 12 Aug 2014 20:46:31 +0200
gramps (4.0.4+dfsg-2) unstable; urgency=medium
* Apply patch to fix drag and drop of media (Closes: #753352)
* Correct wrong date in previous changelog entry
-- Ross Gammon <rossgammon@mail.dk> Thu, 03 Jul 2014 19:47:26 +0200
gramps (4.0.4+dfsg-1) unstable; urgency=medium
* New upstream release
* Export now possible in cron job when headless (Closes: #549974)
* Gexiv now "Recommends" to reduce messages at startup (Closes: #748933)
* Apply patch to fix bug for media with relative paths
* Drop patch enabling HTML view - now included in this release
* Drop patch for empty string bug - now included in this release
* Drop patch for editing notes bug - now included in this release
* Improve Debian packaging
+ Provide get-orig-source target
+ Explain repacking of source tarball in README.source
+ Updated copyright file with new dates
-- Ross Gammon <rossgammon@mail.dk> Mon, 02 Jun 2014 17:21:59 +0200
gramps (4.0.3+dfsg-3) unstable; urgency=low
* Drop patch to disable HTML View
* Apply patch to fix and re-enable the HTML View.
Thanks to Serge Noiraud (Closes: #737771)
* Fix bug preventing the editing of notes (Closes: #747318)
-- Ross Gammon <rossgammon@mail.dk> Fri, 14 Feb 2014 20:53:14 +0100
gramps (4.0.3+dfsg-2) unstable; urgency=low
* Correct gtkspell dependency (Closes: #737715)
* Apply patch from upstream to fix empty string bug (Closes: #738104)
-- Ross Gammon <rossgammon@mail.dk> Wed, 05 Feb 2014 23:47:46 +0100
gramps (4.0.3+dfsg-1) unstable; urgency=low
* New upstream release (Closes: #720858)
* To-do notes improved and made persistent (Closes: #680692)
* Applied patch to setup.py to fix resource path problem
* Applied patch to disable the optional HTML View & prevent a crash
* Remove sourceless javascript files (Closes: #736436)
* Gramps uses Bat Mitzva internally (Closes: #502532)
-- Ross Gammon <rossgammon@mail.dk> Mon, 03 Feb 2014 17:28:04 +0100
gramps (3.4.6-1) unstable; urgency=low
* New upstream release (Closes: #727234)
* New maintainer (Closes: #728393)
* Many changes and bugfixes since 3.4.1 (see NEWS file)
- Including a fix for screens not redrawing (Closes: #686593)
-- Ross Gammon <rossgammon@mail.dk> Tue, 29 Oct 2013 20:17:47 +0100
gramps (3.4.1-0.3) unstable; urgency=low
* Non-maintainer upload
* Newer upstream release + watch file added (Closes: #718852)
* Also fixes an error causing the family order to be incorrect on xml export
* Apply suggested patch to 3.4.0 to fix crash when non-UTF-8 locale used
(Closes: #627833)
* Updated copyright file to machine readable format
-- Ross Gammon <rossgammon@mail.dk> Sat, 12 Oct 2013 13:03:08 +0100
gramps (3.4.0-1) unstable; urgency=low
* New upstream version
* Updated desktop file. Closes: #667472
-- James A. Treacy <treacy@debian.org> Tue, 22 May 2012 17:18:36 -0400
gramps (3.3.2-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Sat, 19 May 2012 19:37:50 -0400
gramps (3.3.1-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 03 Oct 2011 20:35:37 -0400
gramps (3.3.0-1) unstable; urgency=low
* New upstream version
* apply upstream patch to fix norwegian translation
-- James A. Treacy <treacy@debian.org> Mon, 20 Jun 2011 22:19:43 -0400
gramps (3.2.6-1) unstable; urgency=low
* New upstream version.
* patched to include update to Narrative Web Report
-- James A. Treacy <treacy@debian.org> Mon, 02 May 2011 13:26:56 -0400
gramps (3.2.5-2) unstable; urgency=low
* replace dh_pycentral with dh_python2. Closes: #616835
-- James A. Treacy <treacy@debian.org> Mon, 07 Mar 2011 00:41:57 -0500
gramps (3.2.5-1) unstable; urgency=low
* New upstream release
-- James A. Treacy <treacy@debian.org> Wed, 16 Feb 2011 23:40:45 -0500
gramps (3.2.3-4) unstable; urgency=low
* added one line fix to preven crash on export. Closes: #603464
-- James A. Treacy <treacy@debian.org> Mon, 15 Nov 2010 14:41:58 -0500
gramps (3.2.3-3) unstable; urgency=low
* Added missing entries for new files for Slovenian translation to
appropriate Makefile.am . Closes: #599544
-- James A. Treacy <treacy@debian.org> Fri, 08 Oct 2010 15:16:11 -0400
gramps (3.2.3-2) unstable; urgency=low
* Updated Slovenian translation
-- James A. Treacy <treacy@debian.org> Tue, 05 Oct 2010 22:54:36 -0400
gramps (3.2.3-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 17 May 2010 09:29:03 -0400
gramps (3.2.2-1) unstable; urgency=low
* New upstream version
-- James A. Treacy <treacy@debian.org> Mon, 26 Apr 2010 09:22:26 -0400
gramps (3.2.0-1) unstable; urgency=low
* New upstream release
* works with gtk 2.19. Closes: #566958
-- James A. Treacy <treacy@debian.org> Fri, 15 Mar 2010 18: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
* A minor cosmetic touch up where a word was misspelled on the main GUI and
in the menu list.
Closes: #101466
* Added a README file to the examples directory explaining how to use/open
the example files without getting errors. This will probably be removed
in a near upcoming release as the author may have fixed the problem.
Closes: #101463
* The last package of gramps was built with a broken dpkg-dev which caused
an automated bug report. I installed a better version of dpkg-dev in order
to rebuild this package.
Closes: #102531
* The author has finally addressed the issue of a missing help file. Though
as of now none have been created the error produced before is gone and the
author is working on better documentation.
Closes: #99617
-- Brandon L. Griffith <brandon@debian.org> Thu, 28 Jun 2001 20:27:30 -0500
gramps (0.3.1-1) unstable; urgency=low
* New upstream release
* Full identification in the program as well as the docs now shows that this
is version 0.3.1. A Bug was filed on 0.3.0 because the author did not
include and information stating the program had actually changed.
Closes: #101462
* There is an outstanding bug against gramps at the moment #101463 which
is caused by gramps creating (attempting) a temporary file in a non-
writable directory '/usr/share/doc/gramps/examples'. This can easily
be avoided by copying the example files to your home directory or to a
writable temporary directory. This, however is just a workaround an in
no way is a means to closing this bug.
-- Brandon L. Griffith <brandon@debian.org> Tue, 26 Jun 2001 11:19:21 -0500
gramps (0.3.0-1) unstable; urgency=low
* New upstream release
* This package closes the wishlist bug where I was a bit lazy on creating
a package for the new upstream release.
Closes: #101254
-- Brandon L. Griffith <brandon@debian.org> Mon, 18 Jun 2001 08:08:53 -0500
gramps (0.2.0-1) unstable; urgency=low
* New upstream release
* The upstream author now includes sample gedcom and sample gramps files
with the source. These are placed in the usual example directory.
This closes a wishlist bug in the bugs database but it seems that the
server that holds bugs.debian.org and lists.debian.org is down. I'll
re-upload a new package to close those bugs as soon as the server gets
back up. But I am uploading the package ASAP as it fixes several program
bugs that can be considered critical.
-- Brandon L. Griffith <brandon@debian.org> Mon, 4 Jun 2001 22:11:27 -0500
gramps (0.1.5-2) unstable; urgency=low
* Important note here. If you fail to follow thru with the wizard you are
prompted with when gramps first runs you will receive the same error as
stated in bug 98745 about invalid cast from `(unknown)' to `GtkObject'.
This is not a bug with the package or the program but rather with the way
the program is written. It is assuming that a widget is there that is not
due to canceling out the wizard.
Closes: #98745
* This package now suggests python-reportlab and python-imaging in order to
produce reports in PDF format. I should have included these earlier but
failed to notice the naming convention used for the reportlab package.
-- Brandon L. Griffith <brandon@debian.org> Wed, 30 May 2001 16:56:45 -0500
gramps (0.1.5-1) unstable; urgency=low
* New upstream release
* My last bug was reopened due to my lack of common sense. This release
should fix the small problem.
Closes: #98646
* Edited the manual page and control files because this release of gramps
no longer supports LaTeX in favor of PDF.
* Changed Section in the control file to be "misc" instead of "x11"
-- Brandon L. Griffith <brandon@debian.org> Sat, 26 May 2001 18:27:09 -0500
gramps (0.1.4-3) unstable; urgency=low
* It seems as though there is a classes structure change between versions
0.5.x and 0.6.x of PyXML and gramps has only been tested with the
0.6.x branch. Changed dependency of python-xml to call for >=0.6.0-1
This should take care of the startup problem some people have had.
Bug Fixed. Closes: #98646
* Silly me named the menu file wrong so it never got included into the
Debian Menu system. Gramps should now show up under Apps->Tools. Have
no idea how I overlooked this.
* Wrote a more in depth manpage for Gramps. This manpage will more than
likely be included in the main source distribution of gramps.
-- Brandon L. Griffith <brandon@debian.org> Thu, 24 May 2001 22:08:26 -0500
gramps (0.1.4-2) unstable; urgency=low
* Failed to add python-glade as a dependency. Fixed. Closes: #98406
-- Brandon L. Griffith <brandon@debian.org> Tue, 22 May 2001 16:49:26 -0400
gramps (0.1.4-1) unstable; urgency=low
* Initial Release.
-- Brandon L. Griffith <brandon@debian.org> Sat, 19 May 2001 13:37:24 -0400
|