Remove McCLIM as dependency and properly require
The McCLIM dependency will come back, but for v0.1.* it is not a requirement. Also properly require `cl-sqlite' by adding it in the `asdf:defsystem' call.
This commit is contained in:
parent
c1cbf7d59a
commit
86aa545775
3 changed files with 2 additions and 4 deletions
|
@ -28,6 +28,6 @@
|
||||||
:maintainer "Tom Willemsen <tom@ryuslash.org>"
|
:maintainer "Tom Willemsen <tom@ryuslash.org>"
|
||||||
:description "Keep bookmarks, in lisp."
|
:description "Keep bookmarks, in lisp."
|
||||||
:serial t
|
:serial t
|
||||||
:depends-on (:mcclim)
|
:depends-on (:sqlite)
|
||||||
:components ((:file "package")
|
:components ((:file "package")
|
||||||
(:file "clark")))
|
(:file "clark")))
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
(error "This lisp implementation iss not supported.")
|
(error "This lisp implementation iss not supported.")
|
||||||
|
|
||||||
(require 'asdf)
|
(require 'asdf)
|
||||||
(require 'sqlite)
|
|
||||||
(require 'mcclim)
|
|
||||||
|
|
||||||
(asdf:oos 'asdf:load-op 'clark)
|
(asdf:oos 'asdf:load-op 'clark)
|
||||||
|
|
||||||
|
|
|
@ -18,5 +18,5 @@
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(defpackage :org.ryuslash.clark
|
(defpackage :org.ryuslash.clark
|
||||||
(:use :clim :clim-lisp :sqlite)
|
(:use :cl :sqlite)
|
||||||
(:export :clark))
|
(:export :clark))
|
||||||
|
|
Loading…
Reference in a new issue