svn commit: r555242 - in head/devel: . p5-Test-Snapshot

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Nov 15 17:55:08 UTC 2020


Author: sunpoet
Date: Sun Nov 15 17:55:04 2020
New Revision: 555242
URL: https://svnweb.freebsd.org/changeset/ports/555242

Log:
  Add p5-Test-Snapshot 0.06
  
  Test::Snapshot implements a function to automate the storing and updating of
  expected test outputs. This is based on the idea known in frontend development
  circles as "snapshot testing", hence the module name.
  
  WWW: https://metacpan.org/release/Test-Snapshot

Added:
  head/devel/p5-Test-Snapshot/
  head/devel/p5-Test-Snapshot/Makefile   (contents, props changed)
  head/devel/p5-Test-Snapshot/distinfo   (contents, props changed)
  head/devel/p5-Test-Snapshot/pkg-descr   (contents, props changed)
  head/devel/p5-Test-Snapshot/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Nov 15 17:54:57 2020	(r555241)
+++ head/devel/Makefile	Sun Nov 15 17:55:04 2020	(r555242)
@@ -3413,6 +3413,7 @@
     SUBDIR += p5-Test-Signature
     SUBDIR += p5-Test-Simple
     SUBDIR += p5-Test-Singleton
+    SUBDIR += p5-Test-Snapshot
     SUBDIR += p5-Test-Spec
     SUBDIR += p5-Test-Spelling
     SUBDIR += p5-Test-Strict

Added: head/devel/p5-Test-Snapshot/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Snapshot/Makefile	Sun Nov 15 17:55:04 2020	(r555242)
@@ -0,0 +1,25 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Test-Snapshot
+PORTVERSION=	0.06
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Test against data stored in automatically-named file
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-Text-Diff>=0:textproc/p5-Text-Diff
+TEST_DEPENDS=	p5-Capture-Tiny>=0:devel/p5-Capture-Tiny
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Test-Snapshot/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Snapshot/distinfo	Sun Nov 15 17:55:04 2020	(r555242)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605426301
+SHA256 (Test-Snapshot-0.06.tar.gz) = f4dd7a9a55baa2247540ae34210cd05a04f9d1061befec97a1c90eda95bfae45
+SIZE (Test-Snapshot-0.06.tar.gz) = 7764

Added: head/devel/p5-Test-Snapshot/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Snapshot/pkg-descr	Sun Nov 15 17:55:04 2020	(r555242)
@@ -0,0 +1,5 @@
+Test::Snapshot implements a function to automate the storing and updating of
+expected test outputs. This is based on the idea known in frontend development
+circles as "snapshot testing", hence the module name.
+
+WWW: https://metacpan.org/release/Test-Snapshot

Added: head/devel/p5-Test-Snapshot/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Snapshot/pkg-plist	Sun Nov 15 17:55:04 2020	(r555242)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Test/Snapshot.pm
+%%PERL5_MAN3%%/Test::Snapshot.3.gz


More information about the svn-ports-head mailing list