Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 435740

Summary: dev-lisp/asdf-binary-locations - uninstall should clean up /etc/gentoo-init.lisp
Product: Gentoo Linux Reporter: Pascal Bourguignon <pjb>
Component: [OLD] DevelopmentAssignee: Common Lisp Bugs <common-lisp>
Status: RESOLVED WONTFIX    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Pascal Bourguignon 2012-09-21 14:00:44 UTC
emerge -C asdf-binary-locations
cat /etc/gentoo-init.lisp

will show that it still tries to load asdf-binary-locations.

Reproducible: Always

Steps to Reproduce:
1.emerge -C asdf-binary-locations
2.cat /etc/gentoo-init.lisp
3.shows that it still tries to load asdf-binary-locations.
Actual Results:  
(in-package #:cl-user)
#+(or sbcl ecl) (require :asdf)
#-(or sbcl ecl) (load #p"/usr/share/common-lisp/source/asdf/asdf.lisp")
(push #p"/usr/share/common-lisp/systems/" asdf:*central-registry*)
(asdf:oos 'asdf:load-op :asdf-binary-locations)
(setf asdf:*centralize-lisp-binaries* t)
(setf asdf:*source-to-target-mappings* '((#p"/usr/lib/sbcl/" nil) (#p"/usr/lib64/sbcl/" nil)))



Expected Results:  
(in-package #:cl-user)
#+(or sbcl ecl) (require :asdf)
#-(or sbcl ecl) (load #p"/usr/share/common-lisp/source/asdf/asdf.lisp")
(push #p"/usr/share/common-lisp/systems/" asdf:*central-registry*)
Comment 1 Pacho Ramos gentoo-dev 2018-04-08 14:55:18 UTC
removed from the tree