Frp 0.53.0 => 0.59.0 (#10151)

This commit is contained in:
Ed Reel
2024-07-14 20:09:28 -05:00
committed by GitHub
parent 4d72d63e6f
commit 71ac4ae0e2

View File

@@ -3,18 +3,18 @@ require 'package'
class Frp < Package
description 'A fast reverse proxy'
homepage 'https://github.com/fatedier/frp'
version '0.53.0'
version '0.59.0'
license 'Apache-2.0'
compatibility 'x86_64 aarch64 armv7l'
source_url({
aarch64: 'https://github.com/fatedier/frp/releases/download/v0.53.0/frp_0.53.0_linux_arm.tar.gz',
armv7l: 'https://github.com/fatedier/frp/releases/download/v0.53.0/frp_0.53.0_linux_arm.tar.gz',
x86_64: 'https://github.com/fatedier/frp/releases/download/v0.53.0/frp_0.53.0_linux_amd64.tar.gz'
aarch64: "https://github.com/fatedier/frp/releases/download/v#{version}/frp_#{version}_linux_arm.tar.gz",
armv7l: "https://github.com/fatedier/frp/releases/download/v#{version}/frp_#{version}_linux_arm.tar.gz",
x86_64: "https://github.com/fatedier/frp/releases/download/v#{version}/frp_#{version}_linux_amd64.tar.gz"
})
source_sha256({
aarch64: 'e33075389b77f94a816ac45bf1d0ce2b540fd98dafac9828602625088967762f',
armv7l: 'e33075389b77f94a816ac45bf1d0ce2b540fd98dafac9828602625088967762f',
x86_64: '662d62af7744b9b639b3473bbdd2c4c70dfa5ac5fe1d058d13ce3cc7ea059500'
aarch64: '2c958e363acedd08be939016ec12d17f66470e4da601b21247af1b31ea74e606',
armv7l: '2c958e363acedd08be939016ec12d17f66470e4da601b21247af1b31ea74e606',
x86_64: '54927eb5c07bd51850771ea55ca23338cdebdbe227d1acf7e2f0d530bd5e09c7'
})
no_compile_needed
@@ -39,8 +39,11 @@ class Frp < Package
end
def self.postinstall
puts "\nType 'frps &' to start the server and run in the background.".lightblue
puts "Type 'frpc &' to start the client on another machine.".lightblue
puts "For more information, see https://github.com/fatedier/frp.\n".lightblue
ExitMessage.add <<~EOM
Type 'frps &' to start the server and run in the background.
Type 'frpc &' to start the client on another machine.
For more information, see https://github.com/fatedier/frp.
EOM
end
end