Skip to content

Commit

Permalink
Update copyright notice from Swarming to LUCI; add AUTHORS and CONTRI…
Browse files Browse the repository at this point in the history
…BUTORS.

- The LUCI Authors is a strict superset of the Swarming Authors.
- Add CONTRIBUTORS with the exact list of contributors.
- Fix a long standing discrepency between the copyright notice in appengine/ and
  in client/.
- The vast majority of this CL was created with sed. The only files modified
  manually are:
  - AUTHORS
  - CONTRIBUTORS
  - LICENSE
  - PRESUBMIT.py
  - appengine/PRESUBMIT.py (deleted)
  - client/LICENSE
  - client/PRESUBMIT.py

[email protected]
BUG=

Review URL: https://codereview.chromium.org/1860863002
  • Loading branch information
maruel authored and Commit bot committed Apr 5, 2016
1 parent b8bde93 commit 8e59407
Show file tree
Hide file tree
Showing 419 changed files with 644 additions and 602 deletions.
24 changes: 12 additions & 12 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# This is the official list of Swarming Authors for copyright purposes.
#
# Names should be added to this file with this pattern:
# - For individuals:
# Name <email address>
# - For organizations:
# Organization <fnmatch pattern>
# See python fnmatch module documentation for more information.
#
# This is the official list of LUCI authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS files.
# See the latter for an explanation.

# Names should be added to this file as one of
# Organization's name <fnmatch pattern>
# Individual's name <submission email address>
# Individual's name <submission email address> <email2> <emailN>
# See CONTRIBUTORS for the meaning of multiple email addresses.

# Please keep the list sorted.

Christopher Sharp <[email protected]>
Cem Kocagil <[email protected]>
Cloudera <*@cloudera.com>
Google Inc. <*@google.com>
Marc-Antoine Ruel <[email protected]>
Vadim Shtayura <[email protected]>
64 changes: 64 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# This is the official list of people who can contribute
# (and typically have contributed) code to the LUCI project.
# The AUTHORS file lists the copyright holders; this file
# lists people. For example, Google employees are listed here
# but not in AUTHORS, because Google holds the copyright.
#
# Names should be added to this file only after verifying that
# the individual or the individual's organization has agreed to
# the appropriate Contributor License Agreement, found here:
#
# http://code.google.com/legal/individual-cla-v1.0.html
# http://code.google.com/legal/corporate-cla-v1.0.html
#
# The agreement for individuals can be filled out on the web.
#
# When adding J Random Contributor's name to this file,
# either J's name or J's organization's name should be
# added to the AUTHORS file, depending on whether the
# individual or corporate CLA was used.

# Names should be added to this file like so:
# Individual's name <submission email address>
# Individual's name <submission email address> <email2> <emailN>
#
# An entry with multiple email addresses specifies that the
# first address should be used in the submit logs and
# that the other addresses should be recognized as the
# same person when interacting with Gerrit.

# Please keep the list sorted.

Aaron Gable <[email protected]>
Andrew Wang <[email protected]>
Andrii Shyshkalov <[email protected]>
Augie Fackler <[email protected]>
Ben Rudiak-Gould <[email protected]> <[email protected]>
Cem Kocagil <[email protected]>
Christopher Sharp <[email protected]> <[email protected]>
Cory Massaro <[email protected]> <[email protected]>
Dan Jacques <[email protected]>
Eric Boren <[email protected]>
Frank Farzan <[email protected]>
Jason Ganetsky <[email protected]>
John Abd-El-Malek <[email protected]>
John Bauman <[email protected]>
Ken Russell <[email protected]>
Kevin Graney <[email protected]>
Kevin Lubick <[email protected]>
Mahdi Tayarani Najaran <[email protected]>
Marc-André (MAD) Decoste <[email protected]> <[email protected]>
Marc-Antoine Ruel <[email protected]> <[email protected]>
Michael Achenbach <[email protected]>
Mike Frysinger <[email protected]> <[email protected]>
Mike Stipicevic <[email protected]>
Nathaniel Manista <[email protected]>
Nodir Turakulov <[email protected]>
Paweł Hajdan <[email protected]>
Robert Iannucci <[email protected]> <[email protected]>
Sergey Berezin <[email protected]> <[email protected]>
Sergey Matveev <[email protected]>
Sergiy Byelozyorov <[email protected]>
Tianyin Zhang <[email protected]>
Vadim Shtayura <[email protected]> <[email protected]>
Yiyao Liu <[email protected]>
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2013 The Swarming Authors
Copyright 2013 The LUCI Authors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions appengine/PRESUBMIT.py → PRESUBMIT.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright 2013 The Swarming Authors. All rights reserved.
# Copyright 2013 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

"""Top-level presubmit script for swarming.
"""Top-level presubmit script for LUCI.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
details on the presubmit API built into gcl.
Expand All @@ -15,7 +15,7 @@ def header(input_api):
allowed_years = (str(s) for s in reversed(xrange(2011, current_year + 1)))
years_re = '(' + '|'.join(allowed_years) + ')'
license_header = (
r'.*? Copyright %(year)s The Swarming Authors\. '
r'.*? Copyright %(year)s The LUCI Authors\. '
r'All rights reserved\.\n'
r'.*? Use of this source code is governed by the Apache v2\.0 license '
r'that can be\n'
Expand Down
2 changes: 1 addition & 1 deletion WATCHLISTS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2013 The Swarming Authors. All rights reserved.
# Copyright (c) 2013 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/PRESUBMIT.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/acl.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/appengine_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2013 The Swarming Authors. All rights reserved.
# Copyright 2013 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/config_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/delegation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/delegation_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/handlers_backend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/handlers_frontend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/handlers_frontend_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/importer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/importer_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/main_backend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/main_frontend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/proto/config.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2015 The Swarming Authors. All rights reserved.
// Copyright 2015 The LUCI Authors. All rights reserved.
// Use of this source code is governed by the Apache v2.0 license that can be
// found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/pubsub.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/replication.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/replication_smoke_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/static/js/config_page.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2014 The Swarming Authors. All rights reserved.
// Copyright 2014 The LUCI Authors. All rights reserved.
// Use of this source code is governed by the Apache v2.0 license that can be
// found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/static/js/services.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2014 The Swarming Authors. All rights reserved.
// Copyright 2014 The LUCI Authors. All rights reserved.
// Use of this source code is governed by the Apache v2.0 license that can be
// found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/test_env.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/test_replica_app/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/tools/compile_proto.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/auth_service/tools/run_coverage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/PRESUBMIT.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2013 The Swarming Authors. All rights reserved.
# Copyright 2013 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/api_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/change_log.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/change_log_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/delegation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/delegation_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2015 The Swarming Authors. All rights reserved.
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/endpoints_support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/handler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/handler_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/host_token.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/host_token_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/ipaddr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/ipaddr_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion appengine/components/components/auth/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014 The Swarming Authors. All rights reserved.
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed by the Apache v2.0 license that can be
# found in the LICENSE file.

Expand Down
Loading

0 comments on commit 8e59407

Please sign in to comment.