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:
parent
c7987a8500
commit
ab8ecc24cc
@ -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"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"flag"
|
"flag"
|
||||||
|
@ -2,4 +2,6 @@
|
|||||||
|
|
||||||
package find_ffmpeg
|
package find_ffmpeg
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
const exeSuffix = ""
|
const exeSuffix = ""
|
||||||
|
@ -2,4 +2,6 @@
|
|||||||
|
|
||||||
package find_ffmpeg
|
package find_ffmpeg
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
const exeSuffix = ".exe"
|
const exeSuffix = ".exe"
|
||||||
|
@ -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"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package dummy
|
package dummy
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
@ -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"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
@ -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"
|
||||||
|
@ -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 (
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package task_state_machine
|
package task_state_machine
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package stresser
|
package stresser
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package stresser
|
package stresser
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user