From ac833ef122973f9cdecabb700b82eca594f02e15 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Tue, 23 Feb 2021 20:02:24 +0100 Subject: [PATCH 01/10] Use full link for the module directive in go.mod Use full link for the module directive in go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 0196f7c..e3cfd1e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module librespeed-cli +module github.com/librespeed/librespeed-cli go 1.14 From e969d7a3fdb88a1632fafe5138a37a0b9c426ad9 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:27:53 +0200 Subject: [PATCH 02/10] Covert include in json.go to full path referencing github. Covert include in json.go to full path referencing github. --- report/json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report/json.go b/report/json.go index a8e7dd7..09c9a0b 100644 --- a/report/json.go +++ b/report/json.go @@ -3,7 +3,7 @@ package report import ( "time" - "librespeed-cli/defs" + "github.com/librespeed/librespeed-cli/defs" ) // JSONReport represents the output data fields in a JSON file From 27aeb4633f306b16254e6679d3f29e41874d0fa4 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:29:20 +0200 Subject: [PATCH 03/10] Covert includes in helper.go to full path referencing github. Covert includes in helper.go to full path referencing github. --- speedtest/helper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speedtest/helper.go b/speedtest/helper.go index 69e0c56..ec1b644 100644 --- a/speedtest/helper.go +++ b/speedtest/helper.go @@ -17,8 +17,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "librespeed-cli/defs" - "librespeed-cli/report" + "github.com/librespeed/librespeed-cli/defs" + "github.com/librespeed/librespeed-cli/report" ) const ( From 6c2df740e48422fb76058f704d32cc83ed6e3f1f Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:30:03 +0200 Subject: [PATCH 04/10] Covert includes in speedtest.go to full path referencing github. Covert includes in speedtest.go to full path referencing github. --- speedtest/speedtest.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speedtest/speedtest.go b/speedtest/speedtest.go index f24f4b0..81bd215 100644 --- a/speedtest/speedtest.go +++ b/speedtest/speedtest.go @@ -17,8 +17,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "librespeed-cli/defs" - "librespeed-cli/report" + "github.com/librespeed/librespeed-cli/defs" + "github.com/librespeed/librespeed-cli/report" ) const ( From 4c9d652d6b10cefd11ebb539be247121ef9e46cf Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:32:28 +0200 Subject: [PATCH 05/10] Covert includes in main.go to full path referencing github. Covert includes in main.go to full path referencing github. --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 4c2193c..aefe4cc 100644 --- a/main.go +++ b/main.go @@ -6,8 +6,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "librespeed-cli/defs" - "librespeed-cli/speedtest" + "github.com/librespeed/librespeed-cli/defs" + "github.com/librespeed/librespeed-cli/speedtest" ) // init sets up the essential bits on start up From 73c46f097e3a5638944d1c7619582695172c3ce9 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:33:25 +0200 Subject: [PATCH 06/10] speedtest-cli instead of librespeed-cli --- report/json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report/json.go b/report/json.go index 09c9a0b..fee05b3 100644 --- a/report/json.go +++ b/report/json.go @@ -3,7 +3,7 @@ package report import ( "time" - "github.com/librespeed/librespeed-cli/defs" + "github.com/librespeed/speedtest-cli/defs" ) // JSONReport represents the output data fields in a JSON file From 5e7c689cfae845ced415dbcd24df52e2ac7be0d0 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:33:53 +0200 Subject: [PATCH 07/10] speedtest-cli instead of librespeed-cli speedtest-cli instead of librespeed-cli --- speedtest/helper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speedtest/helper.go b/speedtest/helper.go index ec1b644..d6c1047 100644 --- a/speedtest/helper.go +++ b/speedtest/helper.go @@ -17,8 +17,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "github.com/librespeed/librespeed-cli/defs" - "github.com/librespeed/librespeed-cli/report" + "github.com/librespeed/speedtest-cli/defs" + "github.com/librespeed/speedtest-cli/report" ) const ( From 72d1364a186b969de2cb227ee8039891b6296f52 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:34:07 +0200 Subject: [PATCH 08/10] speedtest-cli instead of librespeed-cli speedtest-cli instead of librespeed-cli --- speedtest/speedtest.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speedtest/speedtest.go b/speedtest/speedtest.go index 81bd215..c4fa01c 100644 --- a/speedtest/speedtest.go +++ b/speedtest/speedtest.go @@ -17,8 +17,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "github.com/librespeed/librespeed-cli/defs" - "github.com/librespeed/librespeed-cli/report" + "github.com/librespeed/speedtest-cli/defs" + "github.com/librespeed/speedtest-cli/report" ) const ( From b68f64257bd5a3e72de38c71676d77821e6670da Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:34:25 +0200 Subject: [PATCH 09/10] speedtest-cli instead of librespeed-cli speedtest-cli instead of librespeed-cli --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e3cfd1e..cf8d1ee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/librespeed/librespeed-cli +module github.com/librespeed/speedtest-cli go 1.14 From bce6714e3b6ba52d91a65850d2f173b30d2240d7 Mon Sep 17 00:00:00 2001 From: Dries Michiels <32487486+driesmp@users.noreply.github.com> Date: Fri, 21 May 2021 14:34:48 +0200 Subject: [PATCH 10/10] speedtest-cli instead of librespeed-cli speedtest-cli instead of librespeed-cli --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index aefe4cc..7452d76 100644 --- a/main.go +++ b/main.go @@ -6,8 +6,8 @@ import ( log "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" - "github.com/librespeed/librespeed-cli/defs" - "github.com/librespeed/librespeed-cli/speedtest" + "github.com/librespeed/speedtest-cli/defs" + "github.com/librespeed/speedtest-cli/speedtest" ) // init sets up the essential bits on start up