Change package URL

Change package URL from `gitlab.com/blender/flamenco-goja-test` to
`gitlab.com/blender/flamenco-ng-poc` so that it matches the actual URL
on Gitlab.
This commit is contained in:
Sybren A. Stüvel 2022-01-24 14:28:00 +01:00
parent e4be846de8
commit b446b02739
12 changed files with 20 additions and 20 deletions

@ -1,5 +1,5 @@
OUT := flamenco-manager-poc
PKG := gitlab.com/blender/flamenco-goja-test
PKG := gitlab.com/blender/flamenco-ng-poc
VERSION := $(shell git describe --tags --dirty --always)
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
STATIC_OUT := ${OUT}-${VERSION}

@ -37,12 +37,12 @@ import (
"github.com/rs/zerolog/log"
"github.com/ziflex/lecho/v3"
"gitlab.com/blender/flamenco-goja-test/internal/appinfo"
"gitlab.com/blender/flamenco-goja-test/internal/manager/api_impl"
"gitlab.com/blender/flamenco-goja-test/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-goja-test/internal/manager/persistence"
"gitlab.com/blender/flamenco-goja-test/internal/manager/swagger_ui"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/internal/appinfo"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/api_impl"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/persistence"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/swagger_ui"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
func main() {

@ -32,8 +32,8 @@ import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"gitlab.com/blender/flamenco-goja-test/internal/appinfo"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/internal/appinfo"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
func main() {

2
go.mod

@ -1,4 +1,4 @@
module gitlab.com/blender/flamenco-goja-test
module gitlab.com/blender/flamenco-ng-poc
go 1.16

@ -25,8 +25,8 @@ import (
"context"
"github.com/labstack/echo/v4"
"gitlab.com/blender/flamenco-goja-test/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
type Flamenco struct {

@ -27,7 +27,7 @@ import (
"github.com/google/uuid"
"github.com/labstack/echo/v4"
"github.com/rs/zerolog/log"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
func (f *Flamenco) GetJobTypes(e echo.Context) error {

@ -27,7 +27,7 @@ import (
"github.com/labstack/echo/v4"
"github.com/rs/zerolog/log"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
func (f *Flamenco) RegisterWorker(e echo.Context) error {

@ -25,7 +25,7 @@ import (
"github.com/dop251/goja"
"github.com/rs/zerolog/log"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
// Author allows scripts to author tasks and commands.

@ -31,7 +31,7 @@ import (
"github.com/dop251/goja_nodejs/require"
"github.com/google/uuid"
"github.com/rs/zerolog/log"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
var ErrJobTypeUnknown = errors.New("job type unknown")

@ -29,7 +29,7 @@ import (
"github.com/benbjohnson/clock"
"github.com/stretchr/testify/assert"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
func exampleSubmittedJob() api.SubmittedJob {

@ -29,8 +29,8 @@ import (
"github.com/rs/zerolog/log"
_ "modernc.org/sqlite"
"gitlab.com/blender/flamenco-goja-test/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-goja-test/pkg/api"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-ng-poc/pkg/api"
)
// TODO : have this configurable from the CLI.

@ -27,7 +27,7 @@ import (
"time"
"github.com/stretchr/testify/assert"
"gitlab.com/blender/flamenco-goja-test/internal/manager/job_compilers"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/job_compilers"
"golang.org/x/net/context"
_ "modernc.org/sqlite"
)