borodust / cl-bodge

Feature-rich game framework for Common Lisp
http://borodust.org/projects/cl-bodge/
MIT License
174 stars 14 forks source link

Unable to load demo because of "Package M2 does not exist" error #90

Closed svetlyak40wt closed 6 years ago

svetlyak40wt commented 6 years ago

I did:

CL-USER> (ql-dist:install-dist "http://bodge.borodust.org/dist/org.borodust.bodge.txt" :replace t :prompt nil)
CL-USER> (ql:quickload :cl-bodge/demo)

But received error:

Downloading http://bodge.borodust.org/dist/org.borodust.bodge/archive/cl-bodge-20180808145301.tgz
##########################################################################
; Loading "cl-bodge/demo"
[package bodge-blobs-support].....................
[package dissect].................................
[package json]....................................
[package json-rpc]................................
[package claw]....................................
..................................................
[package cl-muth].................................
..................................................
[package cl-flow].................................
[package array-utils].............................
[package simple-tasks]............................
[package trivial-main-thread].....................
[package simple-flow-dispatcher]..
; 
; caught ERROR:
;   READ error during COMPILE-FILE:
;   
;     Package M2 does not exist.
;   
;       Line: 94, Column: 42, File-Position: 2377
;   
;       Stream: #<SB-INT:FORM-TRACKING-STREAM for "file /Users/art/.roswell/lisp/quicklisp/dists/org.borodust.bodge/software/cl-bodge-20180808145301/engine/math/types.lisp" {10040E6C73}>
svetlyak40wt commented 6 years ago

Tested under SBCL and CCL and received the same error.

borodust commented 6 years ago

Please, eval

(ql:update-all-dists)

and try again. Ensure you don't have anything outdated in "\~/quicklisp/local-projects/" or "\~/.roswell/local-projects/".

svetlyak40wt commented 6 years ago

You are right! Quicklisp was very old. After update everything worked fine, except images are blured like this:

2018-08-27_00-18-41

I'm using Mac, with retina screen, may be this is the reason.

borodust commented 6 years ago

Glad that helped. Fixes for HighDPI displays is in the master but not yet published to the dist. Need to make sure nothing is broken first. Thanks for checking cl-bodge out!