diff --git a/build.go b/build.go index 17c02043..ee270825 100644 --- a/build.go +++ b/build.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/BurntSushi/toml" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit/internal" ) // BuildContext provides the contextual details that are made available by the diff --git a/build_test.go b/build_test.go index 8f2f4062..dbe8f236 100644 --- a/build_test.go +++ b/build_test.go @@ -8,12 +8,12 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit" - "github.com/cloudfoundry/packit/fakes" + "github.com/paketo-buildpacks/packit" + "github.com/paketo-buildpacks/packit/fakes" "github.com/sclevine/spec" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testBuild(t *testing.T, context spec.G, it spec.S) { diff --git a/cargo/buildpack_parser_test.go b/cargo/buildpack_parser_test.go index 788704ab..030a5ca4 100644 --- a/cargo/buildpack_parser_test.go +++ b/cargo/buildpack_parser_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/config_test.go b/cargo/config_test.go index 492a0862..3f860eec 100644 --- a/cargo/config_test.go +++ b/cargo/config_test.go @@ -7,11 +7,11 @@ import ( "testing" "time" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testConfig(t *testing.T, context spec.G, it spec.S) { diff --git a/cargo/dependency_cacher.go b/cargo/dependency_cacher.go index 5e7cdabe..7e732851 100644 --- a/cargo/dependency_cacher.go +++ b/cargo/dependency_cacher.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" ) //go:generate faux --interface Downloader --output fakes/downloader.go diff --git a/cargo/dependency_cacher_test.go b/cargo/dependency_cacher_test.go index 4dc5767e..eb0c311c 100644 --- a/cargo/dependency_cacher_test.go +++ b/cargo/dependency_cacher_test.go @@ -10,9 +10,9 @@ import ( "strings" "testing" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/fakes" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/fakes" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/directory_duplicator_test.go b/cargo/directory_duplicator_test.go index f8b0be6e..63821523 100644 --- a/cargo/directory_duplicator_test.go +++ b/cargo/directory_duplicator_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/fakes/executable.go b/cargo/fakes/executable.go index 8508a674..1fe72820 100644 --- a/cargo/fakes/executable.go +++ b/cargo/fakes/executable.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/pexec" + "github.com/paketo-buildpacks/packit/pexec" ) type Executable struct { diff --git a/cargo/file_bundler_test.go b/cargo/file_bundler_test.go index fe92c3bc..e0af77a1 100644 --- a/cargo/file_bundler_test.go +++ b/cargo/file_bundler_test.go @@ -6,11 +6,11 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testFileBundler(t *testing.T, context spec.G, it spec.S) { diff --git a/cargo/jam/commands/fakes/buildpack_inspector.go b/cargo/jam/commands/fakes/buildpack_inspector.go index 6ebb01b8..e2df48b3 100644 --- a/cargo/jam/commands/fakes/buildpack_inspector.go +++ b/cargo/jam/commands/fakes/buildpack_inspector.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type BuildpackInspector struct { diff --git a/cargo/jam/commands/fakes/config_parser.go b/cargo/jam/commands/fakes/config_parser.go index 576ed2a3..7065cde0 100644 --- a/cargo/jam/commands/fakes/config_parser.go +++ b/cargo/jam/commands/fakes/config_parser.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type ConfigParser struct { diff --git a/cargo/jam/commands/fakes/dependency_cacher.go b/cargo/jam/commands/fakes/dependency_cacher.go index 2630c7ca..7975cdd1 100644 --- a/cargo/jam/commands/fakes/dependency_cacher.go +++ b/cargo/jam/commands/fakes/dependency_cacher.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type DependencyCacher struct { diff --git a/cargo/jam/commands/fakes/file_bundler.go b/cargo/jam/commands/fakes/file_bundler.go index f482e98d..99ef84cf 100644 --- a/cargo/jam/commands/fakes/file_bundler.go +++ b/cargo/jam/commands/fakes/file_bundler.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type FileBundler struct { diff --git a/cargo/jam/commands/fakes/formatter.go b/cargo/jam/commands/fakes/formatter.go index 3dd6d5ee..32bb237f 100644 --- a/cargo/jam/commands/fakes/formatter.go +++ b/cargo/jam/commands/fakes/formatter.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type Formatter struct { diff --git a/cargo/jam/commands/fakes/tar_builder.go b/cargo/jam/commands/fakes/tar_builder.go index 95b2c4dd..513a5574 100644 --- a/cargo/jam/commands/fakes/tar_builder.go +++ b/cargo/jam/commands/fakes/tar_builder.go @@ -3,7 +3,7 @@ package fakes import ( "sync" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type TarBuilder struct { diff --git a/cargo/jam/commands/pack.go b/cargo/jam/commands/pack.go index f5867aaf..118cea2b 100644 --- a/cargo/jam/commands/pack.go +++ b/cargo/jam/commands/pack.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) //go:generate faux --interface ConfigParser --output fakes/config_parser.go diff --git a/cargo/jam/commands/pack_test.go b/cargo/jam/commands/pack_test.go index 71614c9d..02ca2f3e 100644 --- a/cargo/jam/commands/pack_test.go +++ b/cargo/jam/commands/pack_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/jam/commands" - "github.com/cloudfoundry/packit/cargo/jam/commands/fakes" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/jam/commands" + "github.com/paketo-buildpacks/packit/cargo/jam/commands/fakes" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/jam/commands/summarize.go b/cargo/jam/commands/summarize.go index eb0d1283..822f8872 100644 --- a/cargo/jam/commands/summarize.go +++ b/cargo/jam/commands/summarize.go @@ -5,7 +5,7 @@ import ( "flag" "fmt" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) //go:generate faux --interface BuildpackInspector --output fakes/buildpack_inspector.go diff --git a/cargo/jam/commands/summarize_test.go b/cargo/jam/commands/summarize_test.go index b06c2aae..c7edeab1 100644 --- a/cargo/jam/commands/summarize_test.go +++ b/cargo/jam/commands/summarize_test.go @@ -4,9 +4,9 @@ import ( "errors" "testing" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/jam/commands" - "github.com/cloudfoundry/packit/cargo/jam/commands/fakes" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/jam/commands" + "github.com/paketo-buildpacks/packit/cargo/jam/commands/fakes" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/jam/init_test.go b/cargo/jam/init_test.go index 0babfa8b..f17f106d 100644 --- a/cargo/jam/init_test.go +++ b/cargo/jam/init_test.go @@ -32,7 +32,7 @@ func TestUnitJam(t *testing.T) { err error ) - path, err = gexec.Build("github.com/cloudfoundry/packit/cargo/jam") + path, err = gexec.Build("github.com/paketo-buildpacks/packit/cargo/jam") Expect(err).NotTo(HaveOccurred()) }) diff --git a/cargo/jam/internal/buildpack_inspector.go b/cargo/jam/internal/buildpack_inspector.go index 99b533ac..e188cbb7 100644 --- a/cargo/jam/internal/buildpack_inspector.go +++ b/cargo/jam/internal/buildpack_inspector.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type BuildpackInspector struct{} diff --git a/cargo/jam/internal/buildpack_inspector_test.go b/cargo/jam/internal/buildpack_inspector_test.go index 1d92517e..4c25fe51 100644 --- a/cargo/jam/internal/buildpack_inspector_test.go +++ b/cargo/jam/internal/buildpack_inspector_test.go @@ -7,8 +7,8 @@ import ( "os" "testing" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/jam/internal" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/jam/internal" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/jam/internal/formatter.go b/cargo/jam/internal/formatter.go index 7ec03a4d..63809bb2 100644 --- a/cargo/jam/internal/formatter.go +++ b/cargo/jam/internal/formatter.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/Masterminds/semver" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" ) type Formatter struct { diff --git a/cargo/jam/internal/formatter_test.go b/cargo/jam/internal/formatter_test.go index 26650fef..fe75d33b 100644 --- a/cargo/jam/internal/formatter_test.go +++ b/cargo/jam/internal/formatter_test.go @@ -4,8 +4,8 @@ import ( "bytes" "testing" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/jam/internal" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/jam/internal" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/jam/main.go b/cargo/jam/main.go index ac430fb6..f2ed686a 100644 --- a/cargo/jam/main.go +++ b/cargo/jam/main.go @@ -4,11 +4,11 @@ import ( "fmt" "os" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/jam/commands" - "github.com/cloudfoundry/packit/cargo/jam/internal" - "github.com/cloudfoundry/packit/pexec" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/jam/commands" + "github.com/paketo-buildpacks/packit/cargo/jam/internal" + "github.com/paketo-buildpacks/packit/pexec" + "github.com/paketo-buildpacks/packit/scribe" ) type Command interface { diff --git a/cargo/jam/pack_test.go b/cargo/jam/pack_test.go index 87d05042..61d463a2 100644 --- a/cargo/jam/pack_test.go +++ b/cargo/jam/pack_test.go @@ -13,11 +13,11 @@ import ( "github.com/onsi/gomega/gbytes" "github.com/onsi/gomega/gexec" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" - "github.com/cloudfoundry/packit/cargo" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testPack(t *testing.T, context spec.G, it spec.S) { diff --git a/cargo/pre_packager.go b/cargo/pre_packager.go index 040dd9ba..10f1c167 100644 --- a/cargo/pre_packager.go +++ b/cargo/pre_packager.go @@ -3,8 +3,8 @@ package cargo import ( "io" - "github.com/cloudfoundry/packit/pexec" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/pexec" + "github.com/paketo-buildpacks/packit/scribe" ) //go:generate faux --interface Executable --output fakes/executable.go diff --git a/cargo/pre_packager_test.go b/cargo/pre_packager_test.go index 7c931849..059da14a 100644 --- a/cargo/pre_packager_test.go +++ b/cargo/pre_packager_test.go @@ -4,10 +4,10 @@ import ( "bytes" "testing" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/cargo/fakes" - "github.com/cloudfoundry/packit/pexec" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo/fakes" + "github.com/paketo-buildpacks/packit/pexec" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/tar_builder.go b/cargo/tar_builder.go index 17704e75..7ca25a92 100644 --- a/cargo/tar_builder.go +++ b/cargo/tar_builder.go @@ -10,7 +10,7 @@ import ( "sort" "time" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" ) type TarBuilder struct { diff --git a/cargo/tar_builder_test.go b/cargo/tar_builder_test.go index 93d4aa1b..9e77ab18 100644 --- a/cargo/tar_builder_test.go +++ b/cargo/tar_builder_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/transport_test.go b/cargo/transport_test.go index 281bc399..be7c5130 100644 --- a/cargo/transport_test.go +++ b/cargo/transport_test.go @@ -9,7 +9,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/cargo/validated_reader_test.go b/cargo/validated_reader_test.go index 40342277..64a778ab 100644 --- a/cargo/validated_reader_test.go +++ b/cargo/validated_reader_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/cloudfoundry/packit/cargo" + "github.com/paketo-buildpacks/packit/cargo" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/detect.go b/detect.go index 6721454d..232a0255 100644 --- a/detect.go +++ b/detect.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/BurntSushi/toml" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit/internal" ) // Fail is a sentinal value that can be used to indicate a failure to detect diff --git a/detect_test.go b/detect_test.go index 88277004..b7cfe227 100644 --- a/detect_test.go +++ b/detect_test.go @@ -7,13 +7,13 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit" - "github.com/cloudfoundry/packit/fakes" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit" + "github.com/paketo-buildpacks/packit/fakes" + "github.com/paketo-buildpacks/packit/internal" "github.com/sclevine/spec" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testDetect(t *testing.T, context spec.G, it spec.S) { diff --git a/doc.go b/doc.go index 41fdfc70..a73ad4ac 100644 --- a/doc.go +++ b/doc.go @@ -24,7 +24,7 @@ // "os" // "path/filepath" // -// "github.com/cloudfoundry/packit" +// "github.com/paketo-buildpacks/packit" // ) // // func main() { @@ -97,7 +97,7 @@ // package main // // import ( -// "github.com/cloudfoundry/packit" +// "github.com/paketo-buildpacks/packit" // ) // // func main() { diff --git a/environment_test.go b/environment_test.go index b5c65013..912c62a1 100644 --- a/environment_test.go +++ b/environment_test.go @@ -3,7 +3,7 @@ package packit_test import ( "testing" - "github.com/cloudfoundry/packit" + "github.com/paketo-buildpacks/packit" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/fs/checksum_calculator_test.go b/fs/checksum_calculator_test.go index ccb0b990..28d8271c 100644 --- a/fs/checksum_calculator_test.go +++ b/fs/checksum_calculator_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/fs" + "github.com/paketo-buildpacks/packit/fs" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/fs/is_empty_dir_test.go b/fs/is_empty_dir_test.go index 56ed79c3..c23200c6 100644 --- a/fs/is_empty_dir_test.go +++ b/fs/is_empty_dir_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/fs" + "github.com/paketo-buildpacks/packit/fs" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/fs/move_test.go b/fs/move_test.go index 474f8ec9..0b2be809 100644 --- a/fs/move_test.go +++ b/fs/move_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/fs" + "github.com/paketo-buildpacks/packit/fs" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/go.mod b/go.mod index eed5e64d..1527e833 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cloudfoundry/packit +module github.com/paketo-buildpacks/packit go 1.13 diff --git a/go.sum b/go.sum index c6dc9753..50a7b3ed 100644 --- a/go.sum +++ b/go.sum @@ -39,8 +39,6 @@ github.com/mattn/go-runewidth v0.0.8/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.11.0 h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw= github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/gomega v1.9.0 h1:R1uwffexN6Pr340GtYRIdZmAiN4J+iw6WG4wog1DUXg= -github.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= github.com/onsi/gomega v1.10.0 h1:Gwkk+PTu/nfOwNMtUB/mRUv0X7ewW5dO4AERT1ThVKo= github.com/onsi/gomega v1.10.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8= diff --git a/internal/environment_writer_test.go b/internal/environment_writer_test.go index b5ebca82..28018446 100644 --- a/internal/environment_writer_test.go +++ b/internal/environment_writer_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit/internal" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/internal/exit_handler_test.go b/internal/exit_handler_test.go index 72cd74e5..9d33b630 100644 --- a/internal/exit_handler_test.go +++ b/internal/exit_handler_test.go @@ -6,7 +6,7 @@ import ( "io/ioutil" "testing" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit/internal" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/internal/toml_writer_test.go b/internal/toml_writer_test.go index 613ff4be..8753585c 100644 --- a/internal/toml_writer_test.go +++ b/internal/toml_writer_test.go @@ -6,11 +6,11 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/internal" + "github.com/paketo-buildpacks/packit/internal" "github.com/sclevine/spec" - . "github.com/cloudfoundry/packit/matchers" . "github.com/onsi/gomega" + . "github.com/paketo-buildpacks/packit/matchers" ) func testTOMLWriter(t *testing.T, context spec.G, it spec.S) { diff --git a/layer_test.go b/layer_test.go index 8d09428a..0b60b5c1 100644 --- a/layer_test.go +++ b/layer_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit" + "github.com/paketo-buildpacks/packit" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/layers_test.go b/layers_test.go index a9105d88..2aa61d4d 100644 --- a/layers_test.go +++ b/layers_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit" + "github.com/paketo-buildpacks/packit" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/pexec/doc.go b/pexec/doc.go index 2652940e..19f54a88 100644 --- a/pexec/doc.go +++ b/pexec/doc.go @@ -8,7 +8,7 @@ // import ( // "os" // -// "github.com/cloudfoundry/packit/pexec" +// "github.com/paketo-buildpacks/packit/pexec" // ) // // func main() { diff --git a/pexec/executable_test.go b/pexec/executable_test.go index 696d26f3..2327ebf9 100644 --- a/pexec/executable_test.go +++ b/pexec/executable_test.go @@ -10,8 +10,8 @@ import ( "github.com/sclevine/spec" - "github.com/cloudfoundry/packit/pexec" "github.com/onsi/gomega/gexec" + "github.com/paketo-buildpacks/packit/pexec" . "github.com/onsi/gomega" ) @@ -41,7 +41,7 @@ func testPexec(t *testing.T, context spec.G, it spec.S) { executable = pexec.NewExecutable("some-executable") - fakeCLI, err = gexec.Build("github.com/cloudfoundry/packit/fakes/some-executable") + fakeCLI, err = gexec.Build("github.com/paketo-buildpacks/packit/fakes/some-executable") Expect(err).NotTo(HaveOccurred()) existingPath = os.Getenv("PATH") @@ -121,7 +121,7 @@ func testPexec(t *testing.T, context spec.G, it spec.S) { Expect(os.Setenv("PATH", existingPath)).To(Succeed()) var err error - errorCLI, err = gexec.Build("github.com/cloudfoundry/packit/fakes/some-executable", "-ldflags", "-X main.fail=true") + errorCLI, err = gexec.Build("github.com/paketo-buildpacks/packit/fakes/some-executable", "-ldflags", "-X main.fail=true") Expect(err).NotTo(HaveOccurred()) path = os.Getenv("PATH") diff --git a/postal/doc.go b/postal/doc.go index aae0d515..42353198 100644 --- a/postal/doc.go +++ b/postal/doc.go @@ -8,8 +8,8 @@ // import ( // "log" // -// "github.com/cloudfoundry/packit/cargo" -// "github.com/cloudfoundry/packit/postal" +// "github.com/paketo-buildpacks/packit/cargo" +// "github.com/paketo-buildpacks/packit/postal" // ) // // func main() { diff --git a/postal/service.go b/postal/service.go index 6bbba800..2f136030 100644 --- a/postal/service.go +++ b/postal/service.go @@ -6,8 +6,8 @@ import ( "sort" "github.com/Masterminds/semver" - "github.com/cloudfoundry/packit/cargo" - "github.com/cloudfoundry/packit/vacation" + "github.com/paketo-buildpacks/packit/cargo" + "github.com/paketo-buildpacks/packit/vacation" ) //go:generate faux --interface Transport --output fakes/transport.go diff --git a/postal/service_test.go b/postal/service_test.go index 8b9b00a1..43a6f27b 100644 --- a/postal/service_test.go +++ b/postal/service_test.go @@ -15,8 +15,8 @@ import ( "testing" "time" - "github.com/cloudfoundry/packit/postal" - "github.com/cloudfoundry/packit/postal/fakes" + "github.com/paketo-buildpacks/packit/postal" + "github.com/paketo-buildpacks/packit/postal/fakes" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/bar_test.go b/scribe/bar_test.go index 2be9be9d..dfc508f2 100644 --- a/scribe/bar_test.go +++ b/scribe/bar_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/color_test.go b/scribe/color_test.go index 6e323184..07167378 100644 --- a/scribe/color_test.go +++ b/scribe/color_test.go @@ -3,7 +3,7 @@ package scribe_test import ( "testing" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/formatted_list_test.go b/scribe/formatted_list_test.go index 8672b87e..7075408c 100644 --- a/scribe/formatted_list_test.go +++ b/scribe/formatted_list_test.go @@ -3,7 +3,7 @@ package scribe_test import ( "testing" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/formatted_map.go b/scribe/formatted_map.go index e49a0c57..9cbae933 100644 --- a/scribe/formatted_map.go +++ b/scribe/formatted_map.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/cloudfoundry/packit" + "github.com/paketo-buildpacks/packit" ) type FormattedMap map[string]interface{} diff --git a/scribe/formatted_map_test.go b/scribe/formatted_map_test.go index 4d110f57..1a79b730 100644 --- a/scribe/formatted_map_test.go +++ b/scribe/formatted_map_test.go @@ -3,8 +3,8 @@ package scribe_test import ( "testing" - "github.com/cloudfoundry/packit" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/logger_test.go b/scribe/logger_test.go index 743b6c71..8af1248f 100644 --- a/scribe/logger_test.go +++ b/scribe/logger_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/scribe/writer_test.go b/scribe/writer_test.go index 2223f73a..369b7479 100644 --- a/scribe/writer_test.go +++ b/scribe/writer_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/cloudfoundry/packit/scribe" + "github.com/paketo-buildpacks/packit/scribe" "github.com/sclevine/spec" . "github.com/onsi/gomega" diff --git a/vacation/vacation_test.go b/vacation/vacation_test.go index d7520095..582e8eab 100644 --- a/vacation/vacation_test.go +++ b/vacation/vacation_test.go @@ -11,7 +11,7 @@ import ( "path/filepath" "testing" - "github.com/cloudfoundry/packit/vacation" + "github.com/paketo-buildpacks/packit/vacation" "github.com/sclevine/spec" "github.com/ulikunitz/xz"