devel/go-godef: Import version 0.0.20170920
Godef, given an expression or a location in a source file, prints the location of the definition of the symbol referred to.
This commit is contained in:
parent
6afc788645
commit
d2bd0e5d17
4 changed files with 99 additions and 0 deletions
2
devel/go-godef/DESCR
Normal file
2
devel/go-godef/DESCR
Normal file
|
@ -0,0 +1,2 @@
|
|||
Godef, given an expression or a location in a source file, prints the
|
||||
location of the definition of the symbol referred to.
|
19
devel/go-godef/Makefile
Normal file
19
devel/go-godef/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# $NetBSD: Makefile,v 1.1 2018/07/11 00:05:34 minskim Exp $
|
||||
|
||||
DISTNAME= godef-0.0.20170920
|
||||
PKGNAME= go-${DISTNAME}
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GITHUB:=rogpeppe/}
|
||||
GITHUB_PROJECT= godef
|
||||
GITHUB_TAG= b692db1de5229d4248e23c41736b431eb665615d
|
||||
|
||||
MAINTAINER= minskim@NetBSD.org
|
||||
HOMEPAGE= https://github.com/rogpeppe/godef
|
||||
COMMENT= Print where symbols are defined in Go source code
|
||||
LICENSE= modified-bsd
|
||||
|
||||
GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}
|
||||
GO_SRCPATH= github.com/rogpeppe/${GITHUB_PROJECT}
|
||||
|
||||
.include "../../lang/go/go-package.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
72
devel/go-godef/PLIST
Normal file
72
devel/go-godef/PLIST
Normal file
|
@ -0,0 +1,72 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2018/07/11 00:05:34 minskim Exp $
|
||||
bin/godef
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/ast.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/parser.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/printer.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/scanner.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/sym.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/token.a
|
||||
gopkg/pkg/${GO_PLATFORM}/github.com/rogpeppe/godef/go/types.a
|
||||
gopkg/src/github.com/rogpeppe/godef/Godeps/Godeps.json
|
||||
gopkg/src/github.com/rogpeppe/godef/Godeps/Readme
|
||||
gopkg/src/github.com/rogpeppe/godef/LICENSE
|
||||
gopkg/src/github.com/rogpeppe/godef/README
|
||||
gopkg/src/github.com/rogpeppe/godef/acme.go
|
||||
gopkg/src/github.com/rogpeppe/godef/doc.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/ast.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/filter.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/print.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/print_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/resolve.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/scope.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/ast/walk.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/parser/interface.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/parser/parser.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/parser/parser_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/parser/universe.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/nodes.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/performance_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/printer.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/printer_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/comments.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/comments.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/comments.x
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/declarations.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/declarations.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/empty.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/empty.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/expressions.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/expressions.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/expressions.raw
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/linebreaks.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/linebreaks.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/parser.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/slow.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/slow.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/statements.golden
|
||||
gopkg/src/github.com/rogpeppe/godef/go/printer/testdata/statements.input
|
||||
gopkg/src/github.com/rogpeppe/godef/go/scanner/errors.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/scanner/scanner.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/scanner/scanner_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/sym/sym.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/token/position.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/token/position_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/token/token.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/types/goodarch.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/types/objpos.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/types/types.go
|
||||
gopkg/src/github.com/rogpeppe/godef/go/types/types_test.go
|
||||
gopkg/src/github.com/rogpeppe/godef/godef.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/LICENSE
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/acme/Makefile
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/acme/acme.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/Makefile
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/bit.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/client/Makefile
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/client/conn.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/client/dial.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/client/fid.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/client/fsys.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/const.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/dir.go
|
||||
gopkg/src/github.com/rogpeppe/godef/vendor/9fans.net/go/plan9/fcall.go
|
6
devel/go-godef/distinfo
Normal file
6
devel/go-godef/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2018/07/11 00:05:34 minskim Exp $
|
||||
|
||||
SHA1 (godef-0.0.20170920-b692db1de5229d4248e23c41736b431eb665615d.tar.gz) = aa31943111e28ac29521e50c1314fd8864dc06b7
|
||||
RMD160 (godef-0.0.20170920-b692db1de5229d4248e23c41736b431eb665615d.tar.gz) = c4d3ec53370b89ead6891f61d832e57a97f194b5
|
||||
SHA512 (godef-0.0.20170920-b692db1de5229d4248e23c41736b431eb665615d.tar.gz) = ebd5772a71adc1b9ab7f65f9b43c2c6084bbb968434c2ebebc34c30335bfb8f7f7b879caa83e894bbb7ae2005c529b2622c1458fb8c05f3728d68265e516f4ca
|
||||
Size (godef-0.0.20170920-b692db1de5229d4248e23c41736b431eb665615d.tar.gz) = 132256 bytes
|
Loading…
Reference in a new issue