Skip to content

Commit 25daf29

Browse files
committed
madonctl: update to current dev snapshot
I gave this a virtual 2.3.1.1 version number. The main change is that it compiles as a module, eliminating the need for a bunch of library dependencies.
1 parent cc9e78a commit 25daf29

File tree

4 files changed

+1408
-88
lines changed

4 files changed

+1408
-88
lines changed

madonctl/Makefile

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,19 @@
11
# $NetBSD$
22

3-
DISTNAME= madonctl-2.3.1
4-
PKGREVISION= 12
3+
DISTNAME= madonctl-${GITHUB_TAG}
4+
PKGNAME= madonctl-2.3.1.1
55
CATEGORIES= net chat
66
MASTER_SITES= ${MASTER_SITE_GITHUB:=McKael/}
7-
GITHUB_TAG= v${PKGVERSION_NOREV}
7+
GITHUB_TAG= 8d3e9fa1028569dd4d6dbdfbe777c39f5b721650
88

99
HOMEPAGE= https://lilotux.net/~mikael/pub/madonctl/
1010
COMMENT= Command line client for the Mastodon distributed social network API
1111
LICENSE= mit
1212

13-
EXTRACT_USING= bsdtar
13+
EXTRACT_USING= bsdtar
14+
GO_BUILD_PATTERN= .
1415

15-
GO_SRCPATH= github.com/McKael/madonctl/
16-
GO_DIST_BASE= ${DISTNAME}
16+
.include "go-modules.mk"
1717

18-
.include "../../lang/go/go-package.mk"
19-
.include "../../devel/go-cobra/buildlink3.mk"
20-
.include "../../devel/go-errors/buildlink3.mk"
21-
.include "../../devel/go-isatty/buildlink3.mk"
22-
.include "../../devel/go-pflag/buildlink3.mk"
23-
.include "../../devel/go-viper/buildlink3.mk"
24-
.include "../../textproc/go-text/buildlink3.mk"
25-
.include "../../wip/go-madon/buildlink3.mk" # XXX
26-
.include "../../wip/go-ghodss-yaml/buildlink3.mk" # XXX
27-
.include "../../wip/go-kr-text/buildlink3.mk" # XXX
18+
.include "../../lang/go/go-module.mk"
2819
.include "../../mk/bsd.pkg.mk"

madonctl/PLIST

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,2 @@
11
@comment $NetBSD$
22
bin/madonctl
3-
gopkg/pkg/${GO_PLATFORM}/github.com/McKael/madonctl/cmd.a
4-
gopkg/pkg/${GO_PLATFORM}/github.com/McKael/madonctl/printer.a
5-
gopkg/pkg/${GO_PLATFORM}/github.com/McKael/madonctl/printer/colors.a
6-
gopkg/pkg/${GO_PLATFORM}/github.com/McKael/madonctl/printer/html2text.a
7-
gopkg/src/github.com/McKael/madonctl/LICENSE
8-
gopkg/src/github.com/McKael/madonctl/README.md
9-
gopkg/src/github.com/McKael/madonctl/cmd/accounts.go
10-
gopkg/src/github.com/McKael/madonctl/cmd/completion.go
11-
gopkg/src/github.com/McKael/madonctl/cmd/config.go
12-
gopkg/src/github.com/McKael/madonctl/cmd/domainblocks.go
13-
gopkg/src/github.com/McKael/madonctl/cmd/emojis.go
14-
gopkg/src/github.com/McKael/madonctl/cmd/instance.go
15-
gopkg/src/github.com/McKael/madonctl/cmd/lists.go
16-
gopkg/src/github.com/McKael/madonctl/cmd/madon.go
17-
gopkg/src/github.com/McKael/madonctl/cmd/media.go
18-
gopkg/src/github.com/McKael/madonctl/cmd/notifications.go
19-
gopkg/src/github.com/McKael/madonctl/cmd/oauth2.go
20-
gopkg/src/github.com/McKael/madonctl/cmd/root.go
21-
gopkg/src/github.com/McKael/madonctl/cmd/search.go
22-
gopkg/src/github.com/McKael/madonctl/cmd/status.go
23-
gopkg/src/github.com/McKael/madonctl/cmd/stream.go
24-
gopkg/src/github.com/McKael/madonctl/cmd/timelines.go
25-
gopkg/src/github.com/McKael/madonctl/cmd/toot.go
26-
gopkg/src/github.com/McKael/madonctl/cmd/utils.go
27-
gopkg/src/github.com/McKael/madonctl/cmd/version.go
28-
gopkg/src/github.com/McKael/madonctl/configuration.md
29-
gopkg/src/github.com/McKael/madonctl/examples/followdiff
30-
gopkg/src/github.com/McKael/madonctl/main.go
31-
gopkg/src/github.com/McKael/madonctl/printer/README.md
32-
gopkg/src/github.com/McKael/madonctl/printer/colors/colors.go
33-
gopkg/src/github.com/McKael/madonctl/printer/html2text/LICENSE
34-
gopkg/src/github.com/McKael/madonctl/printer/html2text/README.md
35-
gopkg/src/github.com/McKael/madonctl/printer/html2text/html2text.go
36-
gopkg/src/github.com/McKael/madonctl/printer/html2text/html2text_test.go
37-
gopkg/src/github.com/McKael/madonctl/printer/jsonprinter.go
38-
gopkg/src/github.com/McKael/madonctl/printer/plainprinter.go
39-
gopkg/src/github.com/McKael/madonctl/printer/printer.go
40-
gopkg/src/github.com/McKael/madonctl/printer/templateprinter.go
41-
gopkg/src/github.com/McKael/madonctl/printer/themeprinter.go
42-
gopkg/src/github.com/McKael/madonctl/printer/yamlprinter.go
43-
gopkg/src/github.com/McKael/madonctl/templates/README.md
44-
gopkg/src/github.com/McKael/madonctl/templates/ansi-account.tmpl
45-
gopkg/src/github.com/McKael/madonctl/templates/ansi-notification.tmpl
46-
gopkg/src/github.com/McKael/madonctl/templates/ansi-status.tmpl
47-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/account.tmpl
48-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/card.tmpl
49-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/client.tmpl
50-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/context.tmpl
51-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/instance.tmpl
52-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/instancestats.tmpl
53-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/list.tmpl
54-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/notification.tmpl
55-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/relationship.tmpl
56-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/report.tmpl
57-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/results.tmpl
58-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi-dark/status.tmpl
59-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/account.tmpl
60-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/card.tmpl
61-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/client.tmpl
62-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/context.tmpl
63-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/instance.tmpl
64-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/instancestats.tmpl
65-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/list.tmpl
66-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/notification.tmpl
67-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/relationship.tmpl
68-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/report.tmpl
69-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/results.tmpl
70-
gopkg/src/github.com/McKael/madonctl/templates/themes/ansi/status.tmpl

0 commit comments

Comments
 (0)