From owner-svn-ports-head@FreeBSD.ORG Sat Mar 28 18:46:46 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6921AF1; Sat, 28 Mar 2015 18:46:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49DD2847; Sat, 28 Mar 2015 18:46:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2SIkkSS091644; Sat, 28 Mar 2015 18:46:46 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2SIki7t091639; Sat, 28 Mar 2015 18:46:44 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201503281846.t2SIki7t091639@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 28 Mar 2015 18:46:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382538 - in head/devel: . p5-Reply X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Mar 2015 18:46:46 -0000 Author: adamw Date: Sat Mar 28 18:46:43 2015 New Revision: 382538 URL: https://svnweb.freebsd.org/changeset/ports/382538 QAT: https://qat.redports.org/buildarchive/r382538/ Log: Add devel/p5-Reply, a lightweight, extensible REPL system for perl. Added: head/devel/p5-Reply/ head/devel/p5-Reply/Makefile (contents, props changed) head/devel/p5-Reply/distinfo (contents, props changed) head/devel/p5-Reply/pkg-descr (contents, props changed) head/devel/p5-Reply/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 28 18:44:47 2015 (r382537) +++ head/devel/Makefile Sat Mar 28 18:46:43 2015 (r382538) @@ -2763,6 +2763,7 @@ SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Regexp-Subst-Parallel SUBDIR += p5-Religion + SUBDIR += p5-Reply SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-MultiLevel Added: head/devel/p5-Reply/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Reply/Makefile Sat Mar 28 18:46:43 2015 (r382538) @@ -0,0 +1,29 @@ +# Created by: Adam Weinberger +# $FreeBSD$ + +PORTNAME= Reply +PORTVERSION= 0.37 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DOY +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Lightweight, extensible REPL for Perl + +LICENSE= MIT + +BUILD_DEPENDS= p5-Config-INI-Reader-Ordered>=0:${PORTSDIR}/devel/p5-Config-INI-Reader-Ordered \ + p5-File-HomeDir>=0:${PORTSDIR}/devel/p5-File-HomeDir \ + p5-Devel-LexAlias>=0:${PORTSDIR}/devel/p5-Devel-LexAlias \ + p5-Eval-Closure>=0.11:${PORTSDIR}/devel/p5-Eval-Closure \ + p5-Module-Runtime>=0:${PORTSDIR}/devel/p5-Module-Runtime \ + p5-Package-Stash>=0:${PORTSDIR}/devel/p5-Package-Stash \ + p5-PadWalker>=0:${PORTSDIR}/devel/p5-PadWalker \ + p5-Try-Tiny>=0:${PORTSDIR}/lang/p5-Try-Tiny +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Reply/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Reply/distinfo Sat Mar 28 18:46:43 2015 (r382538) @@ -0,0 +1,2 @@ +SHA256 (Reply-0.37.tar.gz) = 9e47057249acce0a943ab35654e3fe6af322f3bbc2b8eb611bab917d5a3e737e +SIZE (Reply-0.37.tar.gz) = 27522 Added: head/devel/p5-Reply/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Reply/pkg-descr Sat Mar 28 18:46:43 2015 (r382538) @@ -0,0 +1,5 @@ +Reply is a lightweight, extensible REPL for Perl. It is plugin-based (see +Reply::Plugin), and through plugins supports many advanced features such as +coloring and pretty printing, readline support, and pluggable commands. + +WWW: https://metacpan.org/pod/Reply Added: head/devel/p5-Reply/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Reply/pkg-plist Sat Mar 28 18:46:43 2015 (r382538) @@ -0,0 +1,60 @@ +bin/reply +%%SITE_PERL%%/Reply.pm +%%SITE_PERL%%/Reply/App.pm +%%SITE_PERL%%/Reply/Config.pm +%%SITE_PERL%%/Reply/Plugin.pm +%%SITE_PERL%%/Reply/Plugin/AutoRefresh.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Commands.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Functions.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Globals.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Keywords.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Lexicals.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Methods.pm +%%SITE_PERL%%/Reply/Plugin/Autocomplete/Packages.pm +%%SITE_PERL%%/Reply/Plugin/CollapseStack.pm +%%SITE_PERL%%/Reply/Plugin/Colors.pm +%%SITE_PERL%%/Reply/Plugin/DataDump.pm +%%SITE_PERL%%/Reply/Plugin/DataDumper.pm +%%SITE_PERL%%/Reply/Plugin/DataPrinter.pm +%%SITE_PERL%%/Reply/Plugin/Defaults.pm +%%SITE_PERL%%/Reply/Plugin/Editor.pm +%%SITE_PERL%%/Reply/Plugin/FancyPrompt.pm +%%SITE_PERL%%/Reply/Plugin/Hints.pm +%%SITE_PERL%%/Reply/Plugin/Interrupt.pm +%%SITE_PERL%%/Reply/Plugin/LexicalPersistence.pm +%%SITE_PERL%%/Reply/Plugin/LoadClass.pm +%%SITE_PERL%%/Reply/Plugin/Nopaste.pm +%%SITE_PERL%%/Reply/Plugin/Packages.pm +%%SITE_PERL%%/Reply/Plugin/ReadLine.pm +%%SITE_PERL%%/Reply/Plugin/ResultCache.pm +%%SITE_PERL%%/Reply/Plugin/Timer.pm +%%SITE_PERL%%/Reply/Util.pm +%%PERL5_MAN3%%/Reply.3.gz +%%PERL5_MAN3%%/Reply::App.3.gz +%%PERL5_MAN3%%/Reply::Config.3.gz +%%PERL5_MAN3%%/Reply::Plugin.3.gz +%%PERL5_MAN3%%/Reply::Plugin::AutoRefresh.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Commands.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Functions.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Globals.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Keywords.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Lexicals.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Methods.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Autocomplete::Packages.3.gz +%%PERL5_MAN3%%/Reply::Plugin::CollapseStack.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Colors.3.gz +%%PERL5_MAN3%%/Reply::Plugin::DataDump.3.gz +%%PERL5_MAN3%%/Reply::Plugin::DataDumper.3.gz +%%PERL5_MAN3%%/Reply::Plugin::DataPrinter.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Editor.3.gz +%%PERL5_MAN3%%/Reply::Plugin::FancyPrompt.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Hints.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Interrupt.3.gz +%%PERL5_MAN3%%/Reply::Plugin::LexicalPersistence.3.gz +%%PERL5_MAN3%%/Reply::Plugin::LoadClass.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Nopaste.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Packages.3.gz +%%PERL5_MAN3%%/Reply::Plugin::ReadLine.3.gz +%%PERL5_MAN3%%/Reply::Plugin::ResultCache.3.gz +%%PERL5_MAN3%%/Reply::Plugin::Timer.3.gz +man/man1/reply.1.gz