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
|
common-lisp-controller (4.15sarge3) stable-security; urgency=low
* in clisp/stable the umask function is not in posix, but in the
linux package.
(Closes: #338296)
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 11 Nov 2005 07:23:27 +0100
common-lisp-controller (4.15sarge2) stable-security; urgency=high
* From Kevin Rosenberg: it should be #o22, not #x22!
Better fix for CAN-2005-2657
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 4 Sep 2005 21:58:49 +0200
common-lisp-controller (4.15sarge1) stable-security; urgency=high
* From François-René Rideau: check if we are the owner of the cache
directory as this could be used to let other users run code you
planted for them. This is a grave security issue.
References: CAN-2005-2657
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 2 Sep 2005 05:21:39 +0200
common-lisp-controller (4.15) unstable; urgency=low
* Added Vietnamese translation for debconf. Closes: #310034
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 21 May 2005 16:02:40 +0200
common-lisp-controller (4.14) unstable; urgency=low
* Corrected user system search path for sbcl. Closes: #307161
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 3 May 2005 11:53:00 +0200
common-lisp-controller (4.13) unstable; urgency=low
* Added Czech translation from Martin Šín.
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 21 Apr 2005 14:18:15 +0200
common-lisp-controller (4.12) unstable; urgency=low
* Make clc:clc-require also work for user-supplied packages.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 19 Oct 2004 10:27:05 +0200
common-lisp-controller (4.11) unstable; urgency=low
* Added support for clc-register-user-package again.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 29 Sep 2004 23:49:16 +0200
common-lisp-controller (4.10) unstable; urgency=low
* Fixed regexp for source uninstallation. Closes: #272679.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 21 Sep 2004 14:41:38 +0200
common-lisp-controller (4.9) unstable; urgency=low
* Fixed regexp for implementation removal. Closes: #271319.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 13 Sep 2004 07:13:03 +0200
common-lisp-controller (4.8) unstable; urgency=low
* Remembered that we actually have all the versions
of the cronjob in the sf cvs. Got them and their
md5sums.
* Shutup an rm during install Closes: #264491.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 9 Aug 2004 11:11:40 +0200
common-lisp-controller (4.7) unstable; urgency=low
* Also recognise an older cronjob. Closes: #263863.
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 8 Aug 2004 00:15:53 +0200
common-lisp-controller (4.6) unstable; urgency=low
* unregister-common-lisp-implemention: Fix implementation name checking regex
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 4 Aug 2004 17:57:39 -0600
common-lisp-controller (4.5) unstable; urgency=low
* Forgot to use a CVS export!
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 4 Aug 2004 22:59:17 +0200
common-lisp-controller (4.4) unstable; urgency=low
* Fixed stupid typo in preinst. Closes: #263087
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 3 Aug 2004 13:51:17 +0200
common-lisp-controller (4.3) unstable; urgency=low
* Forgot to remove old cronjob file. Closes: #262677
* Corrected the preinst script. Closes: #262914
* Corrected the file to load in the design document.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 2 Aug 2004 18:38:38 +0200
common-lisp-controller (4.2) unstable; urgency=low
* Stupid error: we should reinstall clc when
we upgrade a implementation.
* Stupid error2: fixed typo in package alias and
the use of the old alias in post-sysdef-install.lisp
* Now we clean the correct directory: /var/cache/common-lisp-controller
not /var/cache/common-lisp
* Slight license change: now LLGPL'ed.
* This version should fix almost all problems.
Closes: #197649, #261757, #231031
By removing complexity
Closes: #260069
By not having a cronjob anymore
Closes: #128761
Because the user can set options for his lisp that
then get used for the compilation.
* Fixed quoting problem that prevented the removal of
cached fasl's.
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 30 Jul 2004 17:51:34 +0200
common-lisp-controller (4.1) experimental; urgency=low
* Fixed syntax error. Closes: #261757
* New clc-build-all-packages to rebuild all known systems.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 28 Jul 2004 21:45:19 +0200
common-lisp-controller (4.0) experimental; urgency=low
* Test upload
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 26 Jul 2004 16:30:06 +0200
common-lisp-controller (3.88) unstable; urgency=low
* Don't run the cronjob if we are removed. Closes: #239108
* Removed bash-ism from the cronjob. Closes: #241985
* Added french and dutch translations. Closes: #227063, #241429
* Moved the connect request, so the syslog is not filled
with "clc-build-daemon: error: eof on read: Success"
junk.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 7 Apr 2004 14:45:36 +0200
common-lisp-controller (3.87) unstable; urgency=low
* Add sbcl-mt to known CL implementations (closes:238550)
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 17 Mar 2004 10:02:10 -0700
common-lisp-controller (3.86) unstable; urgency=low
* Add --force-connect to clc-send-command invocation
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 16 Mar 2004 10:42:04 -0700
common-lisp-controller (3.85) unstable; urgency=low
* We don't need to use sudo as we are root anyway. Closes: #231008
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 4 Feb 2004 23:09:19 +0100
common-lisp-controller (3.84) unstable; urgency=medium
* The spool directory should be world-writable to be any good!
This could cause problems for real users and possibly build daemons.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 2 Feb 2004 16:40:31 +0100
common-lisp-controller (3.83) unstable; urgency=low
* cleanup wrongfully compiled files from previus versions.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 24 Dec 2003 14:35:00 +0100
common-lisp-controller (3.82) unstable; urgency=high
* Improved validation of the spool files. Could be a securtity problem I
guess.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 24 Dec 2003 10:07:44 +0100
common-lisp-controller (3.81) unstable; urgency=low
* Reversed order of the tests, so no more 'Looping' messages
in the cronlog. Closes: #224772
* Refactoring of the clc-send-command code. Hopefully it still works.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 22 Dec 2003 12:29:01 +0100
common-lisp-controller (3.80) unstable; urgency=low
* New feature: when the daemon is not reachable we
create a request in a spool directory. Once a day we
retry to do all logged requests. As we remove the
offender, Closes: #183649
* Still Closes: #221552
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 19 Dec 2003 23:46:09 +0100
common-lisp-controller (3.79) unstable; urgency=low
* Fix bug when HOME environmental variable has a terminal /
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 12 Dec 2003 23:41:43 -0700
common-lisp-controller (3.78) unstable; urgency=low
* Add ~/.clc/systems/ to asdf:central-registry*
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 7 Dec 2003 22:24:32 -0700
common-lisp-controller (3.77) unstable; urgency=low
* Compile our own files to the fasl dir. Closes: #221552
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 25 Nov 2003 17:02:15 +0100
common-lisp-controller (3.76) unstable; urgency=low
* Fixed typo in template file. Closes: #201469
* Now we use gettext-based debconf. Closes: #205815, #207112
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 16 Sep 2003 12:02:51 +0200
common-lisp-controller (3.75) unstable; urgency=low
* Add #\. to the allowedcharacters for library names
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 22 Aug 2003 23:43:11 -0600
common-lisp-controller (3.74) unstable; urgency=low
* Fix caching logic for loading user-packages.db
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 17 Aug 2003 13:52:26 -0600
common-lisp-controller (3.73) unstable; urgency=low
* Move confmodule call in postinst to see if that helps with postrm's
failure.
* Fix output redirection (closes:204054)
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 3 Aug 2003 22:57:22 -0600
common-lisp-controller (3.72) unstable; urgency=low
* postrm: expand #DEBHELPER#. Tried using "|| true" to avoid debconf errors
codes, but without sucess. For now, avoiding purge with debconf since I
can't get debconf to purge without errors. debconf bug filed.
(closes:204048)
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 3 Aug 2003 21:23:18 -0600
common-lisp-controller (3.71) unstable; urgency=low
* Yes another attempt to work around bug #183960
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 31 Jul 2003 01:55:19 -0600
common-lisp-controller (3.70) unstable; urgency=low
* Move debconf initialization line in postinst to work aroung
bug #183960
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 28 Jul 2003 23:46:07 -0600
common-lisp-controller (3.69) unstable; urgency=low
* Push correct directory onto system registry (closes:202713)
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 24 Jul 2003 09:49:27 -0600
common-lisp-controller (3.68) unstable; urgency=low
* common-lisp-controller.lisp: eliminate internal dependence on
logical pathnames
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 20 Jul 2003 19:27:19 -0600
common-lisp-controller (3.67) unstable; urgency=low
* Now clc-send-command can handle a clc-build-daemon
that is being reconfigured. Closes: #188132
Should also fix this report. Closes: #198901
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 26 Jun 2003 15:47:08 +0200
common-lisp-controller (3.66) unstable; urgency=low
* Fixed error reporting script: forgot a `.
* make the daemon report the failed package.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 17 Jun 2003 03:00:23 +0200
common-lisp-controller (3.65) unstable; urgency=low
* Implement a work-round for the user-adduser-in-postrm
problem. Thanks to Thomas Viehmann. Closes: #192297
* Improves error reporting script again.
* Fixed declaration of system-directory in add-project-directory.
Closes: #193611
* We fixed lisp-config in version 3.62. Closes: #195420
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 13 Jun 2003 06:27:09 +0200
common-lisp-controller (3.64) unstable; urgency=low
* add check for possible errors from asdf::resolve-symlinks
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 28 May 2003 15:37:14 -0600
common-lisp-controller (3.63) unstable; urgency=low
* Improve user packages support: add symbolic links to ~/.clc/systems;
add this directory to ASDF's search function list
* Remove multiline strings for gcc-3.3 (closes:194886)
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 27 May 2003 10:35:55 -0600
common-lisp-controller (3.62) unstable; urgency=low
* Removed /etc/lisp-config.lisp as it is generated at config time.
Closes: #188065
* Don't forget to remove the file on purge of course :-).
* There _is_ a problem with xinetd, see bug #176464, so
the conflict is here to stay for the moment :-).
Closes: #162171
-- Peter <pvaneynd@debian.org> Thu, 8 May 2003 23:29:27 +0200
common-lisp-controller (3.61) unstable; urgency=low
* Check that comp-dir is at least as long as root dir in
beneath-source-root?
* Minor typo correction in templates
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 24 Apr 2003 22:26:23 -0600
common-lisp-controller (3.60) unstable; urgency=low
* register-common-lisp-implementation: Rebuild .asd-based packages
are rebuilt as well as .system packages.
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 12 Apr 2003 12:09:59 -0600
common-lisp-controller (3.59) unstable; urgency=low
* Added a conflict with xinetd. Not the best solution I know.
* Removed debhelper version statement from debian/rules
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 8 Apr 2003 18:39:19 +0200
common-lisp-controller (3.58) unstable; urgency=low
* Use :: instead of : when testing for presence of
sb-ext::*module-provider-functions* (closes:186059)
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 24 Mar 2003 09:45:36 -0700
common-lisp-controller (3.57) unstable; urgency=low
* Improved error reporting script :-(
* Added Pre-depends on netkit-inetd as this seems to be the
cause of the build-failures...
-- Peter <pvaneynd@debian.org> Tue, 4 Mar 2003 21:56:59 +0100
common-lisp-controller (3.56) unstable; urgency=low
* Rename remove-defsystem to remove-clc, install-defsystem to
install-clc
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 4 Mar 2003 21:52:57 -0700
common-lisp-controller (3.55) unstable; urgency=low
* Add ~/.sbcl/systems/ to asdf:*central-registry*
* Have asdf:*central-registry* processing evaluate each entry
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 3 Mar 2003 15:12:55 -0700
common-lisp-controller (3.54) unstable; urgency=low
* Add support for SBCL's REQUIRE/contrib directories integration
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 3 Mar 2003 12:14:57 -0700
common-lisp-controller (3.53) unstable; urgency=low
* Work-around mk-defsystem's override of CL:REQUIRE for SBCL
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 1 Mar 2003 19:16:20 -0700
common-lisp-controller (3.52) unstable; urgency=low
* Have clc-send-command return a zero status if trying to remove a
library that is not compiled.
* Don't override CL:REQUIRE for SBCL, instead use SBCL's new REQUIRE
hook
* debian/control: Added Depends: ${shlibs:Depends} since linked to libc
* debian/rules: Uncommented dh_makeshlibs
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 14 Feb 2003 18:36:09 -0700
common-lisp-controller (3.51) unstable; urgency=low
* Found the root cause of a bug that seems to undo the
clc installation in cmucl. Now we warn for this. Closes: #174454
* Added the debug-daemon-problems.sh script..
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 9 Feb 2003 18:16:50 +0100
common-lisp-controller (3.50) unstable; urgency=low
* Change package for REQUIRE with OpenMCL
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 2 Feb 2003 22:36:00 -0700
common-lisp-controller (3.49) unstable; urgency=low
* clc-build-daemon.c, clc-send-command.c: Change hard-coded constant in
TCP protocol (6) to SOL_SOCKET in calls to setsockopt to be compatible
with Linux kernel 2.2
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 23 Dec 2002 10:19:12 -0700
common-lisp-controller (3.48) unstable; urgency=low
* Depend on newest version of cl-asdf
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 9 Dec 2002 10:28:25 -0700
common-lisp-controller (3.47) unstable; urgency=low
* Updates for new ASDF system. Get rid of 'load-compiled-op
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 2 Dec 2002 09:27:11 -0700
common-lisp-controller (3.46) unstable; urgency=low
* Export new function: source-root-path-to-fasl-path
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 10 Nov 2002 23:43:00 -0700
common-lisp-controller (3.45) unstable; urgency=low
* Fix typos (closes: 168326) (closes: 168328)
Thanks Matthias Koppe!
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 8 Nov 2002 12:04:06 -0700
common-lisp-controller (3.44) unstable; urgency=low
* Fix spelling error in clc-build-daemon.c
* Add version to control file's adduser depends.
* Add user package support for ASDF
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 19 Oct 2002 13:24:25 -0600
common-lisp-controller (3.43) unstable; urgency=low
* Strange bugfix needed to get asdf to play nice with the fix for
bug #163990.
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 17 Oct 2002 23:05:29 +0200
common-lisp-controller (3.42) unstable; urgency=low
* Add SCL reader conditional to /etc/lisp-config.lisp
* clc-autobuild-only, clc-autobuild-library: Add SCL to known implementations
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 18 Oct 2002 00:10:47 -0600
common-lisp-controller (3.41) unstable; urgency=low
* Fixes faulty loaded system detection. Closes: #164666
* Now handles require's inside systems. Closes: #163990
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 16 Oct 2002 21:26:23 +0200
common-lisp-controller (3.40) unstable; urgency=low
* Export clc-require from c-l-c package
* Change {install,remove}-defsystem invocations to {install,remove}-clc now
that all CL packages have switched to the new name.
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 9 Oct 2002 05:27:10 -0600
common-lisp-controller (3.39) unstable; urgency=low
* Remove the :cltl2 item that mk-defsystem3 pushes onto cl:*features*
(closes: #146504)
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 5 Oct 2002 11:43:34 -0600
common-lisp-controller (3.38) unstable; urgency=high
* Add version depends of cl-asdf
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 4 Oct 2002 12:00:46 -0600
common-lisp-controller (3.37) unstable; urgency=high
* Add program arguments to inetd.conf (closes: 162171)
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 1 Oct 2002 07:33:02 -0600
common-lisp-controller (3.36) unstable; urgency=low
* Change 'load-compiled-op
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 30 Sep 2002 05:52:06 -0600
common-lisp-controller (3.35) unstable; urgency=low
* NMU
* Fix typo in manpage symlinks (closes: 162736)
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 29 Sep 2002 08:12:10 -0600
common-lisp-controller (3.34) unstable; urgency=low
* NMU
* Add required wrapper when redefining openmcl's REQUIRE function.
(OpenMCL now supports CLC!)
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 26 Sep 2002 15:45:31 -0600
common-lisp-controller (3.33) unstable; urgency=low
* NMU
* Fix type if clc-autobuild-check
* Add check in preinst to avoid adding cl-builder user if already exists
in passwd file.
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 26 Sep 2002 00:05:33 -0600
common-lisp-controller (3.32) unstable; urgency=low
* NMU
* Improve logic in clc-autobuild-check
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 22:23:20 -0600
common-lisp-controller (3.31) unstable; urgency=low
* NMU
* Add check in clc-autobuild-check for empty file
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 20:54:58 -0600
common-lisp-controller (3.30) unstable; urgency=low
* NMU
* Fix a few typographical errors in command invocations
* Rework manpage symlinks to get rid of lintian warnings
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 17:09:17 -0600
common-lisp-controller (3.29) unstable; urgency=low
* NMU
* Add README.packaging file
* Further simplify autobuild names
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 09:02:08 -0600
common-lisp-controller (3.28) unstable; urgency=low
* NMU
* Rename some autobuild functions
* Move autobuild functions into /usr/bin
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 08:37:05 -0600
common-lisp-controller (3.27) unstable; urgency=low
* NMU
* Change clc-build-daemon.c so it will try to recompile files
if the binary directory exists, but has no files in it
* New autobuilding system, described in README.autobuild
* Add new commands: clc-check-autobuild, clc-only-compatible,
clc-not-compatible, clc-autobuild-library, clc-autobuild-impl
* Rename reregister-common-lisp-implementations to clc-reregister-all-impl
* Rename some "defsystem" strings to "clc"
* Change sh to bash invocation in postinst
* Rework rules file to use dh_install rather than install
* Remove copyright-defsystem and defsystem.text from package
* Change how original-require function is called (to better support clisp)
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 22 Sep 2002 14:09:04 -0600
common-lisp-controller (3.26) unstable; urgency=low
* NMU
* Call asdf::resolves-symlinks so that truename as far as ASDF thinks is
the same as CLC's. Helps when the filesystem's *source-root* is
symlinked.
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 20 Sep 2002 16:29:13 -0600
common-lisp-controller (3.25) unstable; urgency=low
* NMU
* Remove (send-clc-command :remove pkg) before recompiling a package
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 20 Sep 2002 10:52:51 -0600
common-lisp-controller (3.24) unstable; urgency=low
* NMU
* Remove make-wild-type-namestring since it doesn't help anything and
it causes trouble with clisp.
* Add support for clisp's handling of LPNs in compile-and-load command.
-- Kevin M. Rosenberg <kmr@debian.org> Thu, 19 Sep 2002 12:39:23 -0600
common-lisp-controller (3.23) unstable; urgency=low
* NMU
* Rework asdf loading of compiled-only files. Now loads asdf
sub-systems.
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 18 Sep 2002 12:40:58 -0600
common-lisp-controller (3.22) unstable; urgency=low
* NMU
* Rework output-files for asdf systems to handle loading of dependent
systems.
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 18 Sep 2002 11:42:55 -0600
common-lisp-controller (3.21) unstable; urgency=low
* NMU
* Change handling of asdf files to that they don't require :pathname
to be specified.
* Add information to FAQ.txt about using ASDF system definitions
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 16 Sep 2002 08:40:36 -0600
common-lisp-controller (3.20) unstable; urgency=low
* Add type of ".*" to source namestring for logical pathnames (Kevin M.
Rosenberg)
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 12 Sep 2002 11:43:31 +0200
* NMU
* Add type of ".*" to source namestring for logical pathnames
* Add reregister-common-lisp-implementations function and manpage
* Fix bug with compiling mk-defsystem3 based packages
* Remove obsolete variables from changelog
* Add version to Build-Depends: for debhelper
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 16 Sep 2002 08:21:13 -0600
common-lisp-controller (3.19) unstable; urgency=low
* Add cl-defsystem3 as a Depends (critital fault, found and fixed by Kevin
Rosenberg)
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 11 Sep 2002 11:23:36 +0200
common-lisp-controller (3.18) unstable; urgency=low
* Remove calls to mk:new-require to remove an unecessary dependency on
mk-defsystem3. Use c-l-c's orignal-require function instead.
(Kevin Rosenberg)
* Move grabbing of original implementation REQUIRE function to
pre-defsystem file. (Kevin Rosenberg)
* Bug fixes for Lispworks. (Kevin Rosenberg)
* Add preliminary asdf support. (Kevin Rosenberg)
* CLC-REQUIRE now calls original REQUIRE function if system
file is not found (Kevin Rosenberg)
* Remove defsystem.lisp file from this package and now depend
on Debian package cl-defsystem3 (Kevin Rosenberg)
* Upstream fix for :cltl2 symbol. Closes: #146504
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 11 Sep 2002 10:59:37 +0200
common-lisp-controller (3.17) unstable; urgency=low
* Include the name of the implementation/library in the email.
* Fixed add-project-directory
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 24 Aug 2002 07:57:47 +0200
common-lisp-controller (3.16) unstable; urgency=low
* Make certain the /usr/lib/common-lisp/<implementation> directories are
also owned by cl-builder.
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 8 Aug 2002 08:10:30 +0200
common-lisp-controller (3.15) unstable; urgency=low
* deluser fix. Thanks to ham[home]
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 7 Aug 2002 11:32:46 +0200
common-lisp-controller (3.14) unstable; urgency=low
* Added adduser dependency
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 7 Aug 2002 10:53:19 +0200
common-lisp-controller (3.13) unstable; urgency=low
* added common-lisp-controller:compile-library as placeholder for future
asdf and defsystem-v4 packages and to fix the "no such system" problem.
* increased recorded line length as sbcl gives very verbose errormessages.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 6 Aug 2002 23:11:40 +0200
common-lisp-controller (3.12) unstable; urgency=high
* When compiling a package, first compile it sub-systems!
A rather critical bug that breaks a lot of packages!
The problem is like this: we need to recompile package A.
So we mkdir and chown /usr/lib/common-lisp/<impl>/A
Then we become nobody. But system A :depends-on B.
B is not compiled yet, so we need to recompile it.
So we try to mkdir /usr/lib/common-lisp/<impl>/B _as
nobody_. Oeps. (example: cmucl-clm depends-on cmucl-clx)
To solve this we introduct the cl-builder user that owns all
the files.
* Patch from Kevin Rosenberg to avoid getting killed by inetd's
DoS protection.
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 5 Aug 2002 09:17:29 +0200
common-lisp-controller (3.11) unstable; urgency=low
* Oeps. 10 seconds after upload: unregister-common-lisp-source should not
fail on a true source/ directory. Thanks to Kevin Rosenberg
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 2 Aug 2002 08:05:50 +0200
common-lisp-controller (3.10) unstable; urgency=low
* Email the last few lines of output even when using --quiet
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 2 Aug 2002 07:32:28 +0200
common-lisp-controller (3.9) unstable; urgency=low
* Improved the error reporting via email, now shows the last few lines
generated by the failed build.
* Now can handle nested directories in lisp libraries.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 30 Jul 2002 07:22:59 +0200
common-lisp-controller (3.8) unstable; urgency=low
* Added workaround for eof on read problem.
* Fixed escapes again. Now with compatible syntax.
* Added patches from Kevin Rosenberg <kevin@rosenberg.net>
for lwl and acl compatibility.
* Now depends on netbase. Closes: #154285
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 26 Jul 2002 13:47:08 +0200
common-lisp-controller (3.7) unstable; urgency=low
* added REPORTING-BUGS file
* Fixed typo. Closes: #153082
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 19 Jul 2002 14:04:15 +0200
common-lisp-controller (3.6) unstable; urgency=low
* Better fix for bug 152508 thanks to Kalle Olavi Niemitalo.
* Also escape \ Closes: #152508
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 15 Jul 2002 08:57:15 +0200
common-lisp-controller (3.5) unstable; urgency=low
* Fixed typos in installation scripts. Closes: #152419
* Added escape characters for " in site-names. Closes: #152508
* Fixed typo in unregister-common-lisp-source.
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 11 Jul 2002 09:25:56 +0200
common-lisp-controller (3.4) unstable; urgency=high
* Damn. #151983 was caused by having a ipv6 inetd installed :-(.
Fixing problem this time... for real!
* Put site-names in correct package! Closes: #152202.
* Give up groups too. (possible security problem?)
* drop fake dependency. Closes: #152359.
* add HOME to the env. so sbcl works again.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 9 Jul 2002 10:38:54 +0200
common-lisp-controller (3.3) unstable; urgency=low
* Now replaces cmucl. I hope this is the right thing to do.
(Closes: #151920, #152101)
* Added dependancy on netkit-inetd with @host support.
Closes: #151983.
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 7 Jul 2002 20:12:13 +0200
common-lisp-controller (3.2) unstable; urgency=low
* Provide some feedback during registration so people don't wonder what the
wait is for.
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 5 Jul 2002 06:59:30 +0200
common-lisp-controller (3.1) unstable; urgency=high
* Fixed the terpi -> terpri bug
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 4 Jul 2002 17:06:28 +0200
common-lisp-controller (3.0) unstable; urgency=low
* Don't forget to downcase the package name
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 2 Jul 2002 20:32:30 +0200
common-lisp-controller (2.99) unstable; urgency=low
* Now with clc-build-daemon: build lisp packages when you need them!
* Now with debconf configuration system
* repositories is depricated!
* man pages
* Still Closes: #146504
* Updated defsystem. Closes: #145349
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 22 Jun 2002 23:40:27 +0200
common-lisp-controller (2.15) unstable; urgency=low
* Small fix from Frederic Dumont <frederic.dumont@easynet.be> for
add-project-directory.
* Included patch from Christophe Rhodes for defsystem
Closes: #146504
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 14 May 2002 16:15:49 +0200
common-lisp-controller (2.14) unstable; urgency=low
* Don't depend on a lisp-compiler.
Closes: #140979, #141482, #142497
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 14 Apr 2002 12:23:27 +0200
common-lisp-controller (2.13) unstable; urgency=low
* Now depends on lisp-compiler
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 29 Mar 2002 21:39:29 +0100
common-lisp-controller (2.12) unstable; urgency=low
* Fixed "Done " message for u-c-l-s
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 29 Dec 2001 20:59:54 +0100
common-lisp-controller (2.11) unstable; urgency=low
* Now u-c-l-i also calls remove-defsystem. Closes: #123617
* OpenMCL patches. Closes: #123621
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 12 Dec 2001 21:05:43 +0100
common-lisp-controller (2.10) unstable; urgency=high
* Fixed major logical pathname problem.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 20 Nov 2001 20:35:36 +0100
common-lisp-controller (2.9) unstable; urgency=high
* Fixed add-project-directory
* New, updated defsystem
Fixes: #118854
* Should have lintian overrides:
Fixes: #96107, #103892
* Banners fixed.
Fixes: #119875
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 17 Nov 2001 11:07:57 +0100
common-lisp-controller (2.8) unstable; urgency=low
* Now includes italian translation
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 2 Sep 2001 21:40:59 +0200
common-lisp-controller (2.7) unstable; urgency=low
* Includes MCL fixes. Fixes: #99882.
* Includes UID fix. Fixes: #107037
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 8 Aug 2001 13:58:23 +0200
common-lisp-controller (2.6) unstable; urgency=low
* Forgotten comments of last time:
* Skipped 2.4 due to cClan problems
* Now with sbcl fixes
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 10 Jul 2001 21:44:34 +0200
common-lisp-controller (2.5) unstable; urgency=low
*
-- Peter Van Eynde <pvaneynd@debian.org> Thu, 5 Jul 2001 08:09:06 +0200
common-lisp-controller (2.3) unstable; urgency=low
* Now includes patch from Rhodes: Fixes: #103467
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 4 Jul 2001 15:45:00 +0200
common-lisp-controller (2.2) unstable; urgency=low
* Now conflicts with olders cmucl's
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 4 Jul 2001 14:15:43 +0200
common-lisp-controller (2.1) unstable; urgency=low
* Rebuild for dpkg-dev problems.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 3 Jul 2001 08:12:39 +0200
common-lisp-controller (2.0) unstable; urgency=low
* Now with new target: install-defsystem.
* Now allows normal file targets, fixes: #97257
* Now knows about .c files. Fixes: #97258
* Note that -noinit should be used. Fixes: #99255
* Fixed sbcl buglet. Fixes: #99403
* Made the de-registering idempotent. Thanks for the idea Dan!
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 27 Jun 2001 13:43:24 +0200
common-lisp-controller (1.6) unstable; urgency=low
* Now for all architectures. Fixes: #96769
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 9 May 2001 17:41:38 +0200
common-lisp-controller (1.5) unstable; urgency=low
* changed copyright to LGPL
* Fixed typo
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 9 May 2001 17:41:15 +0200
common-lisp-controller (1.4) unstable; urgency=low
* Just remove the subtree of a compiler. This seems a better idea.
* Added examples for hemlock and stuff.
* Added banners.
* defsystem is now a part of common-lisp-controller
* Fixed -f problem, now is -r thanks to rahul on #lisp
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 1 May 2001 12:37:49 +0200
common-lisp-controller (1.3) unstable; urgency=low
* Added bash dependency
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 20 Feb 2001 21:56:55 +0100
common-lisp-controller (1.2) unstable; urgency=low
* The scripts should be executable you dofus!
-- Peter Van Eynde <pvaneynd@debian.org> Mon, 12 Feb 2001 20:38:21 +0100
common-lisp-controller (1.1) unstable; urgency=low
* Fixed missing clean target.
* Now installs in correct directory, Fixes: Bug#85355.
* Now includes programs :-) Fixes: Bug#85310.
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 11 Feb 2001 16:50:03 +0100
common-lisp-controller (1.0) unstable; urgency=low
* Initial Release.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 12 Sep 2000 08:05:34 +0200
|