- fix COMMENT

- fix depends
- re-format DESCR
This commit is contained in:
jasper 2010-12-30 10:43:09 +00:00
parent 2c60a71108
commit 0a9cee3481
2 changed files with 12 additions and 11 deletions

View File

@ -1,8 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/30 10:39:31 benoit Exp $
# $OpenBSD: Makefile,v 1.2 2010/12/30 10:43:09 jasper Exp $
COMMENT = a general-purpose iterator class.
COMMENT = general-purpose iterator class.
DISTNAME = Iterator-0.03
REVISION = 0
CATEGORIES = devel
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
@ -13,8 +14,8 @@ PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = cpan
MODULES = cpan
REGRESS_DEPENDS = devel/p5-Exception-Class
RUN_DEPENDS = devel/p5-Exception-Class
.include <bsd.port.mk>

View File

@ -1,8 +1,8 @@
This module is meant to be the definitive implementation of
iterators, as popularized by Mark Jason Dominus's lectures and
recent book (_Higher Order Perl_, Morgan Kauffman, 2005).
This module is meant to be the definitive implementation of iterators,
as popularized by Mark Jason Dominus's lectures and recent book (_Higher
Order Perl_, Morgan Kauffman, 2005).
An "iterator" is an object, represented as a code block that
generates the "next value" of a sequence, and generally
implemented as a closure. Iterator.pm provides a class that
simplifies creation and use of these iterator objects.
An "iterator" is an object, represented as a code block that generates
the "next value" of a sequence, and generally implemented as a closure.
Iterator.pm provides a class that simplifies creation and use of these
iterator objects.