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
|
sword (1.8.1+dfsg-8) unstable; urgency=medium
* Breaks/Replaces on libsword11v5 >= 1.8, Closes: #913407
Thanks to Andreas Beckmann
* Patch to build against libicu63, Closes: #913511
Thanks to László Böszörményi the icu maintainer for the patch
* 1.8.1+dfsg-1 made build reproducible again, Closes: #912161
was fixed in the fix for 913076
Thanks to Chris Lamb for the earlier reproducibility patch
* let's get back to consecutive version numbers ;)
* transition in progress, apologies for not notifying the
release team - only xiphos and bibletime affected
-- Daniel Glassey <wdg@debian.org> Mon, 12 Nov 2018 23:05:48 +0700
sword (1.8.1+dfsg-7) unstable; urgency=medium
* debian/python-sword.install: removed
-- Teus Benschop <teusjannette@gmail.com> Sat, 10 Nov 2018 15:10:09 +0100
sword (1.8.1+dfsg-1) experimental; urgency=medium
[ Daniel Glassey ]
* import dfsg version of upstream source
* transition 1.8.1 into unstable
* adjust installed utilities in libsword-utils
according to upstream recommendations, Closes: #913076
[ Teus Benschop ]
* refactor existing patches
-- Teus Benschop <teusjannette@gmail.com> Sat, 10 Nov 2018 14:58:48 +0100
sword (1.8.1-6) experimental; urgency=medium
* ran into dgit problems
-- Daniel Glassey <wdg@debian.org> Sat, 03 Nov 2018 15:05:44 +0700
sword (1.8.1-5) experimental; urgency=medium
* lintian prefers libsword-1.8.1 as package name
-- Daniel Glassey <wdg@debian.org> Sat, 03 Nov 2018 13:35:15 +0700
sword (1.8.1-4) experimental; urgency=medium
* d/watch file to use https
* d/control don't need libsword-dbg any more
remove dep on cmake
* d/rules remove unused overrides
don't run usrinst or autogen
* new lib so version
d/control rename lib package to libsword1.8.1
rename d/libsword11v5.* to 1.8.1
* d/patches
0005-untgz-sprintf.patch to remove strtime
0006-powerpc64.patch to build on powerpc64
0007-gbfwordjs.patch unlikely overflow
* for transition
-- Daniel Glassey <wdg@debian.org> Fri, 02 Nov 2018 10:19:32 +0700
sword (1.8.1-3) unstable; urgency=high
* dh_missing fail-missing
* debian/*install*: install missing files
* updated patches
* fixed: useless depends dh-autoreconf
* fixed: lintian: debian-rules-should-not-use-custom-compression-settings
dh_builddeb
-- Teus Benschop <teusjannette@gmail.com> Thu, 01 Nov 2018 10:42:56 +0100
sword (1.8.1-2) unstable; urgency=high
* apply patch for reproducible build, Closes: #912161
* upstream fixed diatheke bug, Closes: #673033
-- Teus Benschop <teusjannette@gmail.com> Tue, 30 Oct 2018 07:36:15 +0100
sword (1.8.1-1) unstable; urgency=high
* new upstream version 1.8.1
* remove already applied patches
-- Teus Benschop <teusjannette@gmail.com> Sun, 28 Oct 2018 12:10:39 +0100
sword (1.7.4+dfsg-1) unstable; urgency=high
* Normalize version to 1.7.4+dfsg
-- Teus Benschop <teusjannette@gmail.com> Fri, 26 Oct 2018 14:13:02 +0200
sword (1.7.4-2) unstable; urgency=medium
* debian/control: update uploaders
* debian/control: update standards versions
* debian/control: revert to soname libsword11v5
-- Teus Benschop <teusjannette@gmail.com> Fri, 26 Oct 2018 12:54:20 +0200
sword (1.7.4-1) unstable; urgency=high
* compat 10
* add current uploader
* update soname
* update make_shlibs
* fix priority-extra-is-replaced-by-priority-optional
* debian/patches/emptyvss: removed - already applied
* debian/patches/multiarch: removed - already applied
* debian/rules: more robust chrpath
* debian/rules: use autotools
* patch increase template-depth g++
* debian/*.install: updated locations
* new upstream version 1.7.4
-- Teus Benschop <teusjannette@gmail.com> Fri, 26 Oct 2018 12:04:19 +0200
sword (1.7.3.1+dfsg-2) unstable; urgency=medium
* debian/rules: build: ignore: No such file or directory
-- Teus Benschop <teusjannette@gmail.com> Fri, 05 Oct 2018 20:46:51 +0200
sword (1.7.3.1+dfsg-1) unstable; urgency=medium
[ Daniel Glassey ]
* Imported Upstream version 1.7.3+dfsg
[ Teus Benschop ]
* changelog
* New upstream version 1.7.3.1+dfsg
* debian/control: Updated maintainer email: Closes: #899906
* debian/control: Updated Vcs-* for Salsa
-- Teus Benschop <teusjannette@gmail.com> Thu, 04 Oct 2018 13:52:16 +0200
sword (1.7.3+dfsg-11) unstable; urgency=medium
[ Dominique Corbex ]
* simplifying d/rules
-- Teus Benschop <teusjannette@gmail.com> Thu, 04 Oct 2018 13:12:24 +0200
sword (1.7.3+dfsg-10) unstable; urgency=medium
* d/patches/sword-TEI-images.patch:
add images support in TEI encoded modules
* d/patches/emptyvss.patch:
add emptyvss to libsword-utils
* d/rules:
fix lintian info tag: hardening-no-bindnow
remove empty directory: /usr/share/sword/modules
* d/control:
fix lintian info tag: vcs-field-uses-insecure-uri
* d/patches/fix-misspellings.patch:
fix spelling errors in sources
-- Dominique Corbex <dominique@corbex.org> Mon, 17 Apr 2017 21:58:37 +0200
sword (1.7.3+dfsg-9) unstable; urgency=medium
* d/patches/sword-ppc64.patch: patch to fix ppc64
thanks to Fernando Seiti Furusato, Closes: #808346
* d/rules: Update to standards 3.9.8, no changes
-- Daniel Glassey <wdg@debian.org> Wed, 07 Sep 2016 14:05:14 -0500
sword (1.7.3+dfsg-8) unstable; urgency=medium
[ Daniel Glassey ]
* d/rules: CLucene_FIND_REQUIRED not used
[ Unit 193 ]
* d/rules: Drop -Werror, closes: #811602.
-- Unit 193 <unit193@ubuntu.com> Tue, 06 Sep 2016 15:16:01 -0400
sword (1.7.3+dfsg-7) unstable; urgency=medium
* d/rules: default dh_auto_test to actually run the tests
* add tests/testblocks.cpp to selectively compiling patch
-- Daniel Glassey <wdg@debian.org> Wed, 16 Sep 2015 18:36:09 +0100
sword (1.7.3+dfsg-6) unstable; urgency=medium
* debian/control: add Vcs-Git and Vcs-Browser
* patch to fix tests to run
-- Daniel Glassey <wdg@debian.org> Wed, 16 Sep 2015 11:15:10 +0100
sword (1.7.3+dfsg-5) unstable; urgency=medium
* Rebuild with correct orig.tar.gz
* c++ transition, Closes: #796711
* debian/control:
diatheke provides sword-frontend, Closes: #696742
-- Daniel Glassey <wdg@debian.org> Mon, 14 Sep 2015 11:45:04 +0100
sword (1.7.3+dfsg-4) unstable; urgency=medium
* debian/copyright:
fix short names of publicdomain licences to not have spaces
remove 'unknown license' - files are under GPL as with rest of tarball
unless otherwise specified
* debian/control:
standards version 3.9.6 (no changes)
Multiarch enable library
dh-autoreconf build dep
* debian/rules:
dh --with autoreconf
set version for dh_makeshlibs
* remove debian/libsword-dev.links
* debian/patches:
new patch selectively_disable_compiler_warnings.patch
uses pragmas to disable unused-result warnings
clean up and remove old patches
-- Daniel Glassey <wdg@debian.org> Mon, 14 Sep 2015 08:44:15 +0100
sword (1.7.3+dfsg-3) experimental; urgency=low
* c++ transition
rename library to libsword11v5
blocked by ICU c++ transition
* add patch abicompare.patch to allow libsword to work with
abi-compliance-checker for future transitions
-- Daniel Glassey <wdg@debian.org> Wed, 02 Sep 2015 14:15:09 +0100
sword (1.7.3+dfsg-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix build with GCC 5 (-Wno-error=deprecated-declarations). Closes: #778133.
-- Matthias Klose <doko@debian.org> Fri, 10 Jul 2015 16:18:02 +0200
sword (1.7.3+dfsg-2) unstable; urgency=medium
* Add missing license in debian/copyright. (Closes: 754869)
* Fix libsword.so symlink in the dev package.
-- Dimitri John Ledkov <xnox@ubuntu.com> Wed, 16 Jul 2014 01:27:30 +0100
sword (1.7.3+dfsg-1) unstable; urgency=medium
* New upstream release:
- Bump abi from 10 to 11, all flatapi got renamed with
org_crosswire_sword_ prefix.
-- Dimitri John Ledkov <xnox@ubuntu.com> Sat, 12 Jul 2014 17:49:01 +0100
sword (1.7.2+dfsg-2) unstable; urgency=medium
* Correct shared library symlink. (Closes: #747420)
-- Dimitri John Ledkov <xnox@ubuntu.com> Sun, 11 May 2014 22:09:52 +0100
sword (1.7.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Rebase patches.
* icu translit files are no longer generated, don't install them.
* drop installing greek transliteration doc.
* bump abi to 10.
* switch to debhelper 9.
-- Dimitri John Ledkov <xnox@debian.org> Sat, 19 Apr 2014 15:05:09 +0100
sword (1.6.2+dfsg-6) unstable; urgency=low
[ Rene Engelhard ]
* fix FTBFS: remove include/zconf.h and don't rely on it (closes: #707537)
[ Dmitrijs Ledkovs ]
* Add patch to build against clucene-core 2.
-- Dmitrijs Ledkovs <xnox@debian.org> Sun, 04 Aug 2013 19:20:31 +0100
sword (1.6.2+dfsg-5ubuntu1) raring; urgency=low
* Build against clucene-core 2.
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Wed, 21 Nov 2012 01:45:59 +0000
sword (1.6.2+dfsg-5) unstable; urgency=low
* Fix FTBFS due to icu changes (Closes: #676097).
-- Dmitrijs Ledkovs <xnox@debian.org> Thu, 07 Jun 2012 07:49:56 +0100
sword (1.6.2+dfsg-4) unstable; urgency=low
[ Matthias Klose ]
* Fix build failure in installed header file with GCC 4.7.
Addresses: #667387.
[ Dmitrijs Ledkovs ]
* Remove python-sword swig bindings. Loads of build-time warnings (4.6)
and errors (4.7) and the resulting module was reported not to
work. Should be readded if/when it can be build with gcc 4.7 without
errors. (Closes: #667387)
-- Dmitrijs Ledkovs <xnox@debian.org> Tue, 17 Apr 2012 21:39:11 +0100
sword (1.6.2+dfsg-3) unstable; urgency=low
* Fix FTBFS if running binary-arch target only.
-- Dmitrijs Ledkovs <xnox@debian.org> Mon, 09 Apr 2012 14:58:48 +0100
sword (1.6.2+dfsg-2) unstable; urgency=low
[ Dmitrijs Ledkovs <xnox@debian.org> ]
* Fix linking against CLucene
* Backport CMake changes
* Set sword config path to /etc
* ABI was broken in 1.6.2, bump soname to libsword9 (Closes: 663096)
* Split libswordX into libswordX, -utils & -common, to make libswordX
non-conflicting with libswordX+1
-- Dmitrijs Ledkovs <xnox@debian.org> Sat, 07 Apr 2012 14:22:48 +0100
sword (1.6.2+dfsg-1) unstable; urgency=low
[ Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> ]
* Revamped debian/rules to use dh tiny rules style
* Raised compat to debhelper 7 and change associated packaging files
* Use CMake to build sword
* debian/patches/02_libver.diff: dropped, using CMake variable
* Add debian/source/local-options with VCS friendly options
* Add .bzr-builddeb/default.conf to facilitate building from bzr
* Use dpkg-buildflags
* Make CMake honour environmental variables
* Create python-sword package (LP: #49959) (Closes: 640357)
* document vs2osisreftxt.1
* 3.0 (quilt) format only (launchpad ppa supports it now)
* fix gcc-4.6 warnings
* Additional compiler error fix, thanks to
"brian m. carlson" <sandals@crustytoothpaste.net> (Closes: 624962)
* Updated debian/copyright to match the updated dep-5 spec
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Tue, 30 Nov 2010 23:06:43 +0000
sword (1.6.1+dfsg-2) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Fixed lintian warning about watch file.
* debian/patches/13_curl - Upstream fix for curl 7.20 compatibility.
* bumped standards version to 3.8.4 - no changes required.
* Update email address.
* Added upstream changelog.
* debian/copyright:
- Removed reference to unversioned GPL license
- Two files do not explictly specify GPL version
- Based on clause 9 GPL-2 & clause 14 GPL-3, GPL-2 is selected such
that to be compatible with the rest of sword
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Mon, 22 Mar 2010 19:14:19 +0000
sword (1.6.1+dfsg-1) unstable; urgency=low
[ Jonathan Marsden ]
* debian/libsword8.examples: Add missing tcl eggdrop bot script.
[ Dmitrijs Ledkovs ]
* Drop shipping .la file in favour of pkg-config (Debian release goal)
- More info http://lists.debian.org/debian-devel/2009/08/msg00783.html
* Drop backported patches, refreshed libver & compiler warnings.
* Compiling with -Werror enabled.
* Bumped standards version to 3.8.3, no changes needed.
* Added debian/README.source documentation quilt usage
* Added configure option --without-internalregex
-- Dmitrijs Ledkovs <dmitrij.ledkov@gmail.com> Thu, 21 Jan 2010 00:10:17 +0000
sword (1.6.0+dfsg-1) unstable; urgency=low
[ Jonathan Marsden ]
* New upstream release. (Closes: #507960) (LP: #320558)
* debian/patches/02_libver.diff:
- Bump SONAME to 8 -- SWORD 1.6 is not backward compatible with 1.5.11.
* debian/patches/series:
- Remove 10_diatheke.diff -- included in upstream source.
* debian/patches/:
- Remove several old unused .diff files.
- Add 11_regex_only_when_needed.diff to conditionally include regex lib.
- Add 12_fix_compiler_warnings.diff to remove all compiler warnings.
- Add 13_fix_osis2mod_compression_default.diff from upstream svn.
- Add 14_closing_section_not_chapter.diff from upstream svn.
* debian/libsword7.*:
- Rename to libsword8.*
- Change libsword7 to libsword8 within files.
* debian/rules:
- SONAME bump to 8.
- Set library version check to >= 1.6
* debian/control:
- Change libsword7 to libsword8.
- Add libsword7 to Conflicts.
- Fix case of sword to SWORD in package descriptions.
- Bump Standards-Version to 3.8.1 (no changes needed).
- Fix section for libsword-dbg to avoid lintian warning.
* debian/rules:
- Add DFSG get-orig-source target.
* debian/copyright:
- Fix various mistakes in initial attempt to document copyrights.
[ Dmitrijs Ledkovs ]
* debian/rules: Added utils.mk to use missing-files target and call it on
each build.
* debian/libsword-dev.install: Added libsword.la, previously missing.
* debian/libsword7.install: Added missing libicu translit files.
* debian/control:
- Updated all uses of SWORD version to 1.6
- Added libsword-dbg package
* debian/watch: Fixed a small mistake which was resulting in extra "."
in final version name.
* debian/rules: simplified manpage processing.
* debian/libsword8.lintian-overrides: added override for module
installation directory.
* debian/copyright: Updated with information about everyfile.
Closes: #513448 LP: #322638
* debian/diatheke.examples: moved examples here from the diatheke.install
* debian/rules:
- enabled shell script based testsuite
- added commented out cppunit testsuite
* debian/patches/40_missing_includes.diff:
- added several missing stdio.h includes to prevent FTBFS of testsuite.
[ Closed Bugs ]
* FTBFS on intrepid (LP: #305172)
-- Jonathan Marsden <jmarsden@fastmail.fm> Sat, 30 May 2009 11:55:55 -0700
sword (1.5.11-1) experimental; urgency=low
[Jonathan Marsden]
* New upstream release
* debian/rules:
- Switch to using more normal CDBS/autotools not tarball in tarball.
- Build against libicu for better i18n support.
- Use chrpath on installed binaries to get rid of lintian warnings.
- Set DEB_DH_MAKESHLIBS_ARGS to (>= 1.5.11) not (>=1.5.11-1).
- Add pod2man command to generate tei2mod man page.
- Use -n option on pod2man commands to fix command names in man pages.
* Bump SONAME to 7.
- Rename debian/libsword6.* appropriately.
- Change 6 to 7 in several scripts including debian/rules
and debian/control
* debian/patches:
- Remove most patches as being unnecessary now.
- Simplify debian/patches/02_libver.diff to only edit the version-info.
* debian/control:
- Bump Standards-Version to 3.8.0.
- Update diatheke one-line description (cli tool not CGI script).
- Removed recommends of a web server for diatheke.
- Edit description of diatheke removing references to web/CGI.
- Add ${misc:Depends} to Depends of binary packages.
- Add Homepage tag
- Update Conflicts: to libsword6.
- Update Replaces: to include libsword6.
* debian/*:
- Move CGI scripts to install as examples, for security reasons.
- Add debian/diatheke.README.Debian explaining move of CGI scripts.
- Minimize unnecessary debian/*.dirs files and entries in them.
- Remove unnecessary debian/libsword7.shlibs file.
* debian/diatheke.1:
- Escape all unescaped dashes.
- Add trailing newline.
* debian/diatheke.manpages:
- Create file, add debian/diatheke.1 so this man page is included in
the diatheke binary package.
* debian/libsword7.install:
- Add missing usr/bin/tei2mod entry so the tei2mod command is installed.
* debian/libsword7.manpages:
- Add an entry for tei2mod.1 man page.
* debian/tei2mod.1.pod:
- Add the tei2mod man page source.
[Dmitrijs Ledkovs]
* debian/*.pod
- Added manpages for all utilities.
* debian/rules
- Added rules to generate manpages from POD.
* debian/libsword7.manpages
- Created manpages list.
* debian/control
- Set maintainer to CrossWire Packaging team
- Set uploaders: Daniel Glassey, Dmitrijs Ledkovs, Jonathan Marsden
- Extended descriptions of the packages
* debian/changelog
- updated formatting, sorted by developer
* debian/copyrights
- updated to proposed copyright format
* debian/patches
- added patch descriptions
-- Jonathan Marsden <jmarsden@fastmail.fm> Sat, 04 Apr 2009 23:09:16 -0700
sword (1.5.9-8.1ubuntu1) intrepid; urgency=low
* Fakesync with Debian unstable (LP: #234580)
* Modify Maintainer value to match the DebianMaintainerField
specification.
-- Emilio Pozuelo Monfort <pochu@ubuntu.com> Wed, 28 May 2008 15:38:08 +0200
sword (1.5.9-8.1) unstable; urgency=medium
* Non-maintainer upload.
* Amend 08_gcc_43.diff to fix GCC 4.3 FTBFS (Closes: #474824)
* debian/control:
- Build-Depend on cdbs >= 0.4.27 instead of 0.4.27-1.
- Bump Standards-Version to 3.7.3.
- Use ${binary:Version} instead of ${Source-Version}.
-- Chris Lamb <chris@chris-lamb.co.uk> Sat, 12 Apr 2008 00:00:29 +0100
sword (1.5.9-8ubuntu1) hardy; urgency=low
* Fakesync from Debian unstable.
* Fixes CVE-2008-0932. (LP: #195696)
-- William Grant <william.grant@ubuntu.org.au> Sun, 16 Mar 2008 20:59:00 +1100
sword (1.5.9-8) unstable; urgency=high
* diatheke failed to use shell_escape for the range parameter
properly, Closes: #466449
-- Daniel Glassey <wdg@debian.org> Mon, 18 Feb 2008 22:57:25 +0000
sword (1.5.9-7.1) unstable; urgency=medium
[ Luk Claes ]
* Non-maintainer upload.
* Don't ship the libsword.la file anymore (Closes: #444562).
* Don't rely on libclucene.la anymore (Closes: #445776).
-- root <luk@debian.org> Sat, 02 Feb 2008 15:46:07 +0000
sword (1.5.9-7) unstable; urgency=low
* libsword-dev should not depend on libclucene-dev
or libc6-dev, libz-dev, libcurl4-gnutls-dev
* patch 09_pcfile.diff don't link apps to all these libs
* update patch 02_libver.diff link lib to clucene
-- Daniel Glassey <wdg@debian.org> Fri, 31 Aug 2007 16:33:10 +0100
sword (1.5.9-6ubuntu1) gutsy; urgency=low
* Fakesync from Debian unstable
* Modify Maintainer value to match Debian-Maintainer-Field Spec
-- Lionel Porcheron <lionel.porcheron@ubuntu.com> Sun, 08 Jul 2007 22:51:24 +0200
sword (1.5.9-6) unstable; urgency=low
* debian/control: diatheke should recommend apache2 now
* unmet Recommends on libapache-mod-perl | apache-perl (Closes:
#429565)
-- Daniel Glassey <wdg@debian.org> Fri, 22 Jun 2007 10:45:24 +0100
sword (1.5.9-5ubuntu2) gutsy; urgency=low
* Rebuild for the libcurl transition mess.
-- Steve Kowalik <stevenk@ubuntu.com> Thu, 5 Jul 2007 14:11:58 +1000
sword (1.5.9-5ubuntu1) gutsy; urgency=low
* Merge from Debian unstable, remaining changes:
- Modify Maintainer value to match Debian-Maintainer-Fied Spec
-- Raphael Pinson <raphink@ubuntu.com> Wed, 6 Jun 2007 15:53:55 +0200
sword (1.5.9-5) unstable; urgency=low
* debian/control change libsword-dev dependency to
libcurl4-gnutls-dev, Closes: #423936
* include patch to build with gcc 4.3, Closes: #417717
-- Daniel Glassey <wdg@debian.org> Sat, 19 May 2007 16:22:41 -0600
sword (1.5.9-4ubuntu1) gutsy; urgency=low
* Merge from debian unstable, remaining changes:
* Fakesync
* Modify Maintainer value to match Debian-Maintainer-Field Spec
-- Sarah Hobbs <hobbsee@ubuntu.com> Sat, 19 May 2007 14:23:34 +1000
sword (1.5.9-4) unstable; urgency=low
* debian/control curl transition, change build dep to
libcurl4-gnutls-dev, Closes: #423936, #423958
* enable 06_warnings and 07_warn_tools patches
-- Daniel Glassey <wdg@debian.org> Tue, 15 May 2007 07:56:16 -0600
sword (1.5.9-3build1) feisty; urgency=low
* Fakesync due to mismatched orig.tar.gz (no Ubuntu changes).
-- Michael Bienia <geser@ubuntu.com> Fri, 12 Jan 2007 14:05:22 +0100
sword (1.5.9-3) unstable; urgency=high
* patch 06_warnings.diff - modifications to fix some compiler warnings
(not enabled in this version)
* patch 07_warnings_tools.diff - modifications to fix some compiler warnings
(not enabled in this version)
* debian/control: diatheke to recommend not depend on webserver as
the script can be used on its own, Closes: #358535
* patch 04_ziplock.diff to fix error when uncompressing locked modules
IMPORTANT - prevents a crash with bibletime and locked modules
so urgency high
* patch 05_getline.diff prevents potential use of uninitialised var
* rename diffs to xx_name.diff
-- Daniel Glassey <wdg@debian.org> Fri, 24 Nov 2006 15:14:05 +0000
sword (1.5.9-2) unstable; urgency=low
* Use CLUCENE_LIBS not LUCENE_LIBS in sword.pc.in
so that frontends will just link to clucene
-- Daniel Glassey <wdg@debian.org> Thu, 23 Nov 2006 11:37:17 +0000
sword (1.5.9-1) unstable; urgency=low
* New upstream version
* debian/control:
changes to API so new package libsword6, replaces libsword5c2a
don't depend on libicu36-dev
(would have depended on libicu36-dev instead of icu34)
* debian/rules:
shlibs for libsword6
new upstream tarball
use --with-clucene=/usr
don't build with icu
* remove debian/control.in
* debian/libsword6.dirs: rename
* debian/libsword6.docs: rename and refer to correct dir
* debian/libsword6.install: rename and use new .so name
* debian/libsword6.shlibs: rename and use new .so name
* debian/patches: don't need utilities patch, update lib version patch
* debian/diatheke*: refer to 1.5.9 directory
-- Daniel Glassey <wdg@debian.org> Mon, 25 Sep 2006 19:53:37 +0100
sword (1.5.9-0ubuntu3) edgy; urgency=low
* Update debian/libsword6.shlibs with Ubuntu version of lib
-- Raphaël Pinson <raphink@ichthux.com> Thu, 28 Sep 2006 11:04:42 +0200
sword (1.5.9-0ubuntu2) edgy; urgency=low
* Shlibs created with libsword6 >= 1.5.9-0ubuntu1 in debian/rules
-- Raphaël Pinson <raphink@ichthux.com> Tue, 26 Sep 2006 08:18:34 +0200
sword (1.5.9-0ubuntu1) edgy; urgency=low
[ Daniel Glassey ]
* New upstream version
* debian/control:
changes to API so new package libsword6, replaces libsword5c2a
don't depend on libicu36-dev
(would have depended on libicu36-dev instead of icu34)
* debian/rules:
shlibs for libsword6
new upstream tarball
use --with-clucene=/usr
don't build with icu
* remove debian/control.in
* debian/libsword6.dirs: rename
* debian/libsword6.docs: rename and refer to correct dir
* debian/libsword6.install: rename and use new .so name
* debian/libsword6.shlibs: rename and use new .so name
* debian/patches: don't need utilities patch, update lib version patch
* debian/diatheke*: refer to 1.5.9 directory
[ Raphaël Pinson ]
* Bump debhelper version to 5
-- Raphaël Pinson <raphink@ichthux.com> Tue, 26 Sep 2006 07:30:20 +0200
sword (1.5.8-9) unstable; urgency=low
* build using clucene, build-deps on libclucene-dev
* not released, but applies to 1.5.9
-- Daniel Glassey <wdg@debian.org> Wed, 14 Dec 2005 19:46:26 +0000
sword (1.5.8-8) unstable; urgency=low
* fix build depends wrt cdbs autogenerated version
* debian/rules: fix shlibsdeps
-- Daniel Glassey <wdg@debian.org> Sat, 10 Dec 2005 20:25:24 +0000
sword (1.5.8-7) unstable; urgency=medium
* ackknowledge NMU, thanks, Closes: #339269
* don't autogenerate debian/control using cdbs
* use gnutls version of curl since sword is GPLd
-- Daniel Glassey <wdg@debian.org> Thu, 8 Dec 2005 10:42:17 +0000
sword (1.5.8-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Medium-urgency upload for RC bugfix.
* Rename libsword5 to libsword5c2a for the C++ mt allocator ABI transition,
and conflict/replace libsword5 accordingly (closes: #339269).
-- Steve Langasek <vorlon@debian.org> Mon, 5 Dec 2005 00:10:19 -0800
sword (1.5.8-6) unstable; urgency=low
* build dep on a version of libcurl3-openssl-dev that has the
correct depends, Closes: #334667
-- Daniel Glassey <wdg@debian.org> Wed, 19 Oct 2005 08:52:38 +0100
sword (1.5.8-5) unstable; urgency=low
* rebuild against curl and openssl
* build depend on libcurl3-openssl-dev instead of libcurl3-dev
* libsword-dev depends on libcurl3-openssl-dev
-- Daniel Glassey <wdg@debian.org> Thu, 13 Oct 2005 11:44:39 +0100
sword (1.5.8-4) unstable; urgency=low
* debian/rules: shlibs should be for libsword5 >= 1.5.8-3
-- Daniel Glassey <wdg@debian.org> Fri, 9 Sep 2005 12:00:29 +0100
sword (1.5.8-3) unstable; urgency=low
* debian/libsword5.shlibs: Fix shlibs problem for bug #323116
* updated FSF address in copyright
* remove libsword5.conffiles to stop duplication
* change the lib soname to 5 rather than 1.5.8
-- Daniel Glassey <wdg@debian.org> Wed, 7 Sep 2005 15:44:47 +0100
sword (1.5.8-2) unstable; urgency=low
* Don't install libsword-1.5.8.so to both packages
* html docs aren't in sword any more so remove libsword-dev.doc-base
-- Daniel Glassey <wdg@debian.org> Thu, 11 Aug 2005 16:07:03 +0100
sword (1.5.8-1) unstable; urgency=low
* New upstream release
so new package libsword5, no need for libsword4c2 now
* Thanks for the gcc4 fix, acknowledge NMU (Closes: #288586)
* Change to using cdbs and quilt to manage patches
* include imp2gbs and xml2gbs utilities
-- Daniel Glassey <wdg@debian.org> Wed, 10 Aug 2005 15:44:34 +0100
sword (1.5.7-7.1) unstable; urgency=low
* Non-Maintainer Upload
* C++ transition: libsword4 -> libsword4c2
* Fix gcc4 compile error: Use intptr_t as type for pointers, not 'int'
(Closes: #288586)
* Debhelper compat level 4, to fix calls to ldconfig properly, and drop a
lot of manual stuff
* Run dh_makeshlibs *before* dh_installdeb
* Fix broken dh_shlibs invocation
-- Jeroen van Wolffelaar <jeroen@wolffelaar.nl> Sat, 6 Aug 2005 19:42:38 +0200
sword (1.5.7-7) unstable; urgency=high
* Patch from security team, Closes: #291433
* Added shell_escape() function to fix arbitrary command execution
[apps/console/diatheke/cgi/diatheke.pl, CAN-2005-0015]
* Improvements by Ulf Härnhammar
-- Daniel Glassey <wdg@debian.org> Mon, 17 Jan 2005 16:24:37 +0000
sword (1.5.7-6) unstable; urgency=low
* libsword-dev should depend on libcurl3-dev
-- Daniel Glassey <wdg@debian.org> Mon, 13 Dec 2004 23:03:20 +0000
sword (1.5.7-5) unstable; urgency=low
* Change from libcurl2-dev to libcurl3-dev, Closes: #279460
* Move the pkgconfig file to the dev package, Closes: #281585
-- Daniel Glassey <wdg@debian.org> Thu, 9 Dec 2004 14:26:45 +0000
sword (1.5.7-4) unstable; urgency=low
* Use PassiveFtp for installmgr by default
This avoids problems with the BibleTime installer, Closes: #235601
-- Daniel Glassey <wdg@debian.org> Fri, 16 Jul 2004 16:51:35 +0100
sword (1.5.7-3) unstable; urgency=low
* src/utilfuns/utilstr.cpp - toupperstr *buf++ fix
caused segfaults when compiled with -O2
* fix to build with gcc 3.4
include/multimapwdef.h, Closes: #258768
* build the diatheke package again, it is still there just in a
different place, Closes: #229444
* fix documentation about modules,
README.Debian, Closes: #249020
-- Daniel Glassey <wdg@debian.org> Wed, 14 Jul 2004 16:54:27 +0100
sword (1.5.7-2) unstable; urgency=low
* Fix problem building with current libcurl2-dev - TRUE has
been removed from the curl header, VERBOSE just needs to
be 1 now, Closes: #227860
-- Daniel Glassey <wdg@debian.org> Thu, 15 Jan 2004 15:50:07 +0000
sword (1.5.7-1) unstable; urgency=low
* New upstream version
* set lib version to 4
* remove diatheke as it has been removed from upstream source,
hopefully it will be released separately soon
* improve the copyright file because of post to debian-devel
-- Daniel Glassey <wdg@debian.org> Wed, 7 Jan 2004 15:16:30 +0000
sword (1.5.6-9) unstable; urgency=medium
* Build depend on libcurl2-dev
-- Daniel Glassey <wdg@debian.org> Thu, 20 Nov 2003 10:20:11 +0000
sword (1.5.6-8) unstable; urgency=low
* Remove the recommends of libsword-runtime from libsword-dev, Closes:
#220411
* That'd better be the last of the control file mistakes :/
-- Daniel Glassey <wdg@debian.org> Wed, 12 Nov 2003 14:39:30 +0000
sword (1.5.6-7) unstable; urgency=low
* Also Replaces libsword-runtime and libsword-config, Closes #220408
-- Daniel Glassey <wdg@debian.org> Wed, 12 Nov 2003 14:00:34 +0000
sword (1.5.6-6) unstable; urgency=low
* Rerun libtool/autoconf/automake, Closes: #220250
-- Daniel Glassey <wdg@debian.org> Tue, 11 Nov 2003 19:20:16 +0000
sword (1.5.6-5) unstable; urgency=low
* libsword3 replaces libsword2c103, Closes: #219463
* libsword3 replaces libsword1, Closes: #219463
* no libsword-runtime package now so description is irrelevant, Closes: #209977
-- Daniel Glassey <wdg@debian.org> Fri, 7 Nov 2003 13:53:46 +0000
sword (1.5.6-4) unstable; urgency=low
* The 'ok, forget about the config package' release
* now at policy 3.6.1.0
* add a build-dep for pkg-config
* ready to upload to unstable
-- Daniel Glassey <wdg@debian.org> Wed, 5 Nov 2003 17:04:44 +0000
sword (1.5.6-3) experimental; urgency=low
* -runtime package is unnecessary so merge it into lib
-- Daniel Glassey <wdg@debian.org> Wed, 3 Sep 2003 20:49:58 +0100
sword (1.5.6-2) experimental; urgency=low
* Brown paper bug - get shlibs right
-- Daniel Glassey <wdg@debian.org> Fri, 29 Aug 2003 11:25:55 +0100
sword (1.5.6-1) experimental; urgency=low
* Release is done now
* Upload to experimental for now til gs and bt are ready
* don't need the c102 suffix now
* don't build with icu til we get 2.6 packaged and into experimental
-- Daniel Glassey <wdg@debian.org> Thu, 28 Aug 2003 17:38:40 +0100
sword (1.5.5.99-2) unstable; urgency=low
* Another prerelease build
* split config files out into separate package so we can have different
sword libs installed at the same time later on
-- Daniel Glassey <wdg@debian.org> Wed, 16 Jul 2003 14:48:22 +0100
sword (1.5.5.99-1) unstable; urgency=low
* Build a pre-release from a make dist from cvs
* change lib version for imminent 1.5.6
* depend on icu 2.6 to test that
* api docs have been moved out into separate source
-- Daniel Glassey <wdg@debian.org> Thu, 10 Jul 2003 12:45:18 +0100
sword (1.5.5-4) unstable; urgency=low
* debian/control remove extra blank line that stops building on woody
-- Daniel Glassey <wdg@debian.org> Thu, 1 May 2003 09:59:14 +0100
sword (1.5.5-3) unstable; urgency=low
* libsword-dev now depends on icu stuff so apps that build with it don't
have to
* conflict with libsword1 since both include config files (may split these
out into separate package for 1.5.6), Closes #189647
-- Daniel Glassey <wdg@debian.org> Sat, 19 Apr 2003 16:01:05 +0100
sword (1.5.5-2) unstable; urgency=low
* Close the new upstream bug, Closes: #175322
* uses autotools-dev to get the uptodate config.guess and
config.sub, hopefully will sort out mips problem, Closes: #187703
* Utilities are now really included - bug 157115 tagged for woody
* debian/control - change section of libsword-dev to libdevel
* debian/rules -
remove alpha compiler flags since it is ok with gcc3.2, Closes: #142703
use confflags like autotools-dev says
copy the config.guess and .sub from autotools-dev
-- Daniel Glassey <wdg@debian.org> Sat, 5 Apr 2003 12:53:06 +0100
sword (1.5.5-1) unstable; urgency=low
* New upstream release
* Rename library package to libsword2c102 since it is a new
libver from 1.5.3 and it is part of the gcc3.2 transition
* build with icu support now that icu has made the transition
so build-depend on libicu21-dev and icu
* build depend on debhelper >= 4.0.0
-- Daniel Glassey <wdg@debian.org> Tue, 26 Mar 2003 18:42:28 +0000
sword (1.5.4+cvs20021008-1) unstable; urgency=low
* try and build a package from cvs
-- Daniel Glassey <wdg@debian.org> Tue, 8 Oct 2002 19:08:46 +0100
sword (1.5.4-1) unstable; urgency=low
* new upstream version
* bump shlibs version since old version was released with woody
* package now libsword2 instead of libsword1
-- Daniel Glassey <wdg@debian.org> Sat, 28 Sep 2002 13:31:47 +0100
sword (1.5.3-3) unstable; urgency=high
* problem integrating hppa patch messed up rules, trying again
* updating README.Debian to mention apt-gettable archive on
crosswire
-- Daniel Glassey <wdg@debian.org> Sun, 14 Apr 2002 15:19:14 +0100
sword (1.5.3-2) unstable; urgency=low
* make sure will build on gcc-3.0, sorry, Closes: #142617
* alpha won't compile with -g flag so compiling without it
see bug 142703
-- Daniel Glassey <wdg@debian.org> Sat, 13 Apr 2002 13:04:28 +0100
sword (1.5.3-1) unstable; urgency=high
* New upstream release
-- Daniel Glassey <wdg@debian.org> Tue, 2 Apr 2002 21:38:58 +0100
sword (1.5.2-10) unstable; urgency=low
* -9 failed on hppa, using namespace std needed in testblocks.cpp
fix tested on sarti
-- Daniel Glassey <wdg@debian.org> Sat, 9 Feb 2002 18:20:40 +0000
sword (1.5.2-9) unstable; urgency=low
* make the diatheke configure executable in debian/rules
Closes: #132863
* make diatheke description useful debian/control
* bump shlibs version to 1.5.2-9
* debian/rules dh_shlibdeps changed to -ldebian/tmp/usr/lib
* compzip.cpp #include string.h and stdlib.h added for gcc 3.0
* README.Debian mention #sword irc channel
-- Daniel Glassey <wdg@debian.org> Fri, 8 Feb 2002 08:59:29 +0000
sword (1.5.2-8) unstable; urgency=low
* rwphtml change greek_str to signed char
* migrate to automake 1.5
* move utilities to separate package libsword-runtime, Closes: #130909
* new package containing diatheke from apps/console/diatheke, Closes: #130908
* Bump standards version to 3.5.6.0
-- Daniel Glassey <wdg@debian.org> Thu, 24 Jan 2002 20:01:16 +0000
sword (1.5.2-7) unstable; urgency=low
* Rename roman.cpp to romanc.cpp, Closes #130038
* Update README.Debian to mention apt-gettable module archive
deb http://www.crosswire.org/~glasseyes/debian unstable main
-- Daniel Glassey <wdg@debian.org> Wed, 23 Jan 2002 18:53:18 +0000
sword (1.5.2-6) unstable; urgency=low
* remove -Werror, autobuilders not happy (fair enough, I can check
through the build logs for warnings myself :) )
* rawstr, rawstr4 more signed char in findoffset, Closes: #130038
* c++ comments so roman.c -> roman.cpp, Closes: #129886
-- Daniel Glassey <wdg@debian.org> Mon, 21 Jan 2002 20:19:31 +0000
sword (1.5.2-5) unstable; urgency=low
* char signedness fixes
(in response to debian-devel-announce from Gerhard Tonn
swkey: persist to signed char
swmodule: createModule to signed char
createSearchFramework to signed char
versekey: book,testament to signed char
swmgr: setCipherKey to signed char
filemgr: trunc to signed char
rawtext: createSearchFramework to signed char
rawstr: findoffset to signed char
rawstr4: findoffset to signed char
in gettext make localsize to unsigned int
* use -Werror in Makefile.cfg to catch any more
* anything else is either already fixed or will be fixed in the
imminent version 1.5.3
-- Daniel Glassey <wdg@debian.org> Thu, 17 Jan 2002 23:55:08 +0000
sword (1.5.2-4) unstable; urgency=low
* Change maintainer to wdg@debian.org
* change shlibs to libsword1 >= 1.5.2-4 (gnomesword bug 123418)
by dh_makeshlibs -V 'libsword1 (>= 1.5.2-4)' in debian/rules
* remove reference to cheatah in package description
-- Daniel Glassey <wdg@debian.org> Tue, 11 Dec 2001 22:36:44 +0000
sword (1.5.2-3) unstable; urgency=low
* oops, include gifs in html documentation as well
* chmod 755 before executing configure, closes #122658
* remove autoconf from build-depends
-- Daniel Glassey <wdg@debian.org> Wed, 5 Dec 2001 00:25:07 +0000
sword (1.5.2-2) unstable; urgency=low
* Backport endian solution from CVS, Closes: #103732
* include some module utilities in the dev package
* use the latest config.* from /usr/share/misc
-- Daniel Glassey <wdg@debian.org> Mon, 3 Dec 2001 19:11:08 +0000
sword (1.5.2-1.1) unstable; urgency=low
* NMU to satisfy build-dependencies.
* Fix gcc 3.0 compile failures. Closes: #108707.
-- LaMont Jones <lamont@debian.org> Tue, 14 Aug 2001 09:25:42 -0600
sword (1.5.2-1) unstable; urgency=low
* New upstream release
* final 1.5.2 release
-- Daniel Glassey <wdg@debian.org> Mon, 2 Jul 2001 22:53:50 +0000
sword (1.5.1.99-1) unstable; urgency=low
* New upstream release
* prerelease of 1.5.2
* change maintainer address to wdg@debian.org
* add libsword-dev.manpages
-- Daniel Glassey <wdg@debian.org> Mon, 25 Jun 2001 18:32:04 +0000
sword (1.5.1a-4) unstable; urgency=low
* Merged with Ivan Moore's latest package (1.5.1a-2 in Debian)
* Now recommends frontend and doesn't depend on modules
-- Daniel Glassey <danglassey@yahoo.com> Mon, 22 Jan 2001 22:22:10 +0000
sword (1.5.1a-3) unstable; urgency=low
* use autoconf to determine platform
* add zlib to build-depends
* up standards version to 3.2.1
* module creation progs added to dev
-- Daniel Glassey <danglassey@yahoo.com> Mon, 15 Jan 2001 18:53:14 +0000
sword (1.5.1a-2) unstable; urgency=low
* recommend text, suggest dict and comm. install locales.
-- Daniel Glassey <danglassey@yahoo.com> Mon, 4 Dec 2000 21:32:33 +0000
sword (1.5.1a-1) unstable; urgency=low
* New upstream release
-- Daniel Glassey <danglassey@yahoo.com> Thu, 23 Nov 2000 20:06:03 +0000
sword (1.5.0-1) unstable; urgency=low
* New upstream release
-- Daniel Glassey <danglassey@yahoo.com> Mon, 28 Aug 2000 21:34:49 +0100
sword (1.4.6-2) unstable; urgency=low
* Change of maintainer
-- Daniel Glassey <danglassey@yahoo.com> Mon, 28 Aug 2000 19:14:22 +0100
sword (1.4.6-1) unstable; urgency=low
* New upstream version
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 20 Jan 2000 19:30:16 -0700
sword (1.4.4-4) unstable; urgency=low
* Removing mods.conf file
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 01 Oct 1999 07:30:16 -0400
sword (1.4.4-3) unstable; urgency=low
* Fixing minor pathing bug with mods.conf files
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 01 Oct 1999 04:45:16 -0400
sword (1.4.4-2) unstable; urgency=low
* Fixing alot of things.
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 01 Oct 1999 01:30:16 -0400
sword (1.4.4-1) unstable; urgency=low
* Initial Release.
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 30 Sep 1999 08:30:16 -0400
Local variables:
mode: debian-changelog
End:
|