Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 705108 - bootstrap-prefix.sh Python3.6.8 not found on "http://dev.gentoo.org/~grobian/distfiles"
Summary: bootstrap-prefix.sh Python3.6.8 not found on "http://dev.gentoo.org/~grobian/...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: Prefix Support (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Prefix
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-01-10 13:27 UTC by generalt
Modified: 2020-01-10 13:29 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 generalt 2020-01-10 13:27:16 UTC
Not sure if the bootstrap-prefix.sh (https://gitweb.gentoo.org/repo/proj/prefix.git/plain/scripts/bootstrap-prefix.sh) is still maintained, if so, the script tries to obtain Python-3.6.8.tar.xz from the DISTFILES_URL (http://dev.gentoo.org/~grobian/distfiles) but this file does not exist anymore on the server, resulting in a 404 and a very sad exit code of the script ;-)

I "fixed" it by replacing > efetch ${DISTFILES_URL}/${A} || return 1 < (line 950)
with > efetch https://www.python.org/ftp/python/3.6.8/${A} || return 1 <.

Not an elegant solution, but at least the script is running for the moment ;)
Comment 1 Larry the Git Cow gentoo-dev 2020-01-10 13:29:58 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=8444915911fb0b2e80dc82ffaf670694262a579e

commit 8444915911fb0b2e80dc82ffaf670694262a579e
Author:     Fabian Groffen <grobian@gentoo.org>
AuthorDate: 2020-01-10 13:28:31 +0000
Commit:     Fabian Groffen <grobian@gentoo.org>
CommitDate: 2020-01-10 13:28:31 +0000

    scripts/bootstrap-prefix: bootstrap Python-3.6.10
    
    3.6.8 is no longer available on the mirrors, thanks edwinvanl
    
    Closes: https://bugs.gentoo.org/705104
    Closes: https://bugs.gentoo.org/705108
    Signed-off-by: Fabian Groffen <grobian@gentoo.org>

 scripts/bootstrap-prefix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)