Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Jul 2018 19:04:39 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475672 - in head/devel: . p5-Commandable
Message-ID:  <201807291904.w6TJ4dkZ032086@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Jul 29 19:04:39 2018
New Revision: 475672
URL: https://svnweb.freebsd.org/changeset/ports/475672

Log:
  Add p5-Commandable 0.01
  
  This distribution contains a collection of utilities extracted from various
  commandline-based programs I have written, in the hope of trying to find a
  standard base to build these from in future.
  
  Note that "commandline" does not necessarily mean "plain-text running in a
  terminal"; simply that the mode of operation is that the user types a textual
  representation of some action, and the program parses this text in order to
  perform it. This could equally apply to a command input text area in a GUI
  program.
  
  WWW: https://metacpan.org/release/Commandable

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jul 29 18:49:38 2018	(r475671)
+++ head/devel/Makefile	Sun Jul 29 19:04:39 2018	(r475672)
@@ -2187,6 +2187,7 @@
     SUBDIR += p5-Clone-More
     SUBDIR += p5-Clone-PP
     SUBDIR += p5-Code-Perl
+    SUBDIR += p5-Commandable
     SUBDIR += p5-Commands-Guarded
     SUBDIR += p5-CommitBit
     SUBDIR += p5-Compiler-Lexer

Added: head/devel/p5-Commandable/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Commandable/Makefile	Sun Jul 29 19:04:39 2018	(r475672)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Commandable
+PORTVERSION=	0.01
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:PEVANS
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Utilities for commandline-based programs
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+TEST_DEPENDS=	p5-Test-Warnings>=0:devel/p5-Test-Warnings
+
+NO_ARCH=	yes
+USE_PERL5=	modbuild
+USES=		perl5
+
+.include <bsd.port.mk>

Added: head/devel/p5-Commandable/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Commandable/distinfo	Sun Jul 29 19:04:39 2018	(r475672)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1532802702
+SHA256 (Commandable-0.01.tar.gz) = 5ebc0fccff0f59ce69c9f392216377c7a9da9028a7357eec9f5def428c694840
+SIZE (Commandable-0.01.tar.gz) = 11327

Added: head/devel/p5-Commandable/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Commandable/pkg-descr	Sun Jul 29 19:04:39 2018	(r475672)
@@ -0,0 +1,11 @@
+This distribution contains a collection of utilities extracted from various
+commandline-based programs I have written, in the hope of trying to find a
+standard base to build these from in future.
+
+Note that "commandline" does not necessarily mean "plain-text running in a
+terminal"; simply that the mode of operation is that the user types a textual
+representation of some action, and the program parses this text in order to
+perform it. This could equally apply to a command input text area in a GUI
+program.
+
+WWW: https://metacpan.org/release/Commandable

Added: head/devel/p5-Commandable/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Commandable/pkg-plist	Sun Jul 29 19:04:39 2018	(r475672)
@@ -0,0 +1,4 @@
+%%SITE_PERL%%/Commandable.pm
+%%SITE_PERL%%/Commandable/Invocation.pm
+%%PERL5_MAN3%%/Commandable.3.gz
+%%PERL5_MAN3%%/Commandable::Invocation.3.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807291904.w6TJ4dkZ032086>