Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 90050 - Cannot emerge specific versions in zsh
Summary: Cannot emerge specific versions in zsh
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Mamoru KOMACHI (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-04-22 10:25 UTC by James Le Cuirot
Modified: 2005-04-22 23:27 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 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]`)