__color__ __group__ ticket summary component version type owner status created _changetime _description _reporter 1 Milestone 1800 Unit test fails because of problem with reverse! dherman/zip.plt defect dherman new 2015-05-21T10:06:27-0400 2015-05-21T10:06:27-0400 "raco setup: error: during making for /schematics/schemeunit.plt/1/2/gui raco setup: ...s\ZZZZZ\AppData\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module raco setup: in: reverse! raco setup: error: during launcher setup for /schematics/schemeunit.plt/1/2 (schemeunit) raco setup: map: contract violation raco setup: expected: list? raco setup: given: #f raco setup: argument position: 2nd raco setup: other arguments...: raco setup: #string> ...s\ZZZZZ\AppData\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module in: reverse! raco setup: error: during making for /dherman/zip.plt/2/1/private/tests raco setup: ...s\ZZZZZ\AppData\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module raco setup: in: reverse! " jphelps 2 Milestone 280 eof error soegaard/bit-io.plt defect soegaard new 2010-04-18T10:49:17-0400 2010-04-18T10:49:17-0400 "It says in the comments that when you reach an eof it should return #f when reading. I got an error that the bitwise-and got eof as first argument the fix for this is: ;;;new if statement to chech for eof first (define (read-few-bits n) (if (eof-object? buffer) #f (let ((value (bitwise-and buffer ; all bits in buffer (sub1 (<<1 mask))))) (set! bits-in-buffer (- bits-in-buffer n)) (set! mask (>> mask n)) (>> value bits-in-buffer)))) ; remove extra bits and ;;;added and with not eof? ((and (= n 1) ; read one bit (not (eof-object? buffer))) (let ((value (if (bit-set? buffer mask) 1 0))) (set! mask (>>1 mask)) (set! bits-in-buffer (sub1 bits-in-buffer)) value)) bye, Rik Vanmechelen rik.vanmechelen@vub.ac.be Vrije Universiteit Brussel" rik.vanmechelen@… 2 Milestone 129 audit duplicate-variable errors/non-errors dherman/javascript.plt task dherman new 2008-11-22T14:51:25-0500 2008-11-22T14:51:25-0500 Things like {{{function(x,x){...}}}} and duplicate imports. dherman 3 Milestone 33 make-filter-input-port hopelessly broken dherman/io.plt defect dherman new 2008-09-03T13:41:54-0400 2008-09-03T13:41:54-0400 The {{{make-filter-input-port}}} procedure is breaking test cases and appears to be hopelessly broken, at least in PLT v4. dherman 3 Milestone 35 possible semantic issues with exceptions dherman/javascript.plt defect dherman new 2008-09-08T12:53:06-0400 2008-09-08T12:53:06-0400 "Need to investigate semantic issues with exceptions: * {{{return}}} from {{{finally}}} blocks * suspicious uses of {{{dynamic-wind}}}?" dherman 3 Milestone 87 Incompatible with mzscheme 4+ daedalus/prometheus.plt defect daedalus new 2008-09-27T12:31:05-0400 2008-09-27T12:31:05-0400 "The following error happens, when loading the library: {{{ private/hermes.scm:129:10: compile: unbound identifier in module in: set-cdr! }}} This is due to `set-cdr!` being deprecated from mzscheme 4" troelskn@… 3 Milestone 104 setup fails on hash store; hash-store.plt/1/4/hash-store.ss:9:3: expand: unbound identifier in module in: base64-filename-safe jaymccarthy/hash-store.plt defect eli assigned 2008-10-15T15:55:31-0400 2010-11-05T20:45:48-0400 "for jaymccarthy > hash-store.plt > package version 1.4 --- #lang scheme/gui (require (planet ""hash-store.ss"" (""jaymccarthy"" ""hash-store.plt"" 1 4))) (SHA1 #""JH LKJH LHJKLKJHKL HJLJKHK JHKLHKLJHKJ"") compile: unbound identifier in module setup-plt: error: during making for /jaymccarthy/hash-store.plt/1/4 (Hash Store) setup-plt: compile: unbound identifier in module . Users/spdegabrielle/Library/PLT Scheme/planet/300/4.1.1/cache/jaymccarthy/hash-store.plt/1/4/hash-store.ss:9:3: expand: unbound identifier in module in: base64-filename-safe" spdegabrielle@… 3 Milestone 114 Doc warnings dherman/memoize.plt defect dherman new 2008-10-30T11:34:32-0400 2008-10-30T11:34:32-0400 "setup-plt: WARNING: undefined tag in /dherman/memoize.plt/3/1/memoize.scrbl: setup-plt: ((planet ""main.ss"" (""dherman"" ""memoize.plt"" 3 1)) define/memo*) setup-plt: ((planet ""main.ss"" (""dherman"" ""memoize.plt"" 3 1)) memo-lambda) setup-plt: ((planet ""main.ss"" (""dherman"" ""memoize.plt"" 3 1)) memo-lambda*) setup-plt: ((planet ""main.ss"" (""dherman"" ""memoize.plt"" 3 1)) define/memo) setup-plt: rendering: /dherman/memoize.plt/3/1/memoize.scrbl memoize.scrbl:47:14: WARNING: no declared exporting libraries for definition in: define/memo memoize.scrbl:51:14: WARNING: no declared exporting libraries for definition in: define/memo* memoize.scrbl:56:14: WARNING: no declared exporting libraries for definition in: memo-lambda memoize.scrbl:60:14: WARNING: no declared exporting libraries for definition in: memo-lambda* " samth@… 3 Milestone 120 binding arrows in DrScheme broken dherman/javascript.plt defect dherman new 2008-11-07T10:40:19-0500 2008-11-07T10:40:19-0500 All the mucking with the implementation of variable binding has broken the DrScheme binding arrows for the JavaScript language level. dherman 3 Milestone 127 errors on initial compile dherman/javascript.plt defect dherman new 2008-11-14T17:58:18-0500 2008-11-14T17:58:18-0500 "When I evaluate this program #lang scheme (require (planet dherman/javascript:8:0)) (eval-script ""print(40 + 2)"") I get this output down below: open-input-file: cannot open input file: ""/Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/private/tests/main.ss"" (No such file or directory; errno=2) setup-plt: error: during Building docs for /Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/test.plt/2/0/test.scrbl setup-plt: open-input-file: cannot open input file: ""/Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/private/tests/main.ss"" (No such file or directory; errno=2) open-input-file: cannot open input file: ""/Users/clements/plt/src/build/main.ss"" (No such file or directory; errno=2) setup-plt: error: during Building docs for /Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/scribblings/javascript.scrbl setup-plt: open-input-file: cannot open input file: ""/Users/clements/plt/src/build/main.ss"" (No such file or directory; errno=2) 42 > " clements 3 Milestone 130 Use of set-cdr! untyped/delicious.plt defect untyped accepted 2008-11-23T14:30:30-0500 2008-11-26T06:50:24-0500 This package requires another package that uses set-cdr! anonymous 3 Milestone 131 stack trace is often mostly unusable vegashacker/leftparen.plt defect vegashacker new 2008-11-24T13:48:58-0500 2008-11-24T13:48:58-0500 "Stack traces in LeftParen often begin like this, apparently skipping over the part of the trace you actually care about. This makes it sometimes extremely hard to debug. {{{ === context === core ...r/private/servlet.ss:31:19 ...r/private/servlet.ss:31:19 /Applications/PLT Scheme v4.1.0.3/collects/web-server/dispatchers/dispatch-servlets.ss:53:2\ : servlet-content-producer/path dispatcher/c dispatcher/c /Applications/PLT Scheme v4.1.0.3/collects/scheme/private/more-scheme.ss:170:2: select-hand\ ler/no-breaks [snip] }}}" vegashacker 3 Milestone 133 Use of {{{set-cdr!}}} jim/webit.plt defect jim new 2008-11-26T06:49:09-0500 2008-11-26T06:49:09-0500 "Hi Jim, Webit! uses {{{set-cdr!}}}, which is no longer possible in PLT 4 now cons cells are immutable by default. I believe you have the option of switching over to mutable cons cells or removing all mutation. More information here: {{{ http://blog.plt-scheme.org/2007/11/getting-rid-of-set-car-and-set-cdr.html }}} Many thanks, -- Dave Gurnell www.untyped.com " untyped 3 Milestone 137 Doesn't work in Current Version of PLT untyped/delicious.plt defect untyped accepted 2008-12-16T09:11:21-0500 2009-01-13T12:43:11-0500 "Looks like it has a dep on srfi-42 which is broken Or rather, it refers to a file in srfi-42 that no longer exists" anonymous 3 Milestone 138 Doesn't work in Current Version of PLT untyped/delicious.plt defect untyped new 2008-12-16T09:50:49-0500 2008-12-16T09:50:49-0500 "Looks like it has a dep on srfi-42 which is broken Or rather, it refers to a file in srfi-42 that no longer exists Also ssax and unlib problems" anonymous 3 Milestone 139 Doesn't work in Current Version of PLT untyped/delicious.plt defect untyped new 2008-12-16T09:51:07-0500 2008-12-16T09:51:07-0500 "Looks like it has a dep on srfi-42 which is broken Or rather, it refers to a file in srfi-42 that no longer exists Also ssax and unlib problems" zitterbewegung@… 3 Milestone 140 support unicode kazzmir/peg.plt defect kazzmir new 2008-12-16T18:26:17-0500 2008-12-16T18:26:17-0500 Add some convenient syntax for unicode. jon 3 Milestone 147 Planet breakage? Some surprising dependencies from xmlrpc.plt schematics/xmlrpc.plt defect schematics new 2009-01-15T19:22:53-0500 2009-01-15T19:22:53-0500 "Something in xmlrpc's chain of dependencies seems to pull in a very old version of schemeunit, a version that doesn't compile on recent PLT. This is on version 4.1.3[3m] on Win XP. C:\Program Files\PLT>planet install schematics xmlrpc.plt 4 0 schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for /schematics/schemeunit.plt/1/2 (schemeunit) setup-plt: schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for /schematics/schemeunit.plt/1/2/gui setup-plt: ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for /lshift/xxexpr.plt/1/0 (xxexpr) setup-plt: ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module i n: reverse! default-load-handler: cannot open input file: ""C:\Program Files\PLT\collects\web-server\private\response.ss"" (The system cannot find the file specified.; errno=2) setup-plt: error: during making for /schematics/xmlrpc.plt/4/0 (xmlrpc) setup-plt: default-load-handler: cannot open input file: ""C:\Program Files\PLT\collects\web-server\private\response.ss"" (The system cannot find the file specified.; errno=2) I started from an empty planet cache, and ended up with C:\Program Files\PLT>planet show Normally-installed packages: jim webit.plt 1 6 lizorkin ssax.plt 2 0 lizorkin sxml.plt 2 1 lshift xxexpr.plt 1 0 ryanc require.plt 1 3 schematics schemeunit.plt 1 2 schematics schemeunit.plt 2 11 schematics schemeunit.plt 3 3 schematics xmlrpc.plt 4 0 " goetter@… 3 Milestone 148 Cannot load package in 4.1.4 oesterholt/internat.plt defect oesterholt new 2009-02-08T11:06:52-0500 2009-02-08T11:06:52-0500 "The package doesn't seem to load in DrScheme 4.1.4 #lang scheme/gui (require (planet ""internat.ss"" (""oesterholt"" ""internat.plt"" 1 2))) ==> open-input-file: cannot open input file: ""/Users/john/Library/PLT Scheme/planet/300/4.1.4/cache/oesterholt/internat.plt/1/2/internat.ss"" (No such file or directory; errno=2) Is this a packaging problem? " anonymous 3 Milestone 151 _ pattern succeeds on end of input? kazzmir/peg.plt defect kazzmir new 2009-02-11T18:39:27-0500 2009-02-11T18:39:27-0500 "The behavior below does not seem to agree with Bryan Ford's POPL '04 paper: {{{ #lang scheme (require (planet kazzmir/peg:2:0/peg)) (parse (peg (start s) (grammar (s ((_) $)))) ""a"") (parse (peg (start s) (grammar (s ((_ _) $)))) ""a"") }}} produces the output: {{{ Welcome to DrScheme, version 4.1.4 [3m]. Language: Module; memory limit: 128 megabytes. #\a # > }}} I would have expected {{{#f}}} for that last output. " pnkfelix@… 3 Milestone 164 Pressing end causes error divascheme/divascheme.plt defect dyoo assigned 2009-04-06T11:49:52-0400 2011-08-11T01:39:57-0400 "Press end on your keyboard keymap: no function ""dive:end"" === context === /Users/jay/Dev/svn/plt/collects/scheme/private/more-scheme.ss:155:2: call-with-break-parameterization /Users/jay/Dev/svn/plt/collects/scheme/private/more-scheme.ss:271:2: call-with-exception-handler" jaymccarthy 3 Milestone 165 Pressing unicode in command mode causes insertion divascheme/divascheme.plt defect dyoo assigned 2009-04-06T11:52:22-0400 2011-08-11T01:40:26-0400 In command mode on OS X, press Alt-A... and å is inserted into the buffer jaymccarthy 3 Milestone 175 srfi.plt does not install cleanly due to error in info.ss soegaard/srfi.plt defect soegaard new 2009-05-03T13:00:45-0400 2009-05-03T13:00:45-0400 "Upon trying to install this package from the shell, I get the error message below. MacOS 10.5.6, Intel. Additionally, if I run setup-plt (no args) after attempting this installation, I get the same error message. PLT version 4.1.5.5, built from svn revision 14611. [perdita:~]$ planet install soegaard srfi.plt 2 1 downloading soegaard/srfi:2.1 from planet.plt-scheme.org via HTTP ============= Installing srfi.plt on Sun, 3 May 2009 12:55:24 ============= setup-plt: version: 4.1.5.5 [3m] setup-plt: variants: 3m setup-plt: main collects: /Users/cobbe/Applications/plt/collects setup-plt: collects paths: setup-plt: /Users/cobbe/Library/PLT Scheme/4.1.5.5/collects setup-plt: /Users/cobbe/Applications/plt/collects setup-plt: Unpacking archive from /Users/cobbe/Library/PLT Scheme/planet/300/packages/soegaard/srfi.plt/2/1/srfi.plt setup-plt: making directory 42-eager-comprehensions in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking 42-eager-comprehensions.scm in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./42-eager-comprehensions/ .. lots more unpacking messages snipped .. setup-plt: unpacking 78.ss in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking doc.txt in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking info.ss in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/42-eager-comprehensions/info.ss:10:2: infotab-module: not a well-formed definition at: (define required-core-version field ""360"") in: (#%module-begin (define name ""Srfi"") (define blurb (list (quote (div (p (b ""SRFI Extensions"")) (p ""This package provides extensions to:"") (p (b ""SRFI 42"") ""- Eager comprehensions: "" ""Extra generators :match, :plt-match, :let-value, :pairs, :do-until, a... === context === /Users/cobbe/Applications/plt/collects/setup/infotab.ss:10:20: loop /Users/cobbe/Applications/plt/collects/setup/infotab.ss:7:2 /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:58:16 /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:104:0: omitted-paths* /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:58:16 /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:233:2: planet->cc /Users/cobbe/Applications/plt/collects/scheme/private/map.ss:22:17: loop /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:295:26 /Users/cobbe/Applications/plt/collects/scheme/private/map.ss:22:17: loop /Users/cobbe/Applications/plt/collects/scheme/list.ss:288:2: append-map /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:277:2: collection-closure setup-plt: WARNING: Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/42-eager-comprehensions/info.ss:10:2: infotab-module: not a well-formed definition at: (define required-core-version field ""360"") in: (#%module-begin (define name ""Srfi"") (define blurb (list (quote (div (p (b ""SRFI Extensions"")) (p ""This package provides extensions to:"") (p (b ""SRFI 42"") ""- Eager comprehensions: "" ""Extra generators :match, :plt-match, :let-value, :pairs, :do-until, a..." cobbe 3 Milestone 177 First line blank -> broken indenting abromfie/drocaml.plt defect abromfie new 2009-05-13T18:59:06-0400 2009-05-13T18:59:06-0400 "If the first line in an ocaml file is blank, it appears that drocaml does not do any indenting further down. How to repeat: - Change to drocaml language - Open new frame - type let x = x The x does not jump to the right, nor does work correctly. Removing the blank line at the beginning of the frame fixes everything up. " anonymous 3 Milestone 182 example from docs defines MDistributive module twice (and MDistributeLists not at all) cce/dracula.plt defect cce new 2009-05-28T21:21:06-0400 2009-05-28T23:00:03-0400 "Another bogosity in dracula docs: {{{ The module MDistributeLists provides an implementation of IDistributeLists for any implementation of IDistributive: (module MDistributive (import IAssociative (addop a)) (import ICommutative (addop a)) (import IDistributive (addop a) (mulop m)) (defun add (xs) (if (endp (cdr xs)) (car xs) (a (car xs) (add (cdr xs))))) (defun mul (x ys) (if (endp xs) nil (cons (m x (car ys)) (mul x (cdr ys))))) (export IDistributeLists (addall add) (mulall mul))) }}} " pnkfelix 3 Milestone 183 dracula rename export example from reference docs does not work cce/dracula.plt defect cce new 2009-05-28T22:38:11-0400 2009-05-30T08:37:23-0400 "Here is (slightly modified) code from the 8.2 reference manual: {{{ (interface IAssociative (sig mulop (x y)) (con mulop-associative (equal (mulop a (mulop b c)) (mulop (mulop a b) c)))) (interface ICommutative (include IAssociative) (con mulop-commutative (equal (mulop a b) (mulop b a)))) (interface IDistributive (include IAssociative) (include ICommutative) (sig addop (x y)) (con addop/mulop-distributive (equal (mulop a (addop b c)) (addop (mulop a b) (mulop a c))))) (module MDistributiveA (defun add (a b) (+ a b)) (defun mulop (a b) (* a b)) (export IAssociative (addop add)) (export ICommutative (addop add)) (export IDistributive (addop add))) (module MDistributiveB (defun add (a b) (+ a b)) (defun mul (a b) (* a b)) (export IAssociative (addop add)) (export ICommutative (addop add)) (export IDistributive (addop add) (mulop mul))) }}} Hitting RUN for this example raises the following error: {{{ . mulop: undefined in: mulop }}} (it also highlights the {{{mulop}}} in the IAssociative interface, which is not terribly useful and may be a usability bug; read on for why I think this.) If I comment out the definition of MDistributiveB, so that MDistributiveA is the only module providing relevant exports, then the code runs fine. I assume the problem here is something along the lines of ""the docs should be changed so that the MDistributive module exports mul/mulop instead of add/addop into the IAssociative interface. ---- More generally, all of the examples in the dracula docs need to be tested directly. " pnkfelix 3 Milestone 184 modular acl2 unresolved import problem, useless error message cce/dracula.plt defect cce new 2009-05-28T22:57:00-0400 2009-05-28T22:57:00-0400 "Running the following program in Modular ACL2 {{{ (interface Ispec-and1 (sig andp1 (x y))) (interface Ispec-and2 (sig andp2 (x y))) (module Mprob (import Ispec-and1) (defun andp2 (x y) (andp1 x y)) (export Ispec-and2)) (module Mprob/impl-and1 (defun andp1 (x y) (and x y)) (export Ispec-and1)) (link Mprob/test (Mprob Mprob/impl-and1)) (invoke Mprob/test) }}} yields the following error message: {{{ . invoke: unresolved imports: ((andp1)) from exports: ((andp1) (andp2)) in: mprob/test }}} 1. Is my program actually doing something wrong? I do not see why any imports are unresolved. (The error does not occur if I take out the invoke on the last line of the program. 2. Either way, the error message is not helpful. " pnkfelix 3 Milestone 186 Dracula errors on (just) + or - at REPL cce/dracula.plt defect cce new 2009-06-01T22:40:30-0400 2009-06-01T22:40:30-0400 "Start Dracula (bug happens in both ACL2 and Modular ACL2) Go to the REPL. Type + and hit enter. You can do the same thing for - I get the following internal error from DrScheme: {{{ char-ci=?: expects type as 1st argument, given: #; other arguments were: #\i === context === /Users/pnkfelix/Library/PLT Scheme/planet/300/4.1.5/cache/cce/dracula.plt/8/2/lang/acl2-readtable.ss:64:6: check-infinity /Applications/PLT Scheme v4.1.5/collects/scheme/private/contract-arrow.ss:1347:3 /Applications/PLT Scheme v4.1.5/collects/framework/private/text.ss:2071:4: on-local-char method in ...work/private/text.ss:1910:2 /Applications/PLT Scheme v4.1.5/collects/scheme/private/more-scheme.ss:155:2: call-with-break-parameterization /Applications/PLT Scheme v4.1.5/collects/scheme/private/more-scheme.ss:271:2: call-with-exception-handler }}} Note that the internal error does not happen if you just do * at the REPL. I assume the problem here is that there's a makeshift lexer that assumes you're trying to read a token like +inf.0 or -inf.0, and is not prepared for the sudden end to input stream. " pnkfelix 3 Milestone 197 Warnings and a crash while installing on Windows schematics/sake.plt defect schematics assigned 2009-08-13T15:32:57-0400 2009-09-15T02:57:00-0400 "After lunching (require (planet untyped/unlib/for)) I received the following warnings and errors: {{{ WARNING: collected information for key multiple times: (mod-path ""(planet schematics/sake)""); values: #(# (""Build files"") #t (mod-path ""(planet schematics/sake)"")) #(# (""The Sake API"") #t (mod-path ""(planet schematics/sake)"")) WARNING: collected information for key multiple times: (index-entry (mod-path ""(planet schematics/sake)"")); values: ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #) ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #) WARNING: collected information for key multiple times: (mod-path ""(planet schematics/sake)""); values: #(# (""Build files"") #t (mod-path ""(planet schematics/sake)"")) #(# (""The Sake API"") #t (mod-path ""(planet schematics/sake)"")) WARNING: collected information for key multiple times: (index-entry (mod-path ""(planet schematics/sake)"")); values: ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #) ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #) copy-file: copy failed; cannot copy: C:\Program Files\PLT-4.2.1\MzScheme.exe to: C:\Program Files\PLT-4.2.1\sake.exe setup-plt: error: during Launcher Setup for /schematics/sake.plt/1/0 (Sake) setup-plt: copy-file: copy failed; cannot copy: C:\Program Files\PLT-4.2.1\MzScheme.exe to: C:\Program Files\PLT-4.2.1\sake.exe }}} " gmarceau@… 3 Milestone 200 apparent Scribble error during package installation cce/scheme.plt defect cce new 2009-09-07T08:28:43-0400 2009-09-07T08:28:43-0400 "Fresh svn checkout & build on 7 Sept 09, Mac OS 10.5.8, Intel. I deleted ~/Library/PLT Scheme/planet during the rebuild, so I'm going off a completely fresh planet installation. I started !DrScheme and typed {{{(require (planet jaymccarthy/sqlite:4:5/sqlite))}}} at the prompt, and got a slew of error messages. The only one that appears to be relevant to your package is the following: require: unknown module: 'program setup-plt: error: during Building docs for /Users/cobbe/Library/PLT Scheme/planet/300/4.2.1.8/cache/cce/scheme.plt/4/1/scribblings/main.scrbl setup-plt: require: unknown module: 'program (I'm not sure if the last line comes up while trying to build your module; there are lots of other error messages that seem to be coming from other packages.)" cobbe 3 Milestone 204 Parsing of missing closing HTML tags duplicates HTML elements ashinn/html-parser.plt defect ashinn new 2009-09-29T19:41:51-0400 2009-09-29T19:41:51-0400 "(html->sxml ""
"") produces ((div (input (@ (name ""a"")) (input (@ (name ""b"")))) (input (@ (name ""b""))))) Note that the input element named b is produced twice. My guess as to what is happening is that since the inputs are unclosed, the parser doesn't close them until it hits the closing . At this point, it figures out that everything unclosed beforehand should be closed and notes two input elements that should be closed and closes them. However, it had already parsed the first input as containing the second input in its body, and since it doesn't reparse this it ends up closing the first input after it encloses the second input as well as closing the second input. I doubt this is intended behaviour. This came up on yahoo.com (god, why can't they write html). Browsers rendered the site as intended (as if it was
), but the html->sxml parser did not." nothere44@… 3 Milestone 207 Sudoku example doesn't work williams/inference.plt defect williams accepted 2009-09-30T16:06:09-0400 2009-09-30T16:08:30-0400 The Sudoku example does not work properly. williams 3 Milestone 209 "error: ""car: expects argument of type ; given ()"" on specific input" dherman/c.plt defect dherman new 2009-10-06T15:01:36-0400 2009-10-06T15:01:36-0400 "The following 2-line input to `parse-program' produces the error: ""car: expects argument of type ; given ()"" void foo(void *x, void *y) { int i = foo(x, y); } void bar(void *x, void *y) { int i = bar(x, y); } " zwizwa 3 Milestone 210 Fails to compile with 4.2.2 schematics/port.plt defect schematics new 2009-10-18T21:17:17-0400 2009-10-18T21:17:17-0400 `scheme' now provides `port->string', and thus this package fails to compile. samth@… 3 Milestone 211 Depends on Schemeunit 1:2, which doesn't compile schematics/password.plt defect schematics assigned 2009-10-22T11:46:53-0400 2009-10-23T11:43:50-0400 Currently, password.plt 1.0 requires schemeunit.plt 1, which doesn't compile in v4. Sam TH 3 Milestone 214 scribble warnings soegaard/galore.plt defect soegaard new 2009-10-23T10:33:44-0400 2009-10-23T10:33:44-0400 "I get the following scribble warnings with galore 4.2: setup-plt: WARNING: undefined tag in /soegaard/galore.plt/4/2/doc.scrbl: setup-plt: ((lib ""srfi/67.ss"") number-compare) setup-plt: ((lib ""srfi/67.ss"") integer-compare) " Sam TH 3 Milestone 217 segments->painter return is failing on being passed to paint soegaard/sicp.plt defect soegaard new 2009-10-27T13:04:10-0400 2009-10-27T13:04:10-0400 ";; examples of segments (define first-segment (make-segment (make-vect 0.0 1.0) (make-vect 2.0 3.0))) (define second-segment (make-segment (make-vect 4.0 5.0) (make-vect 6.0 7.0))) (paint (segments->painter (list first-segment second-segment))) ;; fails with: ;; for-each: expects type as 2nd argument, given: ({{0.0 . 1.0} 2.0 . 3.0} {{3.0 . 5.0} 6.0 . 7.0}); other arguments were: #" ebellani@… 3 Milestone 219 error on require schematics/benchmark.plt defect schematics new 2009-11-10T10:17:06-0500 2009-11-10T10:17:06-0500 "I get this error loading this package: /home/samth/.plt-scheme/planet/300/4.2.2.6/cache/schematics/benchmark.plt/2/1/benchmark.ss:104:15: module: identifier is already imported at: make-statistics in: (define-values (struct:statistics make-statistics statistics? statistics-mean1 statistics-mean2 statistics-std-dev1 statistics-std-dev2 statistics-slowdown) (let-values (((struct: make- ? -ref -set!) (syntax-parameterize ((struct-field-index (lambda (st... " Sam TH 3 Milestone 220 warnings from documentation untyped/unlib.plt defect untyped new 2009-11-15T17:11:39-0500 2009-11-15T17:11:39-0500 "Building v3.20, I get these scribble warnings: setup-plt: WARNING: undefined tag in /untyped/unlib.plt/3/20/scribblings/unlib.scrbl: setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") let*-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") letrec-values-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") let-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") letrec-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") define-values-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") let-values-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") define-debug) setup-plt: ((planet ""base.ss"" (""untyped"" ""unlib.plt"" 3 20) ""scribblings"") let*-values-debug) " Sam TH 3 Milestone 234 slide/stage cce/scheme.plt defect cce new 2009-12-01T18:47:04-0500 2009-12-01T18:47:04-0500 slide/stage is documented under slide/staged (note d) Sam TH 3 Milestone 235 add name? to staged cce/scheme.plt defect cce new 2009-12-02T13:37:59-0500 2009-12-02T13:37:59-0500 It would be nice if `staged' bound `name?' to #t or #f for each name in the relevant stage. Sam TH 3 Milestone 237 scribble text renderer dies with a type error _default-component defect robby new 2009-12-16T14:44:21-0500 2009-12-16T14:44:21-0500 "I'm trying to generate my Moby documentation as a text file through Scribble. I'm running into the following error: MITHRIL:moby dyoo$ ~/local/plt-svn/bin/scribble manual.scrbl [Output to manual.txt] car: expects argument of type ; given # === context === /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:46:6: render-flow method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:57:6: render-table method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:46:6: render-flow method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:21:6: render-part method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:21:6: render-part method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:18:11: map /Users/dyoo/local/plt-svn/collects/scribble/run.ss:90:0: build-docs /Users/dyoo/local/plt-svn/collects/scribble/run.ss: [running body] I can't make heads or tails of the types yet. I see the html renderer is doing something special with tables, so I suspect that the text renderer should be doing something similar." dyoo 3 Milestone 242 Digest contexts are leaked. soegaard/digest.plt defect soegaard new 2010-01-02T01:33:16-0500 2010-01-02T01:33:16-0500 "The library uses EVP_MD_CTX_create to create each digest, but never calls EVP_MD_CTX_cleanup. This causes the EVP library to leak the context descriptor for each call. (require (planet soegaard/digest:1:2/digest)) (let loop () (bytes-digest #""Hello"" 'sha1) (loop)) quickly consumes large amounts of memory, and doesn't release it." David Brown 3 Milestone 263 wrong compile-omit-paths entry in info.ss lizorkin/sxml.plt defect lizorkin new 2010-03-03T20:53:16-0500 2010-03-03T20:53:16-0500 "The entry for compile-omit-paths in ""info.ss"" refers to ""test.ss"", which does not exist. It should refer to ""tests.ss"" (plural) instead. " ryanc@… 3 Milestone 271 permissive? kazzmir/planet-manager.plt defect kazzmir new 2010-03-26T11:22:01-0400 2010-03-26T11:22:01-0400 In planet-utils.ss, (permissive? #t) cannot be evaluated because `permissive?' is not bound. laurent.orseau@… 3 Milestone 272 incomplete folders kazzmir/planet-manager.plt defect kazzmir new 2010-03-26T11:28:28-0400 2010-03-26T11:28:28-0400 "In my planet cache folder, I had a planet sub-folder that was incomplete. My folder hierarchy was then: ...\planet\300\4.2.4\cache\orseau\mred-designer.plt\3 and that ends here, the directory is empty, because of a ""planet remove"" of that package. planet-manager crashes on loading with: """""" procedure tree-stuff->row-or-false: expects 3 arguments, given 2: # ""3"" """""" This is probably an MzScheme internal error, since I couldn't find tree-stuff->row-or-false in you package. Removing the ""faulty"" subfolders solved the problem though." laurent.orseau@… 3 Milestone 273 build-path: absolute path kazzmir/planet-manager.plt defect kazzmir new 2010-03-26T11:39:46-0400 2010-03-26T11:39:46-0400 "Now I'm really stuck. Trying to require the package: > (require (planet kazzmir/planet-manager:1:1/gui)) build-path: absolute path ""C:\Documents and Settings\HP_Eigenaar\Application Data\PLT Scheme\4.2.2.4\collects\my-scheme\fmt\planet-fmt.plt"" cannot be added to the path ""C:\Users\orseau\AppData\Roa..."" I don't know what to do with that. The path ""...HP_Eigenaar..."" does not seem to be located on my computer, and I have not installed v4.2.2.4 at some time. Best Regards, Laurent P.S. : I'd really like to test your package, it sounds nice! " laurent.orseau@… 3 Milestone 282 Unable to make 4.2.5 with shared libraries enabled. _default-component defect robby new 2010-05-04T17:04:34-0400 2010-05-04T17:04:34-0400 "I successfully made and installed 4.2.5 without enabling shared libraries. But when I ran configure --enable-shared in the plt-4.2.5/src/build directory, then make, make returned with a SIGSEGV. I'm running Fedora 13-x86_64, with the latest Fedora gcc, 4.4.4-2. From the strace output file, it looks like mzschemecgc segfaulted for --enable-shared. Here's the strace output from the last execve to the SIGSEGV: 32029 execve(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/lt-mzschemecgc"", [""/home/gene/packages/plt-scheme/p""..., ""-cqu"", ""../../../mzscheme/gc2/xform.ss"", ""--setup"", ""."", ""--cpp"", ""gcc -E -I./.. -I../../../mzschem""..., ""--keep-lines"", ""-o"", ""xsrc/precomp.h"", ""../../../mzscheme/gc2/precomp.c""], [/* 53 vars */]) = 0 32029 brk(0) = 0x95f000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc709b000 32029 access(""/etc/ld.so.preload"", R_OK) = -1 ENOENT (No such file or directory) 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/x86_64/libmzscheme-4.2.5.so"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/x86_64"", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/libmzscheme-4.2.5.so"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls"", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/x86_64/libmzscheme-4.2.5.so"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/x86_64"", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libmzscheme-4.2.5.so"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\302\2\0\0\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=7062281, ...}) = 0 32029 mmap(NULL, 4430760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f1fc6c61000 32029 mprotect(0x7f1fc6e49000, 2097152, PROT_NONE) = 0 32029 mmap(0x7f1fc7049000, 118784, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e8000) = 0x7f1fc7049000 32029 mmap(0x7f1fc7066000, 215976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f1fc7066000 32029 close(3) = 0 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libmzgc-4.2.5.so"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\271\0\0\0\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=482194, ...}) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc6c60000 32029 mmap(NULL, 3182208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f1fc6957000 32029 mprotect(0x7f1fc697b000, 2093056, PROT_NONE) = 0 32029 mmap(0x7f1fc6b7a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23000) = 0x7f1fc6b7a000 32029 mmap(0x7f1fc6b7c000, 933504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f1fc6b7c000 32029 close(3) = 0 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libdl.so.2"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/tls/x86_64/libdl.so.2"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/usr/lib/tls/x86_64"", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/tls/libdl.so.2"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/usr/lib/tls"", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/x86_64/libdl.so.2"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/usr/lib/x86_64"", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/libdl.so.2"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat(""/usr/lib"", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0 32029 open(""/etc/ld.so.cache"", O_RDONLY) = 3 32029 fstat(3, {st_mode=S_IFREG|0644, st_size=95054, ...}) = 0 32029 mmap(NULL, 95054, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f1fc693f000 32029 close(3) = 0 32029 open(""/lib64/libdl.so.2"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\364?\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=22536, ...}) = 0 32029 mmap(0x3ff4000000, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff4000000 32029 mprotect(0x3ff4002000, 2097152, PROT_NONE) = 0 32029 mmap(0x3ff4202000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x3ff4202000 32029 close(3) = 0 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libm.so.6"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/libm.so.6"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/lib64/libm.so.6"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360>@\364?\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=598928, ...}) = 0 32029 mmap(0x3ff4400000, 2633944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff4400000 32029 mprotect(0x3ff4483000, 2093056, PROT_NONE) = 0 32029 mmap(0x3ff4682000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x3ff4682000 32029 close(3) = 0 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libpthread.so.0"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/libpthread.so.0"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/lib64/libpthread.so.0"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\\\300\363?\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=146488, ...}) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693e000 32029 mmap(0x3ff3c00000, 2212768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff3c00000 32029 mprotect(0x3ff3c18000, 2093056, PROT_NONE) = 0 32029 mmap(0x3ff3e17000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x3ff3e17000 32029 mmap(0x3ff3e19000, 13216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3ff3e19000 32029 close(3) = 0 32029 open(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libc.so.6"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/usr/lib/libc.so.6"", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open(""/lib64/libc.so.6"", O_RDONLY) = 3 32029 read(3, ""\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\356\201\363?\0\0\0""..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=1877792, ...}) = 0 32029 mmap(0x3ff3800000, 3696808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff3800000 32029 mprotect(0x3ff397d000, 2097152, PROT_NONE) = 0 32029 mmap(0x3ff3b7d000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d000) = 0x3ff3b7d000 32029 mmap(0x3ff3b82000, 18600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3ff3b82000 32029 close(3) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693d000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693c000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693b000 32029 arch_prctl(ARCH_SET_FS, 0x7f1fc693c700) = 0 32029 mprotect(0x3ff3b7d000, 16384, PROT_READ) = 0 32029 mprotect(0x3ff3e17000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff4682000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff4202000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff3620000, 4096, PROT_READ) = 0 32029 munmap(0x7f1fc693f000, 95054) = 0 32029 set_tid_address(0x7f1fc693c9d0) = 32029 32029 set_robust_list(0x7f1fc693c9e0, 0x18) = 0 32029 futex(0x7fff9248ff8c, FUTEX_WAKE_PRIVATE, 1) = 0 32029 futex(0x7fff9248ff8c, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7f1fc693c700) = -1 EAGAIN (Resource temporarily unavailable) 32029 rt_sigaction(SIGRTMIN, {0x3ff3c05b10, [], SA_RESTORER|SA_SIGINFO, 0x3ff3c0f960}, NULL, 8) = 0 32029 rt_sigaction(SIGRT_1, {0x3ff3c05ba0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x3ff3c0f960}, NULL, 8) = 0 32029 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 32029 getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0 32029 brk(0) = 0x95f000 32029 brk(0x980000) = 0x980000 32029 --- SIGSEGV (Segmentation fault) @ 0 (0) --- 32022 <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV && WCOREDUMP(s)}], 0, NULL) = 32029 32022 --- SIGCHLD (Child exited) @ 0 (0) --- 32022 rt_sigreturn(0xffffffff) = 32029 32022 write(2, ""make[4]: "", 9) = 9 32022 write(2, ""*** [xsrc/precomp.h] Segmentatio""..., 53) = 53 32022 write(2, ""\n"", 1) = 1 32022 stat(""xsrc/precomp.h"", 0x7fff3902fa70) = -1 ENOENT (No such file or directory) 32022 rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0 32022 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 32022 chdir(""/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/gc2"") = 0 32022 write(1, ""make[4]: Leaving directory `/hom""..., 93) = 93 32022 close(1) = 0 " snider6982@… 3 Milestone 283 incorrect `declare-exporting' dherman/types.plt defect dherman new 2010-05-05T10:39:21-0400 2010-05-05T10:39:21-0400 "The `declare-exporting' line at the beginning of types.scrbl is @declare-exporting[(planet dherman/types:1)] but should be @declare-exporting[(planet dherman/types:2)]" anonymous 3 Milestone 285 Fails to compile dherman/javascript.plt defect dherman new 2010-05-27T15:49:22-0400 2010-05-27T15:49:22-0400 Error is: only-in: identifier `language/macro-stepper<%>' not included in nested require spec Sam TH 3 Milestone 292 png_set_gray_1_2_4_to_8 not found while compiling _default-component defect robby new 2010-08-12T19:51:40-0400 2010-08-12T19:51:40-0400 "src/wxcommons/src/wxcommon/wxJPEG.cxx wx_read_png function 729 line. My computer: OpenSuse 11.3 libpng 1.4.3 I have solve problem by changing that line from: png_set_gray_1_2_4_to_8(png_ptr); to: png_set_expand_gray_1_2_4_to_8(png_ptr); Works for me, but I am not sure if it works for everyone." petraszd 3 Milestone 299 Cannot typecheck (equal? (list) (list)) krhari/pfds.plt defect krhari new 2010-09-12T01:58:58-0400 2010-09-12T01:58:58-0400 "With regular lists, `(equal? (list) (list))` can be type checked, but not with random-access lists. {{{ Welcome to DrRacket, version 5.0.1.3--2010-08-25(-/f) [3m]. Language: typed/racket; memory limit: 512 MB. > (equal? (list) (list)) - : Boolean #t > (require (planet krhari/pfds:1:4/skewbinaryrandomaccesslist)) > (equal? (list) (list)) . Type Checker: Could not infer types for applying polymorphic function list in: (list) . Type Checker: Could not infer types for applying polymorphic function list in: (list) . Type Checker: Could not infer types for applying polymorphic function list in: (list) . Type Checker: Could not infer types for applying polymorphic function list in: (list) . Type Checker: Summary: 4 errors encountered in: (list) (list) (list) (list) }}} " dvanhorn 3 Milestone 302 define/memo doesn't save time for funs of arity > 1 dherman/memoize.plt defect dherman new 2010-10-09T13:06:29-0400 2010-10-09T13:06:29-0400 "It appears that define/memo is missing all of the time for functions of more than one argument. Here's a version of fib that takes 2 (identical) arguments: #lang racket (require (planet dherman/memoize)) (define/memo (fib n1 n2) (if (<= n2 1) 1 (+ (fib (- n1 1) (- n2 1)) (fib (- n1 2) (- n2 2))))) (time (fib 28 28)) This program runs faster without memoization; it appears that the cache check always misses. " clements@… 3 Milestone 323 (rsound-play ding) does not play in Debian sid clements/rsound.plt defect clements new 2011-02-25T11:54:29-0500 2011-02-25T11:54:29-0500 I ran the example code from the documentation in DrRacket but got neither any sound nor error messages. Attempts to play other rsounds have also been in vain. I am running Debian sid, and libportaudio2 version 19+svn20071022-3.2 is installed. mikeg@… 3 Milestone 328 claims to install successfully, but doesn't seem to actually work divascheme/divascheme.plt defect dyoo assigned 2011-04-23T08:22:32-0400 2011-08-11T01:37:50-0400 " {{{ Welcome to DrRacket, version 5.1 [3m]. Language: racket; memory limit: 128 MB. > (require (planet divascheme/divascheme:1:6/install)) DivaScheme should now be installed. To finish the installation, please restart DrScheme. Once restarted, F4 will toggle DivaScheme on and off. If you wish to install the launcher for generate-stags, see Help Desk on 'generate-stags' for details. > }}} but then when I restart DrRacket and hit F4 nothing happens. I remember this extension working in previous versions of PLT, but it doesn't seem compatible with the current version for some reason." anonymous 3 Milestone 332 Looks like this language extension is broken on latest version of Racket and PLT-Scheme abromfie/drocaml.plt defect abromfie new 2011-05-03T07:32:52-0400 2011-05-03T07:32:52-0400 "Hello. I installed Racket 5.1.1 and drocaml 2.0 extension. After installing drocaml and restarting Racket, application not starting. Popup window contain this error: send: target is not an object: # for method: get-eventspace === context === /Applications/Racket v5.1/collects/racket/private/class-internal.rkt:4487:0: obj-error /Applications/Racket v5.1/collects/racket/private/class-internal.rkt:3751:0: find-method/who /Applications/Racket v5.1/collects/racket/private/more-scheme.rkt:265:2: call-with-exception-handler /Applications/Racket v5.1/collects/framework/private/frame.rkt:348:4: open-status-line method in ...rk/private/frame.rkt:332:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/debugger.ss:251:4: ocaml:reset-minor-debug-highlighting method in ....plt/2/0/debugger.ss:14:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/language.ss:62:4: ocaml:reset-highlighting method in ....plt/2/0/language.ss:46:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/debugger.ss:100:4: ocaml:clean-up method in ....plt/2/0/debugger.ss:14:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/typecheck.ss:84:4: after-insert method in ...plt/2/0/typecheck.ss:15:2 /Applications/Racket v5.1/collects/test-engine/test-tool.scm:63:8: after-insert method in ...engine/test-tool.scm:36:6 /Applications/Racket v5.1/collects/gui-debugger/debug-tool.rkt:236:10: after-insert method in ...ugger/debug-tool.rkt:152:8 /Applications/Racket v5.1/collects/drracket/private/module-language-tools.rkt:85:6: after-insert method in ...e-language-tools.rkt:79:4 /Applications/Racket v5.1/collects/drracket/private/debug.rkt:1033:6: after-insert method in ...et/private/debug.rkt:987:4 /Applications/Racket v5.1/collects/drracket/private/syncheck/gui.rkt:190:10: after-insert method in ...ate/syncheck/gui.rkt:177:8 /Applications/Racket v5.1/collects/framework/private/text.rkt:3882:4: after-insert method in ...ork/private/text.rkt:3723:2 /Applications/Racket v5.1/collects/framework/private/text.rkt:493:4: after-insert method in ...ork/private/text.rkt:79:2 /Applications/Racket v5.1/collects/mred/private/wxme/text.rkt:1244:2: do-insert method in text% ... Tested on Mac OS 10.6.7 and Windows XP with Racket 5.1.1 and Ocaml 3.12 installed. PLT-Scheme 4.2.5 works. but I get some ugly errors when I trying to compile or check types. " histfak@… 3 Milestone 338 Error with Racket 5.1.2 and bzlib bzlib/base.plt defect bzlib new 2011-08-06T15:14:39-0400 2011-08-06T15:14:39-0400 "This is the beginning of my program: #lang racket (require net/url net/mime (lib ""match.ss"") (planet neil/htmlprag:1:6) (planet bzlib/http/client) (planet lizorkin/sxml:2:1/sxml) (planet jaymccarthy/sqlite:4:5/sqlite)) and this is the error message I get when I try to start the program under Racket 5.1.2: ...\AppData\Roaming\Racket\planet\300\5.1.2\cache\bzlib\base.plt\1\6\base.ss:29:9: module: identifier already imported from a different source in: identity scheme/function mzlib/etc This problem does not occur with Racket 5.1.1." anonymous 3 Milestone 345 socket.plt fails to install vyzo/socket.plt defect vyzo new 2011-08-24T12:02:26-0400 2011-08-24T12:02:26-0400 "I can't install socket.plt using (require (planet vyzo/socket:3:2)) Various error messages on redefined macros in wingdi.h and finally open-input-file: cannot open input file: ""C:\...\AppData\Roaming\Racket\planet\300\5.1.3\cache\vyzo\socket.plt\3\2\_constants.rkt""" anonymous 3 Milestone 357 Upgrade bindings to the current Cairo release samth/cairo.plt defect samth new 2011-09-01T05:17:35-0400 2011-09-01T05:17:35-0400 "The library still uses a number of deprecated names for Cairo functions -- the full list is in ""cairo_deprecated.h"" (http://zenit.senecac.on.ca/wiki/dxr/source.cgi/mozilla/gfx/cairo/cairo/src/cairo-deprecated.h). This makes the library unusable on modern systems, because of Racket complaining about symbols not found in ffi-obj." zio_tom78@… 3 Milestone 363 Hello world doesn't compile dyoo/js-vm.plt defect dyoo new 2011-09-11T15:38:27-0400 2011-09-11T15:38:27-0400 "I tried compiling the basic hello-world tutorial from the docs and got a confusing error. Here is the source of test.rkt: {{{ #lang planet dyoo/js-vm:1:7 (printf ""Hello, world!\n"") (check-expect (* 3 4 5) 60) (current-seconds) (image-url ""http://racket-lang.org/logo.png"") (check-expect (big-bang 0 (on-tick add1 1) (stop-when (lambda (x) (= x 10)))) 10) ""last line"" }}} And the run.rkt which I try to run: {{{ #lang racket (require (planet ""main.rkt"" (""dyoo"" ""js-vm.plt"" 1 14))) (run-in-browser ""test.rkt"") }}} And the error I get: {{{ ../../.racket/planet/300/5.1.3/cache/dyoo/js-vm.plt/1/14/private/translate-bytecode-structs-5.1.rkt:311:36: match: wrong number for fields for structure internal:provided: expected 6 but got 7 in: (name src src-name nom-mod src-phase protected? insp) }}}" james@… 3 Milestone 370 writing comment inserts extra spaces neil/html-writing.plt defect neil new 2011-10-31T18:01:33-0400 2011-10-31T18:01:33-0400 "`xexp->html` and `write-html` insert extra spaces around the contents of a comment. {{{ > (xexp->html '(*COMMENT* ""x"")) """" }}} but the result should be {{{ """" }}} " ryanc 3 Milestone 371 Running example code produces no sound evhan/coremidi.plt defect evhan new 2011-11-08T12:26:24-0500 2011-11-08T12:26:24-0500 It's entirely possible that this is simply a doc failure, but running the example code given in the documentation does not produce any sound on the main speakers. Is it necessary to hook up the midi channel to an audio unit? John Clements 3 Milestone 372 Unbound identifier evanfarrer/SPeaCAP.plt defect evanfarrer new 2011-12-01T08:34:08-0500 2011-12-01T08:34:49-0500 "Hello. I'm running this simple program in DrRacket: #lang racket (require (planet evanfarrer/SPeaCAP:1:0/SPeaCAP)) SPeaCAP is correctly download but i get this error: Welcome to DrRacket, version 5.2 [3m]. Language: racket; memory limit: 128 MB. . ../../../.racket/planet/300/5.2/cache/evanfarrer/SPeaCAP.plt/1/0/private /security-guard.ss:31:13: expand: unbound identifier in module in: ffi-lib >" robby 3 Milestone 385 compilation error on racket v5.1.3 dherman/parameter.plt defect dherman new 2011-12-18T13:28:33-0500 2011-12-18T13:28:33-0500 "Compile error when requiring the package: ../../../../.racket/planet/300/5.1.3/cache/dherman/parameter.plt/1/3/main.ss:26:17: compile: unbound identifier in module in: flat-get" roti 3 Milestone 387 compilation error untyped/mirrors.plt defect untyped new 2011-12-24T12:26:54-0500 2011-12-24T12:26:54-0500 "There are some compilation errors when requiring the module. Code: (require (planet untyped/mirrors:2:4/mirrors)) ----- Error: ..\..\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss:27:5: expand: unbound identifier in module in: make-response/full ------ Here's the output: Welcome to DrRacket, version 5.2 [3m]. Language: racket. module: identifier is already imported module: identifier is already imported raco setup: error: during making for /cce/scheme.plt/4/1 (Scheme Utilities: (planet cce/scheme)) raco setup: module: identifier is already imported raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cce\scheme.plt\4\1\scribblings\main.scrbl raco setup: module: identifier is already imported WARNING: collected information for key multiple times: '(mod-path ""(planet schematics/sake)""); values: '#(# (""Build files"") #t (mod-path ""(planet schematics/sake)"")) '#(# (""The Sake API"") #t (mod-path ""(planet schematics/sake)"")) WARNING: collected information for key multiple times: '(index-entry (mod-path ""(planet schematics/sake)"")); values: (list '(""(planet schematics/sake)"") (list (sized-element ...)) #) (list '(""(planet schematics/sake)"") (list (sized-element ...)) #) WARNING: collected information for key multiple times: '(mod-path ""(planet schematics/sake)""); values: '#(# (""Build files"") #t (mod-path ""(planet schematics/sake)"")) '#(# (""The Sake API"") #t (mod-path ""(planet schematics/sake)"")) WARNING: collected information for key multiple times: '(index-entry (mod-path ""(planet schematics/sake)"")); values: (list '(""(planet schematics/sake)"") (list (sized-element ...)) #) (list '(""(planet schematics/sake)"") (list (sized-element ...)) #) expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for /cce/scheme.plt/6/3 (Scheme Utilities: (planet cce/scheme)) raco setup: expand: unbound identifier in module raco setup: error: during making for /cce/scheme.plt/6/3/reference raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cce\scheme.plt\6\3\reference\manual.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for /untyped/unlib.plt/3/24 (Unlib) raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/unlib.plt/3/24/scribblings raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\unlib.plt\3\24\scribblings\unlib.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for /dherman/parameter.plt/1/3 (Parameter) raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\parameter.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2 (JavaScript) raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/drscheme (JavaScript Language for DrScheme) raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/lang raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/private raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/private/compiler (JavaScript: Compiler) raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/private/runtime (JavaScript: Runtime) raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/private/syntax (JavaScript: Syntax Tools) raco setup: expand: unbound identifier in module raco setup: error: during making for /dherman/javascript.plt/9/2/private/tests raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\javascript.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4 (mirrors) raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/csv raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/javascript raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/javascript/plain raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/javascript/plain/lang raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/javascript/sexp raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/plain raco setup: expand: unbound identifier in module raco setup: error: during making for /untyped/mirrors.plt/2/4/xml raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\mirrors.scrbl raco setup: expand: unbound identifier in module . ..\..\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss:27:5: expand: unbound identifier in module in: make-response/full > ------------------ And the setup log: PLaneT: unpacking debug-console.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking info.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking module-forms.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking module-forms.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking rhino.png in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking syntax-color.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking syntax-color.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking tool.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking tool.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking eval.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking exn.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking info.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory lang in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking lang.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking lang.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking module.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking module.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking reader.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking reader.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking main.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking pjs.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory javascript in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\ PLaneT: unpacking ast.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking compile.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking config.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking doc-index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking eval.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking intro.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking parse.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking pjs.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking print.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking runtime.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking print.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory compiler in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking compile.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking compile.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking context.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking context.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking helpers.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking helpers.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist-monad.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist-monad.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking config.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking config.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking parameter.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking planet.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking planet.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: making directory runtime in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking exceptions.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking exceptions.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking function.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking gui-library.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking namespace.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking namespace.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking native.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking native.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking object.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking operator.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking operator.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking runtime.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking standard-library.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking standard-library.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking value.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking value.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: making directory syntax in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking abstract-regexps.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-core.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-core.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-utils.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking cursor.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking cursor.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking exceptions.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking exceptions.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking input.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking input.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking lex.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking lex.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking regexps.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking regexps.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking syntax.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking syntax.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking token.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking token.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking tokenize.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking arguments-scope.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking array.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking array.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking eval.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example1.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example2.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example3.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking pretty-print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking pretty-print.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking test.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking test.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking util.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking util.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking runtime.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory scribblings in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking ast.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking ast.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking compile.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking compile.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking config.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking config.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking eval.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking history.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking history.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking intro.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking intro.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking javascript.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking javascript.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking parse.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking pjs.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking print.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking runtime.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking utils.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking snarl.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: PLaneT: ============= Installing javascript.plt on Sat, 24 Dec 2011 19:11:16 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/javascript.plt/9/2 (JavaScript) PLaneT: raco setup: in /dherman/javascript.plt/9/2 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: downloading cobbe/contract-utils:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking contract-utils.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\cobbe\contract-utils.plt\1\3\contract-utils.plt PLaneT: unpacking changes.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking contract-utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking COPYING in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: PLaneT: ============= Installing contract-utils.plt on Sat, 24 Dec 2011 19:11:19 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /cobbe/contract-utils.plt/1/3 (contract-utils) PLaneT: raco setup: in /cobbe/contract-utils.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\contract-utils.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\contract-utils.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\info.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-core.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-core.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: downloading dherman/parameter:1 from planet.racket-lang.org via HTTP cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: PLaneT: ============= Unpacking parameter.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\parameter.plt\1\3\parameter.plt PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: unpacking parameter.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: making directory parameter in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: PLaneT: ============= Installing parameter.plt on Sat, 24 Dec 2011 19:11:28 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/parameter.plt/1/3 (Parameter) PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/parameter.plt/1/3/planet-docs PLaneT: raco setup: making: /dherman/parameter.plt/1/3/planet-docs/parameter PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: /cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: /untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: running: /dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: raco setup: in /dherman/parameter.plt/1/3 PLaneT: raco setup: making: /dherman/javascript.plt/9/2/collects cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/drscheme (JavaScript Language for DrScheme) PLaneT: downloading dherman/widgets:2 from planet.racket-lang.org via HTTP PLaneT: raco setup: in /dherman/javascript.plt/9/2/drscheme cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\debug-console.ss PLaneT: PLaneT: ============= Unpacking widgets.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\widgets.plt\2\0\widgets.plt PLaneT: making directory bitmaps in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking ne.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking nw.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking se.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking sw.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-large.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-medium.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-small.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\private\ PLaneT: unpacking progress.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\private\tests\ PLaneT: unpacking progress.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking text.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking widgets.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: PLaneT: ============= Installing widgets.plt on Sat, 24 Dec 2011 19:11:47 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/widgets.plt/2/0 (widgets) PLaneT: raco setup: in /dherman/widgets.plt/2/0 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\progress.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\progress.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\text.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\text.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\widgets.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\widgets.ss PLaneT: raco setup: making: /dherman/widgets.plt/2/0/bitmaps PLaneT: raco setup: making: /dherman/widgets.plt/2/0/private PLaneT: raco setup: making: /dherman/widgets.plt/2/0/private/tests PLaneT: raco setup: in /dherman/widgets.plt/2/0/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\private\tests\progress.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\private\tests\progress.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\debug-console.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\module-forms.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\module-forms.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\syntax-color.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\regexps.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\abstract-regexps.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\abstract-regexps.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/lang PLaneT: raco setup: in /dherman/javascript.plt/9/2/lang PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\lang\lang.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\context.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/planet-docs cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/planet-docs/javascript PLaneT: raco setup: making: /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/javascript.plt/9/2/private cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/private/compiler (JavaScript: Compiler) PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\compile.ss PLaneT: downloading soegaard/evector:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking evector.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\soegaard\evector.plt\1\1\evector.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking evector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking extensible-vector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking extensible-vector.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking srfi-check.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking test-evector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: PLaneT: ============= Installing evector.plt on Sat, 24 Dec 2011 19:12:20 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /soegaard/evector.plt/1/1 (Extensible Vectors) PLaneT: raco setup: in /soegaard/evector.plt/1/1 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\evector.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\extensible-vector.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\extensible-vector.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\evector.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\srfi-check.scm PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\srfi-check.scm PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/private/runtime (JavaScript: Runtime) PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/runtime cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\exceptions.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\exceptions.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\gui-library.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\value.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/private/syntax (JavaScript: Syntax Tools) PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/private/tests PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\tests\array.ss PLaneT: downloading dherman/test:2 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking test.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\test.plt\2\1\test.plt PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory test in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\private\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\private\tests\ PLaneT: unpacking test.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: PLaneT: ============= Installing test.plt on Sat, 24 Dec 2011 19:12:43 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/test.plt/2/1 (test) PLaneT: raco setup: in /dherman/test.plt/2/1 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\main.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\test.scrbl PLaneT: raco setup: making: /dherman/test.plt/2/1/planet-docs cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\test.scrbl PLaneT: raco setup: making: /dherman/test.plt/2/1/planet-docs/test PLaneT: raco setup: making: /dherman/test.plt/2/1/private PLaneT: raco setup: making: /dherman/test.plt/2/1/private/tests PLaneT: raco setup: in /dherman/test.plt/2/1/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\private\tests\tests.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: running: /dherman/test.plt/2/1/test.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: /untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: /dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: rendering: /dherman/test.plt/2/1/test.scrbl PLaneT: downloading dherman/io:1 from planet.racket-lang.org via HTTP PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: PLaneT: ============= Unpacking io.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\io.plt\1\9\io.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking file.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking io.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\ PLaneT: making directory examples in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking big.zip in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\examples\ PLaneT: unpacking file.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking foofaraw.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking io.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: PLaneT: ============= Installing io.plt on Sat, 24 Dec 2011 19:13:11 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/io.plt/1/9 (io) PLaneT: raco setup: in /dherman/io.plt/1/9 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\file.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\file.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\io.ss PLaneT: raco setup: making: /dherman/io.plt/1/9/private cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\io.ss PLaneT: raco setup: making: /dherman/io.plt/1/9/private/tests PLaneT: raco setup: in /dherman/io.plt/1/9/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\file.ss PLaneT: downloading dherman/test:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking test.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\test.plt\1\3\test.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\private\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\private\tests\ PLaneT: unpacking test.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: PLaneT: ============= Installing test.plt on Sat, 24 Dec 2011 19:13:22 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: /dherman/test.plt/1/3 (test) PLaneT: raco setup: in /dherman/test.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\test.ss PLaneT: raco setup: making: /dherman/test.plt/1/3/private cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\test.ss PLaneT: raco setup: making: /dherman/test.plt/1/3/private/tests PLaneT: raco setup: in /dherman/test.plt/1/3/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\private\tests\tests.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\file.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\foofaraw.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\foofaraw.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\io.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\io.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\tests.ss PLaneT: raco setup: making: /dherman/io.plt/1/9/private/tests/examples cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in /dherman/javascript.plt/9/2 PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/runtime cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\runtime.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\runtime.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\operator.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: /dherman/javascript.plt/9/2/scribblings cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/scribblings cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\utils.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\utils.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: /cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: running: /dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: /untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: /dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: raco setup: in /dherman/javascript.plt/9/2 cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/javascript/plain cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\plain\module.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript/plain PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\javascript.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander-internal.ss cm: |compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander-internal.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\lang.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util-internal.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/javascript/plain/lang cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\plain\lang\reader.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript/plain/lang PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\compile.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/javascript/sexp cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\module-test.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript/sexp PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\javascript.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\lang.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util-internal.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/javascript/sexp/lang cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\lang\reader.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript/sexp/lang cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\lang\reader.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/plain cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\plain\all-plain-tests.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/plain cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\plain\response-test.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\main.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/csv cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\csv.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/planet-docs PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/planet-docs/mirrors PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/scribblings cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\base.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/scribblings cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\base.ss PLaneT: raco setup: making: /untyped/mirrors.plt/2/4/xml cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\all-xml-tests.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/xml cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\render-test.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\syntax-prerender.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\struct.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\struct-internal.ss PLaneT: raco setup: in /untyped/mirrors.plt/2/4/javascript cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\struct.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in /dherman/javascript.plt/9/2/private PLaneT: raco setup: in /dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: --- updating info-domain tables --- cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: /cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: /dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: /untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: /dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: running: /untyped/mirrors.plt/2/4/scribblings/mirrors.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: PLaneT: ============= Rebuilding documentation index ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: scribblings/main/user PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: /cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: /dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: /untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: /dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: /cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: /untyped/mirrors.plt/2/4/scribblings/mirrors.scrbl PLaneT: raco setup: running: scribblings/main/user/start.scrbl PLaneT: raco setup: running: scribblings/main/user/search.scrbl PLaneT: raco setup: rendering: scribblings/main/user/start.scrbl PLaneT: raco setup: rendering: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- " roti 3 Milestone 409 Negative numbers unsupported jeeve/live.plt defect jeeve new 2012-02-05T17:38:46-0500 2012-02-05T17:38:46-0500 "live-web-number function don't return negative numbers. Of same for plotting functions." jvjulien@… 3 Milestone 411 Growing memory consumption when using ryanc/db.plt ryanc/db.plt defect ryanc new 2012-03-08T05:38:08-0500 2012-03-08T05:38:08-0500 "I experience Memory Leaks while using db.plt with postgresql. Checked using racket 5.2 on FreeBSD and Racket 5.1.3 on Debian wheezy. Test-Program: {{{ #lang racket/base (require (prefix-in db: (planet ryanc/db:1:4))) (define pgc (db:postgresql-connect #:user ""ebus"" #:database ""ebus"" #:password ""ebus"" #:socket ""/tmp/.s.PGSQL.5432""));; or #:server - no difference (define (pgc-test) (db:query-value pgc ""SELECT 1"")) (let loop () (let ([x (pgc-test)]) (loop))) }}} Memory usage grows with the number of database querys (more querys -> grows faster) until the process die. As a workaround i'm using synx/libpq right now, but i would db.plt because it looks more mature and uses the postgresql wire-protocol instead of FFI bindings. --- Another smaller issue i ran into: FreeBSD is not marked as a supported platform for socket-connections." yvesf-racket@… 3 Milestone 415 bug in firmata.scrbl xtofs/firmata.plt defect xtofs new 2012-04-12T19:23:34-0400 2012-04-12T19:23:34-0400 "i just tried running this: #lang racket (require (planet xtofs/firmata:1:0/firmata)) and i got this: defproc: duplicate argument names in prototype for set-pin-mode!: (number? number?) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/xtofs/firmata.plt/1/0/firmata.scrbl raco setup: defproc: duplicate argument names in prototype for set-pin-mode!: (number? number?) i'm on ubuntu 11.10 64 bit" ozzloy@… 3 Milestone 421 static-page won't load for 5.2.1 dherman/static-page.plt defect dherman new 2012-05-16T17:17:00-0400 2012-05-16T17:17:00-0400 "> A new problem report is waiting at >  http://bugs.racket-lang.org/query/?cmd=view&pr=12770 > > Reported by Danny Heap for release: 5.2.1 > > *** Description: > The require statement from the documentation doesn't install the package. > > #lang racket > (require (planet dherman/static-page:1:0)) > > ; produces... > expand: unbound identifier in module > expand: unbound identifier in module > raco setup: error: during making for /dherman/static-page.plt/1/0 (static-page) > raco setup:   expand: unbound identifier in module > raco setup: error: during Building docs for /home/heap/.racket/planet/300/5.2.1/cache/dherman/static-page.plt/1/0/static-page.scrbl > raco setup:   expand: unbound identifier in module > . .racket/planet/300/5.2.1/cache/dherman/static-page.plt/1/0/main.ss:44:15: expand: unbound identifier in module in: normalize-response >> > > *** Environment: > unix ""Linux heap-laptop 2.6.32-41-generic #88-Ubuntu SMP Thu Mar 29 13:08:43 UTC 2012 i686 GNU/Linux"" (i386-linux/3m) (get-display-depth) = 32 > Human Language: english > (current-memory-use) 173484460 > Links: (links) = (); (links #:user? #f) = (); (links #:root? #t) = (); (links #:user? #f #:root? #t) = () > > > Collections: > (""/home/heap/.racket/5.2.1/collects"" >  (""info-domain"" ""cpsc110-shared-buffer"")) > (""/usr/local/racket/collects"" >  (""info-domain"" ""macro-debugger"" ""stepper"" ""picturing-programs"" ""typed-scheme"" ""mred"" ""mysterx"" ""compiler"" ""r6rs"" ""mzcom"" ""slatex"" ""unstable"" ""trace"" ""raco"" ""texpict"" ""config"" ""html"" +""schemeunit"" ""gui-debugger"" ""redex"" ""2htdp"" ""net"" ""combinator-parser"" ""reader"" ""frtime"" ""db"" ""tex2page"" ""openssl"" ""racklog"" ""planet"" ""scribble"" ""htdp"" ""teachpack"" ""datalog"" ""s-exp"" +""file"" ""algol60"" ""mrlib"" ""syntax"" ""rnrs"" ""test-engine"" ""slideshow"" ""xrepl"" ""make"" ""plot"" ""mzscheme"" ""scheme"" ""string-constants"" ""eopl"" ""images"" ""embedded-gui"" ""rackunit"" ""version"" +""test-box-recovery"" ""racket"" ""r5rs"" ""lazy"" ""mzlib"" ""typed"" ""browser"" ""plai"" ""srfi"" ""swindle"" ""drracket"" ""launcher"" ""deinprogramm"" ""dynext"" ""lang"" ""games"" ""scribblings"" ""web-server"" +""at-exp"" ""errortrace"" ""ffi"" ""scriblib"" ""sgl"" ""hierlist"" ""help"" ""icons"" ""data"" ""defaults"" ""xml"" ""typed-racket"" ""preprocessor"" ""syntax-color"" ""setup"" ""drscheme"" ""wxme"" ""framework"" +""parser-tools"" ""profile"" ""readline"" ""graphics"")) > > Computer Language: ((""Determine language from source"") (#(#t print mixed-fraction-e #f #t debug) (default) #() ""#lang racket\n"" #t #t)) > " heap@… 3 Milestone 427 Subquotes break the csv-reader neil/csv.plt defect neil new 2012-05-21T14:41:00-0400 2012-05-21T14:41:00-0400 "Something like DATUM1|DATUM2 ""A \""X\""""|123 breaks the reader with the message: %csv:make-portreader/positional: Junk after close of quoted field: #\X" ebellani@… 3 Milestone 433 install complains soegaard/sicp.plt defect soegaard new 2012-05-26T14:46:34-0400 2012-05-26T14:46:34-0400 "Welcome to DrRacket, version 5.2.1 [3m]. Language: R5RS; memory limit: 128 MB. include: read error (read: illegal use of open square bracket) free-identifier=?: expects type as 2nd argument, given: #; other arguments were: # raco setup: error: during making for /soegaard/sicp.plt/2/1 (SICP) raco setup: include: read error (read: illegal use of open square bracket) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl raco setup: free-identifier=?: expects type as 2nd argument, given: #; other arguments were: # include: read error (read: illegal use of open square bracket) raco setup: error: during making for /neil/sicp.plt/1/16 (SICP) raco setup: include: read error (read: illegal use of open square bracket) i've still been able to do the first section http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_sec_1.1 i got this when installing with these instructions http://planet.racket-lang.org/package-source/neil/sicp.plt/1/16/planet-docs/sicp/index.html#(part._installation) i'm not sure if it's soegaard's or neil's or the combination of the packages. i tried uninstalling by evaluating (uninstall-sicp). but when i installed again, this error did not happen." ozzloy 3 Milestone 434 install complains neil/sicp.plt defect neil new 2012-05-26T14:47:25-0400 2012-05-26T14:47:25-0400 "Welcome to DrRacket, version 5.2.1 [3m]. Language: R5RS; memory limit: 128 MB. include: read error (read: illegal use of open square bracket) free-identifier=?: expects type as 2nd argument, given: #; other arguments were: # raco setup: error: during making for /soegaard/sicp.plt/2/1 (SICP) raco setup: include: read error (read: illegal use of open square bracket) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl raco setup: free-identifier=?: expects type as 2nd argument, given: #; other arguments were: # include: read error (read: illegal use of open square bracket) raco setup: error: during making for /neil/sicp.plt/1/16 (SICP) raco setup: include: read error (read: illegal use of open square bracket) i've still been able to do the first section http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_sec_1.1 i got this when installing with these instructions http://planet.racket-lang.org/package-source/neil/sicp.plt/1/16/planet-docs/sicp/index.html#(part._installation) i'm not sure if it's soegaard's or neil's or the combination of the packages. i tried uninstalling by evaluating (uninstall-sicp). but when i installed again, this error did not happen." ozzloy 3 Milestone 449 JSON parser incorrectly parses '[' with newline and then ']' dherman/json.plt defect dherman new 2012-07-28T05:10:26-0400 2012-07-28T05:10:26-0400 "The following JSON fails to parse with ""read: expected: digits, got: ]"" {{{ [ { ""a"" : { ""b"": [ ]}}] }}} The following succeeds in parsing: {{{ [ { ""a"" : { ""b"": []}}] }}} So I'm guessing that the newline after the '[' is causing this (at least that's what my test case suggests). I've checked with a couple JSON validators (jsonlint.com being one) and this is indeed valid JSON (discovered from the blip.tv API if you're curious)." wjak56@… 3 Milestone 450 stty on mac doesn't support -F neil/charterm.plt defect neil new 2012-08-01T15:54:26-0400 2012-08-01T15:54:26-0400 On the mac, the stty command uses -f instead of -F as the option to specify the device. Actually, both of these forms are not standard posix which only supports stty operating on the stdin device. zarcher 3 Milestone 467 Doc bug in csv->list applied to a string neil/csv.plt defect neil new 2012-09-05T19:54:16-0400 2012-09-05T19:54:16-0400 "The documentation suggests that (csv->list ""abc"") is equivalent to (csv->list (make-csv-reader (open-input-string ""abc""))). However, it appears that csv->list called with a string actually parses the string as a csv-encoded value, rather than opening the file. I think the current behavior is reasonable, but it should be documented." clements@… 3 Milestone 470 can't bind commands to capital letters divascheme/divascheme.plt defect divascheme new 2012-09-18T21:37:59-0400 2013-01-20T22:55:49-0500 "Commands bound to shifted letters, such as Shift+B (push), Shift+M (unmark), and Shift+H (holder), insert a capital letter instead of running the command. As a temporary workaround I've changed my keybindings to use Meta+B, Meta+M, and g for these 3 commands. (Meta+H conflicts with ""Help"" in the menu bar.) If this isn't easily fixed it would be nice to at least change the default keybindings." dpercy@… 3 Milestone 487 i need rosetta aml/rosetta.plt defect aml new 2012-10-28T05:12:10-0400 2012-10-28T05:12:10-0400 i need rosetta vasco_garcia_@… 3 Milestone 490 Unable to install neil/csv.plt defect neil new 2012-10-29T22:22:20-0400 2012-10-29T22:22:20-0400 "Module installation becomes stuck re-rendering scribblings/main/user/start.scrbl and scribblings/main/user/search.scrbl Installation output: [snip] PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,711K(+9,944K)[+33,704K]; free 41,832K(-26,728K) 717ms @ 339333 GC[0:min] @ 292,793K(+5,702K)[+33,684K]; free 29,825K(-31,169K) 31ms @ 340175 GC[0:min] @ 298,487K(+4,680K)[+33,684K]; free 21,606K(-32,486K) 47ms @ 340331 GC[0:min] @ 310,978K(+4,925K)[+33,684K]; free 26,410K(-32,170K) 63ms @ 340518 GC[0:min] @ 320,589K(+4,850K)[+33,684K]; free 26,536K(-32,488K) 63ms @ 340721 GC[0:min] @ 327,820K(+5,107K)[+33,684K]; free 28,490K(-32,202K) 47ms @ 340893 GC[0:MAJ] @ 307,153K(+30,190K)[+33,696K]; free 47,283K(-6,323K) 734ms @ 340986 PLaneT: raco setup: re-rendering: scribblings/main/user/search.scrbl GC[0:MAJ] @ 293,770K(+5,365K)[+33,692K]; free 33,237K(-31,253K) 733ms @ 341860 GC[0:min] @ 295,134K(+4,513K)[+33,680K]; free 29,096K(-32,296K) 32ms @ 342702 GC[0:min] @ 302,471K(+4,856K)[+33,680K]; free 22,707K(-32,051K) 62ms @ 342874 GC[0:min] @ 313,944K(+5,415K)[+33,680K]; free 28,197K(-31,653K) 47ms @ 343077 GC[0:min] @ 320,368K(+4,943K)[+33,680K]; free 28,986K(-32,250K) 47ms @ 343233 GC[0:min] @ 324,842K(+4,693K)[+33,684K]; free 30,225K(-32,529K) 78ms @ 343467 GC[0:min] @ 328,279K(+4,456K)[+33,704K]; free 32,509K(-32,765K) 62ms @ 343701 GC[0:min] @ 328,599K(+4,456K)[+33,704K]; free 32,170K(-32,746K) 47ms @ 343919 GC[0:min] @ 329,195K(+4,436K)[+33,704K]; free 32,029K(-32,797K) 47ms @ 344122 GC[0:min] @ 329,932K(+4,467K)[+33,704K]; free 32,128K(-32,768K) 47ms @ 344325 GC[0:min] @ 330,697K(+4,598K)[+33,704K]; free 32,154K(-32,730K) 47ms @ 344512 GC[0:min] @ 331,309K(+4,562K)[+33,704K]; free 32,082K(-32,850K) 62ms @ 344715 GC[0:min] @ 331,992K(+4,647K)[+33,704K]; free 32,056K(-32,696K) 47ms @ 344933 GC[0:min] @ 332,701K(+4,578K)[+33,704K]; free 32,055K(-32,759K) 47ms @ 345136 GC[0:min] @ 333,668K(+4,699K)[+33,704K]; free 32,079K(-32,783K) 47ms @ 345323 GC[0:min] @ 334,351K(+4,720K)[+33,704K]; free 32,099K(-32,803K) 47ms @ 345526 GC[0:min] @ 335,017K(+4,758K)[+33,704K]; free 32,144K(-32,784K) 47ms @ 345729 GC[0:min] @ 335,639K(+4,776K)[+33,704K]; free 32,111K(-32,751K) 47ms @ 345932 GC[0:min] @ 336,292K(+4,763K)[+33,704K]; free 32,175K(-32,687K) 47ms @ 346119 GC[0:min] @ 336,883K(+4,684K)[+33,704K]; free 32,316K(-32,828K) 31ms @ 346291 GC[0:min] @ 337,333K(+4,746K)[+33,704K]; free 32,359K(-32,743K) 16ms @ 346462 GC[0:min] @ 337,740K(+4,723K)[+33,704K]; free 32,243K(-32,755K) 47ms @ 346618 GC[0:min] @ 338,263K(+4,712K)[+33,704K]; free 32,104K(-32,744K) 47ms @ 346821 GC[0:min] @ 339,437K(+4,818K)[+33,704K]; free 32,067K(-32,771K) 47ms @ 347039 GC[0:min] @ 340,136K(+4,823K)[+33,704K]; free 32,108K(-32,812K) 47ms @ 347242 GC[0:min] @ 340,794K(+4,869K)[+33,704K]; free 32,110K(-32,750K) 47ms @ 347445 GC[0:min] @ 341,449K(+4,854K)[+33,704K]; free 32,086K(-32,790K) 47ms @ 347648 GC[0:min] @ 342,129K(+4,878K)[+33,704K]; free 32,075K(-32,779K) 62ms @ 347851 GC[0:min] @ 342,820K(+4,891K)[+33,704K]; free 32,113K(-32,753K) 47ms @ 348069 GC[0:min] @ 343,471K(+4,880K)[+33,704K]; free 32,126K(-32,830K) 47ms @ 348256 GC[0:min] @ 344,111K(+4,944K)[+33,704K]; free 32,061K(-32,765K) 47ms @ 348459 GC[0:min] @ 344,814K(+4,945K)[+33,704K]; free 32,117K(-32,757K) 47ms @ 348662 GC[0:min] @ 345,463K(+4,936K)[+33,704K]; free 32,095K(-32,735K) 47ms @ 348849 GC[0:min] @ 346,134K(+4,905K)[+33,704K]; free 32,093K(-32,797K) 47ms @ 349052 GC[0:min] @ 346,806K(+4,937K)[+33,704K]; free 32,112K(-32,816K) 62ms @ 349239 GC[0:min] @ 347,460K(+4,987K)[+33,704K]; free 32,098K(-32,674K) 47ms @ 349457 GC[0:min] @ 348,118K(+4,905K)[+33,704K]; free 32,155K(-32,795K) 62ms @ 349645 GC[0:min] @ 348,729K(+4,934K)[+33,704K]; free 32,118K(-32,758K) 62ms @ 349832 GC[0:min] @ 350,388K(+5,068K)[+33,704K]; free 32,089K(-32,793K) 62ms @ 350066 GC[0:min] @ 351,064K(+5,095K)[+33,704K]; free 32,100K(-32,740K) 62ms @ 350269 GC[0:min] @ 352,050K(+5,069K)[+33,708K]; free 31,150K(-32,814K) 47ms @ 350471 GC[0:MAJ] @ 323,011K(+35,836K)[+33,716K]; free 55,465K(-745K) 717ms @ 350534 PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,815K(+9,904K)[+33,704K]; free 41,794K(-26,690K) 718ms @ 351641 GC[0:min] @ 292,963K(+5,596K)[+33,684K]; free 29,854K(-31,198K) 32ms @ 352499 GC[0:min] @ 298,618K(+4,613K)[+33,684K]; free 21,572K(-32,516K) 47ms @ 352640 GC[0:min] @ 311,135K(+4,896K)[+33,684K]; free 26,429K(-32,189K) 62ms @ 352827 GC[0:min] @ 320,739K(+4,828K)[+33,684K]; free 26,539K(-32,491K) 47ms @ 353014 GC[0:min] @ 327,965K(+5,090K)[+33,684K]; free 28,518K(-32,166K) 63ms @ 353170 GC[0:MAJ] @ 307,270K(+30,137K)[+33,696K]; free 47,473K(-6,385K) 733ms @ 353311 PLaneT: raco setup: re-rendering: scribblings/main/user/search.scrbl GC[0:MAJ] @ 293,696K(+5,375K)[+33,692K]; free 33,037K(-31,245K) 717ms @ 354200 GC[0:min] @ 295,259K(+4,516K)[+33,680K]; free 29,095K(-32,359K) 47ms @ 355042 GC[0:min] @ 302,368K(+4,895K)[+33,680K]; free 22,480K(-32,080K) 63ms @ 355229 GC[0:min] @ 314,054K(+5,497K)[+33,680K]; free 28,181K(-31,637K) 31ms @ 355432 GC[0:min] @ 320,507K(+4,996K)[+33,680K]; free 28,975K(-32,239K) 46ms @ 355573 GC[0:min] @ 324,993K(+4,734K)[+33,684K]; free 30,258K(-32,562K) 63ms @ 355822 GC[0:min] @ 328,397K(+4,530K)[+33,704K]; free 32,505K(-32,761K) 63ms @ 356056 GC[0:min] @ 328,721K(+4,526K)[+33,704K]; free 32,171K(-32,747K) 62ms @ 356259 GC[0:min] @ 329,316K(+4,507K)[+33,704K]; free 32,032K(-32,736K) 47ms @ 356477 GC[0:min] @ 330,047K(+4,480K)[+33,704K]; free 32,124K(-32,828K) 47ms @ 356680 GC[0:min] @ 330,817K(+4,670K)[+33,704K]; free 32,151K(-32,727K) 47ms @ 356883 GC[0:min] @ 331,432K(+4,631K)[+33,704K]; free 32,082K(-32,722K) 47ms @ 357086 GC[0:min] @ 332,115K(+4,588K)[+33,704K]; free 32,056K(-32,824K) 62ms @ 357289 GC[0:min] @ 332,824K(+4,647K)[+33,704K]; free 32,054K(-32,758K) 47ms @ 357507 GC[0:min] @ 333,791K(+4,768K)[+33,704K]; free 32,081K(-32,785K) 47ms @ 357710 GC[0:min] @ 334,476K(+4,787K)[+33,704K]; free 32,106K(-32,746K) 62ms @ 357897 GC[0:min] @ 335,136K(+4,767K)[+33,704K]; free 32,152K(-32,728K) 47ms @ 358100 GC[0:min] @ 335,748K(+4,731K)[+33,704K]; free 32,109K(-32,813K) 46ms @ 358303 GC[0:min] @ 336,405K(+4,778K)[+33,704K]; free 32,169K(-32,745K) 32ms @ 358505 GC[0:min] @ 337,002K(+4,757K)[+33,704K]; free 32,313K(-32,761K) 31ms @ 358677 GC[0:min] @ 337,455K(+4,752K)[+33,704K]; free 32,349K(-32,797K) 31ms @ 358849 GC[0:min] @ 337,871K(+4,784K)[+33,704K]; free 32,234K(-32,746K) 47ms @ 359020 GC[0:min] @ 338,403K(+4,764K)[+33,704K]; free 32,109K(-32,749K) 47ms @ 359223 GC[0:min] @ 339,572K(+4,875K)[+33,704K]; free 32,067K(-32,771K) 47ms @ 359441 GC[0:min] @ 340,262K(+4,889K)[+33,704K]; free 32,104K(-32,808K) 47ms @ 359644 GC[0:min] @ 340,924K(+4,931K)[+33,704K]; free 32,111K(-32,751K) 47ms @ 359847 GC[0:min] @ 341,579K(+4,916K)[+33,704K]; free 32,087K(-32,727K) 47ms @ 360034 GC[0:min] @ 342,258K(+4,877K)[+33,704K]; free 32,076K(-32,780K) 47ms @ 360237 GC[0:min] @ 342,948K(+4,891K)[+33,704K]; free 32,113K(-32,817K) 62ms @ 360440 GC[0:min] @ 343,601K(+4,942K)[+33,704K]; free 32,129K(-32,769K) 47ms @ 360658 GC[0:min] @ 344,237K(+4,946K)[+33,704K]; free 32,061K(-32,765K) 47ms @ 360861 GC[0:min] @ 344,942K(+4,945K)[+33,704K]; free 32,117K(-32,757K) 47ms @ 361064 GC[0:min] @ 345,591K(+4,936K)[+33,704K]; free 32,094K(-32,798K) 46ms @ 361267 GC[0:min] @ 346,263K(+4,968K)[+33,704K]; free 32,092K(-32,732K) 47ms @ 361469 GC[0:min] @ 346,936K(+4,935K)[+33,704K]; free 32,098K(-32,866K) 47ms @ 361672 GC[0:min] @ 347,598K(+5,041K)[+33,704K]; free 32,094K(-32,670K) 47ms @ 361875 GC[0:min] @ 348,270K(+4,945K)[+33,704K]; free 32,168K(-32,808K) 63ms @ 362062 GC[0:min] @ 348,867K(+4,988K)[+33,704K]; free 32,121K(-32,761K) 46ms @ 362281 GC[0:min] @ 350,536K(+5,111K)[+33,704K]; free 32,102K(-32,742K) 62ms @ 362499 GC[0:min] @ 351,200K(+5,087K)[+33,704K]; free 32,101K(-32,805K) 63ms @ 362686 GC[0:min] @ 352,184K(+5,127K)[+33,708K]; free 31,206K(-32,742K) 47ms @ 362889 GC[0:MAJ] @ 322,066K(+36,845K)[+33,716K]; free 54,439K(+280K) 718ms @ 362967 PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,889K(+9,894K)[+33,704K]; free 41,666K(-26,754K) 734ms @ 364121 GC[0:min] @ 293,157K(+5,658K)[+33,684K]; free 29,839K(-31,183K) 47ms @ 364948 GC[0:min] @ 298,838K(+4,649K)[+33,684K]; free 21,555K(-32,499K) 63ms @ 365104 GC[0:min] @ 311,379K(+4,908K)[+33,684K]; free 26,426K(-32,186K) 62ms @ 365307 GC[0:min] @ 320,991K(+4,832K)[+33,684K]; free 26,512K(-32,464K) 47ms @ 365510 GC[0:min] @ 328,244K(+5,067K)[+33,684K]; free 28,566K(-32,214K) 62ms @ 365666 GC[0:MAJ] @ 307,501K(+30,162K)[+33,696K]; free 47,406K(-6,382K) 733ms @ 365791 [snip] This never terminates. Installation on Racket 5.3 Windows x64." simon.haines@… 3 Milestone 501 Problem finding files - package setup/internal links dherman/network.plt defect dherman new 2012-12-16T09:36:06-0500 2012-12-16T09:36:06-0500 "I cannot get a simple program using the network package to work. There seems to be a problem with the package setup or internal linking of files. Using: #lang racket (require (planet dherman/network:1:0/network)) (current-network-adapters) I get: open-input-file: cannot open input file path: c:\home\racketclass\network\windows.rkt system error: The system cannot find the file specified.; errno=2 Using: #lang racket (require (planet dherman/network:1:0/network)) (require (planet dherman/network:1:0/windows)) (current-network-adapters) I get: module: identifier already imported from a different source in: current-network-adapters (planet dherman/network:1:0/windows) (planet dherman/network:1:0/network) Using: #lang racket (require (planet dherman/network:1:0)) (current-network-adapters) I get: C:\..\snipfile.rkt:324:2: open-input-file: cannot open input file path: C:\...\cache\dherman\network.plt\1\0\main.rkt system error: The system cannot find the file specified.; errno=2 " khardy 3 Milestone 507 Font lock doesn't work for subsubsubsection neil/scribble-emacs.plt defect neil new 2013-01-23T00:41:52-0500 2013-01-24T22:01:06-0500 "I have created a patch for this. --- a/.emacs.d/emacs-lisp/scribble.el +++ b/.emacs.d/emacs-lisp/scribble.el @@ -283,11 +283,11 @@ For other licenses and consulting, please contact the author."") ...) part-start? scribble-subsubsection-heading-face] - [sub*section (,@scribble-heading-form-args - [p - pre-content? -] - ...) - part-start? - scribble-sub*section-heading-face] + [subsubsub+section (,@scribble-heading-form-args + [p - pre-content? -] + ...) + part-start? + scribble-sub*section-heading-face] [author ([p - content? -]) block? nil] @@ -711,9 +711,8 @@ For other licenses and consulting, please contact the author."") (,(if face 6 5) 'scribble-curly-brace-face nil t)))) (let ((face-to-namerxs-alist '())) (mapc (lambda (form) - (let* ((namerx (regexp-quote - (symbol-name (scribble-get-form-name - form)))) + (let* ((namerx (symbol-name (scribble-get-form-name + form))) (face (scribble-get-form-face form)) (pair (assq face face-to-namerxs-alist))) (if pair " highfly22@… 3 Milestone 518 Doesnt' run kazzmir/planet-manager.plt defect kazzmir new 2013-03-23T06:46:40-0400 2013-03-23T06:46:40-0400 "monk@veles:~/languages/racket$ racket Welcome to Racket v5.2.1. > (require (planet kazzmir/planet-manager:1:1/gui)) /home/monk/.racket/planet/300/5.2.1/cache/kazzmir/planet-manager.plt/1/1/planet-utils.ss:5:49: only-in: identifier `pkg-spec->full-pkg-spec' not included in nested require spec at: planet/resolver in: (only-in planet/resolver pkg-spec->full-pkg-spec get-package-from-server pkg-promise->pkg) > " kalimehtar@… 3 Milestone 534 Fixing the test files shawnpresser/racket-unix-sockets.plt defect shawnpresser new 2013-04-17T09:27:13-0400 2013-04-17T09:27:13-0400 "Thanks a lot for this package, it will be very helpful. The tests don't work properly as they are. In particular, when installing the package from PLaneT, names tend to be quite long, raising the 100 characters long error. Placing the socket in racket's pref-dir should be better. Also, all racket files should begin with the ""#lang"" line. Usually ""#lang racket"" or ""#lang racket/base"" for non-GUI programs. Last, it is usually advised that the test files should not reference the PLaneT package, but the updir main.rkt file instead. Maybe there should also be a note in the readme telling to avoid testing the listener in DrRacket, otherwise a crash may be expected ;) Fixes for the test files: -- test-connecting.rkt: #lang racket (require ""../main.rkt"") (define-values (i o) (unix-socket-connect (build-path (find-system-path 'pref-dir) ""tmp-socket""))) (display ""hello"" o) -- test-listenning.rkt: #lang racket (require ""../main.rkt"") (define (serve path) (define listener (unix-socket-listen path 5)) (printf ""listening: ~a"" listener) (newline) (define (loop) (accept-and-handle listener) (loop)) (loop)) (define (accept-and-handle listener) (define-values (i o) (unix-socket-accept listener)) (printf ""accepted: ~a"" listener) (newline) (display (read-line i)) (newline)) (serve (build-path (find-system-path 'pref-dir) ""tmp-socket"")) " orseau 3 Milestone 539 Problem installing Whalesong dyoo/whalesong.plt defect dyoo new 2013-05-15T17:02:28-0400 2013-05-15T17:02:28-0400 "I've just installed Whalesong for the first time. When I try to run it, I get the following error message: Library/Racket/planet/300/5.3.4/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15 at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules) in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)) The same happens when I run raco setup." kruckman@… 3 Milestone 1114 Bad typecheck in map, foldl, foldr krhari/pfds.plt defect krhari new 2013-07-06T11:44:31-0400 2013-07-06T11:44:31-0400 "(require (planet krhari/pfds:1:5/catenablelist)) > (map (λ (+ x 0)) (list 1 3 4)) . Type Checker: The type of list-map cannot be converted to a contract in: (map (λ (+ x 0)) (list 1 3 4)) > (foldl + (list 1 3 4)) . Type Checker: The type of list-foldl cannot be converted to a contract in: (foldl + (list 1 3 4)) > (foldr + (list 1 3 4)) . Type Checker: The type of list-foldr cannot be converted to a contract in: (foldr + (list 1 3 4)) " anonymous 3 Milestone 1462 transform-painter fails on non-rectangle configuration soegaard/sicp.plt defect soegaard new 2013-08-10T12:02:28-0400 2013-08-10T12:02:28-0400 "As mentioned in the bible: (define squash-inwards (transform-painter (make-vect 0 0) (make-vect 0.65 0.35) (make-vect 0.35 0.65))) (paint (squash-inwards einstein)) this tries to paint einstein in a parallelogram, but DrRacket complains ""vector-ref: expects a vector as 1st argument, given 0""" i@… 3 Milestone 1790 charterm event not ready when bytes are available neil/charterm.plt defect neil new 2014-09-07T14:50:54-0400 2014-09-07T14:50:54-0400 I have constructed a small program which causes the (current-charterm) event not to be ready for synchronization, even while (charterm-byte-ready?) produces #t. The behaviour seems to somehow be linked to calling (charterm-screen-size). It can be induced by running my program and mashing keys as fast as possible (see also the comment block at the beginning of the program). b2coutts 3 Milestone 1791 charterm event not ready when bytes are available neil/charterm.plt defect neil new 2014-09-07T18:54:53-0400 2014-09-07T18:54:53-0400 "While attempting to sync on the charterm event with a timeout, by mashing keys very quickly, it is possible to put charterm in a state where the charterm event is not ready for synchronization, and yet (charterm-byte-ready?) produces #t. Strangely, this only occurs when (charterm-screen-size) is called after sync/timeout. Attached is a small program that causes this behaviour; it can be induced by simply mashing keys as fast as possible. See the comment at the beginning of the program." b2coutts 3 Milestone 1792 charterm event not ready when bytes are available neil/charterm.plt defect neil new 2014-09-07T18:55:19-0400 2014-09-07T18:55:19-0400 "While attempting to sync on the charterm event with a timeout, by mashing keys very quickly, it is possible to put charterm in a state where the charterm event is not ready for synchronization, and yet (charterm-byte-ready?) produces #t. Strangely, this only occurs when (charterm-screen-size) is called after sync/timeout. Attached is a small program that causes this behaviour; it can be induced by simply mashing keys as fast as possible. See the comment at the beginning of the program." b2coutts 3 Milestone 1794 Channel mask should be 0xf instead of 0x7 clements/midi.plt defect clements new 2014-11-16T09:48:28-0500 2014-11-16T09:48:28-0500 The bit mask used for extracting the channel number from the midi should be 0xf I believe. kashyap 3 Milestone 1802 Scribble Emacs Mode Installation Issue. neil/scribble-emacs.plt defect neil new 2015-09-18T14:13:20-0400 2015-09-18T14:13:20-0400 "The installation instructions in the Racket Scribble Emacs Mode documentation didn't work for me. > (require (planet neil/scribble-emacs:1:2/install-in-my-emacs)) crashed because the regexp on line 55 didn't match. I changed the regexp to the following: (regexp-match #rx""^([0-9]+-..-..T)(..:..:..)$"" and that worked. " jhemann 3 Milestone 29 memoization is not thread-safe dherman/memoize.plt enhancement dherman new 2008-09-03T10:38:20-0400 2008-09-03T10:38:20-0400 It would be good to at least have a synchronized version of the memoization operations. dherman 3 Milestone 31 make sets sequences dherman/set.plt enhancement dherman new 2008-09-03T11:50:34-0400 2008-09-03T11:50:34-0400 "Mark Engelberg wrote: > I thought you might be interested to know that if you add the > following to set.plt, then sets become compatible with sequences and > can be used inside of for loops. {{{ (define (set->seq s) (make-do-sequence (lambda () (let-values ([(more? next) (sequence-generate (in-hash-keys (set-elts s)))]) (values (λ (i) (next)) (λ (i) (more?)) (more?) (lambda (i) i) (lambda (v) #t) (lambda (i v) #t)))))) (define-struct set (elts) #:property prop:custom-write (lambda (set port write?) (write-hash ""set"" (set-elts set) port write?)) #:property prop:sequence set->seq) }}} " dherman 3 Milestone 32 optional and keyword args dherman/memoize.plt enhancement dherman new 2008-09-03T13:00:44-0400 2008-09-03T13:00:44-0400 Optional and keyword args should be handled as well. dherman 3 Milestone 34 Function.prototype.toString should produce source dherman/javascript.plt enhancement dherman new 2008-09-08T12:51:58-0400 2008-09-08T12:51:58-0400 The {{{toString}}} method for functions should produce their source. dherman 3 Milestone 56 parameter for top-level let semantics dherman/javascript.plt enhancement dherman new 2008-09-10T06:42:48-0400 2008-09-10T06:42:48-0400 "At top level, we've argued back and forth about whether {{{let}}} should behave the same as {{{var}}}. Make this a parameter. Notice that with {{{use lexical scope}}} (see #54) there's less possible distinction. Except for the question of whether a top-level {{{let}}} shadows a top-level {{{var}}}." dherman 3 Milestone 81 make prophecies sequences dherman/prophecy.plt enhancement dherman new 2008-09-23T20:24:50-0400 2008-09-23T20:24:50-0400 Similar to #31, release a new version of prophecy.plt with a {{{prophecy->sequence}}} procedure and perhaps a {{{for/prophecy}}}? dherman 3 Milestone 116 long startup time vegashacker/leftparen.plt enhancement vegashacker new 2008-11-03T11:22:01-0500 2008-11-03T11:22:01-0500 "Submitted be Jean: ""server is very long to start (around 1 mn)""" vegashacker 3 Milestone 143 Request for docs on interaction model vyzo/gnuplot.plt enhancement vyzo new 2008-12-24T19:35:06-0500 2008-12-24T19:35:06-0500 "It's unclear from the docs how what the model is for an interaction between DrScheme and gnuplot. It appears that there's some kind of stateful sequence where you add pieces of data and then call plot, but I'm not sure whether it gets reset when you plot, etc. The docs on gnuplot-plot are also less helpful than they could be; it appears from the way the docs are structured that calling 'gnuplot-plot' is supposed to open a window; it doesn't, on my machine, but I can't tell whether this is a doc bug or a gnuplot.plt bug (or whether I just need to update DrScheme, which I'm trying now)." clements@… 3 Milestone 154 schememodlang/this-package + defmodulelang/this-package cce/scheme.plt enhancement cce new 2009-03-17T16:58:52-0400 2009-03-17T16:58:52-0400 These would be nice anonymous 3 Milestone 158 Feature request: lang/this-package cce/scheme.plt enhancement cce new 2009-03-22T21:06:03-0400 2009-03-22T21:06:03-0400 "I need to be able to document PLT languages with planet module paths. I have a private implementation that looks like this: {{{ (define-syntax (lang/this-package stx) (syntax-case stx () [(sp) (quasisyntax/loc stx (SCHEME (UNSYNTAX (hash-lang)) planet #,(build-planet-id stx #f)))] [(sp name) (identifier? #'name) (quasisyntax/loc stx (SCHEME (UNSYNTAX (hash-lang)) planet #,(build-planet-id stx #'name)))])) }}} But I'm now using your package for defmodule/this-package etc, and it would be good to be able to use your package for everything." dherman 3 Milestone 160 Port to typed-scheme schematics/schemeunit.plt enhancement schematics accepted 2009-03-25T08:10:30-0400 2009-03-25T08:10:47-0400 Rewrite the core of SchemeUnit in Typed Scheme. schematics 3 Milestone 191 SchemeUnit checks for syntax errors schematics/schemeunit.plt enhancement schematics new 2009-07-02T12:02:31-0400 2009-07-02T12:02:31-0400 "Two checks: - fails if a macro expansion yields a syntax error - fails if a macro expansion does not yield a syntax error" schematics 3 Milestone 276 Start function doesn't allow for changing fps kazzmir/allegro.plt enhancement kazzmir new 2010-04-01T20:02:45-0400 2010-04-01T20:02:45-0400 The start function from game module doesn't allow the user to use a different fps from 30. It would be nice if it was a world field or something like that. almeidaraf@… 3 Milestone 277 World object doesn't export get-objects kazzmir/allegro.plt enhancement kazzmir new 2010-04-03T12:45:20-0400 2010-04-03T12:45:20-0400 I think it would be helpful to be able to call get-objects on a World object, but that doesn't seem to be exported. Maybe it requires a (provide World) call? almeidaraf@… 3 Milestone 297 enhance define-datatype to handle #:property prop:equal+hash dherman/types.plt enhancement dherman new 2010-09-09T05:00:18-0400 2010-09-09T05:00:18-0400 "Hi Dave, I'm very fond of your define-datatype macro as it enables me to create abstract datatypes. Unfortunately I have to implement #:property prop:equal+hash in some cases where I use define-datatype. Would it be possible to enhance the macro for that? BTW I'm not sure if it's ok to create a ticket for this; it seemed better than writing a private mail. Many thanks in any case Sigrid " anonymous 3 Milestone 319 current-print is inactive neil/sicp.plt enhancement neil new 2011-01-24T15:12:04-0500 2011-01-24T15:12:04-0500 "Several of the SICP exercises expect current-print to be set up---they emphasize that expressions have values whether or not the programmer uses explicit output with (display) or (write). But the sicp package doesn't set up current-print. " bsniffen@… 3 Milestone 330 Unable to create unique indices jaymccarthy/mongodb.plt enhancement jaymccarthy accepted 2011-04-27T00:52:09-0400 2011-04-30T14:21:02-0400 "mongo ensureIndex requires two documents when creating unique indices. The current interface seems to only provide for one. i.e, db.things.ensureIndex({x : 1}, {unique : true}) does not seem to have a mongo equivalent " anurag@… 3 Milestone 500 "Request for adding parser combinator ""zero""" bzlib/parseq.plt enhancement bzlib new 2012-12-14T07:46:24-0500 2012-12-14T07:46:24-0500 "The library would benefit from having a parser combinator that succeeds if the parser given as a parameter fails. As far as I can tell, the implementation would be: (define (zero parser) (lambda (in) (let-values (((v in) ((literal parser) in))) ((if (failed? v) (return '()) fail) in))))" anonymous 3 Milestone 505 Implicit passing of monad argument toups/functional.plt enhancement toups new 2013-01-02T20:44:51-0500 2013-01-02T20:44:51-0500 It would be nice if there was a way by which the monad could be passed to mapm and other functions implicitly (within, say, a with-monad form) rather than needing to pass it explicitly. Sgeo 3 Milestone 506 Get and put toups/functional.plt enhancement toups new 2013-01-02T20:52:51-0500 2013-01-02T20:52:51-0500 "I think it would make sense to include get, put, and modify for the state monad, or perhaps call them state-get state-put state-modify. Could also make state-put and state-modify not return useful values, but not sure if there's a reason to do that. {{{ (define state-get (lambda (state) (state-doublet state state))) (define (state-put new-state) (lambda (old-state) (state-doublet new-state new-state))) (define (state-modify modifier) (lambda (old-state) (define result (modifier old-state)) (state-doublet result result))) }}}" Sgeo 3 Milestone 54 """use lexical scope"" pragma" dherman/javascript.plt task dherman new 2008-09-09T20:34:08-0400 2008-09-09T20:34:08-0400 "{{{ use lexical scope; }}}" dherman 3 Milestone 99 add an expansion phase to the compiler dherman/javascript.plt task dherman new 2008-10-11T22:23:34-0400 2008-10-11T22:23:34-0400 Everything that can be defined via desugaring should be implemented as a compiler macro. The compiler should include an expansion phase. There should be a special kind of `gensym' identifier that the expander recognizes. There should also be something to enforce referential transparency. dherman 3 Milestone 121 test infrastructure for different compilation modes dherman/javascript.plt task dherman new 2008-11-07T13:32:28-0500 2008-11-07T13:32:28-0500 Need to be able to test module evaluation, script evaluation, and interaction evaluation etc. dherman 3 Milestone 122 coverage for compiler tests dherman/javascript.plt task dherman new 2008-11-07T14:20:41-0500 2008-11-07T14:20:41-0500 Need tests for all the clauses in the compiler. dherman 3 Milestone 156 test-suite semantics change makes my code infinite loop schematics/schemeunit.plt task schematics accepted 2009-03-19T23:29:13-0400 2009-05-06T07:53:44-0400 "I was driving myself crazy trying to figure out why my Intel laptop was running my tests while my old Power Mac was taking forever to run them. Eventually I realized it was because my Power Mac had downloaded a more recent version of Scheme Unit. Consider the following: {{{ #lang scheme #; (require (planet schematics/schemeunit:3) (planet schematics/schemeunit:3/text-ui)) (require (planet ""main.ss"" (""schematics"" ""schemeunit.plt"" 3 (= 3))) (planet ""text-ui.ss"" (""schematics"" ""schemeunit.plt"" 3 (= 3)))) (define felixs-suite (test-suite """")) (set! felixs-suite (test-suite ""snoc"" felixs-suite (test-case ""test"" (check-equal? 1 1)))) (run-tests felixs-suite) }}} I use the pattern above (in a more complicated manner but abstracted under a macro) to incrementally construct a set of test cases whose evaluation will be delayed until I invoke {{{run-tests}}}. I can see in the Release Notes for version 3.4 that you say that you have changed things to allow ""arbitrary expressions"" in test suites. But I would claim that you have merely changed the set of allowable expressions, since my example worked better under the old semantics. The documentation should be improved to make this clearer. ---- In the meantime, can you tell me how you would achieve the effect I desire? (One way to think of the desired effect is like the Student Language's {{{check-expect}}} form, which delays invocation of the tests until the entire module body has been evaluated.) " pnkfelix@… 3 Milestone 281 Please consider using development links. ocorcoll/beanscheme.plt task ocorcoll new 2010-04-20T14:17:08-0400 2010-04-20T14:17:08-0400 "To the developer of beanscheme.plt, Your frequent updates of beanscheme.plt are understandable, as it allows you to test out each intermediate version of your software. However, I am sure it is a hassle to create, upload, and redownload your software; furthermore, it creates unnecessary posts on the planet-announce mailing list. I suggest that you read about ""development links"" which let you compile and test PLaneT packages on your own computer, uploading only when you need to publish code for other users. You can find documentation about development links here (this tinyurl.com address links to a specific page on docs.plt-scheme.org): http://tinyurl.com/PLaneT-development-links Thanks, and good luck with your PLT Scheme project! Carl Eastlund cce@ccs.neu.edu Ph.D. student Northeastern University" cce 4 Milestone 38 numbers are unfaithful to spec dherman/javascript.plt defect dherman new 2008-09-08T12:55:24-0400 2008-10-05T23:15:05-0400 Numbers are represented as Scheme bignums; they should be inexact IEEE754 double-precision floating point. And then there are all the Ecma conversions to integer and string throughout the semantics. dherman 4 Milestone 40 over-parenthesization in while-conditions dherman/javascript.plt defect dherman new 2008-09-08T13:11:51-0400 2008-09-08T13:11:51-0400 "{{{ (pretty-print (format-term (parse-source-element ""while (true) { }""))) }}} displays: {{{ while ((true)) { } }}}" dherman 4 Milestone 125 Docs link unavailable; .DS_Store file unnecessary zitterbewegung/uuid-v4.plt defect zitterbewegung new 2008-11-10T12:38:24-0500 2008-11-10T12:38:24-0500 It'd be great if you could get the docs link working. Nothing elaborate for documentation needed, I think--just an example showing the main way to use the library. Also, the .DS_Store file in the source for the library I believe is unnecessary. vegashacker 4 Milestone 179 c.plt fails to install correctly dherman/c.plt defect dherman needinfo 2009-05-15T08:05:29-0400 2009-05-17T21:03:43-0400 "I get on a REPL: > (require (planet dherman/c:3:1)) require: unknown module: 'program setup-plt: error: during Building docs for /home/pmatos/.plt-scheme/planet/300/4.1.5.3/cache/cce/scheme.plt/3/0/scribblings/main.scrbl setup-plt: require: unknown module: 'program" pocmatos@… 4 Milestone 181 example from docs declares IDistributeLists as a module cce/dracula.plt defect cce new 2009-05-28T21:18:45-0400 2009-05-28T21:18:45-0400 "This is bogosity in the Dracula documentation {{{ (module IDistributeLists (include IAssociative) (include ICommutative) (include IDistributive) (sig addall (xs)) (sig mulall (x ys)) (con addall/mulall-distributive (implies (proper-consp bs) (equal (mulop a (addall bs)) (addall (mulall a bs)))))) }}} If you are just cut-and-pasting from the ref manual, you get this error: {{{ . include: not valid outside interface in: (include iassociative) }}} " pnkfelix 4 Milestone 185 "Modular ACL2 reacts poorly to mixing of ""code"" and exports" cce/dracula.plt defect cce new 2009-06-01T22:35:24-0400 2009-06-01T22:35:24-0400 "Open up the following in Modular ACL2, select the module m, and click ""Admit All"" button {{{ (interface Ig (sig g (y))) (interface Ih (sig h (z))) (module m (defun g (y) (+ y y)) (defun h (z) (g z)) (export Ig) (in-theory (disable (:executable-counterpart h))) (export Ih)) }}} I get the following internal error from the guts of Dracula/DrScheme: {{{ highlight/save: start position 177 > end position 125 === context === /Users/pnkfelix/Library/PLT Scheme/planet/300/4.1.5/cache/cce/dracula.plt/8/2/drscheme/dracula-drscheme-tab.ss: }}} The obvious workaround is to put the {{{in-theory}}} invocation above the export. Note however that I think some people might have reason to write down {{{in-theory}}} invocations that effect the proof attempts for some signatures but not all of them. In any case the internal error is bad. " pnkfelix 4 Milestone 194 problem including this file from planeT synx/xml-maker.plt defect synx new 2009-07-26T15:17:09-0400 2009-07-26T15:17:09-0400 "This does not work (require (planet synx/xml-maker:1:0))I get the following error require: not a valid planet path; should be: (require (planet STRING (STRING STRING NUMBER NUMBER))) If I use the ""old"" way things are OK. DrScheme 4.2 under windows XP SP3." anonymous 4 Milestone 218 ^M end-of-lines orseau/lazy-doc.plt defect orseau new 2009-10-29T04:09:05-0400 2009-10-29T04:09:05-0400 It adds ^M end-of-lines in generated docs on Unix. orseau 4 Milestone 258 bogon in docs dherman/javascript.plt defect dherman new 2010-02-09T14:16:43-0500 2010-02-09T14:16:43-0500 "intro.html: Examples: > (eval-script ""print(40 + 2)"") link: module mismatch, probably from old bytecode whose dependencies have changed: variable not provided (directly or indirectly) from module: ""C:\Documents and Settings\dherman\My Documents\Subversion\planet\javascript\lang\lang.ss"" at source phase level: 0 in: script-begin > (require (planet dherman/pprint)) Reported by Eric Hanchrow." dherman 4 Milestone 274 mzsocket fails to install cleanly on OS X (10.5 and 10.6) vyzo/socket.plt defect vyzo new 2010-03-28T12:08:54-0400 2010-03-28T12:08:54-0400 "I am trying to install mzsocket with the planet line: (require (planet vyzo/socket:3:2)) It downloads it correctly but upon installation I get the following error on (10.5.8): /Users/eric/Library/PLT Scheme/planet/300/4.2.4/cache/vyzo/socket.plt/3/2/compiled/native/i386-macosx/3m/_socket.c: In function 'inet_address_to_vec': /Users/eric/Library/PLT Scheme/planet/300/4.2.4/cache/vyzo/socket.plt/3/2/compiled/native/i386-macosx/3m/_socket.c:1596: warning: pointer targets in passing argument 1 of 'scheme_make_sized_byte_string' differ in signedness except-in: identifier `socket-accept' not included in nested require spec setup-plt: error: during making for /vyzo/socket.plt/3/2 (mzsocket) setup-plt: except-in: identifier `socket-accept' not included in nested require spec in 10.6.2 I do not get the c errors but still the same three lines of scheme errors." endobson@… 4 Milestone 303 xpath-parser.ss problem w/ abbreviated xpath syntax lizorkin/sxml.plt defect lizorkin new 2010-10-14T15:46:43-0400 2010-10-14T15:46:43-0400 "Hi, I'm somewhat new and did not notice the ticket feature so I sent this report in yesterday to email addresses listed in the source code. I thought I'd resend it here again as it's probably better protocol: subject : bug in xpath-parser.ss First, thank you for all the OS PLT-Scheme -- errr I mean, Racket code. I love this stuff. There seams to be a problem with some special cases for abbreviated xpath syntax -- looks like absolute paths have problems with xpaths that start with one of : ""div"", ""mod"", ""and"", ""or"". (could be that I just don't understand the specs) examples to illustrate : ;;---------------------------------------------------- ;; Works : (let*([data '(*TOP* (*PI* xml ""version='1.0'"") (one ""111"" (two ""222"")))]) (list (eval-xpath ""/one"" data) (eval-xpath ""/one/two"" data))) ;;---------------------------------------------------- ;; Fails : (let*([data '(*TOP* (*PI* xml ""version='1.0'"") (div ""111"" (two ""222"")))]) (eval-xpath ""/div"" data)) ;; Error Message : ;; XPath/XPointer parser error: unexpected end of XPath ;; expression. Expected - NCName procedure application: expected ;; procedure, given: #f; arguments were: (*TOP* (*PI* ;; xml ""version='1.0'"") (div ""111"" (two ""222""))) ;;---------------------------------------------------- ;; Fails : (let*([data '(*TOP* (*PI* xml ""version='1.0'"") (div ""111"" (two ""222"")))]) (eval-xpath ""/div/two"" data)) ;; Error Message : ;; /: division by zero ;;------------------------------------------------------------------ ;; Works : (let*([data '(*TOP* (*PI* xml ""version='1.0'"") (div ""111"" (two ""222"")))]) (list (eval-xpath ""div/two"" data) (eval-xpath ""/child::div"" data) (eval-xpath ""/child::div/two"" data))) Davis Marshall " dmarshall207@… 4 Milestone 309 Parsing bug discovered neil/htmlprag.plt defect neil new 2010-11-15T00:49:05-0500 2010-11-15T00:49:05-0500 "The double-quote turns into the string """"" when you convert to HTML and back again in this example: (html->shtml (shtml->html '(FooBar (@ (quote ""\""'"")) ""DSFSDF""))) ==> (*TOP* (foobar (@ '"""'"") ""DSFSDF"")) " anonymous 4 Milestone 327 require error on installing cce/fasttest.plt defect cce new 2011-03-15T17:56:05-0400 2011-03-15T17:56:05-0400 "The fasttest.plt module gives this error under Racket 5.1 when downloading and installing the module: ------- require: unknown module: 'program raco setup: error: during Building docs for C:\Users\jjohnson.INTERNAL\AppData\Roaming\Racket\planet\300\5.1\cache\cce\scheme.plt\7\3\reference/manual.scrbl raco setup: require: unknown module: 'program ------- Aside from that, the build proceeds normally." jmj@… 4 Milestone 329 Frequency counting benchmark hash-for-each bug dvanhorn/ralist.plt defect dvanhorn new 2011-04-23T08:24:30-0400 2011-04-23T08:24:30-0400 " There is a bug in the hash table implementation of the frequency counting benchmark, which relies on hash-for-each to iterate through the result frequency count, but the problem specification is to print them in ascending order. But hash-for-each iterates in unspecified order. There is a failing test case that catches this." anonymous 4 Milestone 366 Revision to previous ticket kazzmir/vi.plt defect kazzmir new 2011-10-13T18:06:07-0400 2011-10-14T07:15:22-0400 I posted the ticket about insert-line-previous not working, but I realized that it only doesn't work if you are trying to use it when your cursor is on the first line of the document. It works if you are anywhere else in the document, but not at the very top. Sorry for any confusion this may have caused. If I knew a way to edit an existing ticket, I would have done so. anonymous 4 Milestone 488 Empty file reports wrong error dherman/json.plt defect dherman new 2012-10-29T07:39:27-0400 2012-10-29T07:39:27-0400 "When attempting to parse an empty JSON file, I found that instead of giving the correct error, which is ""read: unexpected EOF"", this module instead reports this error: char-whitespace?: contract violation expected: char? given: # This can fixed by changing the application of char-whitespace? in skip-whitespace to be ""(and (char? ch) (char-whitespace? ch))""." nculwell 4 Milestone 499 """not a procedure"" problem on Windows" clements/rsound.plt defect clements new 2012-12-10T15:54:43-0500 2012-12-10T15:54:43-0500 "Some of the example code from the docs produce a ""not a procedure"" problem on windows. For example the code below produces (highlighting lpf/dynamic in DrRacket): application: not a procedure; expected a procedure that can be applied to arguments given: # arguments...: # # Similar issue results on using sine-wave. Example program from docs pro #lang racket/base (require (planet clements/rsound:4:4)) (require (planet clements/rsound:4:=4/filter)) (define (control f) (+ 0.5 (* 0.2 (sin (* f 7.123792865282977e-005))))) (define (sawtooth f) (/ (modulo f 220) 220)) (play (signal->rsound 88200 (lpf/dynamic control sawtooth))) " khardy 4 Milestone 1488 ZeroMQ integration with Racket 5.3.2 on Windows broken in FFI-lib jaymccarthy/zeromq.plt defect jaymccarthy needinfo 2013-09-17T23:28:48-0400 2013-09-18T08:47:11-0400 "When I copy/paste the following code into DrRacket, it fails to work on my box (64 bit windows). More specifically the FFI-lib is unable to find libzmq.dll. #lang racket #| # Weather update client # Connects SUB socket to tcp://localhost:5556 # Collects weather updates and finds avg temp in zipcode |# (require (planet jaymccarthy/zeromq)) ; Socket to talk to server (define ctxt (context 1)) (define sock (socket ctxt 'SUB)) (printf ""Collecting updates from weather server...\n"") (socket-connect! sock ""tcp://localhost:5556"") ; Subscribe to zipcode, default is NYC, 10001 (define filter (command-line #:program ""wuclient"" #:args maybe-zip (match maybe-zip [(list zipcode) zipcode] [(list) ""10001""] [else (error 'wuclient ""Incorrect argument list"")]))) (set-socket-option! sock 'SUBSCRIBE (string->bytes/utf-8 filter)) ; Process 5 updates (define how-many 5) (define total-temp (for/fold ([tot 0]) ([i (in-range how-many)]) (match-define (regexp #rx""([0-9]+) (-?[0-9]+) ([0-9]+)"" (list _ zipcode temp humid)) (socket-recv! sock)) (+ tot (string->number (bytes->string/utf-8 temp))))) (printf ""Average temperature for zipcode '~a' was ~a\n"" filter (/ total-temp how-many)) (context-close! ctxt)" william.cushing@… 4 Milestone 41 implement read-only __proto__ dherman/javascript.plt enhancement dherman new 2008-09-08T14:01:54-0400 2008-09-08T14:01:54-0400 This could be implemented as a custom getter. I believe that's how Mozilla does it. dherman 4 Milestone 95 make a csv-reader that takes in an input-port neil/csv.plt enhancement neil new 2008-10-01T00:23:19-0400 2008-10-01T00:23:19-0400 "Based on the doc, the csv.ss currently exposes a csv-reader-maker functions that creates a closure over the input port for reading the csv data. While this is convenient for just reading csv files, it doesn't work well for composing different readers as it doesn't follow the scheme pattern of {{{ (read ) }}} . It would be nice to have a csv-reader-maker that'll make a procedures that takes an input-port so the reader can be composed. " yinso.chen@… 4 Milestone 124 rename require.ss to main.ss ryanc/require.plt enhancement ryanc new 2008-11-09T22:56:42-0500 2008-11-09T22:56:42-0500 If you rename require.ss to main.ss, then one could require this package with (require (planet ryanc/require)), which would be cool. dougorleans@… 4 Milestone 236 pict-* from scheme/slideshow should combine in the order of the clauses cce/scheme.plt enhancement cce new 2009-12-03T11:15:41-0500 2009-12-03T11:15:41-0500 "It would be nice if pict-* combined the subpicts in the order they were given, instead of the non-ghost pict always being combined first. That would be useful for #:combining via *-append instead of *-superimpose, and possibly other uses I haven't yet thought of. An small example program is below: #lang slideshow (require slideshow/code (planet cce/scheme:6:0/slideshow)) (staged [a b c] (slide (pict-cond #:combine vl-append [(= stage a) (item (code a))] [(= stage b) (item (code b))] [(= stage c) (item (code c))]))) (For such uses, allowing a #:ghost keyword that allows overriding of the ghosting behavior may also be useful. That way non-active parts can be greyed or cellophaned out instead.)" sstrickl@… 4 Milestone 275 please convert comments in xml file to *COMMENT* sxml nodes lizorkin/ssax.plt enhancement lizorkin new 2010-03-31T09:24:11-0400 2010-03-31T09:24:11-0400 "I've been trying to get an sxml view of an xml document including comments and tried with (require (planet lizorkin/sxml:2:1/sxml)) (sxml:document ""my_doc.xml"") (in mzscheme) I noticed however that sxml drops the comments and also shifts the order of attributes around, if I do it this way. I'd like to use sxml as a format for editing xml files, since it's a little less markup-heavy than xml, but I'd need to keep the comments and order of attributes (I put the most important attribute to the front, to make it stand out). The plain xml format needs to be the master format, since people who never heard of s-expressions are going to have to edit those files. I started diving into the source, but failed to see an obvious way to change that behaviour yet. SSAX-code.ss is impossible to read, so I had to download SSAX.scm from sourceforge. It looks like comments could be handled by a function similar to ssax:read-cdata-body. I appreciate if you could help me out with this, maybe add one or two optional parameters to sxml:document to convert comments into sxml comments and maintain the order of attributes. " friedel@… 4 Milestone 298 Better error messages for accessors krhari/pfds.plt enhancement krhari new 2010-09-12T01:37:33-0400 2010-09-12T01:37:33-0400 "Compare the quality of the error messages below. The PFDS library could do better. {{{ Welcome to DrRacket, version 5.0.1.3--2010-08-25(-/f) [3m]. Language: racket; memory limit: 512 MB. > (require (prefix-in pf: (planet krhari/pfds:1:4/skewbinaryrandomaccesslist))) > (require (prefix-in rk: racket)) > (pf:second (pf:list 1)) . . list-ref: given index out of bounds > (rk:second (rk:list 1)) . . second: expected argument of type ; given '(1) }}} " dvanhorn 4 Milestone 436 Reg Fixers bzlib/date-tz.plt enhancement bzlib new 2012-05-31T10:01:47-0400 2012-05-31T10:01:47-0400 "Here are the three most reliable Reg Fixers that I feel lead in the market currently. a) Registry mechanic: The Registry mechanic is designed to scan your laptop or computer for problems in the reg that slow down your laptop or computer and even crash it then helps you repair these mistakes with the many tools that it comes with. This software program can fix quite a few issues in the laptop or computer including missing help files, removed fonts, broken shortcuts and references to uninstalled software programs. The Registry mechanic additionally easily creates backups of the reg and has a Tuneup service option and a reg defragger that can enhance operating system boot services. There are of course a lot of other tools and elements that make this software program one of the most preferred by computer users. b) CyberDefender: If you want a Reg Fixer that doubles up as an antivirus software program and anti-malware, cyberdefender certainly is your kind of software program. I think that this software program deserves the top three position because it is stealthy and catches more malware and viruses than most other antivirus software programs. It uses Dual-core anti-malware technology to give sophisticated detection and prevention and has got the option of Link Patrol that will keep you safe from adware and spyware downloads along with phishing scams. CyberDefender comes with tons of options to customize it to your preferences and other enhancements on version 3.0 that were recommended by reviewers and users from the earlier versions 1 and 2. Info http://www.registrycleanerswatch.com/" isabellarodway@… 4 Milestone 1803 Have you thought about moving this to MELPA? (EOM) neil/scribble-emacs.plt enhancement neil new 2015-09-19T11:58:38-0400 2015-09-19T11:58:38-0400 jhemann 4 Milestone 36 implement JavaScript library fully dherman/javascript.plt task dherman new 2008-09-08T12:53:49-0400 2008-10-05T23:15:22-0400 The standard JavaScript library is stubbed but not fully implemented. dherman 4 Milestone 39 regular expressions aren't implemented dherman/javascript.plt task dherman new 2008-09-08T12:55:45-0400 2008-10-05T23:17:45-0400 Regular expressions are stubbed but not implemented. dherman 4 Milestone 176 same name as another planet package - confusing version numbering fjl/leftparen.plt task fjl new 2009-05-12T16:23:19-0400 2009-05-12T16:23:19-0400 "If this version is deprecated - please note it as such and remove the categories - that will remove it from the list of planet packages. " spdegabrielle@… 4 Milestone 238 note that you need to restart DrScheme after (require ...)-ing the projectmgr spdegabrielle/projectmgr.plt task spdegabrielle accepted 2009-12-23T12:28:15-0500 2009-12-29T06:25:08-0500 If you could add that to the docs, it might save someone the puzzled 5 minutes I just spent. :-) toddobryan@… 5 Milestone 195 prime? of neg. number doesn't end soegaard/math.plt defect soegaard new 2009-08-01T18:23:42-0400 2009-08-01T18:23:42-0400 "for example: (prime? -99) Obviously only an abs is needed." carolynoates@… 5 Milestone 313 Documentation bug: Incorrect SCRBL markup dutchyn/aspectscheme.plt defect dutchyn new 2010-12-04T17:15:08-0500 2010-12-04T17:15:08-0500 "@link{http://blahblah/} was used instead of @url{http://blahblah/}, resulting in blank links in the manual. " anonymous 5 Milestone 241 f4 toggle menu item does not show keyboard shortcut divascheme/divascheme.plt enhancement dyoo assigned 2009-12-29T06:57:41-0500 2011-08-11T01:38:30-0400 "It feels trivial, but little things help users. (Im running OS X) " spdegabrielle 5 Milestone 322 Racket v5.1 for/vector wmfarr/simple-matrix.plt enhancement wmfarr new 2011-02-23T11:43:17-0500 2011-02-23T11:43:17-0500 "Since version 5.1 of DrRacket the for/vector and for*/vector function is standard included in the #lang racket library. So when loading the simple-matrix module some errors are generated: ""module: identifier already imported from a different source"" Maybe removing the for/vector, for*/vector from the module isn't that a bad idea then? Furthermore the base one is a bit further extended: #lang racket: (for/vector (for-clause ...) body ...+) (for/vector #:length length-expr (for-clause ...) body ...+) Simple-matrix: (for/vector length-expr (for-clause ...) body) Offtopic: I would like to thank you for the module, saved me some time writing it myself, cheers! Kind regards, Tim Coppieters. VUB " Tim Coppieters 5 Milestone 414 Support vectors dherman/json.plt enhancement dherman new 2012-03-08T22:04:30-0500 2012-03-08T22:04:30-0500 "I would love it if this module supported vectors as JSON arrays. Then it would nicely interoperate with Jay !McCarthy's mongodb module, and decode the BSON it produces. The workaround I use has this small change to lines 17-18: {{{ [(or (list? json) (vector? json)) }}} " simon.haines@… 5 Milestone 1535 `prime?' function does not check if x < 2. djhaskin987/miller-rabin.plt enhancement djhaskin987 new 2013-10-14T20:44:38-0400 2013-10-14T20:44:38-0400 "It seems that (prime? 1 2 random) will cause an infinite loop. See fixed version below (perhaps not the best solution). The only change is at the start of the function: (cond ((< x 2) #f) ((or (= x 2) (= x 3)) #t) (define (prime? x k (rng random)) (cond ((< x 2) #f) ((or (= x 2) (= x 3)) #t) ((let-values (((s d) (get-s-d (sub1 x)))) (let loop ((i 0)) (if (>= i k) #t (let ((test (mod-exp (add1 (rng (- x 3))) d x))) (if (or (= test 1) (= test (sub1 x))) (loop (add1 i)) (let carmichael-test ((r 1) (ctest (modulo (* test test) x))) (cond ((>= r s) #f) ((= ctest 1) #f) ((= ctest (sub1 x)) (loop (add1 i))) (else (carmichael-test (add1 r) (modulo (* ctest ctest) x)))))))))))))" anonymous 3 Milestone some 290 compile: unbound identifier in module _default-component enhancement robby new 2010-07-09T17:43:11-0400 2010-07-09T17:43:11-0400 "for jaymccarthy > hash-store.plt > package version 1.4 --- #lang scheme/gui (require (planet ""hash-store.ss"" (""jaymccarthy"" ""hash-store.plt"" 1 4))) (SHA1 #""JH LKJH LHJKLKJHKL HJLJKHK JHKLHKLJHKJ"") compile: unbound identifier in module setup-plt: error: during making for /jaymccarthy/hash-store.plt/1/4 (Hash Store) setup-plt: compile: unbound identifier in module . Users/spdegabrielle/Library/PLT Scheme/planet/300/4.1.1/cache/jaymccarthy/hash-store.plt/1/4/hash-store.ss:9:3: expand: unbound identifier in module in: base64-filename-safe Gregory, [http://geologyonlinecourses.com/ Geologist]." anonymous 3 Milestone some 1789 Adding support for a testing ticket status asumu/taglib.plt enhancement asumu new 2014-01-30T21:57:20-0500 2014-01-30T21:57:20-0500 "Tracie J. Gilmore 1893 John Calvin Drive Buffalo Grove, IL 60089 Phone:708-909-0962 Email Address: TracieJGilmore@rhyta.com Free Gift W/ Pump Free Discreet Fast Shipping in USA. [http://penomet-hydropump.com/ Penomet]" anonymous 4 Milestone some 310 Cigar Site bzlib/flexer.plt defect bzlib new 2010-11-19T21:39:23-0500 2011-05-22T17:02:47-0400 "Trying to install on my site for Cigars, but I keep getting the same install error: " anonymous 3 Milestone 2 sample bug eli/sample-teachpacks.plt defect eli new 2008-08-28T13:03:50-0400 2008-08-28T13:03:50-0400 foo elibarzilay@… 3 Milestone 3 fmt uses set-cdr! ashinn/fmt.plt defect ashinn new 2008-08-28T13:14:18-0400 2008-08-28T13:14:18-0400 fmt.plt 1.0 uses set-cdr! which in PLT 4 doesn't work. samdphillips@… 3 Milestone 13 support for v3 and v4 dherman/struct.plt defect dherman new 2008-08-28T13:36:46-0400 2008-08-28T13:37:55-0400 "Danny Yoo wrote: > Hi Dave, > > I sent an earlier patch to struct.plt 2.3 to make it work with mzscheme 3.99, but didn't hear back from you yet. In any case, I took a look at it again, and the patch wasn't so good because it made it work only with mzscheme 3.99, which broke backwards compatibility. > > Since you probably want to make it work regardless of version, I've updated the patch so that it uses version-case to do the appropriate version-specific stuff. > > Summary of changes: > > * I created a separate module 'private/struct-info-compat.ss' which > provides a function to get the predicate from the struct type syntax > object. I updated datatype.ss to use this library. > > * As in the previous patch, I also modernized the test cases to use > SchemeUnit 2. The tests involving hierarchy are failing, but I don't > think it's a problem with my patch, but rather with a missing > 'definitions' collection that I don't know much about. > > I hope this helps! " dherman 3 Milestone 18 stream-split-at dherman/stream.plt defect dherman new 2008-08-28T13:53:05-0400 2008-08-28T13:53:05-0400 "Steve Huwig wrote: > Hi, > > `stream-split-at' in stream.plt 1 1 only returns one value, and > attempting to use that value results in errors. I looked at the source > and I think there's a simple oversight: {{{ (define (stream-split-at i stream) (stream-delay ; ^^^^^^^^^^^^ (cond [(zero? i) (values stream-null stream)] [(stream-null? stream) (values stream-null stream-null)] [else (let-values ([(prefix suffix) (stream-split-at (sub1 i) (stream-cdr stream))]) (values (stream-cons (stream-car stream) prefix) suffix))]))) }}} > I don't think stream-delay is correct here! At least, when I changed the > code to: {{{ (define (stream-split-at i stream) (cond [(zero? i) (values stream-null stream)] [(stream-null? stream) (values stream-null stream-null)] [else (let-values ([(prefix suffix) (stream-split-at (sub1 i) (stream-cdr stream))]) (values (stream-cons (stream-car stream) prefix) suffix))])) }}} > the routine behaved as I expected. > > Is this a bug or am I missing something basic? Do you have a good > example of using stream-split-at? With the original code, I tried: > >> > (stream-split-at 3 (list->stream (list 1 2 3 4 5 6))) > # >> > (stream-car (stream-split-at 3 (list->stream (list 1 2 3 4 5 6)))) > . context (lexical binding) expected 2 values, received 1 value: > # >> > > > which left me cold, but with the new code, I was able to do: > >> > (stream-split-at 3 (list->stream (list 1 2 3 4 5))) > # > # >> > (let-values ([(front back) (stream-split-at 3 (list->stream (list 1 2 > 3 4 5)))]) > (values (stream->list front) (stream->list back))) > (1 2 3) > (4 5) > > which is about what I expected to need to do. > > If this is a bug, then I think stream-partition and stream-span suffer > the same bug. If it's not a bug, then apparently the bug is in my brain > for not figuring out the right API. > > Thanks, > Steve Huwig > > P.S. stream-split-at reverses the order of split-at arguments from > SRFI-1, not sure if that's deliberate. > " dherman 3 Milestone 22 stream-partition unusable dherman/stream.plt defect dherman new 2008-08-28T14:03:22-0400 2008-08-28T14:03:22-0400 "Doug Orleans wrote: > I probably should have also mentioned stream-partition, which I posted > about on the plt-scheme list. (It doesn't seem to be usable, because > the stream it returns is not a delayed single value.) " dherman 3 Milestone 5 API requests dherman/set.plt enhancement dherman new 2008-08-28T13:17:03-0400 2008-08-28T13:17:03-0400 "Doug Orleans wrote: > Cool! It'd be nice, though, if it included analogs for the rest of > the lset functions in SRFI-1, namely <=, =, adjoin, and > diff+intersection. And an emptiness test, though (= set empty) might > be enough. Oh, and (contains? set elt). > > Also, might be good to state in the docs that they're amortized linear. > (Right?) > > Thanks! Sorry if you've already planned to do all these, I just got > excited. :) > > --Doug " dherman 3 Milestone 25 make-response/xhtml/full dherman/xhtml.plt enhancement dherman new 2008-08-28T14:59:43-0400 2008-08-28T14:59:43-0400 "Hans Oesterholt-Dijkema wrote: > Dear David, > > Could you extend xhtml.plt with a function: > > (make-response/xhtml/full ...) > > ? > > I need to set cookies, and still want to use > the XHTML headers. > > Thanks in advance, > > Hans " dherman