Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Re: Issue #147 #164

wants to merge 2 commits into from

Conversation

obicons
Copy link

@obicons obicons commented Apr 30, 2018

  • UNINSTALL can now accept a list of systems to remove
  • UNINSTALL can now optionally and safely remove a system's dependencies

…dencies of a package

should be removed if they are no longer required.

Modified `uninstall` to support multiple system deletes at once.
@@ -48,6 +48,9 @@
(defun system-list ()
(provided-systems t))

(defun all-installed-systems ()
(filter #'installedp (system-list)))
Copy link
Owner

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).

(warn "Unknown system ~S" system-name)
nil)))))

(defun uninstall-system-dependencies (system-name)
Copy link
Owner

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
@obicons
Copy link
Author

obicons commented May 2, 2018

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 FILTER and factored out the behavior of UNINSTALL-SYSTEM-DEPENDENCIES. I also generally improved the behavior.

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 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants