From owner-svn-ports-all@freebsd.org Sun Mar 10 09:15:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20D8A152CB3D; Sun, 10 Mar 2019 09:15:59 +0000 (UTC) (envelope-from pi@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) server-signature RSA-PSS (4096 bits) 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 BC6A36CFB1; Sun, 10 Mar 2019 09:15:58 +0000 (UTC) (envelope-from pi@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 B08F520FCB; Sun, 10 Mar 2019 09:15:58 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2A9FwRl076603; Sun, 10 Mar 2019 09:15:58 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2A9Fv1H076599; Sun, 10 Mar 2019 09:15:57 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201903100915.x2A9Fv1H076599@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 10 Mar 2019 09:15:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495237 - in head/devel: . p5-Shell-Guess X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Shell-Guess X-SVN-Commit-Revision: 495237 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BC6A36CFB1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 10 Mar 2019 09:15:59 -0000 Author: pi Date: Sun Mar 10 09:15:57 2019 New Revision: 495237 URL: https://svnweb.freebsd.org/changeset/ports/495237 Log: New port: devel/p5-Shell-Guess Make an educated guess about the shell in use WWW: https://metacpan.org/pod/Shell::Guess Added: head/devel/p5-Shell-Guess/ head/devel/p5-Shell-Guess/Makefile (contents, props changed) head/devel/p5-Shell-Guess/distinfo (contents, props changed) head/devel/p5-Shell-Guess/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 10 09:14:14 2019 (r495236) +++ head/devel/Makefile Sun Mar 10 09:15:57 2019 (r495237) @@ -3382,6 +3382,7 @@ SUBDIR += p5-Shape SUBDIR += p5-Shell-Base SUBDIR += p5-Shell-EnvImporter + SUBDIR += p5-Shell-Guess SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt Added: head/devel/p5-Shell-Guess/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Shell-Guess/Makefile Sun Mar 10 09:15:57 2019 (r495237) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= Shell-Guess +PORTVERSION= 0.09 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Make an educated guess about the shell in use + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= ${SITE_PERL_REL}/Shell/Guess.pm \ + ${SITE_MAN3_REL}/Shell::Guess.3.gz + +.include Added: head/devel/p5-Shell-Guess/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Shell-Guess/distinfo Sun Mar 10 09:15:57 2019 (r495237) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551863921 +SHA256 (Shell-Guess-0.09.tar.gz) = 4069fa2637e443118ed956d710231d166823d23b2a64eb87b8a46872e865a12b +SIZE (Shell-Guess-0.09.tar.gz) = 21663 Added: head/devel/p5-Shell-Guess/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Shell-Guess/pkg-descr Sun Mar 10 09:15:57 2019 (r495237) @@ -0,0 +1,3 @@ +Make an educated guess about the shell in use + +WWW: https://metacpan.org/pod/Shell::Guess