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,22 +1,21 @@ PORTNAME= gomuks -PORTVERSION= 0.2.4 +PORTVERSION= 0.3.0 DISTVERSIONPREFIX= v -PORTREVISION= 8 CATEGORIES= net-im MAINTAINER= ehaupt@FreeBSD.org COMMENT= Terminal Matrix client written in Go WWW= https://github.com/tulir/gomuks LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libolm.so:security/olm USES= go:modules GO_MODULE= github.com/tulir/gomuks PLIST_FILES= bin/gomuks .include 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 - }