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

Bug 90050

Summary: Cannot emerge specific versions in zsh
Product: Gentoo Linux Reporter: James Le Cuirot <chewi>
Component: Current packagesAssignee: Mamoru KOMACHI (RETIRED) <usata>
Status: RESOLVED INVALID    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

Description James Le Cuirot gentoo-dev 2005-04-22 10:25:30 UTC
This is what happens when you try to emerge a specific version of something under zsh. I tried this with the default zsh config just to make sure it wasn't my .zshrc screwing things up. The same line works fine under bash so it's definitely zsh.

schwartz% emerge =net-misc/omniORB-4.0.5
zsh: net-misc/omniORB-4.0.5 not found
Comment 1 Mamoru KOMACHI (RETIRED) gentoo-dev 2005-04-22 23:27:02 UTC
Try emerge \=net-misc/omniORB-4.0.5 or emerge '=net-misc/omniORB-4.0.5'
The '=' operator in zsh behaves something like `which` command, so
you need to escape it. (zsh-completion doesn't complete version number
when you type `emerge net-misc/omni[tab]` but `emerge \=net-misc/omni[tab]`
and `emerge '=net-misc/omni[tab]`)