From alexeys9 at mail.ru Sat Oct 25 17:58:58 2008 From: alexeys9 at mail.ru (Makarov Alexey) Date: Sat, 25 Oct 2008 23:58:58 +0600 Subject: [Cl-perec-devel] Probem. The name "ASDF-SYSTEM-CONNECTIONS" does not designate any package. Message-ID: <1224957538.15898.19.camel@reginleif.ufanet.ru> When I try load cl-perec by "(require :cl-perec)", appear this error: "The name "ASDF-SYSTEM-CONNECTIONS" does not designate any package. [Condition of type SB-KERNEL:SIMPLE-PACKAGE-ERROR]". I use SBCL 1.0.11 on Ubuntu 8.04 (amd64). asdf-system-connections was downloaded from http://common-lisp.net/project/cl-containers/asdf-system-connections. Process of loading the ASDF-SYSTEM-CONNECTIONS by: "(require :ASDF-SYSTEM-CONNECTIONS)" is passed with no errors. I found package in ASDF-SYSTEM-CONNECTIONS named ASDF-SYSTEM-CONNECTIONS-SYSTEM. Maybe package in ASDF-SYSTEM-CONNECTIONS renamed? Please help me to solve this problem. From attila.lendvai at gmail.com Sat Oct 25 18:31:54 2008 From: attila.lendvai at gmail.com (Attila Lendvai) Date: Sat, 25 Oct 2008 20:31:54 +0200 Subject: [Cl-perec-devel] Probem. The name "ASDF-SYSTEM-CONNECTIONS" does not designate any package. In-Reply-To: <1224957538.15898.19.camel@reginleif.ufanet.ru> References: <1224957538.15898.19.camel@reginleif.ufanet.ru> Message-ID: > "The name "ASDF-SYSTEM-CONNECTIONS" does not designate any package. > [Condition of type SB-KERNEL:SIMPLE-PACKAGE-ERROR]". asdf-system-connections was changed in a non-backwards compatible way. you need to pull numerous repos to follow this change. a rough estimate offhand: cl-def defclass-star cl-perec cl-rdbms cl-syntax-sugar cl-quasi-quote hth, -- attila From alexeys9 at mail.ru Sun Oct 26 12:04:41 2008 From: alexeys9 at mail.ru (Makarov Alexey) Date: Sun, 26 Oct 2008 17:04:41 +0500 Subject: [Cl-perec-devel] Some problems with loading cl-perec Message-ID: <1225022681.26101.32.camel@reginleif.ufanet.ru> Thank you for fixing problem with asdf-system-connections. Now when I load cl-perec by (require :cl-perec) the following errors appears: First problem with DEFCLASS-STAR is name-conflict: EXPORT DEFCLASS-STAR:DEFLAYER* causes name-conflicts in # between the following symbols: DEFCLASS-STAR:DEFLAYER*, CONTEXTL-COMMON-LISP:DEFLAYER* [Condition of type SB-INT:NAME-CONFLICT] Restarts: 0: [RESOLVE-CONFLICT] Resolve conflict. 1: [RETRY] Retry performing # on #. 2: [ACCEPT] Continue, treating # on # as having been successful. 3: [RETRY] Retry performing # on #. 4: [ACCEPT] Continue, treating # on # as having been successful. 5: [ABORT] Return to SLIME's top level. 6: [TERMINATE-THREAD] Terminate this thread (#) This I fixed by select [RESOLVE-CONFLICT] and pick DEFCLASS-STAR:DEFLAYER* from CONTEXTL-COMMON-LISP:DEFLAYER* (if pick DEFCLASS-STAR:DEFLAYER compiling process pass with no errors but never stop). Then appear following errors: There is no class named CL-PEREC:TIMESTAMP. [Condition of type SIMPLE-ERROR] There is no class named CL-PEREC::=LAYER-CLASS-DEFINER-FOR-% CPL-COPY-SHALLOW=. [Condition of type SIMPLE-ERROR] There is no class named CL-PEREC::SLOT-ACCESS. [Condition of type SIMPLE-ERROR] There is no class named CL-PEREC::FUNCTION-CALL. [Condition of type SIMPLE-ERROR] There is no class named CL-PEREC::QUERY-VARIABLE. [Condition of type SIMPLE-ERROR] There is no class named CL-PEREC::MACRO-CALL. [Condition of type SIMPLE-ERROR] SLDB allow resolve problem by accepting (1: [ACCEPT] Continue, treating...) But after that some "fasl" files does not exist. This files couldn't found: * ./query/partial-eval.fasl, * ./query/compiler.fasl, * ./dimensional/dimension.fasl And compiling never stop. CL-YA-LOG, CL-CONTEXTL, CL-METABANG-BIND and CL-METACOPY downloaded from http://common-lisp.net/cgi-bin/darcsweb/darcsweb.cgi. Other dependencies such as DEFCLASS-STAR,CL-DEF,CL-QUASI-QUOTE,CL-RDBMS,CL-SYNTAX-SUGAR was downloaded from theirs repos. From attila.lendvai at gmail.com Sun Oct 26 11:23:05 2008 From: attila.lendvai at gmail.com (Attila Lendvai) Date: Sun, 26 Oct 2008 13:23:05 +0200 Subject: [Cl-perec-devel] Some problems with loading cl-perec In-Reply-To: <1225022681.26101.32.camel@reginleif.ufanet.ru> References: <1225022681.26101.32.camel@reginleif.ufanet.ru> Message-ID: > First problem with DEFCLASS-STAR is name-conflict: > > EXPORT DEFCLASS-STAR:DEFLAYER* causes name-conflicts in > # between the following symbols: > DEFCLASS-STAR:DEFLAYER*, CONTEXTL-COMMON-LISP:DEFLAYER* > [Condition of type SB-INT:NAME-CONFLICT] are you sure cl-def and defclass-star are pulled? works for me and i'm in sync with the server repos. cl-perec has an INCOMPLETE: patch, maybe you should unpull that. also make sure that stale fasl's are removed. > There is no class named CL-PEREC:TIMESTAMP. > [Condition of type SIMPLE-ERROR] make sure your local-time repo is pulled from the official repo. > But after that some "fasl" files does not exist. > This files couldn't found: > * ./query/partial-eval.fasl, > * ./query/compiler.fasl, > * ./dimensional/dimension.fasl by that time everything is doomed... :) resolve the preceding errors first. > And compiling never stop. > > CL-YA-LOG, CL-CONTEXTL, CL-METABANG-BIND and CL-METACOPY downloaded from > http://common-lisp.net/cgi-bin/darcsweb/darcsweb.cgi. Other dependencies > such as DEFCLASS-STAR,CL-DEF,CL-QUASI-QUOTE,CL-RDBMS,CL-SYNTAX-SUGAR was > downloaded from theirs repos. oops, seems like we were using the official contextl repo and our branch is a bit old... i've pushed the missing patches there, but currently you may use the official contextl repo, we have no pending patches there. (looking at the patches, it shouldn't cause any problems) gotta run, more later. -- attila