Skip to content

Commit 3155a2b

Browse files
committed
Move from csweichel to Gitpod
1 parent e4e887b commit 3155a2b

35 files changed

+71
-67
lines changed

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ builds:
66
env:
77
- CGO_ENABLED=0
88
ldflags:
9-
- -s -w -X github.com/csweichel/dazzle/cmd/core.version={{.Version}}-{{.ShortCommit}}
9+
- -s -w -X github.com/gitpod-io/dazzle/cmd/core.version={{.Version}}-{{.ShortCommit}}
1010
- id: dazzle-util
1111
env:
1212
- CGO_ENABLED=0
@@ -15,7 +15,7 @@ builds:
1515
flags:
1616
- -tags=util
1717
ldflags:
18-
- -s -w -X github.com/csweichel/dazzle/cmd/util.version={{.Version}}-{{.ShortCommit}}
18+
- -s -w -X github.com/gitpod-io/dazzle/cmd/util.version={{.Version}}-{{.ShortCommit}}
1919
archives:
2020
- id: dazzle
2121
replacements:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2019 Christian Weichel
3+
Copyright © 2019 Gitpod
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<img src="logo.png" width="100" style="padding: 1em; background-color: white; border-radius: 10px;">
22

3-
[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://gitpod.io/#https://github.com/csweichel/dazzle)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/csweichel/dazzle)](https://goreportcard.com/report/github.com/csweichel/dazzle)
3+
[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://gitpod.io/#https://github.com/gitpod-io/dazzle)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/gitpod-io/dazzle)](https://goreportcard.com/report/github.com/gitpod-io/dazzle)
55
[![Stability: Experimental](https://masterminds.github.io/stability/experimental.svg)](https://masterminds.github.io/stability/experimental.html)
66

77
dazzle is a rather experimental Docker/OCI image builder. Its goal is to build independent layers where a change to one layer does *not* invalidate the ones sitting "above" it.

cmd/core/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,7 @@ package core
2323
import (
2424
"context"
2525

26-
"github.com/csweichel/dazzle/pkg/dazzle"
26+
"github.com/gitpod-io/dazzle/pkg/dazzle"
2727
"github.com/moby/buildkit/client"
2828
"github.com/spf13/cobra"
2929
)

cmd/core/combine.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -25,8 +25,8 @@ import (
2525
"fmt"
2626
"strings"
2727

28-
"github.com/csweichel/dazzle/pkg/dazzle"
2928
"github.com/docker/distribution/reference"
29+
"github.com/gitpod-io/dazzle/pkg/dazzle"
3030
"github.com/moby/buildkit/client"
3131
log "github.com/sirupsen/logrus"
3232
"github.com/spf13/cobra"

cmd/core/project-add-combination.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"os"
2626

27-
"github.com/csweichel/dazzle/pkg/dazzle"
27+
"github.com/gitpod-io/dazzle/pkg/dazzle"
2828
"github.com/spf13/cobra"
2929
)
3030

cmd/core/project-hash.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -25,7 +25,7 @@ import (
2525
"fmt"
2626
"os"
2727

28-
"github.com/csweichel/dazzle/pkg/dazzle"
28+
"github.com/gitpod-io/dazzle/pkg/dazzle"
2929
"github.com/spf13/cobra"
3030
)
3131

cmd/core/project-ignore.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"os"
2626

27-
"github.com/csweichel/dazzle/pkg/dazzle"
27+
"github.com/gitpod-io/dazzle/pkg/dazzle"
2828
"github.com/spf13/cobra"
2929
)
3030

cmd/core/project-image-name.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@ import (
2424
"context"
2525
"fmt"
2626

27-
"github.com/csweichel/dazzle/pkg/dazzle"
27+
"github.com/gitpod-io/dazzle/pkg/dazzle"
2828
"github.com/spf13/cobra"
2929
)
3030

cmd/core/project-init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 Christian Weichel
1+
// Copyright © 2020 Gitpod
22

33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -26,7 +26,7 @@ import (
2626
"os"
2727
"path/filepath"
2828

29-
"github.com/csweichel/dazzle/pkg/dazzle"
29+
"github.com/gitpod-io/dazzle/pkg/dazzle"
3030
"github.com/spf13/cobra"
3131
)
3232

0 commit comments

Comments
 (0)