Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 435740 - dev-lisp/asdf-binary-locations - uninstall should clean up /etc/gentoo-init.lisp
Summary: dev-lisp/asdf-binary-locations - uninstall should clean up /etc/gentoo-init.lisp
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Common Lisp Bugs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-21 14:00 UTC by Pascal Bourguignon
Modified: 2018-04-08 14:55 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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