pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel Add go-walker version 0.1.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f26adc8842a4
branches:  trunk
changeset: 440586:f26adc8842a4
user:      maya <maya%pkgsrc.org@localhost>
date:      Tue Oct 13 02:33:10 2020 +0000

description:
Add go-walker version 0.1.1

walker is a faster, parallel version, of filepath.Walk.

diffstat:

 devel/Makefile                |   3 ++-
 devel/go-walker/DESCR         |   1 +
 devel/go-walker/Makefile      |  20 ++++++++++++++++++++
 devel/go-walker/PLIST         |  19 +++++++++++++++++++
 devel/go-walker/buildlink3.mk |  17 +++++++++++++++++
 devel/go-walker/distinfo      |   6 ++++++
 6 files changed, 65 insertions(+), 1 deletions(-)

diffs (100 lines):

diff -r 46c3fa358229 -r f26adc8842a4 devel/Makefile
--- a/devel/Makefile    Tue Oct 13 01:47:25 2020 +0000
+++ b/devel/Makefile    Tue Oct 13 02:33:10 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3270 2020/10/08 21:56:10 khorben Exp $
+# $NetBSD: Makefile,v 1.3271 2020/10/13 02:33:10 maya Exp $
 #
 
 COMMENT=       Development utilities
@@ -474,6 +474,7 @@
 SUBDIR+=       go-tools
 SUBDIR+=       go-try
 SUBDIR+=       go-viper
+SUBDIR+=       go-walker
 SUBDIR+=       go-wordwrap
 SUBDIR+=       go-xerrors
 SUBDIR+=       go-yaml
diff -r 46c3fa358229 -r f26adc8842a4 devel/go-walker/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-walker/DESCR     Tue Oct 13 02:33:10 2020 +0000
@@ -0,0 +1,1 @@
+walker is a faster, parallel version, of filepath.Walk.
diff -r 46c3fa358229 -r f26adc8842a4 devel/go-walker/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-walker/Makefile  Tue Oct 13 02:33:10 2020 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2020/10/13 02:33:10 maya Exp $
+
+DISTNAME=      go-walker-0.1.1
+CATEGORIES=    devel
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=saracen/}
+DIST_SUBDIR=   ${GITHUB_PROJECT}
+GITHUB_TAG=    v0.1.1
+GITHUB_PROJECT=        walker
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://godoc.org/github.com/saracen/walker
+COMMENT=       faster, parallel version, of filepath.Walk
+LICENSE=       mit
+
+GO_DIST_BASE=  ${GITHUB_PROJECT}-${GITHUB_TAG:S/^v//}
+GO_SRCPATH=    github.com/saracen/walker
+
+.include "../../lang/go/go-package.mk"
+.include "../../devel/go-sync/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 46c3fa358229 -r f26adc8842a4 devel/go-walker/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-walker/PLIST     Tue Oct 13 02:33:10 2020 +0000
@@ -0,0 +1,19 @@
+@comment $NetBSD: PLIST,v 1.1 2020/10/13 02:33:10 maya Exp $
+gopkg/pkg/${GO_PLATFORM}/github.com/saracen/walker.a
+gopkg/src/github.com/saracen/walker/LICENSE
+gopkg/src/github.com/saracen/walker/README.md
+gopkg/src/github.com/saracen/walker/go.mod
+gopkg/src/github.com/saracen/walker/go.sum
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_dirent_fileno.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_dirent_ino.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_dirent_namlen_bsd.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_dirent_namlen_linux.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_portable.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_test.go
+gopkg/src/github.com/saracen/walker/testdata/fastwalk/fastwalk_unix.go
+gopkg/src/github.com/saracen/walker/walker.go
+gopkg/src/github.com/saracen/walker/walker_option.go
+gopkg/src/github.com/saracen/walker/walker_portable.go
+gopkg/src/github.com/saracen/walker/walker_test.go
+gopkg/src/github.com/saracen/walker/walker_unix.go
diff -r 46c3fa358229 -r f26adc8842a4 devel/go-walker/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-walker/buildlink3.mk     Tue Oct 13 02:33:10 2020 +0000
@@ -0,0 +1,17 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/10/13 02:33:10 maya Exp $
+
+BUILDLINK_TREE+=       go-walker
+
+.if !defined(GO_walker_BUILDLINK3_MK)
+GO_walker_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-walker=   ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-walker?=                build
+
+BUILDLINK_API_DEPENDS.go-walker+=      go-walker>=0.0
+BUILDLINK_PKGSRCDIR.go-walker?=                ../../devel/go-walker
+
+.include "../../devel/go-sync/buildlink3.mk"
+.endif  # GO_walker_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-walker
diff -r 46c3fa358229 -r f26adc8842a4 devel/go-walker/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-walker/distinfo  Tue Oct 13 02:33:10 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/10/13 02:33:10 maya Exp $
+
+SHA1 (walker/go-walker-0.1.1.tar.gz) = 97b1499bee82622470549f95a555e13753462bdb
+RMD160 (walker/go-walker-0.1.1.tar.gz) = 1d1d8245ee66a42a846ccaf6057cd48efbf49312
+SHA512 (walker/go-walker-0.1.1.tar.gz) = 2f9c32296487e0da7c28fcac9c85720176b219d840cab4e240aa9a927043976d87eb12bcf22e6425a80623f7e2583f268833c2daf9bc6fbf6b29562b63c77ed5
+Size (walker/go-walker-0.1.1.tar.gz) = 10707 bytes



Home | Main Index | Thread Index | Old Index