Module::Manifest is a simple utility module created originally for use
in Module::Inspector. It allows you to load the MANIFEST file that comes in a Perl distribution tarball, examine the contents, and perform some simple tasks. Granted, the functionality needed to do this is quite simple, but the Perl distribution MANIFEST specification contains a couple of little idiosyncracies, such as line comments and space-seperated inline comments. WWW: http://search.cpan.org/dist/Module-Manifest/ PR: ports/132406 Submitted by: Cezary Morga <cm at therek.net>
This commit is contained in:
parent
8dcdff4db8
commit
2c31fcf4a2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230136
5 changed files with 44 additions and 0 deletions
|
@ -1551,6 +1551,7 @@
|
|||
SUBDIR += p5-Module-Load
|
||||
SUBDIR += p5-Module-Load-Conditional
|
||||
SUBDIR += p5-Module-Loaded
|
||||
SUBDIR += p5-Module-Manifest
|
||||
SUBDIR += p5-Module-Math-Depends
|
||||
SUBDIR += p5-Module-Pluggable
|
||||
SUBDIR += p5-Module-Pluggable-Fast
|
||||
|
|
24
devel/p5-Module-Manifest/Makefile
Normal file
24
devel/p5-Module-Manifest/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# New ports collection makefile for: p5-Module-Manifest
|
||||
# Date created: March 8th 2009
|
||||
# Whom: Cezary Morga <cm@therek.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Module-Manifest
|
||||
PORTVERSION= 0.04
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= cm@therek.net
|
||||
COMMENT= Parse and examine a Perl distribution MANIFEST file
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Params/Util.pm:${PORTSDIR}/devel/p5-Params-Util
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= YES
|
||||
|
||||
MAN3= Module::Manifest.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/p5-Module-Manifest/distinfo
Normal file
3
devel/p5-Module-Manifest/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Module-Manifest-0.04.tar.gz) = 7d41517f9ee7dd376a44c66d7e23b386
|
||||
SHA256 (Module-Manifest-0.04.tar.gz) = b18db97a29b417486930cac1bda8f785415223b0b78cde433ee23e48daa3e92f
|
||||
SIZE (Module-Manifest-0.04.tar.gz) = 22722
|
10
devel/p5-Module-Manifest/pkg-descr
Normal file
10
devel/p5-Module-Manifest/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
Module::Manifest is a simple utility module created originally for use
|
||||
in Module::Inspector. It allows you to load the MANIFEST file that comes
|
||||
in a Perl distribution tarball, examine the contents, and perform some
|
||||
simple tasks.
|
||||
|
||||
Granted, the functionality needed to do this is quite simple, but the Perl
|
||||
distribution MANIFEST specification contains a couple of little idiosyncracies,
|
||||
such as line comments and space-seperated inline comments.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Module-Manifest/
|
6
devel/p5-Module-Manifest/pkg-plist
Normal file
6
devel/p5-Module-Manifest/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
%%SITE_PERL%%/Module/Manifest.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Module/Manifest/.packlist
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Module/Manifest
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Module
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry %%SITE_PERL%%/Module
|
Loading…
Reference in a new issue