Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Zach Beane
Zach Beane x...@xach.com writes: A number of projects fail to build with the latest ASDF from git. A few of them seem to be related to defining a custom file component class that has a custom file type. For example, see jwacs and portable aserve: [snip] CommonQT's failure: qt.asd: The slot

Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Faré
My bad. I tried to remove the default type on source-file; obviously, it's too late and many systems use it already. Restored it to nil in 2.26.35. For next time I'm ill-inspired like that, is there a way to load everything *that's suppose to work* in quicklisp? I found I could try to load

Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Zach Beane
Faré fah...@gmail.com writes: My bad. I tried to remove the default type on source-file; obviously, it's too late and many systems use it already. Restored it to nil in 2.26.35. For next time I'm ill-inspired like that, is there a way to load everything *that's suppose to work* in

Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Zach Beane
Faré fah...@gmail.com writes: My bad. I tried to remove the default type on source-file; obviously, it's too late and many systems use it already. Restored it to nil in 2.26.35. Thanks. What about the fset :parent issue? Zach ___ asdf-devel

Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Zach Beane
Faré fah...@gmail.com writes: My bad. I tried to remove the default type on source-file; obviously, it's too late and many systems use it already. Restored it to nil in 2.26.35. FYI, the projects I mentioned still fail with 2.26.35, with the same symptoms. Zach

Re: [asdf-devel] File type problem with the latest ASDF

2012-12-19 Thread Faré
The FSet failure is due to its using (:system misc-extensions) amongst its components. That's always been invalid, I wonder how it could ever possibly work, and I'm not willing to kluge ASDF into keeping supporting it. misc-extensions is already present in the depends-on, which is the correct

[asdf-devel] suggestion for aserve.asd

2012-12-19 Thread Robert Goldman
You don't need acl-file any more. You can now use cl-source-file.cl, which is exported from ASDF. You can make legacy-acl-source-file inherit from cl-source-file.cl and cut the ACL-FILE class entirely. That will take care of using the .cl extension instead of .lisp. Cheers, r

Re: [asdf-devel] suggestion for aserve.asd

2012-12-19 Thread Faré
On Wed, Dec 19, 2012 at 4:57 PM, Robert Goldman rpgold...@sift.info wrote: You don't need acl-file any more. You can now use cl-source-file.cl, which is exported from ASDF. You can make legacy-acl-source-file inherit from cl-source-file.cl and cut the ACL-FILE class entirely. That will take

Re: [asdf-devel] suggestion for aserve.asd

2012-12-19 Thread Robert Goldman
On 12/19/12 Dec 19 -8:04 PM, Faré wrote: On Wed, Dec 19, 2012 at 4:57 PM, Robert Goldman rpgold...@sift.info wrote: You don't need acl-file any more. You can now use cl-source-file.cl, which is exported from ASDF. You can make legacy-acl-source-file inherit from cl-source-file.cl and cut