Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 16537 - The linux-wlan-ng-0.1.16_pre9.ebuild fails tring to download pcmcia-cs-command.tar.gz
Summary: The linux-wlan-ng-0.1.16_pre9.ebuild fails tring to download pcmcia-cs-comman...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Peter Johanson (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-28 01:52 UTC by Eric Olinger
Modified: 2003-02-28 02:52 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 Eric Olinger 2003-02-28 01:52:10 UTC
When trying to emege the current linux-wlan-ng-0.1.16_pre9.ebuild, the ebuild
tries to download pcmcia-cs-command.tar.gz insted of using the correct version
installed on the system.

Reproducible: Always
Steps to Reproduce:
1.emerge linux-wlan-ng
2.
3.
Actual Results:  
>> emerge -f linux-wlan-ng
Calculating dependencies ...done!
>>> emerge (1 of 1) net-wireless/linux-wlan-ng-0.1.16_pre9 to /
>>> Downloading ftp://ftp.ibiblio.org/pub/linux/distributions/gentoo/distfiles/pcmcia-cs-command.tar.gz
--22:53:10--  ftp://ftp.ibiblio.org/pub/linux/distributions/gentoo/distfiles/pcmcia-cs-command.tar.gz
           => `/usr/portage/distfiles/pcmcia-cs-command.tar.gz'
Resolving ftp.ibiblio.org... done.
Connecting to ftp.ibiblio.org[152.2.210.81]:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD /pub/linux/distributions/gentoo/distfiles ... done.
==> PASV ... done.    ==> RETR pcmcia-cs-command.tar.gz ...
No such file `pcmcia-cs-command.tar.gz'.

Expected Results:  
Downloaded the tarball for the pcmcia-cs currently installed on the system
if it want on the system already.
Comment 1 Eric Olinger 2003-02-28 02:04:50 UTC
Found a fix for whats wrong. You need to drop the double qoutes on the 
PCMCIA_VERSION="`$(which cardmgr) -V 2>&1 | cut -f3 -d' '`" 
line to make it
PCMCIA_VERSION=`$(which cardmgr) -V 2>&1 | cut -f3 -d' '`
else the command grabs the "command" (field 3) from the 
'-bash: 3.2.3: command not found' error
Comment 2 Peter Johanson (RETIRED) gentoo-dev 2003-02-28 02:52:31 UTC
Changed. Thank you.