makes copyright year optional
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
This commit is contained in:
parent
ffda916fd0
commit
c3574e4493
@ -1,4 +1,4 @@
|
|||||||
# Copyright YEAR AUTHORS.
|
# Copyright AUTHORS.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright YEAR AUTHORS.
|
# Copyright AUTHORS.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright YEAR AUTHORS.
|
Copyright AUTHORS.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright 2015 The Kubernetes Authors.
|
# Copyright 2015 The Kubernetes Authors.
|
||||||
# Copyright 2018 The Containerd Authors.
|
# Copyright The Containerd Authors.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
@ -102,19 +102,22 @@ def file_passes(filename, refs, regexs):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
p = regexs["year"]
|
p = regexs["year"]
|
||||||
found = 0
|
foundyear = 0
|
||||||
for d in ref:
|
for d in ref:
|
||||||
if p.search(d):
|
if p.search(d):
|
||||||
found = 1
|
foundyear = 1
|
||||||
break
|
break
|
||||||
if found == 0:
|
|
||||||
print('File %s is missing the year' % filename, file=verbose_out)
|
|
||||||
return False
|
|
||||||
|
|
||||||
# Replace all occurrences of the regex "CURRENT_YEAR|...|2016|2015|2014" with "YEAR"
|
# if YEAR is found date is a requirement and should be in the range
|
||||||
|
# new rule is if YEAR is not found date is optional
|
||||||
p = regexs["date"]
|
p = regexs["date"]
|
||||||
for i, d in enumerate(data):
|
for i, d in enumerate(data):
|
||||||
(data[i], found) = p.subn('YEAR', d)
|
(data[i], found) = p.subn('YEAR', d)
|
||||||
|
# remove the year and extra space when year is optional
|
||||||
|
if foundyear == 0:
|
||||||
|
p = regexs["yearsp"]
|
||||||
|
for i, d in enumerate(data):
|
||||||
|
(data[i], found) = p.subn('', d)
|
||||||
|
|
||||||
p = regexs["authors"]
|
p = regexs["authors"]
|
||||||
found = 0
|
found = 0
|
||||||
@ -210,6 +213,7 @@ def get_regexs():
|
|||||||
regexs = {}
|
regexs = {}
|
||||||
# Search for "YEAR" which exists in the boilerplate, but shouldn't in the real thing
|
# Search for "YEAR" which exists in the boilerplate, but shouldn't in the real thing
|
||||||
regexs["year"] = re.compile( 'YEAR' )
|
regexs["year"] = re.compile( 'YEAR' )
|
||||||
|
regexs["yearsp"] = re.compile( 'YEAR ' )
|
||||||
# dates can be 2014, 2015, 2016, ..., CURRENT_YEAR, company holder names can be anything
|
# dates can be 2014, 2015, 2016, ..., CURRENT_YEAR, company holder names can be anything
|
||||||
years = range(2014, date.today().year + 1)
|
years = range(2014, date.today().year + 1)
|
||||||
regexs["date"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), years)) )
|
regexs["date"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), years)) )
|
||||||
@ -220,7 +224,8 @@ def get_regexs():
|
|||||||
regexs["authors"] = re.compile( 'AUTHORS' )
|
regexs["authors"] = re.compile( 'AUTHORS' )
|
||||||
authors = [ 'The Kubernetes Authors', 'The Containerd Authors', 'The containerd Authors' ]
|
authors = [ 'The Kubernetes Authors', 'The Containerd Authors', 'The containerd Authors' ]
|
||||||
regexs["auth"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), authors)) )
|
regexs["auth"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), authors)) )
|
||||||
regexs["copyright"] = re.compile( 'Copyright YEAR AUTHORS' )
|
copyrightLines = [ 'Copyright YEAR AUTHORS', 'Copyright AUTHORS' ]
|
||||||
|
regexs["copyright"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), copyrightLines)) )
|
||||||
return regexs
|
return regexs
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright YEAR AUTHORS.
|
# Copyright AUTHORS.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright YEAR AUTHORS.
|
# Copyright AUTHORS.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2014 The Kubernetes Authors.
|
Copyright The Kubernetes Authors.
|
||||||
|
|
||||||
fail
|
fail
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright 2015 The Kubernetes Authors.
|
# Copyright The Kubernetes Authors.
|
||||||
#
|
#
|
||||||
# failed
|
# failed
|
||||||
#
|
#
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2014 The Kubernetes Authors.
|
Copyright The Kubernetes Authors.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright 2015 The Kubernetes Authors.
|
# Copyright The Kubernetes Authors.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
Loading…
Reference in New Issue
Block a user