pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/go-godef



Module Name:    pkgsrc
Committed By:   minskim
Date:           Wed Jul 11 00:05:34 UTC 2018

Added Files:
        pkgsrc/devel/go-godef: DESCR Makefile PLIST distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-godef/DESCR \
    pkgsrc/devel/go-godef/Makefile pkgsrc/devel/go-godef/PLIST \
    pkgsrc/devel/go-godef/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/devel/go-godef/DESCR
diff -u /dev/null pkgsrc/devel/go-godef/DESCR:1.1
--- /dev/null   Wed Jul 11 00:05:34 2018
+++ pkgsrc/devel/go-godef/DESCR Wed Jul 11 00:05:34 2018
@@ -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.
Index: pkgsrc/devel/go-godef/Makefile
diff -u /dev/null pkgsrc/devel/go-godef/Makefile:1.1
--- /dev/null   Wed Jul 11 00:05:34 2018
+++ pkgsrc/devel/go-godef/Makefile      Wed Jul 11 00:05:34 2018
@@ -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"
Index: pkgsrc/devel/go-godef/PLIST
diff -u /dev/null pkgsrc/devel/go-godef/PLIST:1.1
--- /dev/null   Wed Jul 11 00:05:34 2018
+++ pkgsrc/devel/go-godef/PLIST Wed Jul 11 00:05:34 2018
@@ -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
Index: pkgsrc/devel/go-godef/distinfo
diff -u /dev/null pkgsrc/devel/go-godef/distinfo:1.1
--- /dev/null   Wed Jul 11 00:05:34 2018
+++ pkgsrc/devel/go-godef/distinfo      Wed Jul 11 00:05:34 2018
@@ -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