Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,22 @@ config BR2_LUAROCKS_MIRROR

See http://luarocks.org

config BR2_GOPROXY
string "Go module proxy"
default "https://proxy.golang.org,direct"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
help
The Go module proxy URL used to download Go modules. By
default, it uses the official Go module mirror, falling back
to direct downloads if the module is not found in the mirror.

The value can be one of:
- Comma-separated list of proxy URLs
- "off" to disable all downloads
- "direct" to download directly from source repositories

See https://go.dev/ref/mod#module-proxy

config BR2_CPAN_MIRROR
string "CPAN mirror (Perl packages)"
default "https://cpan.metacpan.org"
Expand Down
2 changes: 1 addition & 1 deletion package/pkg-golang.mk
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ $(2)_POST_PATCH_HOOKS += $(2)_GEN_GOMOD
$(2)_DOWNLOAD_POST_PROCESS = go
$(2)_DL_ENV += \
$$(HOST_GO_COMMON_ENV) \
GOPROXY=direct \
GOPROXY=$$(call qstrip,$$(BR2_GOPROXY)) \
$$($(2)_GO_ENV)

# If building in a sub directory, do the vendoring in there
Expand Down
2 changes: 1 addition & 1 deletion package/tailscale/tailscale.hash
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Locally computed
sha256 4830cd822a838d5d44fd5eeebd07a2aacaf0255fb3fb7d3852d57659f54e51bc tailscale-1.78.1-go2.tar.gz
sha256 24783770ce8332ea81178c5ae0f1339f0aad80adbaae5a1c53abb3e44fd8b322 tailscale-1.92.3-go2.tar.gz
sha256 d1ee1c7947d4b2c1963ea214d5324f1d4c89f2f1d0f0224889b4dfb868dad725 LICENSE
2 changes: 1 addition & 1 deletion package/tailscale/tailscale.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
################################################################################

TAILSCALE_VERSION = 1.78.1
TAILSCALE_VERSION = 1.92.3
TAILSCALE_SITE = $(call github,tailscale,tailscale,v$(TAILSCALE_VERSION))
TAILSCALE_LICENSE = BSD-3-Clause
TAILSCALE_LICENSE_FILES = LICENSE
Expand Down