pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/go-godef devel/go-godef: Import version 0.0.2017...
details: https://anonhg.NetBSD.org/pkgsrc/rev/dea9b8d19106
branches: trunk
changeset: 382699:dea9b8d19106
user: minskim <minskim%pkgsrc.org@localhost>
date: Wed Jul 11 00:05:34 2018 +0000
description:
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.
diffstat:
devel/go-godef/DESCR | 2 +
devel/go-godef/Makefile | 19 ++++++++++++
devel/go-godef/PLIST | 72 +++++++++++++++++++++++++++++++++++++++++++++++++
devel/go-godef/distinfo | 6 ++++
4 files changed, 99 insertions(+), 0 deletions(-)
diffs (115 lines):
diff -r 8b08f7a134e7 -r dea9b8d19106 devel/go-godef/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-godef/DESCR Wed Jul 11 00:05:34 2018 +0000
@@ -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.
diff -r 8b08f7a134e7 -r dea9b8d19106 devel/go-godef/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-godef/Makefile Wed Jul 11 00:05:34 2018 +0000
@@ -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@localhost
+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"
diff -r 8b08f7a134e7 -r dea9b8d19106 devel/go-godef/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-godef/PLIST Wed Jul 11 00:05:34 2018 +0000
@@ -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
diff -r 8b08f7a134e7 -r dea9b8d19106 devel/go-godef/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-godef/distinfo Wed Jul 11 00:05:34 2018 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index