From owner-svn-ports-head@FreeBSD.ORG Wed Feb 11 11:25:38 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7364BBF9; Wed, 11 Feb 2015 11:25:38 +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 5E2BA77; Wed, 11 Feb 2015 11:25:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1BBPcPr032049; Wed, 11 Feb 2015 11:25:38 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1BBPbOE032044; Wed, 11 Feb 2015 11:25:37 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201502111125.t1BBPbOE032044@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Wed, 11 Feb 2015 11:25:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378830 - in head/devel: . p5-B-Flags 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: Wed, 11 Feb 2015 11:25:38 -0000 Author: bofh Date: Wed Feb 11 11:25:36 2015 New Revision: 378830 URL: https://svnweb.freebsd.org/changeset/ports/378830 QAT: https://qat.redports.org/buildarchive/r378830/ Log: [New Port] devel/p5-B-Flags: Friendlier flags for B Friendlier flags for B By default, "$foo->flags" when passed an object in the "B" class will produce a relatively meaningless number, which one would need to grovel through the Perl source code in order to do anything useful with. This module adds "flagspv" to the SV and op classes and "privatepv" to the op classes, which makes them easier to understand. WWW: http://search.cpan.org/dist/B-Flags/ PR: 196688 Submitted by: svysh.fbsd@gmail.com Approved by: bapt marino (implicit) Added: head/devel/p5-B-Flags/ head/devel/p5-B-Flags/Makefile (contents, props changed) head/devel/p5-B-Flags/distinfo (contents, props changed) head/devel/p5-B-Flags/pkg-descr (contents, props changed) head/devel/p5-B-Flags/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 11 11:12:29 2015 (r378829) +++ head/devel/Makefile Wed Feb 11 11:25:36 2015 (r378830) @@ -1518,6 +1518,7 @@ SUBDIR += p5-AutoXS-Header SUBDIR += p5-B-Compiling SUBDIR += p5-B-Deobfuscate + SUBDIR += p5-B-Flags SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-EndOfScope Added: head/devel/p5-B-Flags/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-B-Flags/Makefile Wed Feb 11 11:25:36 2015 (r378830) @@ -0,0 +1,26 @@ +# Created by: Sergei Vyshenski +# $FreeBSD$ + +PORTNAME= B-Flags +PORTVERSION= 0.11 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:RURBAN +PKGNAMEPREFIX= p5- + +MAINTAINER= svysh.fbsd@gmail.com +COMMENT= Friendlier flags for B + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure +NO_ARCH= yes + +#pre-install: test + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/B/Flags/Flags.so + +.include Added: head/devel/p5-B-Flags/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-B-Flags/distinfo Wed Feb 11 11:25:36 2015 (r378830) @@ -0,0 +1,2 @@ +SHA256 (B-Flags-0.11.tar.gz) = 24e51e83175bd0928abf4ad78e916a9cb2b7c975702d740d4565e7ef323dcf6a +SIZE (B-Flags-0.11.tar.gz) = 7568 Added: head/devel/p5-B-Flags/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-B-Flags/pkg-descr Wed Feb 11 11:25:36 2015 (r378830) @@ -0,0 +1,9 @@ +Friendlier flags for B + +By default, "$foo->flags" when passed an object in the "B" class will +produce a relatively meaningless number, which one would need to grovel +through the Perl source code in order to do anything useful with. This +module adds "flagspv" to the SV and op classes and "privatepv" to the op +classes, which makes them easier to understand. + +WWW: http://search.cpan.org/dist/B-Flags/ Added: head/devel/p5-B-Flags/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-B-Flags/pkg-plist Wed Feb 11 11:25:36 2015 (r378830) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/B/Flags.pm +%%SITE_ARCH%%/auto/B/Flags/Flags.so +%%PERL5_MAN3%%/B::Flags.3.gz