From 2b7db5473fcbf6df2597c0595d6cdc86dde44e5e Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Fri, 30 Nov 2018 09:18:31 +0100 Subject: [PATCH 1/3] Add the CONTRIBUTORS.md file This file is a partial list of contributors to the Virtual Machine Manager for Go project. To see the full list of contributors, see the revision history in source control. Contributors who wish to be recognized in this file should add themselves (or their employer, as appropriate). Signed-off-by: Mark Ryan --- CONTRIBUTORS.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CONTRIBUTORS.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000000..7f0cbf4621 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,18 @@ +This file is a partial list of contributors to the Virtual Machine +Manager for Go project. To see the full list of contributors, see the +revision history in source control. + +Contributors who wish to be recognized in this file should add +themselves (or their employer, as appropriate). + +- archana.m.shinde@intel.com +- eric.ernst@intel.com +- james.o.hunt@intel.com +- jose.carlos.venegas.munoz@intel.com +- julio.montes@intel.com +- manohar.r.castelino@intel.com +- mark.d.ryan@intel.com +- robert.bradford@intel.com +- sameo@linux.intel.com +- sebastien.boeuf@intel.com +- xinda.zhao@intel.com From e68e0056977cc10c1f0122920563651f08bc0899 Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Fri, 30 Nov 2018 09:20:38 +0100 Subject: [PATCH 2/3] Update the CONTRIBUTING.md The CONTRIBUTING.md file is updated to provide a template for new source files and to invite contributors to add themselves to the CONTRIBUTORS.md file. Signed-off-by: Mark Ryan --- CONTRIBUTING.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b97d45671e..99630bccf0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,6 +44,38 @@ Fixes #1 Signed-off-by: Mark Ryan ``` +## New files + +Each Go source file in the Virtual Machine Manager for Go project must +contain the following header: + +``` +/* +// Copyright contributors to the Virtual Machine Manager for Go project +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +*/ +``` + +## Contributors File + +This CONTRIBUTORS.md file is a partial list of contributors to the +Virtual Machine Manager for Go project. To see the full list of +contributors, see the revision history in source control. + +Contributors who wish to be recognized in this file should add +themselves (or their employer, as appropriate). + ## Pull requests We accept github pull requests. From ca477a18b6101947ad82bbc4b3578ff0113cf099 Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Fri, 30 Nov 2018 09:25:18 +0100 Subject: [PATCH 3/3] Update source file headers This commit updates the headers in the Go source files to adhere to the new guidelines in the CONTRIBUTING.md file. Signed-off-by: Mark Ryan --- qemu/examples_test.go | 2 +- qemu/image.go | 2 +- qemu/qemu.go | 2 +- qemu/qemu_arch_base.go | 2 +- qemu/qemu_arch_base_test.go | 2 +- qemu/qemu_test.go | 2 +- qemu/qmp.go | 2 +- qemu/qmp_test.go | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/qemu/examples_test.go b/qemu/examples_test.go index c3930a1e18..737d58913e 100644 --- a/qemu/examples_test.go +++ b/qemu/examples_test.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/image.go b/qemu/image.go index b2f906f7cb..de12333c45 100644 --- a/qemu/image.go +++ b/qemu/image.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2017 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qemu.go b/qemu/qemu.go index d1dcecdc86..7acc3c2559 100644 --- a/qemu/qemu.go +++ b/qemu/qemu.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qemu_arch_base.go b/qemu/qemu_arch_base.go index 0db1ecaedd..5e293d1d62 100644 --- a/qemu/qemu_arch_base.go +++ b/qemu/qemu_arch_base.go @@ -1,7 +1,7 @@ // +build !s390x /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qemu_arch_base_test.go b/qemu/qemu_arch_base_test.go index a30b3bdbd8..64a8415b49 100644 --- a/qemu/qemu_arch_base_test.go +++ b/qemu/qemu_arch_base_test.go @@ -1,7 +1,7 @@ // +build !s390x /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qemu_test.go b/qemu/qemu_test.go index 528ef4b9d3..622f47ea70 100644 --- a/qemu/qemu_test.go +++ b/qemu/qemu_test.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qmp.go b/qemu/qmp.go index 1fb33bdb28..8d3cd2fe17 100644 --- a/qemu/qmp.go +++ b/qemu/qmp.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/qemu/qmp_test.go b/qemu/qmp_test.go index 7d158d1b85..a28e0e91c9 100644 --- a/qemu/qmp_test.go +++ b/qemu/qmp_test.go @@ -1,5 +1,5 @@ /* -// Copyright (c) 2016 Intel Corporation +// Copyright contributors to the Virtual Machine Manager for Go project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.