From 82cbe9ba193c12932931ceba8ceaac774514fe4d Mon Sep 17 00:00:00 2001 From: Will Norris Date: Thu, 27 Jun 2013 10:08:41 -0700 Subject: [PATCH] Update boilerplate to reflect shared copyright Since the library has received external contributions, Google is no longer the sole copyright holder. Update the boilerplate at the top of each file to reflect that, and add AUTHORS and CONTRIBUTORS files to track this information. --- examples/example.go | 5 +++++ github/AUTHORS | 7 +++++++ github/CONTRIBUTORS | 15 +++++++++++++++ github/github.go | 5 ++--- github/github_test.go | 5 ++--- github/issues.go | 5 ++--- github/issues_test.go | 5 ++--- github/orgs.go | 5 ++--- github/orgs_test.go | 5 ++--- github/pulls.go | 5 ++--- github/pulls_test.go | 5 ++--- github/repos.go | 5 ++--- github/repos_test.go | 5 ++--- github/users.go | 5 ++--- github/users_test.go | 5 ++--- 15 files changed, 51 insertions(+), 36 deletions(-) create mode 100644 github/AUTHORS create mode 100644 github/CONTRIBUTORS diff --git a/examples/example.go b/examples/example.go index fad2a8c..9b361e3 100644 --- a/examples/example.go +++ b/examples/example.go @@ -1,3 +1,8 @@ +// Copyright 2013 The go-github AUTHORS. All rights reserved. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package main import ( diff --git a/github/AUTHORS b/github/AUTHORS new file mode 100644 index 0000000..397fdd7 --- /dev/null +++ b/github/AUTHORS @@ -0,0 +1,7 @@ +# This is the official list of go-github authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS files. +# See the latter for an explanation. + +Akeda Bagus +Google Inc. +Quinn Slack diff --git a/github/CONTRIBUTORS b/github/CONTRIBUTORS new file mode 100644 index 0000000..a639f67 --- /dev/null +++ b/github/CONTRIBUTORS @@ -0,0 +1,15 @@ +# People who have agreed to one of the CLAs and can contribute patches. +# 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. +# +# https://developers.google.com/open-source/cla/individual +# https://developers.google.com/open-source/cla/corporate +# +# Note that the CLA isn't a copyright _assigment_ but rather a +# copyright _license_. You retain the copyright on your +# contributions. + +Akeda Bagus +Quinn Slack +Will Norris diff --git a/github/github.go b/github/github.go index 5d0b791..4ad98c1 100644 --- a/github/github.go +++ b/github/github.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. /* Package github provides a client for using the GitHub API. diff --git a/github/github_test.go b/github/github_test.go index fc3b914..bbe72eb 100644 --- a/github/github_test.go +++ b/github/github_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/issues.go b/github/issues.go index 758e27d..3a2103b 100644 --- a/github/issues.go +++ b/github/issues.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/issues_test.go b/github/issues_test.go index 02564f8..6cc3ab4 100644 --- a/github/issues_test.go +++ b/github/issues_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/orgs.go b/github/orgs.go index 361fede..162c3e0 100644 --- a/github/orgs.go +++ b/github/orgs.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/orgs_test.go b/github/orgs_test.go index f8c9abd..5e26107 100644 --- a/github/orgs_test.go +++ b/github/orgs_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/pulls.go b/github/pulls.go index d1709ae..bbca3af 100644 --- a/github/pulls.go +++ b/github/pulls.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/pulls_test.go b/github/pulls_test.go index e95fa0f..ae24bd2 100644 --- a/github/pulls_test.go +++ b/github/pulls_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/repos.go b/github/repos.go index 54c223e..9b30316 100644 --- a/github/repos.go +++ b/github/repos.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/repos_test.go b/github/repos_test.go index 2825152..0ca48b5 100644 --- a/github/repos_test.go +++ b/github/repos_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/users.go b/github/users.go index 030cb2e..360ec39 100644 --- a/github/users.go +++ b/github/users.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github diff --git a/github/users_test.go b/github/users_test.go index 9dc47c2..e6fb569 100644 --- a/github/users_test.go +++ b/github/users_test.go @@ -1,8 +1,7 @@ -// Copyright 2013 Google. All rights reserved. +// Copyright 2013 The go-github AUTHORS. All rights reserved. // // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package github