- Update from v0.19 to v0.21 - Move to MODBUILD - Restrict to Perl 5.7.3+ due to new dependency upon converters/p5-Encode - Update plist Changes ======= Except where noted, all changes made by Daisuke Maki 0.21 - 31 May 2006 - Repository blunder messes up the distro. fixed. Reported by Tatsuhiko Miyagawa 0.20 - 14 May 2006 - Set $rss->{version} for compatibility. - As a result, we no longer set or depend on $rss->{_internal}{version}. If you saw it and used it, then stop doing that ;)
Responsible Changed From-To: freebsd-ports-bugs->aaron Submitter has GNATS access
State Changed From-To: open->feedback Awaiting maintainers feedback
Hello, In Perl 5.8.x, Encode is included in base package. I tried not to install p5-Encode and it looks fine, can you check it ? -- * Gea-Suan Lin (public key: Using https://keyserver.pgp.com/ to search) * If you cannot convince them, confuse them. -- Harry S Truman
Gea-Suan Lin wrote: > Hello, > > In Perl 5.8.x, Encode is included in base package. I tried not to > install p5-Encode and it looks fine, can you check it ? > True. I've attached a new diff that doesn't check for Encode in Perl 5.8 installs. -- Aaron Dalton aaron@FreeBSD.org FreeBSD Ports Committer
On Fri, Jun 02, 2006 at 01:59:52PM -0600, Aaron Dalton wrote: > Gea-Suan Lin wrote: > >Hello, > > > >In Perl 5.8.x, Encode is included in base package. I tried not to > >install p5-Encode and it looks fine, can you check it ? > > > > True. I've attached a new diff that doesn't check for Encode in Perl > 5.8 installs. > > -- > Aaron Dalton > aaron@FreeBSD.org > FreeBSD Ports Committer > -.if (${PERL_LEVEL} < 500601) > -IGNORE= requires perl 5.6.x or later. Install lang/perl5.8 then try again > +.if ${PERL_LEVEL} < 500703 #inherited from converters/p5-Encode > +IGNORE= requires perl 5.7.3 or later. Install lang/perl5.8 then try again > +.endif > + > +.if ${PERL_LEVEL} < 500800 > +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Encode.pm:${PORTSDIR}/converters/p5-Encode > .endif I checked http://www.cpan.org/src/5.0/devel/ and found Encode is included in Perl 5.7.1 and later version. Please just modify this part and just commit it. -- * Gea-Suan Lin (public key: Using https://keyserver.pgp.com/ to search) * If you cannot convince them, confuse them. -- Harry S Truman
State Changed From-To: feedback->closed Committed. Thanks!