python / cpython

The Python programming language
https://www.python.org
Other
63.14k stars 30.23k forks source link

LICENSE.TXT file does not contain all incorporated software #83971

Open zooba opened 4 years ago

zooba commented 4 years ago
BPO 39790
Nosy @brettcannon, @pfmoore, @tjguk, @zware, @zooba

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields: ```python assignee = None closed_at = None created_at = labels = ['3.7', '3.8', '3.9', 'OS-windows'] title = 'LICENSE.TXT file does not contain all incorporated software' updated_at = user = 'https://github.com/zooba' ``` bugs.python.org fields: ```python activity = actor = 'steve.dower' assignee = 'none' closed = False closed_date = None closer = None components = ['Windows'] creation = creator = 'steve.dower' dependencies = [] files = [] hgrepos = [] issue_num = 39790 keywords = [] message_count = 1.0 messages = ['362937'] nosy_count = 5.0 nosy_names = ['brett.cannon', 'paul.moore', 'tim.golden', 'zach.ware', 'steve.dower'] pr_nums = [] priority = 'normal' resolution = None stage = 'needs patch' status = 'open' superseder = None type = None url = 'https://bugs.python.org/issue39790' versions = ['Python 3.7', 'Python 3.8', 'Python 3.9'] ```

zooba commented 4 years ago

Looking at https://docs.python.org/3/license.html there's a list of "incorporated software" licenses, most of which say you need to distribute the license.

Right now, the LICENSE.txt file we distribute on Windows (made from the /LICENSE and PC/crtlicense.txt files in the repo, plus those in the source dependencies) does not include any of these licenses that come from C source files.

Arguably, we should just include all of them in a central file somewhere in the repo, even though there'd be some duplication.

(I have no idea whether other distros correctly gather it all together.)