pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/golint Update golint to 20180702.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/84eec7c9dbcd
branches:  trunk
changeset: 313812:84eec7c9dbcd
user:      bsiegert <bsiegert%pkgsrc.org@localhost>
date:      Wed Oct 10 19:16:26 2018 +0000

description:
Update golint to 20180702.

No changelog from upstream.

Stop installing the source code, only the binary is needed.

diffstat:

 devel/golint/Makefile |  13 ++++++++-----
 devel/golint/PLIST    |  43 +------------------------------------------
 devel/golint/distinfo |  10 +++++-----
 3 files changed, 14 insertions(+), 52 deletions(-)

diffs (97 lines):

diff -r af95304190a3 -r 84eec7c9dbcd devel/golint/Makefile
--- a/devel/golint/Makefile     Wed Oct 10 18:58:33 2018 +0000
+++ b/devel/golint/Makefile     Wed Oct 10 19:16:26 2018 +0000
@@ -1,22 +1,25 @@
-# $NetBSD: Makefile,v 1.12 2018/06/12 17:50:24 bsiegert Exp $
+# $NetBSD: Makefile,v 1.13 2018/10/10 19:16:26 bsiegert Exp $
 
-DISTNAME=              golint-20170228
-PKGREVISION=           4
+DISTNAME=              golint-20180702
 CATEGORIES=            devel
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=golang/}
 GITHUB_PROJECT=                lint
-GITHUB_TAG=            cb00e56
+GITHUB_TAG=            06c8688
 
 MAINTAINER=            bsiegert%NetBSD.org@localhost
 HOMEPAGE=              https://golang.org/
 COMMENT=               Linter for Go source files
 LICENSE=               modified-bsd
 
-GO_SRCPATH=            github.com/golang/lint
+GO_SRCPATH=            golang.org/x/lint
 GO_DIST_BASE=          ${GITHUB_PROJECT}-${GITHUB_TAG}*
 
 CHECK_RELRO_SKIP+=     bin/golint
 
+do-install:
+       ${INSTALL_PROGRAM} ${WRKDIR}/bin/golint ${DESTDIR}${PREFIX}/bin
+
+
 .include "../../lang/go/go-package.mk"
 .include "../../devel/go-tools/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r af95304190a3 -r 84eec7c9dbcd devel/golint/PLIST
--- a/devel/golint/PLIST        Wed Oct 10 18:58:33 2018 +0000
+++ b/devel/golint/PLIST        Wed Oct 10 19:16:26 2018 +0000
@@ -1,43 +1,2 @@
-@comment $NetBSD: PLIST,v 1.2 2017/04/04 16:16:20 bsiegert Exp $
+@comment $NetBSD: PLIST,v 1.3 2018/10/10 19:16:26 bsiegert Exp $
 bin/golint
-gopkg/pkg/${GO_PLATFORM}/github.com/golang/lint.a
-gopkg/src/github.com/golang/lint/CONTRIBUTING.md
-gopkg/src/github.com/golang/lint/LICENSE
-gopkg/src/github.com/golang/lint/README.md
-gopkg/src/github.com/golang/lint/golint/golint.go
-gopkg/src/github.com/golang/lint/golint/import.go
-gopkg/src/github.com/golang/lint/lint.go
-gopkg/src/github.com/golang/lint/lint_test.go
-gopkg/src/github.com/golang/lint/misc/emacs/golint.el
-gopkg/src/github.com/golang/lint/misc/vim/ftplugin/go/lint.vim
-gopkg/src/github.com/golang/lint/testdata/4.go
-gopkg/src/github.com/golang/lint/testdata/5_test.go
-gopkg/src/github.com/golang/lint/testdata/blank-import-lib.go
-gopkg/src/github.com/golang/lint/testdata/blank-import-lib_test.go
-gopkg/src/github.com/golang/lint/testdata/blank-import-main.go
-gopkg/src/github.com/golang/lint/testdata/broken.go
-gopkg/src/github.com/golang/lint/testdata/common-methods.go
-gopkg/src/github.com/golang/lint/testdata/const-block.go
-gopkg/src/github.com/golang/lint/testdata/context.go
-gopkg/src/github.com/golang/lint/testdata/contextkeytypes.go
-gopkg/src/github.com/golang/lint/testdata/else-multi.go
-gopkg/src/github.com/golang/lint/testdata/else.go
-gopkg/src/github.com/golang/lint/testdata/error-return.go
-gopkg/src/github.com/golang/lint/testdata/errorf.go
-gopkg/src/github.com/golang/lint/testdata/errors.go
-gopkg/src/github.com/golang/lint/testdata/import-dot.go
-gopkg/src/github.com/golang/lint/testdata/inc.go
-gopkg/src/github.com/golang/lint/testdata/names.go
-gopkg/src/github.com/golang/lint/testdata/pkg-doc1.go
-gopkg/src/github.com/golang/lint/testdata/pkg-doc2.go
-gopkg/src/github.com/golang/lint/testdata/pkg-doc3.go
-gopkg/src/github.com/golang/lint/testdata/pkg-doc4.go
-gopkg/src/github.com/golang/lint/testdata/pkg-doc5.go
-gopkg/src/github.com/golang/lint/testdata/pkg-main.go
-gopkg/src/github.com/golang/lint/testdata/range.go
-gopkg/src/github.com/golang/lint/testdata/receiver-names.go
-gopkg/src/github.com/golang/lint/testdata/sort.go
-gopkg/src/github.com/golang/lint/testdata/stutter.go
-gopkg/src/github.com/golang/lint/testdata/time.go
-gopkg/src/github.com/golang/lint/testdata/unexp-return.go
-gopkg/src/github.com/golang/lint/testdata/var-decl.go
diff -r af95304190a3 -r 84eec7c9dbcd devel/golint/distinfo
--- a/devel/golint/distinfo     Wed Oct 10 18:58:33 2018 +0000
+++ b/devel/golint/distinfo     Wed Oct 10 19:16:26 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2017/04/04 16:16:20 bsiegert Exp $
+$NetBSD: distinfo,v 1.3 2018/10/10 19:16:26 bsiegert Exp $
 
-SHA1 (golint-20170228-cb00e56.tar.gz) = 36424345e77a8a36585823f2dc989f6aed19a515
-RMD160 (golint-20170228-cb00e56.tar.gz) = 5cefbbd91a8824331855215b5504c636d5c71d96
-SHA512 (golint-20170228-cb00e56.tar.gz) = 91b7d5774a1293a75dec6ddf9a3324b11fbdbaa3d72476e6c88884ac31683d180890ee221e877fbf6a5156baa98a5cfb452ddce31942139e9a46f0c4b2762a2a
-Size (golint-20170228-cb00e56.tar.gz) = 30796 bytes
+SHA1 (golint-20180702-06c8688.tar.gz) = 97f2d910b0d8b93d19309252d74e39c38f6f737a
+RMD160 (golint-20180702-06c8688.tar.gz) = e622846ccfe81fe7837297825220dfc80c71cc33
+SHA512 (golint-20180702-06c8688.tar.gz) = bbf550927f547950e0a8270eaf4981cf51b799998e2154058aad3345579ea3a70581cdc13cc36345ca82cf3513a88092f0f5d453895768d05b25a4c47f030fb0
+Size (golint-20180702-06c8688.tar.gz) = 31957 bytes



Home | Main Index | Thread Index | Old Index