Skip to content

Commit

Permalink
updating deps for abstract and singleton classes
Browse files Browse the repository at this point in the history
the cl-abstract-classes system available through quicklisp references
a dead source URL. The author of this system, Tim Bradshaw, has
factored this one system into two, renamed them, and changed he source
URLS. This commit updates package and system names accordingly.

This commit has a sister commit in QVM, which also depends on abstract
classes.
  • Loading branch information
macrologist authored and stylewarning committed Oct 13, 2023
1 parent df7e4fe commit f7960d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions cl-quil.asd
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
(:version #:magicl/core "0.10.0")
#:qvm
#:cl-grnm ; nelder-mead implementation
#:singleton-classes
#:abstract-classes
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes
#:yason ; JSON generation
#:uiop
#:split-sequence
Expand Down Expand Up @@ -101,8 +101,8 @@
#:yacc ; Arithmetic parsing
#:alexandria ; Utilities
#:parse-float ; Float parsing
#:singleton-classes
#:abstract-classes
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes
#:split-sequence
#:cl-algebraic-data-type
#:cl-permutation
Expand Down
6 changes: 3 additions & 3 deletions src/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
(defpackage #:cl-quil.frontend
(:use #:cl
#:parse-float
#:abstract-classes
#:singleton-classes)
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes)
(:local-nicknames (#:a #:alexandria))
;; frontend-options.lisp
(:export
Expand Down Expand Up @@ -741,7 +741,7 @@
(:use #:cl
#:cl-quil.resource
#:cl-quil.frontend
#:abstract-classes)
#:org.tfeb.hax.abstract-classes)
(:local-nicknames (#:a #:alexandria))

;; options.lisp
Expand Down
4 changes: 2 additions & 2 deletions src/quilt/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
(:nicknames #:quilt)
(:use #:cl
#:cl-quil.frontend
#:abstract-classes
#:singleton-classes)
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes)
;; We define a number of methods on generic functions from
;; CL-QUIL. We import these here, as well as other internal symbols
;; that we want to get our hands on.
Expand Down

0 comments on commit f7960d3

Please sign in to comment.