pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel go-check: remove
details: https://anonhg.NetBSD.org/pkgsrc/rev/a4230b2c2488
branches: trunk
changeset: 385464:a4230b2c2488
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Sun Sep 18 08:16:54 2022 +0000
description:
go-check: remove
This is an old-style GOPATH build that exposes a library. Its only user
(pkglint) is now a module-based build.
proposed by wiz@
diffstat:
devel/Makefile | 3 +--
devel/go-check/DESCR | 20 --------------------
devel/go-check/Makefile | 20 --------------------
devel/go-check/PLIST | 23 -----------------------
devel/go-check/buildlink3.mk | 15 ---------------
devel/go-check/distinfo | 5 -----
6 files changed, 1 insertions(+), 85 deletions(-)
diffs (120 lines):
diff -r 3cf64a86f34b -r a4230b2c2488 devel/Makefile
--- a/devel/Makefile Sun Sep 18 06:13:13 2022 +0000
+++ b/devel/Makefile Sun Sep 18 08:16:54 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3797 2022/09/15 17:51:06 adam Exp $
+# $NetBSD: Makefile,v 1.3798 2022/09/18 08:16:54 bsiegert Exp $
#
COMMENT= Development utilities
@@ -424,7 +424,6 @@
SUBDIR+= gnustep-make
SUBDIR+= gnustep-objc
SUBDIR+= gnustep-objc-lf2
-SUBDIR+= go-check
SUBDIR+= go-ed25519
SUBDIR+= go-flags-svent
SUBDIR+= go-gocode
diff -r 3cf64a86f34b -r a4230b2c2488 devel/go-check/DESCR
--- a/devel/go-check/DESCR Sun Sep 18 06:13:13 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-The check package builds on the standard testing library from Go to offer
-a richer testing framework for libraries and applications to use.
-
-gocheck includes features such as:
-* Helpful error reporting to aid on figuring problems out (see below)
-* Richer test helpers: assertions which interrupt the test immediately,
- deep multi-type comparisons, string matching, etc
-* Suite-based grouping of tests
-* Fixtures: per suite and/or per test set up and tear down
-* Benchmarks integrated in the suite logic (with fixtures, etc)
-* Management of temporary directories
-* Panic-catching logic, with proper error reporting
-* Proper counting of successes, failures, panics, missed tests, skips, etc
-* Explicit test skipping
-* Support for expected failures
-* Verbosity flag which disables output caching (helpful to debug hanging
- tests, for instance)
-* Multi-line string reporting for more comprehensible failures
-* Inclusion of comments surrounding checks on failure reports
-* Fully tested (it manages to test itself reliably)
diff -r 3cf64a86f34b -r a4230b2c2488 devel/go-check/Makefile
--- a/devel/go-check/Makefile Sun Sep 18 06:13:13 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# $NetBSD: Makefile,v 1.52 2022/09/07 09:32:30 bsiegert Exp $
-#
-
-DISTNAME= go-check-1
-PKGREVISION= 50
-CATEGORIES= devel
-MASTER_SITES= ${MASTER_SITE_GITHUB:=go-check/}
-GITHUB_PROJECT= check
-GITHUB_TAG= 4f90aea
-
-MAINTAINER= rillig%NetBSD.org@localhost
-HOMEPAGE= https://labix.org/gocheck
-COMMENT= Rich testing for the Go language
-LICENSE= 2-clause-bsd
-
-GO_SRCPATH= gopkg.in/check.v1
-GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}*
-
-.include "../../lang/go/go-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 3cf64a86f34b -r a4230b2c2488 devel/go-check/PLIST
--- a/devel/go-check/PLIST Sun Sep 18 06:13:13 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2016/01/16 23:56:23 rillig Exp $
-gopkg/pkg/${GO_PLATFORM}/gopkg.in/check.v1.a
-gopkg/src/gopkg.in/check.v1/LICENSE
-gopkg/src/gopkg.in/check.v1/README.md
-gopkg/src/gopkg.in/check.v1/TODO
-gopkg/src/gopkg.in/check.v1/benchmark.go
-gopkg/src/gopkg.in/check.v1/benchmark_test.go
-gopkg/src/gopkg.in/check.v1/bootstrap_test.go
-gopkg/src/gopkg.in/check.v1/check.go
-gopkg/src/gopkg.in/check.v1/check_test.go
-gopkg/src/gopkg.in/check.v1/checkers.go
-gopkg/src/gopkg.in/check.v1/checkers_test.go
-gopkg/src/gopkg.in/check.v1/export_test.go
-gopkg/src/gopkg.in/check.v1/fixture_test.go
-gopkg/src/gopkg.in/check.v1/foundation_test.go
-gopkg/src/gopkg.in/check.v1/helpers.go
-gopkg/src/gopkg.in/check.v1/helpers_test.go
-gopkg/src/gopkg.in/check.v1/printer.go
-gopkg/src/gopkg.in/check.v1/printer_test.go
-gopkg/src/gopkg.in/check.v1/reporter.go
-gopkg/src/gopkg.in/check.v1/reporter_test.go
-gopkg/src/gopkg.in/check.v1/run.go
-gopkg/src/gopkg.in/check.v1/run_test.go
diff -r 3cf64a86f34b -r a4230b2c2488 devel/go-check/buildlink3.mk
--- a/devel/go-check/buildlink3.mk Sun Sep 18 06:13:13 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.2 2018/01/07 13:04:01 rillig Exp $
-
-BUILDLINK_TREE+= go-check
-
-.if !defined(GO_CHECK_BUILDLINK3_MK)
-GO_CHECK_BUILDLINK3_MK:=
-
-BUILDLINK_CONTENTS_FILTER.go-check= ${EGREP} gopkg/
-BUILDLINK_DEPMETHOD.go-check?= build
-
-BUILDLINK_API_DEPENDS.go-check+= go-check>=1
-BUILDLINK_PKGSRCDIR.go-check?= ../../devel/go-check
-.endif # GO_CHECK_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -go-check
diff -r 3cf64a86f34b -r a4230b2c2488 devel/go-check/distinfo
--- a/devel/go-check/distinfo Sun Sep 18 06:13:13 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 10:14:44 nia Exp $
-
-BLAKE2s (go-check-1-4f90aea.tar.gz) = 94aa0cb6c98039512d4f88677bcbc286464f6649bfe1c9faaaeb117c24c5f57d
-SHA512 (go-check-1-4f90aea.tar.gz) = 5a0b15ce76bcb675b4374ed4670ec02f6c1278afe8509d154367df62cf9af669776775be6969ec6c511379c2f9dda243a28cdddb96bfc3252af7b1f883fc620b
-Size (go-check-1-4f90aea.tar.gz) = 30343 bytes
Home |
Main Index |
Thread Index |
Old Index