Skip to content

Commit

Permalink
Apply license adjustments and fixes
Browse files Browse the repository at this point in the history
Add configuration file for automated license modifications, remove
automated licese modifications from specific locations, and update the
license set in the gem specification.
  • Loading branch information
chrisroberts committed Aug 11, 2023
1 parent d9dc1d6 commit a7135c0
Show file tree
Hide file tree
Showing 25 changed files with 16 additions and 70 deletions.
15 changes: 15 additions & 0 deletions .copywrite.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
schema_version = 1

project {
license = "BUSL-1.1"
copyright_year = 2010

header_ignore = [
"internal/pkg/defaults/**",
"internal/pkg/spinner/**",
"internal/server/bindata_ui.go",
"internal/server/gen/**",
"lib/vagrant/protobufs/**",
"thirdparty/**",
]
}
3 changes: 0 additions & 3 deletions internal/pkg/defaults/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1

language: go
go: 1.13

Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/defaults/defaults.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

package defaults

import (
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/defaults/defaults_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

package defaults

import (
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/defaults/internal/fixture/test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

package fixture

// Sample is a struct that contains 1 exported field and 1 unexported field
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/defaults/setter.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

package defaults

// Setter is an interface for setting default values
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/spinner/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1

language: go
go:
- 1.13
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/spinner/_example/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

// Example application that uses all of the available API options.
package main

Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/spinner/character_sets.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

package spinner

const (
Expand Down
3 changes: 0 additions & 3 deletions internal/pkg/spinner/spinner.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1

// 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
Expand Down
3 changes: 0 additions & 3 deletions internal/server/bindata_ui.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions internal/server/gen/ruby/proto/ruby_vagrant/ruby-server_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions internal/server/gen/ruby/proto/vagrant_server/server_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/plugin/grpc_broker_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/plugin/grpc_broker_services_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/protostructure_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions lib/vagrant/protobufs/proto/vagrant_server/server_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vagrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.authors = ["Mitchell Hashimoto", "John Bender"]
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
s.homepage = "https://www.vagrantup.com"
s.license = 'MIT'
s.license = 'BUSL-1.1'
s.summary = "Build and distribute virtualized development environments."
s.description = "Vagrant is a tool for building and distributing virtualized development environments."

Expand Down

0 comments on commit a7135c0

Please sign in to comment.