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 681917A3D7 for ; Sat, 16 Jul 2016 13:21:43 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D09A885EBB; Sat, 16 Jul 2016 13:21:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5F2E985EA5 for ; Sat, 16 Jul 2016 13:21:42 +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 ALMRjEQZztp0 for ; Sat, 16 Jul 2016 13:21:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7C8B185EBD for ; Sat, 16 Jul 2016 13:21:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 704F0FBB5; Sat, 16 Jul 2016 13:21:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146867530161590" MIME-Version: 1.0 Date: Sat, 16 Jul 2016 13:21:41 +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: <20160716132141.704F0FBB5@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. --_----------=_146867530161590 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:21:41 UTC 2016 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/go-testify: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: New package, go-testify. Go code (golang) set of packages that provide many tools for testifying that your code will behave as you intend. Features include: - Easy assertions - Mocking - HTTP response trapping - Testing suite interfaces and functions To generate a diff of this commit: cvs rdiff -u -r1.2284 -r1.2285 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-testify/DESCR \ pkgsrc/devel/go-testify/Makefile pkgsrc/devel/go-testify/PLIST \ pkgsrc/devel/go-testify/buildlink3.mk pkgsrc/devel/go-testify/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146867530161590 Content-Disposition: inline Content-Length: 8702 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2284 pkgsrc/devel/Makefile:1.2285 --- pkgsrc/devel/Makefile:1.2284 Sat Jul 16 13:03:42 2016 +++ pkgsrc/devel/Makefile Sat Jul 16 13:21:41 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2284 2016/07/16 13:03:42 bsiegert Exp $ +# $NetBSD: Makefile,v 1.2285 2016/07/16 13:21:41 bsiegert Exp $ # COMMENT= Development utilities @@ -298,6 +298,7 @@ SUBDIR+= go-mow-cli SUBDIR+= go-nbreader SUBDIR+= go-ratelimit SUBDIR+= go-review +SUBDIR+= go-testify SUBDIR+= go-tools SUBDIR+= gob2 SUBDIR+= gobject-introspection Added files: Index: pkgsrc/devel/go-testify/DESCR diff -u /dev/null pkgsrc/devel/go-testify/DESCR:1.1 --- /dev/null Sat Jul 16 13:21:41 2016 +++ pkgsrc/devel/go-testify/DESCR Sat Jul 16 13:21:41 2016 @@ -0,0 +1,9 @@ +Go code (golang) set of packages that provide many tools for testifying that +your code will behave as you intend. + +Features include: + +- Easy assertions +- Mocking +- HTTP response trapping +- Testing suite interfaces and functions Index: pkgsrc/devel/go-testify/Makefile diff -u /dev/null pkgsrc/devel/go-testify/Makefile:1.1 --- /dev/null Sat Jul 16 13:21:41 2016 +++ pkgsrc/devel/go-testify/Makefile Sat Jul 16 13:21:41 2016 @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2016/07/16 13:21:41 bsiegert Exp $ + +DISTNAME= go-testify-1.1.3 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=stretchr/} +GITHUB_PROJECT= testify +GITHUB_TAG= v1.1.3 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/stretchr/testify +COMMENT= Extension to the standard Go testing package +LICENSE= modified-bsd + +WRKSRC= ${WRKDIR} +GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG:S/v//} +GO_SRCPATH= github.com/stretchr/testify + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/go-testify/PLIST diff -u /dev/null pkgsrc/devel/go-testify/PLIST:1.1 --- /dev/null Sat Jul 16 13:21:41 2016 +++ pkgsrc/devel/go-testify/PLIST Sat Jul 16 13:21:41 2016 @@ -0,0 +1,76 @@ +@comment $NetBSD: PLIST,v 1.1 2016/07/16 13:21:41 bsiegert Exp $ +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/assert.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/http.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/mock.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/require.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/suite.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib.a +gopkg/pkg/${GO_PLATFORM}/github.com/stretchr/testify/vendor/github.com/stretchr/objx.a +gopkg/src/github.com/stretchr/testify/Godeps/Godeps.json +gopkg/src/github.com/stretchr/testify/Godeps/Readme +gopkg/src/github.com/stretchr/testify/LICENCE.txt +gopkg/src/github.com/stretchr/testify/LICENSE +gopkg/src/github.com/stretchr/testify/README.md +gopkg/src/github.com/stretchr/testify/_codegen/main.go +gopkg/src/github.com/stretchr/testify/assert/assertion_forward.go +gopkg/src/github.com/stretchr/testify/assert/assertion_forward.go.tmpl +gopkg/src/github.com/stretchr/testify/assert/assertions.go +gopkg/src/github.com/stretchr/testify/assert/assertions_test.go +gopkg/src/github.com/stretchr/testify/assert/doc.go +gopkg/src/github.com/stretchr/testify/assert/errors.go +gopkg/src/github.com/stretchr/testify/assert/forward_assertions.go +gopkg/src/github.com/stretchr/testify/assert/forward_assertions_test.go +gopkg/src/github.com/stretchr/testify/assert/http_assertions.go +gopkg/src/github.com/stretchr/testify/assert/http_assertions_test.go +gopkg/src/github.com/stretchr/testify/doc.go +gopkg/src/github.com/stretchr/testify/http/doc.go +gopkg/src/github.com/stretchr/testify/http/test_response_writer.go +gopkg/src/github.com/stretchr/testify/http/test_round_tripper.go +gopkg/src/github.com/stretchr/testify/mock/doc.go +gopkg/src/github.com/stretchr/testify/mock/mock.go +gopkg/src/github.com/stretchr/testify/mock/mock_test.go +gopkg/src/github.com/stretchr/testify/package_test.go +gopkg/src/github.com/stretchr/testify/require/doc.go +gopkg/src/github.com/stretchr/testify/require/forward_requirements.go +gopkg/src/github.com/stretchr/testify/require/forward_requirements_test.go +gopkg/src/github.com/stretchr/testify/require/require.go +gopkg/src/github.com/stretchr/testify/require/require.go.tmpl +gopkg/src/github.com/stretchr/testify/require/require_forward.go +gopkg/src/github.com/stretchr/testify/require/require_forward.go.tmpl +gopkg/src/github.com/stretchr/testify/require/requirements.go +gopkg/src/github.com/stretchr/testify/require/requirements_test.go +gopkg/src/github.com/stretchr/testify/suite/doc.go +gopkg/src/github.com/stretchr/testify/suite/interfaces.go +gopkg/src/github.com/stretchr/testify/suite/suite.go +gopkg/src/github.com/stretchr/testify/suite/suite_test.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/LICENSE +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypass.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/common.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/config.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/doc.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/dump.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/format.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/spew.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/LICENSE +gopkg/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/difflib.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/.gitignore +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/LICENSE.md +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/README.md +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/accessors.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/codegen/array-access.txt +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/codegen/index.html +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/codegen/template.txt +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/codegen/types_list.txt +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/constants.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/conversions.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/doc.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/map.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/mutations.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/security.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/tests.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/type_specific_codegen.go +gopkg/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/value.go +@pkgdir bin Index: pkgsrc/devel/go-testify/buildlink3.mk diff -u /dev/null pkgsrc/devel/go-testify/buildlink3.mk:1.1 --- /dev/null Sat Jul 16 13:21:41 2016 +++ pkgsrc/devel/go-testify/buildlink3.mk Sat Jul 16 13:21:41 2016 @@ -0,0 +1,15 @@ +# $NetBSD: buildlink3.mk,v 1.1 2016/07/16 13:21:41 bsiegert Exp $ + +BUILDLINK_TREE+= go-testify + +.if !defined(GO_TESTIFY_BUILDLINK3_MK) +GO_TESTIFY_BUILDLINK3_MK:= + +BUILDLINK_CONTENTS_FILTER.go-testify= ${EGREP} gopkg/ +BUILDLINK_DEPMETHOD.go-testify?= build + +BUILDLINK_API_DEPENDS.go-testify+= go-testify>=1.1.3 +BUILDLINK_PKGSRCDIR.go-testify?= ../../devel/go-testify +.endif # GO_TESTIFY_BUILDLINK3_MK + +BUILDLINK_TREE+= -go-testify Index: pkgsrc/devel/go-testify/distinfo diff -u /dev/null pkgsrc/devel/go-testify/distinfo:1.1 --- /dev/null Sat Jul 16 13:21:41 2016 +++ pkgsrc/devel/go-testify/distinfo Sat Jul 16 13:21:41 2016 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2016/07/16 13:21:41 bsiegert Exp $ + +SHA1 (go-testify-1.1.3.tar.gz) = 2494724ccad2de8003c2c5304a9e5e7470f32290 +RMD160 (go-testify-1.1.3.tar.gz) = 59afdb4e0eb9587c0139e322a747c3be1efa8144 +SHA512 (go-testify-1.1.3.tar.gz) = bd177d7c54246e480bea21a53820cd1246096ab05eaf436aa7d4d3dc81388239be79981ea7e6b2a960fbb120a7dff0faa8aee7bcf267d8d3499eecc65a49d179 +Size (go-testify-1.1.3.tar.gz) = 81051 bytes --_----------=_146867530161590--