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
|
vile (9.8y-2) unstable; urgency=medium
* Fix typo in aclocal.m4 (closes: #1029956).
-- Brendan O'Dea <bod@debian.org> Mon, 30 Jan 2023 15:40:09 +1100
vile (9.8y-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 16 Jan 2023 13:52:00 +1100
vile (9.8x-2) unstable; urgency=medium
* Apply patch from upstream to fix insertion of accented characters
using compose sequences with Multi_key.
-- Brendan O'Dea <bod@debian.org> Sun, 15 Jan 2023 13:30:54 +1100
vile (9.8x-1) unstable; urgency=medium
* New upstream release.
* Actually include lxvile in the xvile package.
* Revert `Multi-Arch: same' change to vile-filters: this introduces a
lintian error due to the dependency on the non multi-arch package
vile-common.
-- Brendan O'Dea <bod@debian.org> Sat, 31 Dec 2022 12:46:28 +1100
vile (9.8w-3) unstable; urgency=medium
* Change ncurses build dependency to unversioned libncurses-dev.
* Install lxvile and lxvile.desktop.
* Install lxvile-font to examples directory.
* Fix Perl #! lines to meet Policy (ยง10.4).
* Make example scripts executable.
-- Brendan O'Dea <bod@debian.org> Thu, 15 Dec 2022 21:58:04 +1100
vile (9.8w-2) unstable; urgency=medium
* Remove constraints unnecessary since buster (oldstable):
+ Build-Depends: Drop versioned constraint on dpkg-dev, flex, libperl-dev
and libxaw7-dev.
+ xvile: Drop versioned constraint on vile-common in Replaces.
+ vile-common: Drop versioned constraint on vile in Replaces.
-- Debian Janitor <janitor@jelmer.uk> Fri, 14 Oct 2022 17:06:02 -0000
vile (9.8w-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 22 Aug 2022 15:16:35 +1000
vile (9.8v-4) unstable; urgency=medium
* Apply multi-arch hint from Debian Janitor: multiple vile-filters
packages may be installed (not particularly usefully, as the same is
not true of the vile package...).
* Add Rules-Requires-Root: no.
* Update to standards version 4.6.1.
* Fix order of #include in UXVile.ad so that the correct font is used.
* Change the default xvile font to match the uxvile sizing (9x18).
* Rollback lins_chars() change added in 9.8v (breaking unicode input).
-- Brendan O'Dea <bod@debian.org> Tue, 02 Aug 2022 15:15:05 +1000
vile (9.8v-3) unstable; urgency=medium
* Remove a pragma from perl.xs which gcc no longer recognises.
* Fix a build failure for Perl 5.36 caused by a namespace conflict of
the symbol `regexp' (closes: #1014289).
-- Brendan O'Dea <bod@debian.org> Mon, 04 Jul 2022 14:27:41 +1000
vile (9.8v-2) unstable; urgency=medium
* Switch to dpkg-source 3.0 (quilt) format (closes: #1007381).
-- Brendan O'Dea <bod@debian.org> Wed, 16 Mar 2022 20:27:38 +1100
vile (9.8v-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 13 Dec 2021 17:33:04 +1100
vile (9.8u-2) unstable; urgency=medium
* Don't call dpkg-buildflags directly, allow configure to get flags set
by buildflags.mk from the environment.
* Set -e explicitly in maintainer scripts rather than via the #! line
(lintian: maintainer-script-without-set-e).
* Update lintian override for vile man page (changed to no-manual-page).
* Update debhelper to version 13.
-- Brendan O'Dea <bod@debian.org> Sun, 07 Feb 2021 01:09:00 +1100
vile (9.8u-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 18 May 2020 22:30:38 +1000
vile (9.8t-4) unstable; urgency=medium
* Re-build to fix accidental build as native (closes: #953604).
-- Brendan O'Dea <bod@debian.org> Wed, 11 Mar 2020 11:57:30 +1100
vile (9.8t-3) unstable; urgency=medium
* Use dh_auto_configure as per suggestion of Helmut Grohne to fix
cross-compilation issues (closes: #932934).
* Install filters and helper binaries to multi-arch libdir.
-- Brendan O'Dea <bod@debian.org> Fri, 26 Jul 2019 20:03:33 +1000
vile (9.8t-2) unstable; urgency=medium
* Change build dependency from flex-old back to flex (closes: #932560).
-- Brendan O'Dea <bod@debian.org> Sun, 21 Jul 2019 17:21:26 +1000
vile (9.8t-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Tue, 13 Nov 2018 22:35:30 +1100
vile (9.8s-5) unstable; urgency=medium
* Move repository to salsa.debian.org.
* Update Vcs-Git/Vcs-Browser.
* Update to policy 4.1.3 (no changes).
-- Brendan O'Dea <bod@debian.org> Tue, 06 Feb 2018 22:08:06 +1100
vile (9.8s-4) unstable; urgency=medium
* Update Vcs-Browser.
-- Brendan O'Dea <bod@debian.org> Sat, 19 Aug 2017 00:34:02 +1000
vile (9.8s-3) unstable; urgency=medium
* Use dh_update_autotools_config to update config.{guess,sub} thanks to
a helpful suggestion from Niels Thykier in response to #869541.
-- Brendan O'Dea <bod@debian.org> Mon, 24 Jul 2017 20:30:59 +1000
vile (9.8s-2) unstable; urgency=medium
* Update to policy 4.0.0:
- update config.guess, config.sub
- remove menu files (deprecated in favour of freedesktop files)
* Update debhelper for version 10.
* Fix dependency on vile-common (closes: #869429).
-- Brendan O'Dea <bod@debian.org> Mon, 24 Jul 2017 13:30:19 +1000
vile (9.8s-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 19 Dec 2016 01:12:41 +1100
vile (9.8r-3) unstable; urgency=medium
* Re-build for Perl 5.24.
-- Brendan O'Dea <bod@debian.org> Sun, 25 Sep 2016 20:49:17 +1000
vile (9.8r-2) unstable; urgency=medium
* Revert flex dependency back to flex-old, as configure doesn't
correctly handle flex 2.6.0 (closes: #832973).
-- Brendan O'Dea <bod@debian.org> Sun, 31 Jul 2016 12:40:40 +1000
vile (9.8r-1) unstable; urgency=medium
* New upstream release.
* Simplify debian/rules and drop the option for conditionally building
packages (this was useful when there were multiple X toolkit options,
not so much today).
* Pass --disable-stripping to configure such that -dbgsym packages are
correctly created.
* Use --link-doc option of dh_installdocs instead of explicitly creating
the doc links.
* Rename debian/README.Debian to explicitly put it into the vile-common
package.
-- Brendan O'Dea <bod@debian.org> Thu, 28 Jul 2016 22:03:26 +1000
vile (9.8q-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Fri, 11 Sep 2015 20:36:58 +1000
vile (9.8p-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 02 Feb 2015 19:46:14 +1100
vile (9.8o-1) unstable; urgency=medium
* New upstream release.
* Fix VCS control fields.
* Update to standards version 3.9.5.
-- Brendan O'Dea <bod@debian.org> Thu, 02 Oct 2014 21:22:42 +1000
vile (9.8n-1) unstable; urgency=medium
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 07 Jul 2014 21:46:04 +1000
vile (9.8m-1) unstable; urgency=medium
* New upstream release.
* Use INT2PTR and PTR2IV macros rather than an explicit cast in perl.xs
and ptypemap.
-- Brendan O'Dea <bod@debian.org> Mon, 31 Mar 2014 21:56:34 +1100
vile (9.8l-1) unstable; urgency=medium
* New upstream release.
* Switch build dependency from flex-old to flex which is now supported.
-- Brendan O'Dea <bod@debian.org> Sun, 02 Feb 2014 11:26:22 +1100
vile (9.8k-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Tue, 16 Jul 2013 21:04:49 +1000
vile (9.8j-3) unstable; urgency=low
* Fix perl inplace editing for files with multi-byte encoding.
* Another POD documentation fix for Perl 5.18 (closes: #708027).
-- Brendan O'Dea <bod@debian.org> Tue, 21 May 2013 19:44:01 +1000
vile (9.8j-2) unstable; urgency=low
* Fix POD documentation to work with Perl 5.18 (closes: #708027).
* Locate xsubpp/typemap via @INC.
-- Brendan O'Dea <bod@debian.org> Mon, 13 May 2013 19:03:22 +1000
vile (9.8j-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 15 Apr 2013 22:06:33 +1000
vile (9.8i-2) unstable; urgency=low
* Use .1 suffix for X11 manpages rather than .1x.
* Explicitly use 1.0 source format.
-- Brendan O'Dea <bod@debian.org> Sun, 14 Apr 2013 09:22:21 +1000
vile (9.8i-1) unstable; urgency=low
* New upstream release.
* Install vile-perl-api.doc, and docs for perl modules.
* Fix some minor errors in pod files.
-- Brendan O'Dea <bod@debian.org> Mon, 24 Sep 2012 13:46:26 +1000
vile (9.8h-1) unstable; urgency=low
* New upstream release.
* Revise icon/pixmap handling to match upstream changes.
-- Brendan O'Dea <bod@debian.org> Fri, 24 Aug 2012 16:16:05 +1000
vile (9.8g-2) unstable; urgency=low
* Recommend xfonts-75dpi and xfonts-100dpi for xvile, which specifies
fonts from both in XVile.ad and vilemenu.rc (thanks to Jonathan
Nieder, closes: #563250).
-- Brendan O'Dea <bod@debian.org> Sun, 03 Jun 2012 11:02:54 +1000
vile (9.8g-1) unstable; urgency=low
* New upstream release.
* Use dpkg-buildflags to pass compiler/linker flags to configure. Add
build-depends on dpkg-dev.
-- Brendan O'Dea <bod@debian.org> Mon, 12 Mar 2012 04:57:40 +1100
vile (9.8f-2) unstable; urgency=low
* Apply 9.8f2 patch from Tom to fix a regression with nohl when no
majormode is in effect.
-- Brendan O'Dea <bod@debian.org> Thu, 29 Dec 2011 13:48:33 +1100
vile (9.8f-1) unstable; urgency=low
* Revert changes to configure.
* Switched maintainer/uploader roles back again.
* New upstream release.
* Revise DEFAULT_XSHELL handling again.
-- Brendan O'Dea <bod@debian.org> Mon, 28 Nov 2011 22:00:14 +1100
vile (9.8e-3) unstable; urgency=low
* Revise setting of DEFAULT_XSHELL, passing to the build step for xvile
rather than through configure flags.
-- Brendan O'Dea <bod@debian.org> Sun, 21 Aug 2011 09:00:12 +1000
vile (9.8e-2) unstable; urgency=low
* Dump config.log when configure is killed in an attempt to divine why
s390/armel builds are failing.
-- Brendan O'Dea <bod@debian.org> Sat, 20 Aug 2011 20:10:46 +1000
vile (9.8e-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 11 Apr 2011 21:27:35 +1000
vile (9.8d-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Wed, 29 Dec 2010 13:11:55 +1100
vile (9.8c-1) unstable; urgency=low
* New upstream release.
* Remove deprecated DH_COMPAT in debian/rules, adding debian/compat.
* Move to standards version 3.9.1.
-- Brendan O'Dea <bod@debian.org> Tue, 28 Dec 2010 11:18:12 +1100
vile (9.8b-2) unstable; urgency=low
* Remove debian/compat in favour of exported DH_COMPAT in debian/rules.
-- Brendan O'Dea <bod@debian.org> Mon, 27 Sep 2010 22:35:40 +1000
vile (9.8b-1) unstable; urgency=low
* New upstream release.
* Revise the way in which debian/rules builds vile-filters, as now that
plink.sh is used is it no longer necessary to build the filters in a
separate step.
* Require debhelper 8, and rename stamp.* files to *-stamp (which dh_clean
removes automatically since v7).
-- Brendan O'Dea <bod@debian.org> Mon, 27 Sep 2010 13:09:01 +1000
vile (9.8-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Thu, 12 Aug 2010 05:52:24 +1000
vile (9.7ze-1) unstable; urgency=low
* New upstream release.
* Move to standards version 3.9.0.
* Add ${misc:Depends} to packages (lintian).
* Explicitly select .desktop files for install (not installing lxvile at this
time).
-- Brendan O'Dea <bod@debian.org> Mon, 05 Jul 2010 21:09:45 +1000
vile (9.7zd-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Mon, 31 May 2010 22:41:04 +1000
vile (9.7zc-1) unstable; urgency=low
* New upstream release.
* configure.in: wrap CF_RPATH_HACK with an option to allow this behaviour to
be suppressed.
-- Brendan O'Dea <bod@debian.org> Sun, 11 Apr 2010 19:51:46 +1000
vile (9.7za-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Fri, 29 Jan 2010 20:48:59 +1100
vile (9.7z-1) unstable; urgency=low
* New upstream release.
-- Brendan O'Dea <bod@debian.org> Fri, 08 Jan 2010 21:57:10 +1100
vile (9.7y-1) unstable; urgency=low
* New upstream release.
* Include html docs.
-- Brendan O'Dea <bod@debian.org> Tue, 29 Dec 2009 18:37:25 +1100
vile (9.7x-2) unstable; urgency=low
* xvile replaces vile-common after moving xvile.sh.
* remove ancient conflcts on xvile-{xt,xaw,xm}.
* install view alternative (closes: #399321).
-- Brendan O'Dea <bod@debian.org> Wed, 25 Nov 2009 00:00:25 +1100
vile (9.7x-1) unstable; urgency=low
* New upstream release.
* Use upstream app-defaults file.
* Install .desktop files.
* Install uxvile.
* Move xshell.sh and vilemenu.rc to xvile package.
* Fix desktop category.
* Add description of uxvile to vile.1.
-- Brendan O'Dea <bod@debian.org> Thu, 19 Nov 2009 17:46:51 +1100
vile (9.7v-1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Tue, 13 Oct 2009 14:20:36 +0200
vile (9.7u-1) unstable; urgency=low
* New upstream release.
* Bumped standards version to 3.8.3; no changes required.
-- Paul van Tilburg <paulvt@debian.org> Tue, 25 Aug 2009 11:07:24 +0200
vile (9.7t-2) unstable; urgency=low
* There are after all still some issues with flex. Reverting to
flex-old again.
-- Brendan O'Dea <bod@debian.org> Thu, 16 Jul 2009 19:58:59 +1000
vile (9.7t-1) unstable; urgency=low
* New upstream release.
* flex now appears to work: remove flex-old from Build-Depends.
-- Brendan O'Dea <bod@debian.org> Sun, 05 Jul 2009 18:36:15 +1000
vile (9.7s-1) unstable; urgency=low
* New upstream release.
* Set DEFAULT_XSHELL to use x-terminal-emulator via debian/rules.
* Remove debian/patches/z50_debian_use_x-terminal-emulator.
-- Brendan O'Dea <bod@debian.org> Tue, 09 Jun 2009 00:44:21 +1000
vile (9.7r2-1) unstable; urgency=low
* New patch release, resolves issues with file permissions of
~/.vilerc.
-- Paul van Tilburg <paulvt@debian.org> Thu, 28 May 2009 13:44:53 +0200
vile (9.7r-1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Tue, 26 May 2009 11:58:00 +0200
vile (9.7o-1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Mon, 27 Apr 2009 13:42:53 +0200
vile (9.7m-1) unstable; urgency=low
* New upstream release.
* Switched maintainer and uploader roles between me and Brendan O'Dea.
* Bumped standards version to 3.8.1; no changes required.
-- Paul van Tilburg <paulvt@debian.org> Mon, 23 Mar 2009 13:00:32 +0100
vile (9.7l-1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Sat, 28 Feb 2009 23:54:46 +0100
vile (9.7k-1) unstable; urgency=low
* New upstream release.
* debian/copyright: be more specific about the GPL license version.
-- Paul van Tilburg <paulvt@debian.org> Tue, 24 Feb 2009 11:01:26 +0100
vile (9.7j-1) unstable; urgency=low
* New upstream release.
* Now that an upstream tarball is available next to version revision
patches, removed the version 9.6 revision patches and the patch
rules from debian/control.
* Bumped the standars version to 3.8.0; no changes required.
-- Paul van Tilburg <paulvt@debian.org> Fri, 09 Jan 2009 13:51:50 +0100
vile (9.6m-1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Fri, 09 May 2008 08:07:12 +0200
vile (9.6-l1) unstable; urgency=low
* New upstream release.
-- Paul van Tilburg <paulvt@debian.org> Sun, 27 Apr 2008 14:04:05 +0200
vile (9.6-k1) unstable; urgency=low
* New upstream release.
* Added provides field for "editor" for vile and xvile (closes: #398755).
-- Paul van Tilburg <paulvt@debian.org> Sat, 12 Apr 2008 10:04:55 +0200
vile (9.6-j1) unstable; urgency=low
* New upstream release.
* Updates with respect to policy:
- debian/rules:
* removed DH_COMPAT declaration, use debian/compat.
* install the vile lintian override; man-page for vile
is in vile-common, not vile, so lintian should ignore it.
- debian/compat: addded, set to 5.
- debian/control:
* replaced ${Source-Version} by ${source:Version} to allow for
binNMUs (closes: #435962).
* bumped standards version to 3.7.3.
* fixed versioned build-depend on libxaw7-dev.
* modified build-depend on debhelper to >= 5.
- debian/copyright: small textual fix.
- debian/*.menu: fixed quotation and section names.
-- Paul van Tilburg <paulvt@debian.org> Wed, 26 Mar 2008 13:31:38 +0100
vile (9.6-i1) unstable; urgency=low
* New upstream version, and a bunch of patches.
* Add Paul van Tilburg as uploader.
-- Brendan O'Dea <bod@debian.org> Sun, 16 Mar 2008 22:52:08 +1100
vile (9.5-s1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 27 Nov 2007 10:21:43 +1100
vile (9.5-r1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Mon, 17 Sep 2007 12:12:33 +1000
vile (9.5-i1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Fri, 2 Jun 2006 08:58:36 +1000
vile (9.5-h1) unstable; urgency=low
* New upstream patch version.
* Interim fix from Tom for a case in bsizes() which subtracted
line-ending from zero-sized buffer when nonewline mode was set.
Closes: #368007.
-- Brendan O'Dea <bod@debian.org> Thu, 25 May 2006 22:35:20 +1000
vile (9.5-g2) unstable; urgency=low
* Move pixmaps from /usr/X11R6 to /usr/share .
-- Brendan O'Dea <bod@debian.org> Mon, 24 Apr 2006 06:06:15 +1000
vile (9.5-g1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 4 Apr 2006 23:54:22 +1000
vile (9.5-d1) unstable; urgency=low
* New upstream patch version.
* Update debhelper to v5.
-- Brendan O'Dea <bod@debian.org> Mon, 5 Dec 2005 00:02:15 +1100
vile (9.5-b1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 4 Oct 2005 22:20:32 +1000
vile (9.5-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Fri, 29 Jul 2005 13:07:44 +1000
vile (9.4-za1) unstable; urgency=low
* New upstream patch version.
* Remove emacs settings from changelog.
* Move xshell.sh to /usr/share/vile (in arch all package -common).
-- Brendan O'Dea <bod@debian.org> Sat, 16 Jul 2005 12:56:43 +1000
vile (9.4-z1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Mon, 4 Jul 2005 00:50:04 +1000
vile (9.4-y1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 22 Jun 2005 00:21:53 +1000
vile (9.4-w1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 8 Jun 2005 21:48:37 +1000
vile (9.4-v1) unstable; urgency=low
* New upstream patch version.
* Cosmetic change to the "unpatch" target: drop "Prereq:" lines.
-- Brendan O'Dea <bod@debian.org> Fri, 3 Jun 2005 10:56:53 +1000
vile (9.4-t1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Sat, 21 May 2005 17:15:15 +1000
vile (9.4-s1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 30 Mar 2005 16:02:08 +1000
vile (9.4-r1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 15 Mar 2005 00:28:38 +1100
vile (9.4-q1) unstable; urgency=low
* New upstream patch version. Fixes two issues related to rbmode
(closes: #292652).
* Update xvile app-defaults:
+ copy colours from example XVile.ad,
+ set focusFollowsMouse and forkOnStartup options, and
+ set cursor colour so it is visible over highlighted text
(closes: #235182).
-- Brendan O'Dea <bod@debian.org> Mon, 14 Feb 2005 13:27:24 +1100
vile (9.4-p1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Sat, 12 Feb 2005 07:48:10 +1100
vile (9.4-o1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 26 Jan 2005 07:59:45 +1100
vile (9.4-k1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Mon, 8 Nov 2004 23:18:25 +1100
vile (9.4-j1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 3 Nov 2004 02:03:02 +1100
vile (9.4-h1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Thu, 1 Jul 2004 22:18:46 +1000
vile (9.4-f1) unstable; urgency=low
* New upstream patch version.
* Change build dependency from xlibs-dev to libxaw7-dev.
-- Brendan O'Dea <bod@debian.org> Sun, 18 Apr 2004 14:20:14 +1000
vile (9.4-d1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Sun, 15 Feb 2004 17:40:25 +1100
vile (9.4-c2) unstable; urgency=low
* Invert flex-old/flex build-depends.
-- Brendan O'Dea <bod@debian.org> Sat, 8 Nov 2003 00:53:58 +1100
vile (9.4-c1) unstable; urgency=low
* New upstream patch version.
* Build filters as shared objects rather than executables.
* Change build depends to specify flex-old due to problems with new
flex.
-- Brendan O'Dea <bod@debian.org> Thu, 6 Nov 2003 20:04:54 +1100
vile (9.4-a1) unstable; urgency=low
* New upstream patch version.
* Update build-dep version for libperl-dev to ensure that packages
are built against 5.8.1 due to a binary incompatability with
DynaLoader (closes: #213850).
-- Brendan O'Dea <bod@debian.org> Tue, 21 Oct 2003 08:39:11 +1000
vile (9.4-1) unstable; urgency=low
* New upstream version.
* Fix description for xvile (closes: #209342).
-- Brendan O'Dea <bod@debian.org> Tue, 9 Sep 2003 23:36:48 +1000
vile (9.3-u1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 9 Jul 2003 22:27:43 +1000
vile (9.3-t1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Sat, 5 Jul 2003 09:22:15 +1000
vile (9.3-s1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Mon, 23 Jun 2003 23:29:15 +1000
vile (9.3-q1) unstable; urgency=low
* New upstream patch version.
* Builds with new flex (closes: #191819).
-- Brendan O'Dea <bod@debian.org> Tue, 3 Jun 2003 23:31:17 +1000
vile (9.3-m1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 11 Mar 2003 22:18:25 +1100
vile (9.3-l1) unstable; urgency=low
* New upstream patch version.
* Corrects completion of file/buffer names containing backslashes
(closes: #164593).
-- Brendan O'Dea <bod@debian.org> Sun, 2 Mar 2003 11:52:58 +1100
vile (9.3-j1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Fri, 10 Jan 2003 06:16:04 +1100
vile (9.3-h1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Thu, 7 Nov 2002 00:35:15 +1100
vile (9.3-g1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Tue, 29 Oct 2002 00:03:14 +1100
vile (9.3-f1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Sat, 26 Oct 2002 15:23:44 +1000
vile (9.3-d1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Wed, 4 Sep 2002 00:16:07 +1000
vile (9.3-c1) unstable; urgency=low
* New upstream patch version.
* Patched to build against perl 5.8.0 .
-- Brendan O'Dea <bod@debian.org> Sat, 31 Aug 2002 00:45:07 +1000
vile (9.3-b1) unstable; urgency=low
* New upstream patch version.
-- Brendan O'Dea <bod@debian.org> Thu, 4 Jul 2002 23:25:38 +1000
vile (9.3-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Sun, 30 Jun 2002 21:47:46 +1000
vile (9.2zd-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Sun, 23 Jun 2002 20:32:59 +1000
vile (9.2za-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Wed, 8 May 2002 23:53:25 +1000
vile (9.2y-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Mon, 18 Feb 2002 21:31:58 +1100
vile (9.2w-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Tue, 12 Feb 2002 23:54:50 +1100
vile (9.2t-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Sat, 5 Jan 2002 02:50:15 +1100
vile (9.2s-1) unstable; urgency=low
* New upstream version.
* Applied patch from H.J. Lu <hjl@gnu.org> to fix config.guess for mips.
-- Brendan O'Dea <bod@debian.org> Fri, 28 Dec 2001 16:35:36 +1100
vile (9.2r-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Mon, 17 Dec 2001 11:23:36 +1100
vile (9.2q-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Sun, 9 Dec 2001 13:36:50 +1100
vile (9.2o-1) unstable; urgency=low
* New upstream version.
* Update copyright.
* Install icons with xvile.
-- Brendan O'Dea <bod@debian.org> Tue, 4 Sep 2001 08:44:25 +1000
vile (9.2m-1) unstable; urgency=low
* New upstream version (closes: #97486).
* Updated policy version.
* Changed build-depend from virtual libxaw-dev to libxaw7-dev.
* Removed -g from the build unless DEB_BUILD_OPTIONS contains
"debug" as per Debian Policy 11.1.
-- Brendan O'Dea <bod@debian.org> Mon, 28 May 2001 16:35:46 +1000
vile (9.2l-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Mon, 30 Apr 2001 12:31:13 +1000
vile (9.2h-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Sun, 25 Feb 2001 16:13:11 +1100
vile (9.2g-1) unstable; urgency=low
* New upstream version.
* Convert to debhelper v3.
* Update build-depends for debhelper and add libperl-dev.
* Remove vile.1 and overrides.Lintian from /usr/share/doc as per
policy change outlined in #59403.
-- Brendan O'Dea <bod@debian.org> Mon, 19 Feb 2001 02:03:02 +1100
vile (9.2e-1) unstable; urgency=low
* New upstream version.
* Fix /usr/share/doc links.
-- Brendan O'Dea <bod@debian.org> Tue, 16 Jan 2001 02:44:11 +1100
vile (9.2d-1) unstable; urgency=low
* New upstream version.
* Build against perl-5.6. (Closes: #80667, #80670, #80706, #80711).
* Build against X4, merging xvile-* into xvile (uses Xaw).
* Install basic app-defaults file so that Xaw menus look reasonable.
-- Brendan O'Dea <bod@debian.org> Fri, 29 Dec 2000 23:45:44 +1100
vile (9.1p-1) unstable; urgency=low
* New upstream version.
* Convert to debhelper v2.
-- Brendan O'Dea <bod@debian.org> Mon, 31 Jul 2000 14:16:21 +1000
vile (9.1m-1) unstable; urgency=low
* New upstream version.
* Updated ftp site and added copyright lines from code to
debian/copyright.
-- Brendan O'Dea <bod@debian.org> Tue, 4 Jul 2000 18:53:49 +1000
vile (9.1g-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@debian.org> Wed, 3 May 2000 01:29:45 +1000
vile (9.1d-1) unstable; urgency=low
* New upstream version.
* Move xvile binaries/manpages from /usr/X11R6 to /usr
-- Brendan O'Dea <bod@compusol.com.au> Thu, 16 Mar 2000 04:48:04 +1100
vile (9.1-1) unstable; urgency=low
* New upstream version.
* Add libio-pty-perl dependancy.
-- Brendan O'Dea <bod@compusol.com.au> Thu, 20 Jan 2000 19:29:49 +1100
vile (9.0s-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@compusol.com.au> Sat, 15 Jan 2000 00:38:57 +1100
vile (9.0r-2) unstable; urgency=low
* Remove libio-pty-perl dependancy (not in by freeze).
-- Brendan O'Dea <bod@compusol.com.au> Fri, 14 Jan 2000 20:40:11 +1100
vile (9.0r-1) unstable; urgency=low
* New upstream version.
* Add Build-Depends.
-- Brendan O'Dea <bod@compusol.com.au> Thu, 13 Jan 2000 17:37:22 +1100
vile (9.0c-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@compusol.com.au> Fri, 3 Dec 1999 18:02:00 +1100
vile (9.0b-1) unstable; urgency=low
* New upstream version.
* Move architecture dependent `vile-crypt' to vile-filters package.
* Install old changelogs (CHANGES.R*).
* Reverse symlink for current changelog (CHANGES.gz -> changelog.gz).
-- Brendan O'Dea <bod@compusol.com.au> Mon, 29 Nov 1999 17:29:14 +1100
vile (9.0-1) unstable; urgency=low
* New upstream version.
* Install xshell.sh, .vilemenu and examples.
* Set default value of $xshell.
-- Brendan O'Dea <bod@compusol.com.au> Tue, 16 Nov 1999 13:35:27 +1100
vile (8.4b-1) unstable; urgency=low
* New upstream version.
* This version is now covered by the GPL. Update copyright and move
from `non-free/editors' to `editors'.
-- Brendan O'Dea <bod@compusol.com.au> Fri, 12 Nov 1999 17:56:21 +1100
vile (8.3y-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@compusol.com.au> Mon, 1 Nov 1999 10:56:11 +1100
vile (8.3x-2) unstable; urgency=low
* xvile-xm: Debian package `lesstifg' has been renamed to `lesstif1'.
* Create /usr/doc symlinks for all packages.
* Create required CHANGES.gz -> changelog.gz symlink.
* Revise `copyright'.
* Prune some build-related and obsolete docs.
* Build/install vile-perl-api.doc.
-- Brendan O'Dea <bod@compusol.com.au> Tue, 26 Oct 1999 10:27:06 +1000
vile (8.3x-1) unstable; urgency=low
* New upstream version.
-- Brendan O'Dea <bod@compusol.com.au> Wed, 20 Oct 1999 10:28:04 +1000
vile (8.3w-1) unstable; urgency=low
* New upstream version.
* Update to Standards-Version 3.0.1.
-- Brendan O'Dea <bod@compusol.com.au> Tue, 12 Oct 1999 20:48:31 +1000
vile (8.3v-1) unstable; urgency=low
* Add dh_perlembed script for perl dependencies.
* Manpages and docs now in /usr/share/{man,doc}
-- Brendan O'Dea <bod@compusol.com.au> Wed, 6 Oct 1999 17:35:52 +1000
vile (8.3v-0slink1) unstable; urgency=low
* New upstream version.
* Make vile a `vi' alternative (at 20).
-- Brendan O'Dea <bod@compusol.com.au> Wed, 6 Oct 1999 15:14:10 +1000
vile (8.3u-2) unstable; urgency=low
* Remove build number from perl version.
* Split `vile' into `vile', `vile-common' and `vile-filters'.
* Slave manual page to xvile alternative.
* Make vile an `editor' alternative (at 60) and provide `editor'.
* Allow partial builds.
-- Brendan O'Dea <bod@compusol.com.au> Thu, 30 Sep 1999 18:52:22 +1000
vile (8.3u-1) unstable; urgency=low
* Initial Release.
-- Brendan O'Dea <bod@compusol.com.au> Tue, 28 Sep 1999 14:27:29 +1000
|