Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Nov 2020 15:56:26 +0000
From:      bugzilla-noreply@freebsd.org
To:        python@FreeBSD.org
Subject:   [Bug 249063] lang/python-doc-html incorrect distinfo
Message-ID:  <bug-249063-21822-IJT7KqcDto@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-249063-21822@https.bugs.freebsd.org/bugzilla/>
References:  <bug-249063-21822@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D249063

--- Comment #2 from Craig Leres <leres@freebsd.org> ---
lang/python-doc-html uses two different values for MASTER_SITES; for most
targets it is set based on the DEFAULT_VERSIONS setting of python:

    zinc 164 # make -C /usr/ports/lang/python-doc-html -V MASTER_SITES
    https://www.python.org/ftp/python/doc/3.7.9/
https://www.python.org/ftp/python/doc/current/

But when the target is makesum, the port's Makefile sets MASTER_SITES (like
DISTFILES) to reflect all supported versions of python:

    zinc 169 # make -C /usr/ports/lang/python-doc-html -V MASTER_SITES make=
sum
    https://www.python.org/ftp/python/doc/2.7.18/:2x7x18
https://www.python.org/ftp/python/doc/3.6.12/:3x6x12
https://www.python.org/ftp/python/doc/3.7.9/:3x7x9
https://www.python.org/ftp/python/doc/3.8.6/:3x8x6
https://www.python.org/ftp/python/doc/3.9.0/:3x9x0
https://www.python.org/ftp/python/doc/current/

But because Mk/bsd.port.mk now does a sub-make for makesum, the carefully
constructed MASTER_SITES value is getting stripped when trying to generate a
new distinfo.

I guess I don't understand why it's ok for Mk/bsd.port.mk to pass DISTFILES=
 to
the makesum sub-make but not MASTER_SITES?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-249063-21822-IJT7KqcDto>