Cleanup: Add missing license specifiers

Add license specifiers to Go files that were missing them:

```
// SPDX-License-Identifier: GPL-3.0-or-later
```

No functional changes.
This commit is contained in:
Sybren A. Stüvel 2022-07-25 14:25:06 +02:00
parent c7987a8500
commit ab8ecc24cc
16 changed files with 32 additions and 0 deletions

View File

@ -1,5 +1,7 @@
package main package main
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"archive/zip" "archive/zip"
"compress/flate" "compress/flate"

View File

@ -1,5 +1,7 @@
package main package main
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"context" "context"
"flag" "flag"

View File

@ -2,4 +2,6 @@
package find_ffmpeg package find_ffmpeg
// SPDX-License-Identifier: GPL-3.0-or-later
const exeSuffix = "" const exeSuffix = ""

View File

@ -2,4 +2,6 @@
package find_ffmpeg package find_ffmpeg
// SPDX-License-Identifier: GPL-3.0-or-later
const exeSuffix = ".exe" const exeSuffix = ".exe"

View File

@ -1,6 +1,8 @@
// package find_ffmpeg can find an FFmpeg binary on the system. // package find_ffmpeg can find an FFmpeg binary on the system.
package find_ffmpeg package find_ffmpeg
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"context" "context"
"errors" "errors"

View File

@ -1,5 +1,7 @@
package dummy package dummy
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"context" "context"
"errors" "errors"

View File

@ -1,5 +1,7 @@
package api_impl package api_impl
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"errors" "errors"
"net/http" "net/http"

View File

@ -1,5 +1,7 @@
package persistence package persistence
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"testing" "testing"
"time" "time"

View File

@ -1,5 +1,7 @@
package swagger_ui package swagger_ui
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"embed" "embed"
"io/fs" "io/fs"

View File

@ -1,5 +1,7 @@
package task_state_machine package task_state_machine
// SPDX-License-Identifier: GPL-3.0-or-later
import "git.blender.org/flamenco/pkg/api" import "git.blender.org/flamenco/pkg/api"
var ( var (

View File

@ -1,5 +1,7 @@
package task_state_machine package task_state_machine
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"testing" "testing"

View File

@ -1,6 +1,8 @@
// Package own_url provides a way for a process to find a URL on which it can be reached. // Package own_url provides a way for a process to find a URL on which it can be reached.
package own_url package own_url
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"fmt" "fmt"
"net" "net"

View File

@ -1,6 +1,8 @@
// Package own_url provides a way for a process to find a URL on which it can be reached. // Package own_url provides a way for a process to find a URL on which it can be reached.
package own_url package own_url
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"net" "net"
"testing" "testing"

View File

@ -1,5 +1,7 @@
package stresser package stresser
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"

View File

@ -1,5 +1,7 @@
package stresser package stresser
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"context" "context"
"errors" "errors"

View File

@ -1,5 +1,7 @@
package stresser package stresser
// SPDX-License-Identifier: GPL-3.0-or-later
import ( import (
"context" "context"
"fmt" "fmt"