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

Bug 275848

Summary: sys-apps/portage - emerge: "existing preserved libs"-warning should respect --quiet
Product: Portage Development Reporter: Sebastian Luther (few) <SebastianLuther>
Component: CoreAssignee: Portage team <dev-portage>
Status: CONFIRMED ---    
Severity: normal CC: larstobi
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Sebastian Luther (few) 2009-06-29 16:55:45 UTC
I think a warning that preserved libs exist is enough with --quiet. It shouldn't output all those files every time.
Comment 1 James Stevenson 2021-05-22 08:59:04 UTC
I think this bug can be closed. The fix appears to have been implemented in lib/_emerge/post_emerge.py -


>if vardbapi._plib_registry.hasEntries():                                     
>    if "--quiet" in myopts:                                                           
>       print()                                                              
>       print(colorize("WARN", "!!!") + " existing preserved libs found")    
>    else:                                                                    
>       print()                                                              
>       print(colorize("WARN", "!!!") + " existing preserved libs:")         
>       display_preserved_libs(vardbapi)                                     
>       print("Use " + colorize("GOOD", "emerge @preserved-rebuild") +       
>           " to rebuild packages using these libraries")