As of go v1.21, GOPROXY is required to be set to something or you get the following error:
go: github.com/gorilla/[email protected]: GOPROXY list is not the empty string, but contains no entries Signed-off-by: Ryan Eatmon <[email protected]> --- v2: Fix commit message. .../recipes-devtools/websocketd/websocketd_0.4.1.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.4.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.4.1.bb index 66475726..207cd38a 100644 --- a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.4.1.bb +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.4.1.bb @@ -7,6 +7,8 @@ inherit go-mod GO_IMPORT = "github.com/joewalnes/websocketd" +export GOPROXY = "https://proxy.golang.org,direct" + SRC_URI = "git://${GO_IMPORT};protocol=https;branch=master" SRCREV = "035c18cc3e6962dabd5ea2ad8845260726a4a99e" -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15228): https://lists.yoctoproject.org/g/meta-arago/message/15228 Mute This Topic: https://lists.yoctoproject.org/mt/104765791/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
