-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: Issue #147 #164
base: master
Are you sure you want to change the base?
Re: Issue #147 #164
Conversation
…dencies of a package should be removed if they are no longer required. Modified `uninstall` to support multiple system deletes at once.
quicklisp/client.lisp
Outdated
@@ -48,6 +48,9 @@ | |||
(defun system-list () | |||
(provided-systems t)) | |||
|
|||
(defun all-installed-systems () | |||
(filter #'installedp (system-list))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think FILTER is a good utility function name. I'd prefer to stick with the built-in REMOVE-IF-NOT (which is also not a great name).
quicklisp/client.lisp
Outdated
(warn "Unknown system ~S" system-name) | ||
nil))))) | ||
|
||
(defun uninstall-system-dependencies (system-name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to see this factored out a bit to produce the list of candidates to uninstall without actually uninstalling them. That will make it easier to test.
* General refactor to improve discoverability
Thanks for the quick review! I went ahead and did some refactoring to try and address your comments, specifically by removing the call and definition of To test this, I installed the modified client in a container. Then, I loaded two systems that share several dependencies (caveman and drakma) and verified that uninstalling one left the dependencies of the other intact. Let me know if you have any other comments/concerns 👍 |
UNINSTALL
can now accept a list of systems to removeUNINSTALL
can now optionally and safely remove a system's dependencies