You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2022/08/05 14:12:26 UTC

[plc4x] branch develop updated: fix(plc4go): fix go install by changing to fork

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new b67679f0b fix(plc4go): fix go install by changing to fork
b67679f0b is described below

commit b67679f0b0f4e7b187131e590d70d79acd9de803
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Aug 5 16:12:18 2022 +0200

    fix(plc4go): fix go install by changing to fork
    
    - This is due to https://github.com/golang/go/issues/44840
---
 plc4go/go.mod                         | 4 +---
 plc4go/go.sum                         | 4 ++--
 plc4go/tools/plc4xbrowser/actions.go  | 2 +-
 plc4go/tools/plc4xbrowser/commands.go | 2 +-
 plc4go/tools/plc4xbrowser/ui.go       | 2 +-
 5 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/plc4go/go.mod b/plc4go/go.mod
index acbf30cea..61fe03c9f 100644
--- a/plc4go/go.mod
+++ b/plc4go/go.mod
@@ -32,12 +32,12 @@ require (
 	github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
 	github.com/libp2p/go-reuseport v0.2.0
 	github.com/pkg/errors v0.9.1
-	github.com/rivo/tview v0.0.0-20220728094620-c6cff75ed57b
 	github.com/rs/zerolog v1.27.0
 	github.com/schollz/progressbar/v3 v3.9.0
 	github.com/snksoft/crc v1.1.0
 	github.com/spf13/cobra v1.5.0
 	github.com/spf13/viper v1.12.0
+	github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75
 	github.com/stretchr/testify v1.8.0
 	github.com/subchen/go-xmldom v1.1.2
 	github.com/viney-shih/go-lock v1.1.2
@@ -75,5 +75,3 @@ require (
 	gopkg.in/ini.v1 v1.66.4 // indirect
 	gopkg.in/yaml.v2 v2.4.0 // indirect
 )
-
-replace github.com/rivo/tview => github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5
diff --git a/plc4go/go.sum b/plc4go/go.sum
index 25d419be9..01c935ebc 100644
--- a/plc4go/go.sum
+++ b/plc4go/go.sum
@@ -211,8 +211,8 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
 github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
 github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ=
 github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI=
-github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5 h1:a5kH/70vAskhgZPGy9AQtOp/7JXl3U2LsQrewsRWksQ=
-github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5/go.mod h1:8NHTlQK5nUcLMAPupYd8thZnu/6jlEWYdJZNcaggXFw=
+github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75 h1:BKtJBki9pA52/f8D3HzBBuC5RPsE8OruGa4A6X0k0/8=
+github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75/go.mod h1:bDM4jV6fta45V303GZ1fyMBAsqYl/rjv0fosVbI/7T4=
 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
 github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
diff --git a/plc4go/tools/plc4xbrowser/actions.go b/plc4go/tools/plc4xbrowser/actions.go
index bf0db850c..31ccda044 100644
--- a/plc4go/tools/plc4xbrowser/actions.go
+++ b/plc4go/tools/plc4xbrowser/actions.go
@@ -28,9 +28,9 @@ import (
 	plc4go "github.com/apache/plc4x/plc4go/pkg/api"
 	"github.com/apache/plc4x/plc4go/pkg/api/transports"
 	"github.com/pkg/errors"
-	"github.com/rivo/tview"
 	"github.com/rs/zerolog"
 	"github.com/rs/zerolog/log"
+	"github.com/sruehl/tview"
 )
 
 func initSubsystem() {
diff --git a/plc4go/tools/plc4xbrowser/commands.go b/plc4go/tools/plc4xbrowser/commands.go
index 5e4d928bd..15661245a 100644
--- a/plc4go/tools/plc4xbrowser/commands.go
+++ b/plc4go/tools/plc4xbrowser/commands.go
@@ -24,9 +24,9 @@ import (
 	plc4x_config "github.com/apache/plc4x/plc4go/pkg/api/config"
 	"github.com/apache/plc4x/plc4go/pkg/api/model"
 	"github.com/pkg/errors"
-	"github.com/rivo/tview"
 	"github.com/rs/zerolog"
 	"github.com/rs/zerolog/log"
+	"github.com/sruehl/tview"
 	"net/url"
 	"strings"
 	"time"
diff --git a/plc4go/tools/plc4xbrowser/ui.go b/plc4go/tools/plc4xbrowser/ui.go
index 6b4f5cae6..230606a6d 100644
--- a/plc4go/tools/plc4xbrowser/ui.go
+++ b/plc4go/tools/plc4xbrowser/ui.go
@@ -24,7 +24,7 @@ import (
 	"github.com/apache/plc4x/plc4go/pkg/api/model"
 	"github.com/gdamore/tcell/v2"
 	"github.com/pkg/errors"
-	"github.com/rivo/tview"
+	"github.com/sruehl/tview"
 	"regexp"
 	"strconv"
 	"time"