git: b7dfc5e7a3cc - main - net-im/gomuks: Update to 0.3.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 20 Nov 2022 16:21:36 UTC
The branch main has been updated by ehaupt:
URL: https://cgit.FreeBSD.org/ports/commit/?id=b7dfc5e7a3ccf7aebe6fe8f5933231d5adc18e0e
commit b7dfc5e7a3ccf7aebe6fe8f5933231d5adc18e0e
Author: Emanuel Haupt <ehaupt@FreeBSD.org>
AuthorDate: 2022-11-20 16:21:20 +0000
Commit: Emanuel Haupt <ehaupt@FreeBSD.org>
CommitDate: 2022-11-20 16:21:34 +0000
net-im/gomuks: Update to 0.3.0
---
net-im/gomuks/Makefile | 3 +--
net-im/gomuks/distinfo | 10 +++++-----
.../files/patch-vendor_maunium.net_go_tcell_tscreen.go | 18 ------------------
3 files changed, 6 insertions(+), 25 deletions(-)
diff --git a/net-im/gomuks/Makefile b/net-im/gomuks/Makefile
index dc1ddaa04278..d8387f35eaa2 100644
--- a/net-im/gomuks/Makefile
+++ b/net-im/gomuks/Makefile
@@ -1,7 +1,6 @@
PORTNAME= gomuks
-PORTVERSION= 0.2.4
+PORTVERSION= 0.3.0
DISTVERSIONPREFIX= v
-PORTREVISION= 8
CATEGORIES= net-im
MAINTAINER= ehaupt@FreeBSD.org
diff --git a/net-im/gomuks/distinfo b/net-im/gomuks/distinfo
index 106f239c3f09..47156a093580 100644
--- a/net-im/gomuks/distinfo
+++ b/net-im/gomuks/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1645213160
-SHA256 (go/net-im_gomuks/gomuks-v0.2.4/v0.2.4.mod) = c507dca8fc78772c149694a5b0ec0804db6a2e3582ba2a92b5dea8bc296c23c0
-SIZE (go/net-im_gomuks/gomuks-v0.2.4/v0.2.4.mod) = 1014
-SHA256 (go/net-im_gomuks/gomuks-v0.2.4/v0.2.4.zip) = fccf7de1aca55e3e1cd7137e3323b4f6be3b795808ac049af92c31ab711118d0
-SIZE (go/net-im_gomuks/gomuks-v0.2.4/v0.2.4.zip) = 341183
+TIMESTAMP = 1668959577
+SHA256 (go/net-im_gomuks/gomuks-v0.3.0/v0.3.0.mod) = eb7fb17c9c73239b459ea644617aab27470db1cf3febfbf6a6d54e687d86573f
+SIZE (go/net-im_gomuks/gomuks-v0.3.0/v0.3.0.mod) = 1778
+SHA256 (go/net-im_gomuks/gomuks-v0.3.0/v0.3.0.zip) = dd26ad3126f701536e33899e299f1fecec403ec416e61a1086f02098b1ba0d7f
+SIZE (go/net-im_gomuks/gomuks-v0.3.0/v0.3.0.zip) = 350458
diff --git a/net-im/gomuks/files/patch-vendor_maunium.net_go_tcell_tscreen.go b/net-im/gomuks/files/patch-vendor_maunium.net_go_tcell_tscreen.go
deleted file mode 100644
index a556e946df72..000000000000
--- a/net-im/gomuks/files/patch-vendor_maunium.net_go_tcell_tscreen.go
+++ /dev/null
@@ -1,18 +0,0 @@
---- vendor/maunium.net/go/tcell/tscreen.go.orig 2022-04-12 11:45:41 UTC
-+++ vendor/maunium.net/go/tcell/tscreen.go
-@@ -50,13 +50,9 @@ const (
- // $COLUMNS environment variables can be set to the actual window size,
- // otherwise defaults taken from the terminal database are used.
- func NewTerminfoScreen() (Screen, error) {
-- term := os.Getenv("TERM")
-- if len(term) >= 6 && term[:6] == "screen" && len(os.Getenv("TMUX")) > 0 {
-- term = "tmux"
-- }
-- ti, e := terminfo.LookupTerminfo(term)
-+ ti, e := terminfo.LookupTerminfo(os.Getenv("TERM"))
- if e != nil {
-- ti, e = loadDynamicTerminfo(term)
-+ ti, e = loadDynamicTerminfo(os.Getenv("TERM"))
- if e != nil {
- return nil, e
- }