Skip to content

Commit

Permalink
Rename repository
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Jun 18, 2024
1 parent 5bcb16e commit 1c30ee6
Show file tree
Hide file tree
Showing 34 changed files with 102 additions and 102 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Tape has the following commands:
First, clone the repo and build `tape` binary:

```console
git clone -q git@github.com:docker/labs-brown-tape.git ; cd ./labs-brown-tape
git clone -q git@github.com:errordeveloper/tape.git ; cd ./labs-brown-tape
(cd ./tape ; go build)
```

Expand Down
6 changes: 3 additions & 3 deletions attest/attest.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package attest
import (
"fmt"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/docker/labs-brown-tape/attest/types"
"github.com/docker/labs-brown-tape/attest/vcs/git"
"github.com/errordeveloper/tape/attest/digest"
"github.com/errordeveloper/tape/attest/types"
"github.com/errordeveloper/tape/attest/vcs/git"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions attest/manifest/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package manifest
import (
"cmp"

attestTypes "github.com/docker/labs-brown-tape/attest/types"
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
attestTypes "github.com/errordeveloper/tape/attest/types"
manifestTypes "github.com/errordeveloper/tape/manifest/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion attest/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package manifest
import (
"cmp"

"github.com/docker/labs-brown-tape/attest/types"
"github.com/errordeveloper/tape/attest/types"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions attest/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"path/filepath"
"slices"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/docker/labs-brown-tape/attest/manifest"
"github.com/docker/labs-brown-tape/attest/types"
"github.com/errordeveloper/tape/attest/digest"
"github.com/errordeveloper/tape/attest/manifest"
"github.com/errordeveloper/tape/attest/types"
"github.com/fxamacker/cbor/v2"
)

Expand Down
16 changes: 8 additions & 8 deletions attest/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import (
"github.com/google/go-containerregistry/pkg/crane"
. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/attest"
"github.com/docker/labs-brown-tape/attest/manifest"
"github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
"github.com/docker/labs-brown-tape/oci"
// "github.com/docker/labs-brown-tape/trex"
. "github.com/errordeveloper/tape/attest"
"github.com/errordeveloper/tape/attest/manifest"
"github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
"github.com/errordeveloper/tape/oci"
// "github.com/errordeveloper/tape/trex"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion attest/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

toto "github.com/in-toto/in-toto-golang/in_toto"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/errordeveloper/tape/attest/digest"
)

type (
Expand Down
4 changes: 2 additions & 2 deletions attest/vcs/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/go-git/go-git/v5/plumbing/transport"
"github.com/go-git/go-git/v5/utils/ioutil"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/docker/labs-brown-tape/attest/types"
"github.com/errordeveloper/tape/attest/digest"
"github.com/errordeveloper/tape/attest/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion attest/vcs/git/git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
. "github.com/onsi/gomega"
"github.com/onsi/gomega/types"

. "github.com/docker/labs-brown-tape/attest/vcs/git"
. "github.com/errordeveloper/tape/attest/vcs/git"
)

type gitTestCases struct {
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ kind: ImagineBuildConfig
apiVersion: v1alpha1

spec:
name: labs-brown-tape
name: tape
dir: ./
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/docker/labs-brown-tape
module github.com/errordeveloper/tape

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion manifest/image/alias_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/manifest/image"
. "github.com/errordeveloper/tape/manifest/image"
)

func TestMakeAliasesForNames(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion manifest/image/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package image
import (
kustomize "sigs.k8s.io/kustomize/api/types"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/errordeveloper/tape/attest/digest"
)

type (
Expand Down
4 changes: 2 additions & 2 deletions manifest/imagecopier/imagecopier.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"encoding/hex"
"hash"

"github.com/docker/labs-brown-tape/manifest/types"
"github.com/docker/labs-brown-tape/oci"
"github.com/errordeveloper/tape/manifest/types"
"github.com/errordeveloper/tape/oci"
)

type ImageCopier interface {
Expand Down
14 changes: 7 additions & 7 deletions manifest/imagecopier/imagecopier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (

. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/manifest/imagecopier"
"github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
"github.com/docker/labs-brown-tape/oci"
"github.com/docker/labs-brown-tape/trex"
. "github.com/errordeveloper/tape/manifest/imagecopier"
"github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
"github.com/errordeveloper/tape/oci"
"github.com/errordeveloper/tape/trex"
"github.com/google/go-containerregistry/pkg/crane"
)

Expand Down
4 changes: 2 additions & 2 deletions manifest/imageresolver/imageresolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

kimage "sigs.k8s.io/kustomize/api/image"

"github.com/docker/labs-brown-tape/manifest/types"
"github.com/docker/labs-brown-tape/oci"
"github.com/errordeveloper/tape/manifest/types"
"github.com/errordeveloper/tape/oci"
)

type (
Expand Down
10 changes: 5 additions & 5 deletions manifest/imageresolver/imageresolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (

. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
"github.com/docker/labs-brown-tape/manifest/types"
. "github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
"github.com/errordeveloper/tape/manifest/types"
)

func TestImageResover(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions manifest/imagescanner/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"sigs.k8s.io/kustomize/api/filters/filtersutil"
"sigs.k8s.io/kustomize/api/filters/fsslice"

"github.com/docker/labs-brown-tape/attest/digest"
"github.com/docker/labs-brown-tape/manifest/types"
"github.com/errordeveloper/tape/attest/digest"
"github.com/errordeveloper/tape/manifest/types"
)

type Filter struct {
Expand Down
6 changes: 3 additions & 3 deletions manifest/imagescanner/imagescanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
kimage "sigs.k8s.io/kustomize/api/image"
"sigs.k8s.io/kustomize/kyaml/kio"

"github.com/docker/labs-brown-tape/attest"
"github.com/docker/labs-brown-tape/attest/digest"
"github.com/docker/labs-brown-tape/manifest/types"
"github.com/errordeveloper/tape/attest"
"github.com/errordeveloper/tape/attest/digest"
"github.com/errordeveloper/tape/manifest/types"
)

type ImageScanner interface {
Expand Down
6 changes: 3 additions & 3 deletions manifest/imagescanner/imagescanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (

. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
. "github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
)

func TestImageScanner(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions manifest/loader/loader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

. "github.com/onsi/gomega"

. "github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
. "github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
)

func TestLoader(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions manifest/packager/packager.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"time"

attestTypes "github.com/docker/labs-brown-tape/attest/types"
"github.com/docker/labs-brown-tape/oci"
attestTypes "github.com/errordeveloper/tape/attest/types"
"github.com/errordeveloper/tape/oci"
)

type Packager interface {
Expand Down
22 changes: 11 additions & 11 deletions manifest/packager/packager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ import (
"github.com/google/go-containerregistry/pkg/crane"
. "github.com/onsi/gomega"

"github.com/docker/labs-brown-tape/attest"
"github.com/docker/labs-brown-tape/attest/manifest"
"github.com/docker/labs-brown-tape/manifest/imagecopier"
"github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
. "github.com/docker/labs-brown-tape/manifest/packager"
"github.com/docker/labs-brown-tape/manifest/testdata"
"github.com/docker/labs-brown-tape/manifest/updater"
"github.com/docker/labs-brown-tape/oci"
"github.com/docker/labs-brown-tape/trex"
"github.com/errordeveloper/tape/attest"
"github.com/errordeveloper/tape/attest/manifest"
"github.com/errordeveloper/tape/manifest/imagecopier"
"github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
. "github.com/errordeveloper/tape/manifest/packager"
"github.com/errordeveloper/tape/manifest/testdata"
"github.com/errordeveloper/tape/manifest/updater"
"github.com/errordeveloper/tape/oci"
"github.com/errordeveloper/tape/trex"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion manifest/testdata/testdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"path/filepath"
"testing"

"github.com/docker/labs-brown-tape/manifest/types"
"github.com/errordeveloper/tape/manifest/types"
)

type TestCase struct {
Expand Down
2 changes: 1 addition & 1 deletion manifest/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package types
import (
kustomize "sigs.k8s.io/kustomize/api/types"

"github.com/docker/labs-brown-tape/manifest/image"
"github.com/errordeveloper/tape/manifest/image"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions manifest/updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (
"sigs.k8s.io/kustomize/kyaml/kio"
"sigs.k8s.io/kustomize/kyaml/kio/kioutil"

"github.com/docker/labs-brown-tape/attest/digest"
attestTypes "github.com/docker/labs-brown-tape/attest/types"
"github.com/docker/labs-brown-tape/manifest/types"
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
"github.com/errordeveloper/tape/attest/digest"
attestTypes "github.com/errordeveloper/tape/attest/types"
"github.com/errordeveloper/tape/manifest/types"
manifestTypes "github.com/errordeveloper/tape/manifest/types"
)

type Updater interface {
Expand Down
18 changes: 9 additions & 9 deletions manifest/updater/updater_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import (
"github.com/google/go-containerregistry/pkg/crane"
. "github.com/onsi/gomega"

"github.com/docker/labs-brown-tape/manifest/imagecopier"
"github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/testdata"
"github.com/docker/labs-brown-tape/manifest/types"
. "github.com/docker/labs-brown-tape/manifest/updater"
"github.com/docker/labs-brown-tape/oci"
"github.com/docker/labs-brown-tape/trex"
"github.com/errordeveloper/tape/manifest/imagecopier"
"github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/testdata"
"github.com/errordeveloper/tape/manifest/types"
. "github.com/errordeveloper/tape/manifest/updater"
"github.com/errordeveloper/tape/oci"
"github.com/errordeveloper/tape/trex"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions oci/artefact.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"github.com/google/go-containerregistry/pkg/v1/tarball"
typesv1 "github.com/google/go-containerregistry/pkg/v1/types"

attestTypes "github.com/docker/labs-brown-tape/attest/types"
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
attestTypes "github.com/errordeveloper/tape/attest/types"
manifestTypes "github.com/errordeveloper/tape/manifest/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion tape/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

flags "github.com/thought-machine/go-flags"

"github.com/docker/labs-brown-tape/logger"
"github.com/errordeveloper/tape/logger"
)

type OutputFormat string
Expand Down
10 changes: 5 additions & 5 deletions tape/app/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (
"github.com/secure-systems-lab/go-securesystemslib/dsse"
"github.com/sigstore/sigstore/pkg/cryptoutils"

"github.com/docker/labs-brown-tape/manifest/imageresolver"
"github.com/docker/labs-brown-tape/manifest/imagescanner"
"github.com/docker/labs-brown-tape/manifest/loader"
"github.com/docker/labs-brown-tape/manifest/types"
"github.com/docker/labs-brown-tape/oci"
"github.com/errordeveloper/tape/manifest/imageresolver"
"github.com/errordeveloper/tape/manifest/imagescanner"
"github.com/errordeveloper/tape/manifest/loader"
"github.com/errordeveloper/tape/manifest/types"
"github.com/errordeveloper/tape/oci"
)

type TapeImagesCommand struct {
Expand Down
Loading

0 comments on commit 1c30ee6

Please sign in to comment.