mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-30 19:43:47 +00:00 
			
		
		
		
	Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| """Check the docs/THIRDPARTY file against the DEP-5 copyright format.
 | |
| 
 | |
| https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 | |
| 
 | |
| Disclaimer: This script is not a lawyer.  It cannot validate that the
 | |
| claimed licenses are correct.  It can only check for basic syntactic
 | |
| issues.
 | |
| """
 | |
| import difflib
 | |
| import io
 | |
| import os
 | |
| import subprocess
 | |
| import sys
 | |
| 
 | |
| from debian import copyright
 | |
| 
 | |
| COPYRIGHT_FILENAME = "docs/THIRDPARTY"
 | |
| os.chdir(os.path.join(os.path.dirname(__file__), ".."))
 | |
| status = 0
 | |
| 
 | |
| *files, empty = subprocess.check_output(
 | |
|     ["git", "ls-files", "-z"], encoding="utf-8",
 | |
| ).split("\0")
 | |
| assert empty == ""
 | |
| files += [
 | |
|     "static/generated/emoji/images/emoji/unicode/ignore-this-path",
 | |
| ]
 | |
| 
 | |
| with open(COPYRIGHT_FILENAME) as f:
 | |
|     lines = list(f)
 | |
| c = copyright.Copyright(lines)
 | |
| 
 | |
| if not c.header.known_format():
 | |
|     print(f"{COPYRIGHT_FILENAME}: Unknown header format {c.header.format}")
 | |
|     status = 1
 | |
| 
 | |
| defined_licenses = {
 | |
|     p.license.synopsis for p in c.all_license_paragraphs() if p.license.text
 | |
| }
 | |
| 
 | |
| for p in c.all_files_paragraphs():
 | |
|     for g in p.files:
 | |
|         if not any(map(copyright.globs_to_re([g]).fullmatch, files)):
 | |
|             print(f"{COPYRIGHT_FILENAME}: No such file {g}")
 | |
|             status = 1
 | |
| 
 | |
|     if not p.license.text and p.license.synopsis not in defined_licenses:
 | |
|         print(f"{COPYRIGHT_FILENAME}: Missing license text for {p.license.synopsis}")
 | |
|         status = 1
 | |
| 
 | |
| dumped = c.dump()
 | |
| if dumped != "".join(lines):
 | |
|     print(f"{COPYRIGHT_FILENAME}: Changes expected:")
 | |
|     sys.stdout.writelines(
 | |
|         difflib.unified_diff(
 | |
|             lines,
 | |
|             io.StringIO(dumped).readlines(),
 | |
|             COPYRIGHT_FILENAME,
 | |
|             COPYRIGHT_FILENAME,
 | |
|         ),
 | |
|     )
 | |
|     status = 1
 | |
| 
 | |
| sys.exit(status)
 |