From owner-svn-ports-all@freebsd.org Sun Nov 15 17:55:07 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 62AF52EF92A; Sun, 15 Nov 2020 17:55:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZ0Gf622Mz4fQp; Sun, 15 Nov 2020 17:55:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F230C1FF0C; Sun, 15 Nov 2020 17:55:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AFHt51X001706; Sun, 15 Nov 2020 17:55:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFHt4wa001697; Sun, 15 Nov 2020 17:55:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202011151755.0AFHt4wa001697@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 15 Nov 2020 17:55:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555242 - in head/devel: . p5-Test-Snapshot X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Test-Snapshot X-SVN-Commit-Revision: 555242 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 17:55:08 -0000 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 +# $FreeBSD$ + +PORTNAME= Test-Snapshot +PORTVERSION= 0.06 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@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 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