Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tty-share 2.4.1 #204026

Merged
merged 2 commits into from
Jan 13, 2025
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
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3227,6 +3227,7 @@ trurl
tsduck
tt
ttdl
tty-share
ttyd
ttyplot
tuisky
Expand Down
26 changes: 11 additions & 15 deletions Formula/t/tty-share.rb
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
class TtyShare < Formula
desc "Terminal sharing over the Internet"
homepage "https://tty-share.com/"
url "https://github.com/elisescu/tty-share/archive/refs/tags/v2.4.0.tar.gz"
sha256 "90e566cd4c064a1c0b31a418c149a1766f158dd01b3563e7501c98dafd8c244f"
# too many redirects issue with the homepage, https://github.com/elisescu/tty-share/issues/83
homepage "https://github.com/elisescu/tty-share"
url "https://github.com/elisescu/tty-share/archive/refs/tags/v2.4.1.tar.gz"
sha256 "abc186307a95f55f1750592a38871d4839d2ff26365880110bdf107675ea264a"
license "MIT"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "835f2f710e7d78176ebbfd901bcdbda365461796b25e28dee55a4e27bffd2b56"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "e87f8954b2993e8860aa4b43c5cae23846f054a4a88c7b5a00d55e978e0ac17b"
sha256 cellar: :any_skip_relocation, arm64_ventura: "c0a7c784ad44fcdd0d90dc72c0f755ced57104118bd40a592616598054ee748e"
sha256 cellar: :any_skip_relocation, arm64_monterey: "cbcd192686b309a7ac1464e8d5ad9f08629b7111a1d6df176d0035f8f96c9bb2"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "c7466e5d42ceb6f8e44a88277a35a3da363fc4c045bdf5387356cd57be25be60"
sha256 cellar: :any_skip_relocation, sonoma: "f1222c47ac0d476f00a0c64a9993038e7aa1409295793670c3ee3493d00943d8"
sha256 cellar: :any_skip_relocation, ventura: "e93c0812427d8ca2598bed21d0edf709f81c480b5a847a4a83ce20697d129436"
sha256 cellar: :any_skip_relocation, monterey: "a026b1cc81ea6aabcbdaa66d4b1dec583346db66cefe5d2c69828aada3b37f93"
sha256 cellar: :any_skip_relocation, big_sur: "c443d3f7c93183efb992b8ea9eae1998228d9a2193d70c217a1c5840c9487be0"
sha256 cellar: :any_skip_relocation, catalina: "0e202c44071ec49a25c615c91e4ea5ed41924b74a092dd7a911a0004ef953397"
sha256 cellar: :any_skip_relocation, x86_64_linux: "0c88800f33577a7a9ef4e603a809a1c2355b9a3476a34d3f4cd7d98daf693dc0"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "ec03c0cba5c97e463a37e817eb97638bdb3b9111821fd1c44760ef33e0d33ada"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ec03c0cba5c97e463a37e817eb97638bdb3b9111821fd1c44760ef33e0d33ada"
sha256 cellar: :any_skip_relocation, arm64_ventura: "ec03c0cba5c97e463a37e817eb97638bdb3b9111821fd1c44760ef33e0d33ada"
sha256 cellar: :any_skip_relocation, sonoma: "d89b2fc16110d5ee948280744ed4a703d86242a31f96e00ca98f1b6dcb3b9adf"
sha256 cellar: :any_skip_relocation, ventura: "d89b2fc16110d5ee948280744ed4a703d86242a31f96e00ca98f1b6dcb3b9adf"
sha256 cellar: :any_skip_relocation, x86_64_linux: "c2a9c4c7c1155365d7eebcd4bfee4d22010b21584bc843f17d1b4c513182f01c"
end

depends_on "go" => :build

def install
ldflags = "-s -w -X main.version=#{version}"
system "go", "build", *std_go_args(ldflags:), "-mod=vendor"
system "go", "build", *std_go_args(ldflags:)
end

test do
Expand Down
Loading