mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
irc/komanda-cli: Remove expired port
2023-08-25 irc/komanda-cli: Upstream no longer maintained
This commit is contained in:
parent
df843a0990
commit
6326b8248d
1
MOVED
1
MOVED
@ -7796,3 +7796,4 @@ sysutils/muse||2023-08-22|Has expired: Broken on all supported FreeBSD releases
|
||||
devel/py-pytest-freezegun|devel/py-pytest-freezer|2023-08-22|Has expired: Use devel/py-pytest-freezer as upstream is unmaintained
|
||||
multimedia/QtAV||2023-08-22|Has expired: Abandoned project and broken with FFmpeg 6
|
||||
mail/vmailmgr||2023-08-22|Has expired: Last upstream release was in 2005 and upstream points to different site
|
||||
irc/komanda-cli||2023-08-25|Has expired: Upstream no longer maintained
|
||||
|
@ -49,7 +49,6 @@
|
||||
SUBDIR += irssi-xmpp
|
||||
SUBDIR += irssistats
|
||||
SUBDIR += keitairc2
|
||||
SUBDIR += komanda-cli
|
||||
SUBDIR += konversation
|
||||
SUBDIR += kvirc
|
||||
SUBDIR += libircclient
|
||||
|
@ -1,43 +0,0 @@
|
||||
PORTNAME= komanda-cli
|
||||
DISTVERSION= g20190920
|
||||
PORTREVISION= 14
|
||||
CATEGORIES= irc
|
||||
|
||||
MAINTAINER= lcook@FreeBSD.org
|
||||
COMMENT= Komanda command-line IRC client
|
||||
WWW= https://github.com/mephux/komanda-cli
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= go:modules
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= mephux
|
||||
GH_TAGNAME= b5ba03b
|
||||
GH_TUPLE= golang:sys:v0.6.0:sys
|
||||
|
||||
DEPRECATED= Upstream no longer maintained
|
||||
EXPIRATION_DATE= 2023-08-25
|
||||
|
||||
_BUILD_SHA= ${GH_TAGNAME}
|
||||
_BUILD_COUNT= 138
|
||||
_BUILD_TAG= ${_BUILD_COUNT}.${_BUILD_SHA}
|
||||
|
||||
GO_BUILDFLAGS= -ldflags "\
|
||||
${STRIP} -w \
|
||||
-X main.Build=${_BUILD_TAG}"
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
PORTDOCS= README.md
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
pre-patch:
|
||||
${RM} -r ${WRKSRC}/vendor/golang.org/x/sys
|
||||
${LN} -s ${WRKDIR}/sys-* ${WRKSRC}/vendor/golang.org/x/sys
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,5 +0,0 @@
|
||||
TIMESTAMP = 1679064444
|
||||
SHA256 (mephux-komanda-cli-g20190920-b5ba03b_GH0.tar.gz) = 73900ce20eb9cbb0ef50cf3b37fffdda902ddaeac549e8b8a7222513d28cd7de
|
||||
SIZE (mephux-komanda-cli-g20190920-b5ba03b_GH0.tar.gz) = 1393222
|
||||
SHA256 (golang-sys-v0.6.0_GH0.tar.gz) = b4f6d17c7a128f76169964b437cb66b3f2dbf9a33361928ec19dfecf7b03fc54
|
||||
SIZE (golang-sys-v0.6.0_GH0.tar.gz) = 1434234
|
@ -1,38 +0,0 @@
|
||||
--- go.mod.orig 2023-03-17 14:50:00 UTC
|
||||
+++ go.mod
|
||||
@@ -1,23 +1,28 @@
|
||||
module github.com/mephux/komanda-cli
|
||||
|
||||
-go 1.13
|
||||
+go 1.17
|
||||
|
||||
require (
|
||||
github.com/0xAX/notificator v0.0.0-20181105090803-d81462e38c21
|
||||
github.com/BurntSushi/toml v0.3.1
|
||||
- github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
||||
- github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1
|
||||
github.com/fluffle/goirc v1.0.1
|
||||
- github.com/hectane/go-attest v0.1.2 // indirect
|
||||
github.com/hectane/go-nonblockingchan v0.1.0
|
||||
github.com/jroimartin/gocui v0.4.0
|
||||
- github.com/mattn/go-runewidth v0.0.4 // indirect
|
||||
github.com/mephux/common v0.0.0-20170531153046-c3a670c8b76e
|
||||
github.com/nsf/termbox-go v0.0.0-20190817171036-93860e161317
|
||||
github.com/sirupsen/logrus v1.4.2
|
||||
github.com/worg/merger v0.0.0-20151129084618-94181de72ed1
|
||||
- golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac // indirect
|
||||
- golang.org/x/tools v0.0.0-20190918171317-3d643c64ae6b // indirect
|
||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
||||
+)
|
||||
+
|
||||
+require (
|
||||
+ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
||||
+ github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4 // indirect
|
||||
+ github.com/golang/mock v1.1.1 // indirect
|
||||
+ github.com/hectane/go-attest v0.1.2 // indirect
|
||||
+ github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
|
||||
+ github.com/mattn/go-runewidth v0.0.4 // indirect
|
||||
+ golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
|
||||
+ golang.org/x/sys v0.6.0 // indirect
|
||||
)
|
@ -1,27 +0,0 @@
|
||||
--- go.sum.orig 2023-03-17 14:50:03 UTC
|
||||
+++ go.sum
|
||||
@@ -38,22 +38,14 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4
|
||||
github.com/worg/merger v0.0.0-20151129084618-94181de72ed1 h1:1f86uztkkTvTGbwAKhDvxgRR58Lo9dApJCeFA0h94dk=
|
||||
github.com/worg/merger v0.0.0-20151129084618-94181de72ed1/go.mod h1:HDawecgPZ4NVthfNX/guuO8Enc4PXVSV3Nw84rarOf4=
|
||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||
-golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac h1:8R1esu+8QioDxo4E4mX6bFztO+dMTM49DNAaWfO5OeY=
|
||||
-golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
|
||||
-golang.org/x/net v0.0.0-20180926154720-4dfa2610cdf3 h1:dgd4x4kJt7G4k4m93AYLzM8Ni6h2qLTfh9n9vXJT3/0=
|
||||
golang.org/x/net v0.0.0-20180926154720-4dfa2610cdf3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
-golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI=
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||
-golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 h1:Cz4ceDQGXuKRnVBDTS23GTn/pU5OE2C0WrNTOYK1Uuc=
|
||||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
+golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
|
||||
+golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
-golang.org/x/tools v0.0.0-20190311212946-11955173bddd h1:/e+gpKk9r3dJobndpTytxS2gOy6m5uvpg+ISQoEcusQ=
|
||||
-golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
||||
-golang.org/x/tools v0.0.0-20190918171317-3d643c64ae6b h1:2mMGF62XpF35V5wwcjnGKw5Rb4J955nU92Cg948i3+4=
|
||||
-golang.org/x/tools v0.0.0-20190918171317-3d643c64ae6b/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||
-golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=
|
||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
@ -1,11 +0,0 @@
|
||||
--- komanda/ui/layout.go.orig 2020-05-15 19:20:57 UTC
|
||||
+++ komanda/ui/layout.go
|
||||
@@ -63,7 +63,7 @@ func Layout(g *gocui.Gui) error {
|
||||
fmt.Fprintln(view, version.ColorLogo())
|
||||
fmt.Fprintln(view, color.String(
|
||||
config.C.Color.Green,
|
||||
- fmt.Sprintf(" Version: %s%s Source Code: %s\n",
|
||||
+ fmt.Sprintf(" Version: %s.%s Source Code: %s\n",
|
||||
version.Version, version.Build, version.Website),
|
||||
),
|
||||
)
|
@ -1,11 +0,0 @@
|
||||
--- vendor/github.com/nsf/termbox-go/api.go.orig 2020-05-15 19:17:07 UTC
|
||||
+++ vendor/github.com/nsf/termbox-go/api.go
|
||||
@@ -24,7 +24,7 @@ import "time"
|
||||
func Init() error {
|
||||
var err error
|
||||
|
||||
- if runtime.GOOS == "openbsd" {
|
||||
+ if runtime.GOOS == "openbsd" || runtime.GOOS == "freebsd" {
|
||||
out, err = os.OpenFile("/dev/tty", os.O_RDWR, 0)
|
||||
if err != nil {
|
||||
return err
|
@ -1,65 +0,0 @@
|
||||
--- vendor/modules.txt.orig 2023-03-17 14:50:38 UTC
|
||||
+++ vendor/modules.txt
|
||||
@@ -1,41 +1,61 @@
|
||||
# github.com/0xAX/notificator v0.0.0-20181105090803-d81462e38c21
|
||||
+## explicit
|
||||
github.com/0xAX/notificator
|
||||
# github.com/BurntSushi/toml v0.3.1
|
||||
+## explicit
|
||||
github.com/BurntSushi/toml
|
||||
# github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
|
||||
+## explicit
|
||||
github.com/alecthomas/template
|
||||
github.com/alecthomas/template/parse
|
||||
# github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4
|
||||
+## explicit
|
||||
github.com/alecthomas/units
|
||||
# github.com/davecgh/go-spew v1.1.1
|
||||
+## explicit
|
||||
github.com/davecgh/go-spew/spew
|
||||
# github.com/fluffle/goirc v1.0.1
|
||||
+## explicit
|
||||
github.com/fluffle/goirc/client
|
||||
github.com/fluffle/goirc/logging
|
||||
github.com/fluffle/goirc/state
|
||||
# github.com/golang/mock v1.1.1
|
||||
+## explicit
|
||||
github.com/golang/mock/gomock
|
||||
+# github.com/hectane/go-attest v0.1.2
|
||||
+## explicit
|
||||
# github.com/hectane/go-nonblockingchan v0.1.0
|
||||
+## explicit
|
||||
github.com/hectane/go-nonblockingchan
|
||||
# github.com/jroimartin/gocui v0.4.0
|
||||
+## explicit
|
||||
github.com/jroimartin/gocui
|
||||
# github.com/konsorten/go-windows-terminal-sequences v1.0.1
|
||||
+## explicit
|
||||
github.com/konsorten/go-windows-terminal-sequences
|
||||
# github.com/mattn/go-runewidth v0.0.4
|
||||
+## explicit
|
||||
github.com/mattn/go-runewidth
|
||||
# github.com/mephux/common v0.0.0-20170531153046-c3a670c8b76e
|
||||
+## explicit
|
||||
github.com/mephux/common
|
||||
# github.com/nsf/termbox-go v0.0.0-20190817171036-93860e161317
|
||||
+## explicit
|
||||
github.com/nsf/termbox-go
|
||||
# github.com/sirupsen/logrus v1.4.2
|
||||
+## explicit
|
||||
github.com/sirupsen/logrus
|
||||
# github.com/worg/merger v0.0.0-20151129084618-94181de72ed1
|
||||
+## explicit
|
||||
github.com/worg/merger
|
||||
# golang.org/x/net v0.0.0-20190620200207-3b0461eec859
|
||||
+## explicit; go 1.11
|
||||
golang.org/x/net/context
|
||||
golang.org/x/net/internal/socks
|
||||
golang.org/x/net/proxy
|
||||
-# golang.org/x/sys v0.0.0-20190422165155-953cdadca894
|
||||
+# golang.org/x/sys v0.6.0
|
||||
+## explicit; go 1.17
|
||||
golang.org/x/sys/unix
|
||||
# gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
||||
+## explicit
|
||||
gopkg.in/alecthomas/kingpin.v2
|
@ -1,2 +0,0 @@
|
||||
Sister app of komanda.io, an IRC
|
||||
client for developers built in go.
|
Loading…
Reference in New Issue
Block a user