Re: [asdf-devel] Error writing some output translation

2010-10-18 Thread Faré
 the output-translations layer seems to be working fine and doing its job.
 However, something else seems broken, that supplies the path
 d:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl to AOT, so something
 is horribly wrong earlier.

 Can you contact me over IRC or Skype (fahree), gtalk (fah...@gmail.com), etc.
 so we may debug this interactively?

 Or programmatically trace about every bound internal symbol in package ASDF
 and send me the output?

That's how to do it:
(eval `(trace ,@(loop :for s :being :each :present-symbol :of :asdf
:when (and (fboundp s) (not (macro-function s))) :collect s)))

the output will be massive. If you can paste.lisp.org and/or compress
and attach it, it would be great.

I suspect truenamize to do something wrong in some case.

Do you know where the d:/grouptix/ comes from?

[ François-René ÐVB Rideau | ReflectionCybernethics | http://fare.tunes.org ]
As the Chinese say, 1001 words is worth more than a picture.  — John McCarthy

___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


[asdf-devel] Error writing some output translation

2010-10-17 Thread Mitch Berkson
I am encountering the error below when trying to load-system from 
directory d:/foo/:

Error: Failed to MAKE-DIRECTORY file C:\Documents and 
Settings\mitch\Application 
Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The 
filename, directory name, or volume label syntax is incorrect.(123).

I am able to load-system systems I have downloaded (e.g., lw-add-ons, 
cl-pdf) which are in a different directory (d:/lisp/). I have fooled 
around with a .conf file in the 
d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory 
but that hasn't helped.

I'd appreciate any suggestions.

Mitch Berkson

___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


Re: [asdf-devel] Error writing some output translation

2010-10-17 Thread Faré
Which version of Lispworks are you using? (asdf:asdf-version)
Can you (trace asdf::apply-output-translations
asdf::translate-pathname* asdf::merge-pathnames*) ?

[ François-René ÐVB Rideau | ReflectionCybernethics | http://fare.tunes.org ]
Be wiser than other people if you can; but do not tell them so. — Chesterfield




On 17 October 2010 19:17, Mitch Berkson mi...@bermita.com wrote:
 I am encountering the error below when trying to load-system from
 directory d:/foo/:

 Error: Failed to MAKE-DIRECTORY file C:\Documents and
 Settings\mitch\Application
 Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The
 filename, directory name, or volume label syntax is incorrect.(123).

 I am able to load-system systems I have downloaded (e.g., lw-add-ons,
 cl-pdf) which are in a different directory (d:/lisp/). I have fooled
 around with a .conf file in the
 d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory
 but that hasn't helped.

 I'd appreciate any suggestions.

 Mitch Berkson


___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


Re: [asdf-devel] Error writing some output translation

2010-10-17 Thread Mitch Berkson
  LW6.
asdf 2.009

The trace results are lengthy, but the lines before the error are:

0 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
0 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/
0 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/**/*.*
0 ASDF::TRANSLATE-PATHNAME*  ...
  ASDF::PATH: 
#Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
  ASDF::ABSOLUTE-SOURCE : #Pd:/**/*.*
  ASDF::DESTINATION : #PC:/Documents and 
Settings/mitch/Application 
Data/common-lisp/cache/lispworks-6.0.1-windows-x86/**/*.*
  ASDF::ROOT: #Pd:/
  ASDF::SOURCE  : T
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/**/*.*
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
  ASDF::DEFAULTS  : #Pd:/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/d/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/d/**/*.*
0 ASDF::TRANSLATE-PATHNAME*  ...
 VALUE-0 : #PC:/Documents and Settings/mitch/Application 
Data/common-lisp/cache/lispworks-6.0.1-windows-x86/d/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl

Error: Failed to MAKE-DIRECTORY file C:\Documents and 
Settings\mitch\Application 
Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\grouptix\d:\: The 
filename, directory name, or volume label syntax is incorrect.(123).
   1 (continue) Try recompiling pdf-template
   2 Retry compiling component (grouptix-sys print-templates 
pdf-template).
   3 Continue, treating compiling component (grouptix-sys 
print-templates pdf-template) as having been successful.
   4 (abort) Return to level 0.
   5 Return to top loop level 0.

Type :b for backtrace or :c option number to proceed.
Type :bug-form subject for a bug report template or :? for other 
options.



On 10/17/2010 10:27 PM, Faré wrote:
 Which version of Lispworks are you using? (asdf:asdf-version)
 Can you (trace asdf::apply-output-translations
 asdf::translate-pathname* asdf::merge-pathnames*) ?

 [ François-René ÐVB Rideau | ReflectionCybernethics | http://fare.tunes.org ]
 Be wiser than other people if you can; but do not tell them so. — Chesterfield




 On 17 October 2010 19:17, Mitch Berksonmi...@bermita.com  wrote:
 I am encountering the error below when trying to load-system from
 directory d:/foo/:

 Error: Failed to MAKE-DIRECTORY file C:\Documents and
 Settings\mitch\Application
 Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The
 filename, directory name, or volume label syntax is incorrect.(123).

 I am able to load-system systems I have downloaded (e.g., lw-add-ons,
 cl-pdf) which are in a different directory (d:/lisp/). I have fooled
 around with a .conf file in the
 d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory
 but that hasn't helped.

 I'd appreciate any suggestions.

 Mitch Berkson



___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel