Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id C86F67A211 for ; Sat, 16 Jul 2016 13:03:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6E4F585EAE; Sat, 16 Jul 2016 13:03:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F198D85EA5 for ; Sat, 16 Jul 2016 13:03:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id fhOlvCNyPd85 for ; Sat, 16 Jul 2016 13:03:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2CB9785E40 for ; Sat, 16 Jul 2016 13:03:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 27D1FFBB5; Sat, 16 Jul 2016 13:03:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1468674223155360" MIME-Version: 1.0 Date: Sat, 16 Jul 2016 13:03:43 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20160716130343.27D1FFBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1468674223155360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sat Jul 16 13:03:43 UTC 2016 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/go-mow-cli: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: New package, go-mow-cli. A framework to build command line applications in Go with most of the burden of arguments parsing and validation placed on the framework instead of the developer. To generate a diff of this commit: cvs rdiff -u -r1.2283 -r1.2284 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-mow-cli/DESCR \ pkgsrc/devel/go-mow-cli/Makefile pkgsrc/devel/go-mow-cli/PLIST \ pkgsrc/devel/go-mow-cli/buildlink3.mk pkgsrc/devel/go-mow-cli/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1468674223155360 Content-Disposition: inline Content-Length: 4875 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2283 pkgsrc/devel/Makefile:1.2284 --- pkgsrc/devel/Makefile:1.2283 Fri Jul 15 19:35:01 2016 +++ pkgsrc/devel/Makefile Sat Jul 16 13:03:42 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2283 2016/07/15 19:35:01 bsiegert Exp $ +# $NetBSD: Makefile,v 1.2284 2016/07/16 13:03:42 bsiegert Exp $ # COMMENT= Development utilities @@ -294,6 +294,7 @@ SUBDIR+= gnustep-objc SUBDIR+= gnustep-objc-lf2 SUBDIR+= go-check SUBDIR+= go-flags-svent +SUBDIR+= go-mow-cli SUBDIR+= go-nbreader SUBDIR+= go-ratelimit SUBDIR+= go-review Added files: Index: pkgsrc/devel/go-mow-cli/DESCR diff -u /dev/null pkgsrc/devel/go-mow-cli/DESCR:1.1 --- /dev/null Sat Jul 16 13:03:43 2016 +++ pkgsrc/devel/go-mow-cli/DESCR Sat Jul 16 13:03:42 2016 @@ -0,0 +1,3 @@ +A framework to build command line applications in Go with most of the burden of +arguments parsing and validation placed on the framework instead of the +developer. Index: pkgsrc/devel/go-mow-cli/Makefile diff -u /dev/null pkgsrc/devel/go-mow-cli/Makefile:1.1 --- /dev/null Sat Jul 16 13:03:43 2016 +++ pkgsrc/devel/go-mow-cli/Makefile Sat Jul 16 13:03:42 2016 @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2016/07/16 13:03:42 bsiegert Exp $ + +DISTNAME= go-mow-cli-0.0.20160221 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=jawher/} +GITHUB_PROJECT= mow.cli +GITHUB_TAG= 772320464101e904cd51198160eb4d489be9cc49 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/jawher/mow.cli +COMMENT= versatile library for building CLI applications in Go +LICENSE= mit + +WRKSRC= ${WRKDIR} +GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG} +GO_SRCPATH= github.com/jawher/mow.cli + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/go-mow-cli/PLIST diff -u /dev/null pkgsrc/devel/go-mow-cli/PLIST:1.1 --- /dev/null Sat Jul 16 13:03:43 2016 +++ pkgsrc/devel/go-mow-cli/PLIST Sat Jul 16 13:03:42 2016 @@ -0,0 +1,28 @@ +@comment $NetBSD: PLIST,v 1.1 2016/07/16 13:03:42 bsiegert Exp $ +gopkg/pkg/${GO_PLATFORM}/github.com/jawher/mow.cli.a +gopkg/src/github.com/jawher/mow.cli/LICENSE +gopkg/src/github.com/jawher/mow.cli/README.md +gopkg/src/github.com/jawher/mow.cli/args.go +gopkg/src/github.com/jawher/mow.cli/args_test.go +gopkg/src/github.com/jawher/mow.cli/cli.go +gopkg/src/github.com/jawher/mow.cli/cli_test.go +gopkg/src/github.com/jawher/mow.cli/commands.go +gopkg/src/github.com/jawher/mow.cli/doc.go +gopkg/src/github.com/jawher/mow.cli/examples_test.go +gopkg/src/github.com/jawher/mow.cli/flow.go +gopkg/src/github.com/jawher/mow.cli/flow_test.go +gopkg/src/github.com/jawher/mow.cli/formatter_test.go +gopkg/src/github.com/jawher/mow.cli/formatters.go +gopkg/src/github.com/jawher/mow.cli/fsm.go +gopkg/src/github.com/jawher/mow.cli/helper_test.go +gopkg/src/github.com/jawher/mow.cli/matchers.go +gopkg/src/github.com/jawher/mow.cli/matchers_test.go +gopkg/src/github.com/jawher/mow.cli/options.go +gopkg/src/github.com/jawher/mow.cli/options_test.go +gopkg/src/github.com/jawher/mow.cli/reflect.go +gopkg/src/github.com/jawher/mow.cli/reflect_test.go +gopkg/src/github.com/jawher/mow.cli/spec_n_parse_test.go +gopkg/src/github.com/jawher/mow.cli/spec_parser.go +gopkg/src/github.com/jawher/mow.cli/spec_tk.go +gopkg/src/github.com/jawher/mow.cli/spec_tk_test.go +@pkgdir bin Index: pkgsrc/devel/go-mow-cli/buildlink3.mk diff -u /dev/null pkgsrc/devel/go-mow-cli/buildlink3.mk:1.1 --- /dev/null Sat Jul 16 13:03:43 2016 +++ pkgsrc/devel/go-mow-cli/buildlink3.mk Sat Jul 16 13:03:42 2016 @@ -0,0 +1,15 @@ +# $NetBSD: buildlink3.mk,v 1.1 2016/07/16 13:03:42 bsiegert Exp $ + +BUILDLINK_TREE+= go-mow-cli + +.if !defined(GO_MOW_CLI_BUILDLINK3_MK) +GO_MOW_CLI_BUILDLINK3_MK:= + +BUILDLINK_CONTENTS_FILTER.go-mow-cli= ${EGREP} gopkg/ +BUILDLINK_DEPMETHOD.go-mow-cli?= build + +BUILDLINK_API_DEPENDS.go-mow-cli+= go-mow-cli>=0.0.20160221 +BUILDLINK_PKGSRCDIR.go-mow-cli?= ../../devel/go-mow-cli +.endif # GO_MOW_CLI_BUILDLINK3_MK + +BUILDLINK_TREE+= -go-mow-cli Index: pkgsrc/devel/go-mow-cli/distinfo diff -u /dev/null pkgsrc/devel/go-mow-cli/distinfo:1.1 --- /dev/null Sat Jul 16 13:03:43 2016 +++ pkgsrc/devel/go-mow-cli/distinfo Sat Jul 16 13:03:42 2016 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2016/07/16 13:03:42 bsiegert Exp $ + +SHA1 (go-mow-cli-0.0.20160221-772320464101e904cd51198160eb4d489be9cc49.tar.gz) = 81389c5cf5207686a205cf0e7be6b73481e54c7a +RMD160 (go-mow-cli-0.0.20160221-772320464101e904cd51198160eb4d489be9cc49.tar.gz) = 2a0bb7bb439bf2e877bd434a02a6923374d1e762 +SHA512 (go-mow-cli-0.0.20160221-772320464101e904cd51198160eb4d489be9cc49.tar.gz) = 9590043bdd5342aaff7bc746bb0e144c64e64580e43d057e8901d918570933ca2def0b88ae89acd2fc3a371ce612aaa939fb23255f0cdd4657f925d074726268 +Size (go-mow-cli-0.0.20160221-772320464101e904cd51198160eb4d489be9cc49.tar.gz) = 32881 bytes --_----------=_1468674223155360--