pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/go-quicktest



Module Name:    pkgsrc
Committed By:   nikita
Date:           Mon Jun 29 13:35:12 UTC 2020

Added Files:
        pkgsrc/devel/go-quicktest: DESCR Makefile PLIST buildlink3.mk distinfo

Log Message:
devel/go-quicktest: import go-quicktest-1.10.0

Quicktest provides a collection of Go helpers for writing tests.

The library provides some base checkers like Equals, DeepEquals,
Matches, ErrorMatches, IsNil and others. More can be added by
implementing the Checker interface.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-quicktest/DESCR \
    pkgsrc/devel/go-quicktest/Makefile pkgsrc/devel/go-quicktest/PLIST \
    pkgsrc/devel/go-quicktest/buildlink3.mk \
    pkgsrc/devel/go-quicktest/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-quicktest/DESCR
diff -u /dev/null pkgsrc/devel/go-quicktest/DESCR:1.1
--- /dev/null   Mon Jun 29 13:35:12 2020
+++ pkgsrc/devel/go-quicktest/DESCR     Mon Jun 29 13:35:12 2020
@@ -0,0 +1,5 @@
+Quicktest provides a collection of Go helpers for writing tests.
+
+The library provides some base checkers like Equals, DeepEquals,
+Matches, ErrorMatches, IsNil and others. More can be added by
+implementing the Checker interface.
Index: pkgsrc/devel/go-quicktest/Makefile
diff -u /dev/null pkgsrc/devel/go-quicktest/Makefile:1.1
--- /dev/null   Mon Jun 29 13:35:12 2020
+++ pkgsrc/devel/go-quicktest/Makefile  Mon Jun 29 13:35:12 2020
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2020/06/29 13:35:12 nikita Exp $
+
+DISTNAME=              go-quicktest-1.10.0
+CATEGORIES=            devel
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=frankban/}
+GITHUB_PROJECT=                quicktest
+GITHUB_TAG=            v1.10.0
+
+MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/frankban/quicktest
+COMMENT=               Quick helpers for testing Go applications
+LICENSE=               mit
+
+GO_SRCPATH=            github.com/frankban/quicktest
+GO_DIST_BASE=          ${DISTNAME:S/go-//}
+
+
+.include "../../devel/go-kr-pretty/buildlink3.mk"
+.include "../../devel/go-cmp/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/go-quicktest/PLIST
diff -u /dev/null pkgsrc/devel/go-quicktest/PLIST:1.1
--- /dev/null   Mon Jun 29 13:35:12 2020
+++ pkgsrc/devel/go-quicktest/PLIST     Mon Jun 29 13:35:12 2020
@@ -0,0 +1,31 @@
+@comment $NetBSD: PLIST,v 1.1 2020/06/29 13:35:12 nikita Exp $
+gopkg/pkg/${GO_PLATFORM}/github.com/frankban/quicktest.a
+gopkg/pkg/${GO_PLATFORM}/github.com/frankban/quicktest/qtsuite.a
+gopkg/src/github.com/frankban/quicktest/LICENSE
+gopkg/src/github.com/frankban/quicktest/README.md
+gopkg/src/github.com/frankban/quicktest/checker.go
+gopkg/src/github.com/frankban/quicktest/checker_test.go
+gopkg/src/github.com/frankban/quicktest/cleanup_test.go
+gopkg/src/github.com/frankban/quicktest/comment.go
+gopkg/src/github.com/frankban/quicktest/comment_test.go
+gopkg/src/github.com/frankban/quicktest/deferpanic_test.go
+gopkg/src/github.com/frankban/quicktest/doc.go
+gopkg/src/github.com/frankban/quicktest/error.go
+gopkg/src/github.com/frankban/quicktest/error_test.go
+gopkg/src/github.com/frankban/quicktest/export_test.go
+gopkg/src/github.com/frankban/quicktest/format.go
+gopkg/src/github.com/frankban/quicktest/format_test.go
+gopkg/src/github.com/frankban/quicktest/go.mod
+gopkg/src/github.com/frankban/quicktest/go.sum
+gopkg/src/github.com/frankban/quicktest/iter.go
+gopkg/src/github.com/frankban/quicktest/mapiter.go
+gopkg/src/github.com/frankban/quicktest/mapiter_go1.11.go
+gopkg/src/github.com/frankban/quicktest/patch.go
+gopkg/src/github.com/frankban/quicktest/patch_test.go
+gopkg/src/github.com/frankban/quicktest/qtsuite/suite.go
+gopkg/src/github.com/frankban/quicktest/qtsuite/suite_test.go
+gopkg/src/github.com/frankban/quicktest/quicktest.go
+gopkg/src/github.com/frankban/quicktest/quicktest_test.go
+gopkg/src/github.com/frankban/quicktest/race_test.go
+gopkg/src/github.com/frankban/quicktest/report.go
+gopkg/src/github.com/frankban/quicktest/report_test.go
Index: pkgsrc/devel/go-quicktest/buildlink3.mk
diff -u /dev/null pkgsrc/devel/go-quicktest/buildlink3.mk:1.1
--- /dev/null   Mon Jun 29 13:35:12 2020
+++ pkgsrc/devel/go-quicktest/buildlink3.mk     Mon Jun 29 13:35:12 2020
@@ -0,0 +1,18 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/06/29 13:35:12 nikita Exp $
+
+BUILDLINK_TREE+=       go-quicktest
+
+.if !defined(GO_QUICKTEST_BUILDLINK3_MK)
+GO_QUICKTEST_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-quicktest=        ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-quicktest?=     build
+
+BUILDLINK_API_DEPENDS.go-quicktest+=   go-quicktest>=1.10.0
+BUILDLINK_PKGSRCDIR.go-quicktest?=     ../../devel/go-quicktest
+
+.include "../../devel/go-kr-pretty/buildlink3.mk"
+.include "../../devel/go-cmp/buildlink3.mk"
+.endif # GO_QUICKTEST_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-quicktest
Index: pkgsrc/devel/go-quicktest/distinfo
diff -u /dev/null pkgsrc/devel/go-quicktest/distinfo:1.1
--- /dev/null   Mon Jun 29 13:35:12 2020
+++ pkgsrc/devel/go-quicktest/distinfo  Mon Jun 29 13:35:12 2020
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/06/29 13:35:12 nikita Exp $
+
+SHA1 (go-quicktest-1.10.0.tar.gz) = cdd134a9b27610f6b91c049d9cf5e7e37347fd20
+RMD160 (go-quicktest-1.10.0.tar.gz) = 836278bc2823ad570743c51e3f7e7a78cfd1c10e
+SHA512 (go-quicktest-1.10.0.tar.gz) = 3dbb7159d799b1a4788c3ffd47453496049f13a44bbcc1bd7fac48447f4447c1613517c8ed34b9cc5eb265d7a88e4053e0b583c1303adc73ff774b38847d29e1
+Size (go-quicktest-1.10.0.tar.gz) = 33165 bytes



Home | Main Index | Thread Index | Old Index