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
|
apel (10.8+0.20220720-1) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster
[ Tatsuya Kinoshita ]
* New upstream version 10.8+0.20220720
* Prevent native compilation when byte-compiling
* Enable byte-compile-warnings when byte-compiling
* Leave a compilation log
* Remove empty maintainer scripts
* Relax dependencies on emacs flavors
* Avoid egrep in maintainer scripts
* Update Standards-Version to 4.6.2
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jan 2023 17:32:30 +0900
apel (10.8+0.20201106-1) unstable; urgency=medium
* Switch Homepage to github.com/wanderlust/apel
* Add the get-orig-source target
* New upstream version 10.8+0.20201024
* Drop 030_make-coding-system.patch
* Drop 010_apel-wl.patch
* Drop xemacs21, emacs23 and older versions
* Add debian/upstream/metadata
* Update debian/watch to use mode=git
* Update description to mention APEL-LB
* Update debian/copyright
* Don't install obsolete ChangeLog
* Update 020_Prevent-fontset-error.patch
* No longer recompile ddskk and tdiary-mode
* Install README*
* Add Breaks to prevent failure with xemacs21
* Drop 020_Prevent-fontset-error.patch
* New upstream version 10.8+0.20201106
-- Tatsuya Kinoshita <tats@debian.org> Sat, 07 Nov 2020 14:41:05 +0900
apel (10.8+0.20120427-22) unstable; urgency=medium
* New patch 030_make-coding-system.patch for Emacs 28
* Add Rules-Requires-Root: no
* Update debhelper-compat to 13
* Update debian/copyright
* Update Standards-Version to 4.5.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 23 Aug 2020 17:05:06 +0900
apel (10.8+0.20120427-21) unstable; urgency=medium
* Update debhelper-compat to 12
-- Tatsuya Kinoshita <tats@debian.org> Tue, 16 Jul 2019 22:05:26 +0900
apel (10.8+0.20120427-20) unstable; urgency=medium
* Update 010_apel-wl.patch to 2019-04-07
* Skip old flavors emacs19, mule2 and xemacs19
* Don't install tinycustom.el in the site-lisp directory
* Update debian/copyright
* Update Standards-Version to 4.4.0
-- Tatsuya Kinoshita <tats@debian.org> Sat, 13 Jul 2019 20:56:12 +0900
apel (10.8+0.20120427-19) unstable; urgency=medium
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces
[ Tatsuya Kinoshita ]
* Don't remove *.el files when handling reverse dependency (closes: #911612)
* Use debhelper-compat 11
* Update Standards-Version to 4.2.1
-- Tatsuya Kinoshita <tats@debian.org> Mon, 17 Dec 2018 20:22:47 +0900
apel (10.8+0.20120427-18) unstable; urgency=medium
* Fix handling for xemacs21-mule/nomule
* Check stamp file so that source file isn't newer
* Handle symlinks for emacsen-startup
* Update Standards-Version to 4.2.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 19 Aug 2018 22:47:53 +0900
apel (10.8+0.20120427-17) unstable; urgency=medium
* Accept unversioned emacs flavor for emacsen-common 3.0.0
* Drop workaround for emacsen-common 1.x
* Update debhelper compat version to 11
* Migrate from anonscm.debian.org to salsa.debian.org
* Update debian/copyright
* Update Standards-Version to 4.1.4
-- Tatsuya Kinoshita <tats@debian.org> Sun, 03 Jun 2018 17:24:57 +0900
apel (10.8+0.20120427-16) unstable; urgency=medium
* Prefer emacs-nox over emacs
* Update debhelper compat version to 9
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Fri, 06 Jan 2017 00:04:38 +0900
apel (10.8+0.20120427-15) unstable; urgency=medium
* Update 010_apel-wl.patch to 2016-04-27
* Update debian/copyright
* Update Vcs-Browser to https
* Update Standards-Version to 3.9.8
-- Tatsuya Kinoshita <tats@debian.org> Sat, 04 Jun 2016 20:13:02 +0900
apel (10.8+0.20120427-14) unstable; urgency=medium
* Update 010_apel-wl.patch to 2014-10-28
* Update debian/copyright
* Update Vcs-Browser
* Update Standards-Version to 3.9.6
-- Tatsuya Kinoshita <tats@debian.org> Tue, 28 Apr 2015 19:17:57 +0900
apel (10.8+0.20120427-13) unstable; urgency=medium
* New patch 010_apel-wl.patch to sync wanderlust's apel-wl branch
(Merge 010_ikazuhiro.patch and 030_Use-new-style-backquotes.patch)
* Adjust 020_Prevent-fontset-error.patch
-- Tatsuya Kinoshita <tats@debian.org> Tue, 16 Sep 2014 21:20:32 +0900
apel (10.8+0.20120427-12) unstable; urgency=medium
* Sync 010_ikazuhiro.patch on 2014-06-05
-- Tatsuya Kinoshita <tats@debian.org> Mon, 16 Jun 2014 20:04:12 +0900
apel (10.8+0.20120427-11) unstable; urgency=medium
* Sync 010_ikazuhiro.patch on 2014-06-04
* Depend on emacsen-common 2.0.8
-- Tatsuya Kinoshita <tats@debian.org> Wed, 04 Jun 2014 22:00:03 +0900
apel (10.8+0.20120427-10) unstable; urgency=medium
* Sync 010_ikazuhiro.patch on 2014-05-27
-- Tatsuya Kinoshita <tats@debian.org> Thu, 29 May 2014 22:25:00 +0900
apel (10.8+0.20120427-9) unstable; urgency=medium
* Do not install obsolete attic/*.el files
-- Tatsuya Kinoshita <tats@debian.org> Wed, 21 May 2014 19:43:06 +0900
apel (10.8+0.20120427-8) unstable; urgency=medium
* Sync 010_ikazuhiro.patch on 2014-03-15
-- Tatsuya Kinoshita <tats@debian.org> Tue, 22 Apr 2014 23:18:53 +0900
apel (10.8+0.20120427-7) unstable; urgency=medium
* Update 010_ikazuhiro.patch, sync on 2014-02-22
* Install a compat file with emacsen-compat
-- Tatsuya Kinoshita <tats@debian.org> Sat, 01 Mar 2014 20:41:28 +0900
apel (10.8+0.20120427-6) unstable; urgency=medium
* Update 010_ikazuhiro.patch, sync on 2014-01-11
* Update debian/copyright
* Make a compat file for emacsen-common 2.0.0
* Handle an installed file to follow emacsen-common 2.0.7
* Add emacsen-common (<< 2.0.0) to Conflicts
-- Tatsuya Kinoshita <tats@debian.org> Mon, 20 Jan 2014 00:26:41 +0900
apel (10.8+0.20120427-5) unstable; urgency=low
* Update 010_ikazuhiro.patch, sync on 2013-08-07
* Remove 040_make-temp-file-for-Emacs-24.3.50.patch (fixed in ikazuhiro)
* Workaround for emacsen-common <2 and debhelper <9.20131104
* Update Standards-Version to 3.9.5
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Dec 2013 22:32:41 +0900
apel (10.8+0.20120427-4) unstable; urgency=low
* Update 010_ikazuhiro.patch, sync on 2013-07-06
* Remove 040_Upstream-not-in-ikazuhiro.patch (merged ikazuhiro)
* New patch 040_make-temp-file-for-Emacs-24.3.50.patch (closes: #718765)
-- Tatsuya Kinoshita <tats@debian.org> Mon, 05 Aug 2013 23:55:36 +0900
apel (10.8+0.20120427-3) unstable; urgency=low
* Update 010_ikazuhiro.patch, sync on 2013-07-05
-- Tatsuya Kinoshita <tats@debian.org> Fri, 05 Jul 2013 23:20:45 +0900
apel (10.8+0.20120427-2) unstable; urgency=low
* New patch 010_ikazuhiro.patch, sync with
https://github.com/ikazuhiro/apel/commits/master on 2013-07-04
* Move 020_Prevent-fontset-error.patch from 0001-*
* Update 020_Prevent-fontset-error.patch to generate ChangeLog
* Move 030_Use-new-style-backquotes.patch from 0002-*
* New patch 040_Upstream-not-in-ikazuhiro.patch
-- Tatsuya Kinoshita <tats@debian.org> Fri, 05 Jul 2013 20:06:31 +0900
apel (10.8+0.20120427-1) unstable; urgency=low
* Imported Upstream version 10.8+0.20120427
* New patch 0002-Use-new-style-backquotes.patch from apel-wl
* 0001-Prevent-fontset-error.patch: Renamed from 10_*
* Add Vcs-Git and Vcs-Browser
* Switch Homepage to chise.org
* Update debian/watch
* Update debian/copyright
* debian/rules: New targets build-arch and build-indep
* Update Standards-Version to 3.9.4
-- Tatsuya Kinoshita <tats@debian.org> Sat, 11 May 2013 19:25:28 +0900
apel (10.8-2) unstable; urgency=low
* debian/copyright: Switch to the DEP-5 format.
* debian/control: Update Standards-Version to 3.9.2.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 28 May 2011 23:11:52 +0900
apel (10.8-1) unstable; urgency=low
* New upstream release.
* debian/patches/debian-bug-557922-20100213.patch: Removed.
(merged upstream)
* debian/patches/10_prevent-fontset-error.patch: Renamed from
debian-20100214.patch.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 15 Jun 2010 22:07:31 +0900
apel (10.7+0.20080906-2) unstable; urgency=low
* debian/patches/debian-bug-557922-20100213.patch: Fix that inv-19.el
overrides built-in invisible-p. Patch from
http://bugs.debian.org/557922#15 by David Maus. (closes: #557922)
* debian/patches/debian-20100214.patch: Prevent an error of
fontset-pixel-size for Emacs 23. (closes: #477177)
* Switch to dpkg-source 3.0 (quilt) format.
* debian/control: Remove the install-info dependency.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 14 Feb 2010 18:45:35 +0900
apel (10.7+0.20080906-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-09-06)
* debian/rules, debian/control: Remove the quilt dependency.
* debian/patches: Removed.
* debian/control:
- Add `dpkg (>= 1.15.4) | install-info' to Depends.
- Add `${misc:Depends}' to Depends.
- Set Section to lisp.
- Update Standards-Version to 3.8.4.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 10 Feb 2010 22:49:13 +0900
apel (10.7-3) unstable; urgency=low
* debian/patches/cvs20080906.patch: Patch from the upstream CVS trunk on
2008-09-06 for poe.el to fix a format-time-string bug by MORIOKA Tomohiko
(cf. http://www.rubyist.net/~matz/20080905.html by Yukihiro Matsumoto).
* debian/rules, debian/control: Handle debian/patches with quilt.
* debian/emacsen-*: Rewritten.
* debian/rules, debian/dirs: Install obsolete files in the attic directory.
* debian/rules: Use dh_prep instead of `dh_clean -k'.
* debian/compat, debian/control: Update debhelper version to 7.
* debian/control:
- Remove `make' and `debianutils' from Depends.
- Move `Homepage:' from Description to the header.
- Remove `timezone.el' from Description.
- Update Standards-Version to 3.8.1.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Fri, 10 Apr 2009 00:06:04 +0900
apel (10.7-2) unstable; urgency=low
* debian/control: Prefer emacs to emacs21.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jul 2007 21:10:45 +0900
apel (10.7-1) unstable; urgency=low
* New upstream release.
* debian/emacsen-install.in: Recompile reverse depends packages that use
APEL's macro.
* debian/rules (binary-indep): Don't fails if the obsolete file doesn't
exist in the upstream source.
* debian/control (Description):
- Remove `time-stamp.el'.
- Add `Homepage:'.
* debian/watch: Set Action to uupdate.
* debian/copyright:
- Change URL of the upstream site.
- Reformat copyright years.
- Mention Debian packaging conditions.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Apr 2007 19:45:14 +0900
apel (10.6+0.20060424-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-04-24)
* debian/control (Build-Depends): Depend on debhelper version 5.
* debian/compat: 3 -> 5.
* debian/control (Standards-Version): 3.6.1 -> 3.7.2.
* debian/copyright: Update the postal address of the Free Software
Foundation.
* debian/control (Maintainer): tats@vega.ocn.ne.jp -> tats@debian.org.
* debian/copyright: Ditto.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 4 Jun 2006 21:03:11 +0900
apel (10.6+0.20050606-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2005-06-06)
- poem.el: More precisely binding for `char-or-char-int-p'.
(closes: #307260)
* debian/emacsen-install.in: Ready for emacsen flavors sxemacs*.
* debian/watch: New file.
* debian/control: Revise short description.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 6 Jun 2005 20:40:15 +0900
apel (10.6+0.20040418-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-04-18 at 20:46 +0900)
- filename.el: Doc fix.
* debian/emacsen-install.in: Create *.el symlinks.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 23 May 2004 00:48:54 +0900
apel (10.6+0.20040306-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-03-06 at 20:11 +0900)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 18 Apr 2004 00:38:15 +0900
apel (10.6+0.20040219-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-02-19 at 23:44 +0900)
- calist.el (use-calist-package): Add missing arg to `format'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 22 Feb 2004 22:16:34 +0900
apel (10.6+0.20040126-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-01-26 at 22:59 +0900)
- poe-xemacs.el (run-at-time): Don't use `defadvice' in order to
avoid a conflict with the Gnus version.
* debian/copyright: Revised.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 28 Jan 2004 00:26:55 +0900
apel (10.6+0.20031213-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2003-12-13 at 06:40 +0900)
- poe-xemacs.el: Fix run-at-time problem for XEmacs.
* debian/copyright: Further clarification.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 21 Dec 2003 00:14:19 +0900
apel (10.6+0.20030907-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2003-09-07)
- poem-xm.el (char-length): Don't use `defun-maybe' to define it
since this module may be installed as the XEmacs package which
should be usable by all the XEmacs 21.x series.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Fri, 14 Nov 2003 00:25:21 +0900
apel (10.6-3) unstable; urgency=low
* debian/emacsen-install.in: Carefully install emu/* and apel/*.
(closes: #208315)
* Use debian/compat instead of DH_COMPAT.
- debian/compat: New file.
- debian/rules: Remove `export DH_COMPAT=3'.
- debian/control (Build-Depends-Indep): debhelper (>= 3.4.4).
* debian/control (Standards-Version): 3.6.0 -> 3.6.1.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 3 Sep 2003 22:38:55 +0900
apel (10.6-2) unstable; urgency=low
* Don't put obsolete files env.el and time-stamp.el in the site-lisp
directory. (closes: #205474)
* Fix that older version of timezone.el is installed.
* To prevent literal-test-file problem, don't put pces-20.el in the
site-lisp directory if pces-20.elc is not generated. (relate to
Bug#166226)
* debian/emacsen-install.in: Set *.elc time stamp correctly.
* debian/control (Depends): Add debianutils (>= 1.7) to use the mktemp
command.
* debian/copyright: Add upstream URL for HTTP.
* debian/control (Standards-Version): 3.5.10 -> 3.6.0.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 18 Aug 2003 07:44:30 +0900
apel (10.6-1) unstable; urgency=medium
* New upstream release
- Fix that APEL's make-temp-file doesn't work on Emacs 21.
(closes: #199149)
* Maintainer upload correctly. (closes: #196598)
* Cleanup installation scripts.
* Ready for xemacs21-{mule,nomule} flavors.
* debian/emacsen-install: Fix bashism.
* debian/rules: Use binary-indep instead of binary-arch.
* debian/control (Build-Depends-Indep): Renamed from Build-Depends.
* debian/control: Depend on `emacs21 | emacsen' instead of `emacsen'.
* debian/rules: Don't use recompile-pkg.sh.
* debian/control (Description): Revised.
* debian/copyright: Revised.
* debian/control: Standards-Version: 3.5.2 -> 3.5.10.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 6 Jul 2003 22:18:32 +0900
apel (10.5-3) unstable; urgency=medium
* debian/emacsen-install.in: Add symlinks from mule/nomule directory
for compatibility. (closes: #196598)
* debian/emacsen-install.in (STAMP_STR): Removed.
* New maintainer. (with previous maintainer's consent)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 26 Jun 2003 00:03:08 +0900
apel (10.5-2) unstable; urgency=low
* Maintainer upload.
Thanks for some fix by Tatsuya. (closes: #196598)
-- Takuo KITAME <kitame@debian.org> Fri, 13 Jun 2003 11:27:50 +0900
apel (10.5-1.0.3) unstable; urgency=medium
* debian/emacsen-install.in: Display messages for a clarification of
XEmacs mule/nomule byte-compilation.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Fri, 13 Jun 2003 08:07:59 +0900
apel (10.5-1.0.2) unstable; urgency=medium
* debian/emacsen-install.in: Fix re-compilation problem for XEmacs
mule/nomule.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 11 Jun 2003 02:50:07 +0900
apel (10.5-1.0.1) unstable; urgency=medium
* debian/emacsen-install.in: Byte-compilation for XEmacs mule/nomule.
* debian/emacsen-install.in: Fix that *.elc files are not re-compiled when
emacsen is upgraded.
* debian/emacsen-startup: Rewrite entirely.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 11 Jun 2003 01:40:07 +0900
apel (10.5-1) unstable; urgency=low
* New upstream release (closes: #196336)
-- Takuo KITAME <kitame@debian.org> Mon, 9 Jun 2003 11:54:09 +0900
apel (10.4+cvs.2003.05.29-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <takuo@debian.gr.jp> Thu, 5 Jun 2003 12:27:38 +0900
apel (10.4-1) unstable; urgency=low
* New upstream release
* Change Maintainer address to @debian.org
-- Takuo KITAME <kitame@debian.org> Wed, 23 Oct 2002 14:24:45 +0900
apel (10.3+cvs.2001.12.05-5) unstable; urgency=low
* debian/emacsen-startup:
- don't add load-path to emu. (closes: #136884)
-- Takuo KITAME <kitame@northeye.org> Wed, 6 Mar 2002 20:07:38 +0900
apel (10.3+cvs.2001.12.05-4) unstable; urgency=low
* fix Description again
-- Takuo KITAME <kitame@northeye.org> Mon, 28 Jan 2002 11:05:52 +0900
apel (10.3+cvs.2001.12.05-3) unstable; urgency=low
* debian/control: Fix description (closes: #129493)
-- Takuo KITAME <kitame@northeye.org> Sat, 19 Jan 2002 03:27:42 +0900
apel (10.3+cvs.2001.12.05-2) unstable; urgency=low
* install emu into site-lisp/apel/ instead of site-lisp/apel/emu/
-- Takuo KITAME <kitame@northeye.org> Fri, 11 Jan 2002 00:40:30 +0900
apel (10.3+cvs.2001.12.05-1) unstable; urgency=low
* New upstream release
* fix common-licenses location in debian/copyright (closes: #126982)
-- Takuo KITAME <kitame@northeye.org> Mon, 31 Dec 2001 03:25:26 +0900
apel (10.3+20010601cvs-2) unstable; urgency=low
* /etc/emacs/site-start.d/20apel.el as conffile
-- Takuo KITAME <kitame@northeye.org> Tue, 11 Dec 2001 20:18:24 +0900
apel (10.3+20010601cvs-1) unstable; urgency=low
* New upstream release
* frame-background-mode is nil as default (mule2) (closes: Bug#101302)
* clean *.el in ELCDIR (closes: Bug#101303)
-- Takuo KITAME <kitame@northeye.org> Mon, 18 Jun 2001 18:16:12 +0900
apel (10.3+20010326cvs-1) unstable; urgency=low
* New upstream release
* apel-init.el priority 51 -> 20
-- Takuo KITAME <kitame@northeye.org> Wed, 11 Apr 2001 19:38:38 +0900
apel (10.3+20010226cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 26 Feb 2001 19:14:26 +0900
apel (10.3+20010115cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 17 Jan 2001 12:07:30 +0900
apel (10.3+20001231cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 31 Dec 2000 22:16:59 +0900
apel (10.2+20001228cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 28 Dec 2000 16:32:47 +0900
apel (10.2+20001225cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 26 Dec 2000 01:52:03 +0900
apel (10.2+20001221cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 21 Dec 2000 11:12:32 +0900
apel (10.2+20001220cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 20 Dec 2000 17:23:50 +0900
apel (10.2+20001109cvs-1.1) unstable; urgency=low
* Fix for mule
-- Takuo KITAME <kitame@northeye.org> Tue, 28 Nov 2000 23:19:55 +0900
apel (10.2+20001109cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 10 Nov 2000 22:28:28 +0900
apel (10.2+20000810cvs-1) unstable; urgency=low
* New upstream release
* debian/control: Build-Depends: debhelper (closes: Bug#70148)
-- Takuo KITAME <kitame@northeye.org> Tue, 29 Aug 2000 02:11:18 +0900
apel (10.2+20000525cvs-1) unstable; urgency=low
* New upstream release
* closes: Bug#66459: apel: Why don't you remove *.el in ELCDIR?
-- Takuo KITAME <kitame@northeye.org> Thu, 29 Jun 2000 16:20:19 +0900
apel (10.2+20000308cvs-4) frozen unstable; urgency=low
* Fixed Dependency problem. emacsen-install needs 'make' command.
-- Takuo KITAME <kitame@northeye.org> Thu, 6 Apr 2000 07:34:21 +0900
apel (10.2+20000308cvs-3) frozen unstable; urgency=low
* Fixed postinstall process of -2, recompiling for other elisp is not needed.
-- Takuo KITAME <kitame@northeye.org> Fri, 24 Mar 2000 00:10:36 +0900
apel (10.2+20000308cvs-2) frozen unstable; urgency=high
* frozen's apel(10.0) is broken for XEmacs21-nomule, should use this version.
(it'll closes: Bug#56063)
-- Takuo KITAME <kitame@northeye.org> Tue, 21 Mar 2000 05:45:58 +0900
apel (10.2+20000308cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 10 Mar 2000 10:56:46 +0900
apel (10.1+20000207cvs-1) unstable; urgency=low
* New upstream release (CVS as of 2000-02-07).
-- Takuo KITAME <kitame@northeye.org> Wed, 9 Feb 2000 06:45:01 +0900
apel (10.1-2) unstable; urgency=low
* Bug fixed: byte-compile error.
-- Takuo KITAME <kitame@northeye.org> Mon, 31 Jan 2000 10:12:38 +0900
apel (10.1-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 23 Jan 2000 10:31:45 +0900
apel (10.0-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 24 Dec 1999 18:33:43 +0900
apel (9.23-2) unstable; urgency=low
* * emacsen-common: modified
-- Takuo KITAME <kitame@northeye.org> Sun, 24 Oct 1999 10:35:02 +0900
apel (9.23-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 23 Oct 1999 06:04:28 +0900
apel (9.22.0.19991022cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 22 Oct 1999 18:11:11 +0900
apel (9.22.0.19991013cvs-3) unstable; urgency=low
* emacsen-remove: Fixed missing code.
-- Takuo KITAME <kitame@northeye.org> Sun, 17 Oct 1999 22:49:06 +0900
apel (9.22.0.19991013cvs-2) unstable; urgency=low
* emacsen-install: compile-stamp
-- Takuo KITAME <kitame@northeye.org> Thu, 14 Oct 1999 07:49:59 +0900
apel (9.22.0.19991013cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 13 Oct 1999 23:27:02 +0900
apel (9.22.0.19991004cvs-2) unstable; urgency=low
* emacsen-install: a little modified.
-- Takuo KITAME <kitame@northeye.org> Wed, 13 Oct 1999 21:35:21 +0900
apel (9.22.0.19991004cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 8 Oct 1999 18:52:52 +0900
apel (9.22.0.19990923cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 24 Sep 1999 04:53:42 +0900
apel (9.22-2) unstable; urgency=low
* Rewrited emacsen-install script. (more smartly, I think)
-- Takuo KITAME <kitame@northeye.org> Tue, 21 Sep 1999 04:29:58 +0900
apel (9.22-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@northeye.org> Tue, 14 Sep 1999 03:53:51 +0900
apel (9.21.19990903-1) unstable; urgency=low
* New upstream release
* Rebuild for FHS compliance
-- Takuro KITAME <kitame@northeye.org> Sun, 5 Sep 1999 21:40:51 +0900
apel (9.21-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 25 Aug 1999 09:31:46 +0900
apel (9.20-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 7 Jul 1999 23:50:57 +0900
apel (9.19.19990627cvs-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 28 Jun 1999 10:41:05 +0900
apel (9.19.19990618cvs-1) unstable; urgency=low
* New upstream release
* emacsen-{install,remove} script Modified for xemacs21
-- Takuro KITAME <kitame@debian.or.jp> Sun, 20 Jun 1999 22:11:46 +0900
apel (9.19.19990611cvs-1) unstable; urgency=low
* New upstream release (got via cvs)
-- Takuro KITAME <kitame@debian.or.jp> Mon, 14 Jun 1999 09:15:01 +0900
apel (9.19-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sat, 29 May 1999 03:13:53 +0900
apel (9.18-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 12 May 1999 03:43:47 +0900
apel (9.17-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 10 May 1999 14:25:00 +0900
apel (9.16-2) unstable; urgency=high
* Fixed byte-compile error '!! error (("invalid byte code"))'
on 'unset LANG' or 'LANG=C' .
(added 'export LANG=ja_JP' in emacsen-install script)
-- Takuro KITAME <kitame@debian.or.jp> Thu, 15 Apr 1999 10:34:31 +0900
apel (9.16-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 13 Apr 1999 09:35:53 +0900
apel (9.15-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sat, 20 Mar 1999 22:34:12 +0900
apel (9.13-1) unstable; urgency=low
* New upstream release
* Byte compile log will be redirect to file.
-- Takuro KITAME <kitame@debian.or.jp> Tue, 2 Mar 1999 15:36:33 +0900
apel (9.12-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 11 Jan 1999 13:53:19 +0900
apel (9.11+19981225snap-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 6 Jan 1999 11:32:09 +0900
apel (9.11+19981210snap-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Dec 1998 22:22:22 +0900
apel (9.11-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sat, 14 Nov 1998 20:13:10 +0900
apel (9.10-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 13 Nov 1998 23:14:22 +0900
apel (9.9-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sat, 7 Nov 1998 12:58:17 +0900
apel (9.8-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 29 Oct 1998 13:01:41 +0900
apel (9.7-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 27 Oct 1998 13:08:50 +0900
apel (9.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 20 Oct 1998 16:21:45 +0900
apel (9.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 15 Oct 1998 16:50:08 +0900
apel (8.18-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 16 Sep 1998 16:50:33 +0900
apel (8.17-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 14 Sep 1998 10:17:12 +0900
apel (8.16-2) unstable-jp; urgency=low
* site file changed (53 -> 50)
-- Takuro KITAME <kitame@debian.or.jp> Wed, 24 Jun 1998 01:42:35 +0900
apel (8.16-1) unstable-jp; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 24 Jun 1998 01:42:35 +0900
apel (8.14-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 10 Jun 1998 00:52:42 +0900
apel (8.13-1) unstable; urgency=low
* new up stream version.
* fixed Bug#JP/287
-- Takuro KITAME <kitame@debian.or.jp> Tue, 2 Jun 1998 22:15:30 +0900
apel (8.12-1) unstable; urgency=low
* new up stream version.
-- Takuro KITAME <kitame@debian.or.jp> Mon, 18 May 1998 01:37:27 +0900
apel (8.11-1) unstable; urgency=low
* new up stream version.
Original changes follow.
* APEL: Version 8.11 was released.
* emu.el (string-as-multibyte): New macro (Emacs 20.3 emulating macro).
-- Takuro KITAME <kitame@debian.or.jp> Sun, 10 May 1998 17:49:21 +0900
apel (8.10-1) unstable; urgency=low
* new up stream version.
Original changes follow.
* APEL: Version 8.10 was released.
* README.en (What's APEL?): Delete description about atype.el; add
description about calist.el.
* calist.el (ctree-add-calist-with-default): fixed.
-- Takuro KITAME <kitame@debian.or.jp> Thu, 7 May 1998 22:41:07 +0900
apel (8.9-1) unstable; urgency=low
* new up stream version.
Original changes follow.
* APEL: Version 8.9 was released.
* calist.el (ctree-find-calist): fixed duplicated result.
-- Takuro KITAME <kitame@debian.or.jp> Thu, 7 May 1998 00:53:22 +0900
apel (8.8-1) unstable; urgency=low
* new up stream version.
Original changes follow.
* APEL: Version 8.8 was released.
* calist.el (ctree-find-calist): Delete duplicated result.
-- Takuro KITAME <kitame@debian.or.jp> Tue, 5 May 1998 20:31:30 +0900
apel (8.7-1) unstable; urgency=low
* new up stream version.
(original changes follow)
* APEL: Version 8.7 was released.
* calist.el (ctree-match-calist-partially): New function.
* APEL: Version 8.6 was released.
* emu-20.el (mime-charset-coding-system-alist): Use 'raw-text for
us-ascii in default setting.
* calist.el (ctree-find-calist): Add optional argument 'all.
* calist.el (ctree-find-calist): Renamed from 'ctree-match-calist-all.
-- Takuro KITAME <kitame@debian.or.jp> Thu, 30 Apr 1998 02:08:26 +0900
apel (8.5-1) unstable; urgency=low
* new up stream version.
-- Takuro KITAME <kitame@debian.or.jp> Mon, 27 Apr 1998 01:09:35 +0900
apel (8.4-1) unstable; urgency=low
* new up stream version.
-- Takuro KITAME <kitame@debian.or.jp> Wed, 22 Apr 1998 22:00:28 +0900
apel (8.0-1) unstable; urgency=low
* new up stream version.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 10 Apr 1998 03:05:11 +0900
apel (7.6+980327-1) unstable; urgency=low
* new up stream version.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 27 Mar 1998 10:42:13 +0900
apel (7.5-1.1) unstable; urgency=low
* lintian check clear.
* init.el file name changed
-- Takuro KITAME <kitame@debian.or.jp> Thu, 26 Mar 1998 11:50:05 +0900
apel (7.5-1) unstable; urgency=low
* Initial Release.
-- Takuro KITAME <kitame@debian.or.jp> Tue, 24 Mar 1998 22:30:53 +0900
|