This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; (ql:quickload "str") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defpackage #:snippets/ql-gitify | |
(:documentation | |
"Facilitate creating Git repositories for third-party Quicklisp | |
projects.") | |
(:use #:cl) | |
(:import-from #:constantia #:out #:print-table) | |
(:import-from #:split-sequence #:split-sequence) | |
(:import-from #:alexandria #:starts-with-subseq #:hash-table-plist) | |
(:import-from #:ql #:qmerge) | |
(:export |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ql:quickload :fset) | |
(defun get-dependencies (system) | |
"Returns a set with all dependencies of a given system. | |
System should be loaded first." | |
(labels ((normalize (name) | |
(etypecase name | |
(string (string-downcase name)) | |
(symbol (normalize (symbol-name name))) | |
(list |