1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

- Update to 0.07

- added the nested parens default filter.
- added tests for this
- added documentation for this

PR:		ports/71259
Submitted by:	maintainer
This commit is contained in:
Sergey Matveychuk 2004-09-02 06:18:41 +00:00
parent 49a4590b60
commit 7eaaf632fe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=117894
3 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= Tree-Parser
PORTVERSION= 0.06
PORTVERSION= 0.07
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Tree

View File

@ -1,2 +1,2 @@
MD5 (Tree-Parser-0.06.tar.gz) = b491836357fd16058958f20bfcf17bc5
SIZE (Tree-Parser-0.06.tar.gz) = 9793
MD5 (Tree-Parser-0.07.tar.gz) = 659c3fdca0ca903227dd49106e771def
SIZE (Tree-Parser-0.07.tar.gz) = 11167

View File

@ -1,8 +1,8 @@
This module can parse various types of input (formatted and containing
hierarchal information) into a tree structures. It can also deparse the
hierarchal information) into a tree structure. It can also deparse these
same tree structures back into a string. It accepts various types of input,
such as; strings, filenames, array references. The tree structure is a
hierarchy of Tree::Simple objects.
such as strings, filenames, and array references. The tree structure used
is a hierarchy of Tree::Simple objects.
WWW: http://search.cpan.org/dist/Tree-Parser/
Author: Stevan Little <stevan@iinteractive.com>