svn commit: r564173 - in head/devel: . p5-Devel-StrictMode

Wen Heping wen at FreeBSD.org
Sat Feb 6 01:54:28 UTC 2021


Author: wen
Date: Sat Feb  6 01:54:26 2021
New Revision: 564173
URL: https://svnweb.freebsd.org/changeset/ports/564173

Log:
  This module provides you with a constant STRICT which you can
  use to determine whether additional strict (but slow) runtime
  tests are executed by your code.
  
  WWW: https://metacpan.org/release/Devel-StrictMode

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb  6 01:37:57 2021	(r564172)
+++ head/devel/Makefile	Sat Feb  6 01:54:26 2021	(r564173)
@@ -2273,6 +2273,7 @@
     SUBDIR += p5-Devel-StackTrace-AsHTML
     SUBDIR += p5-Devel-StackTrace-WithLexicals
     SUBDIR += p5-Devel-StealthDebug
+    SUBDIR += p5-Devel-StrictMode
     SUBDIR += p5-Devel-Symdump
     SUBDIR += p5-Devel-Timer
     SUBDIR += p5-Devel-Trace

Added: head/devel/p5-Devel-StrictMode/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Devel-StrictMode/Makefile	Sat Feb  6 01:54:26 2021	(r564173)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	Devel-StrictMode
+PORTVERSION=	0.003
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	wen at FreeBSD.org
+COMMENT=	Determine whether strict (but slow) tests should be enabled
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Devel-StrictMode/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Devel-StrictMode/distinfo	Sat Feb  6 01:54:26 2021	(r564173)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612575095
+SHA256 (Devel-StrictMode-0.003.tar.gz) = b0a7de5f8aaacd8302e69ae5df0b8fd1550a3a28fbdf077cb57abcadece565f0
+SIZE (Devel-StrictMode-0.003.tar.gz) = 15178

Added: head/devel/p5-Devel-StrictMode/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Devel-StrictMode/pkg-descr	Sat Feb  6 01:54:26 2021	(r564173)
@@ -0,0 +1,5 @@
+This module provides you with a constant STRICT which you can
+use to determine whether additional strict (but slow) runtime
+tests are executed by your code.
+
+WWW: https://metacpan.org/release/Devel-StrictMode

Added: head/devel/p5-Devel-StrictMode/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Devel-StrictMode/pkg-plist	Sat Feb  6 01:54:26 2021	(r564173)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Devel/StrictMode.pm
+%%PERL5_MAN3%%/Devel::StrictMode.3.gz


More information about the svn-ports-all mailing list