Summary: | app-emulation/virtualbox-bin fetch failed | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Talamona Francesco <cancellettopugno> |
Component: | [OLD] Core system | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | jokey, swapon, zmedico |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | AMD64 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Talamona Francesco
2010-01-30 09:55:48 UTC
It seems like a bug in wget, since the portage FETCHCOMMAND calls wget -O "${DISTDIR}/${FILE}" and therefore the saved filename should always be correct. Actually, I just tested and the file name came out correctly: wget -O VirtualBoxSDK-3.1.2-56127.zip http://download.virtualbox.org/virtualbox/3.1.2/VirtualBoxSDK-3.1.2-56127.zip I think you need to update FETCHCOMMAND to use the wget -O option. See /usr/share/portage/config/make.conf.example for FETCHCOMMAND setting. You are right, I modified FETCHCOMMAND and RESUMECOMMAND it probably was a leftover... #FETCHCOMMAND="/usr/bin/wget -t 1 -T 4 --passive-ftp \${URI} -P \${DISTDIR} \${FILE}" FETCHCOMMAND="/usr/bin/wget -t 1 -T 4 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\"" #RESUMECOMMAND="/usr/bin/wget -c -t 1 --passive-ftp --limit-rate=200k \${URI} -P \${DISTDIR} \${FILE}" RESUMECOMMAND="/usr/bin/wget -c -t 1 --passive-ftp --limit-rate=200k -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\"" "bug" fixed. Many thanks |