pkgsrc/devel/p5-version/Makefile

22 lines
571 B
Makefile
Raw Normal View History

Update p5-version to 0.7203. Patch provided by Mark E. Perkins in PR 36465. 2007-04-17 John Peacock <jpeacock@cpan.org> Neglected to delete or comment out a $DB::single (again). 2007-04-17 John Peacock <jpeacock@cpan.org> One last place that needed a leading 'v' (for non-magic v-strings). 2007-04-17 John Peacock <jpeacock@cpan.org> v-string created version objects always stringify with a leading 'v' for consistency's sake, since we have no way of knowing whether one was present for 5.6.0 <= Perl < 5.8.1 (non-magic v-strings). 2007-04-17 John Peacock <jpeacock@cpan.org> When copying an existing version object, forgot to copy the original string representation. 2007-04-14 John Peacock <jpeacock@cpan.org> Return original string value for all stringification cases except for qv(1.2) which returns 'v1.2' for roundtrip purposes. 2007-04-12 John Peacock <jpeacock@cpan.org> Output the original string form for numeric versions for XS code now. Ready to release to CPAN. 2007-04-12 John Peacock <jpeacock@cpan.org> It will be less surprising to overload string comparisons (now that the default stringification is identical to the initializer) than it would be to not overload them. 2007-04-11 John Peacock <jpeacock@cpan.org> Better way to handle the undef initialization case. 2007-04-11 John Peacock <jpeacock@cpan.org> Disallow string comparisons with version objects. Tests adjusted to use numeric comparisons only. 2007-04-11 John Peacock <jpeacock@cpan.org> Cache the original string used to initialize the version object and return that when stringifying. Only works with pure Perl class for the moment. 2007-03-18 John Peacock <jpeacock@cpan.org> Add more text to README on v-string support. 2007-03-18 John Peacock <jpeacock@cpan.org> Now supports non-magical v-strings (Perl 5.6.0-5.8.0)! Polymorphic error messages from 5.6.0 onwards. 2007-03-10 John Peacock <jpeacock@cpan.org> Polymorphic error messages work everywhere except XS under 5.6.2. :( 2007-03-10 John Peacock <jpeacock@cpan.org> Polymorphic error messages now working (and tested) in pure Perl module. 2007-02-13 John Peacock <jpeacock@cpan.org> Don't need to explicitely specify the MAN3POD stuff, since EU::MM will now do that automatically (since the POD is mentioned in PM). Actually, magic v-strings came in at 5.8.1, not 5.8.0 (spotted in the bleadperl variant).
2007-06-10 10:55:34 +02:00
# $NetBSD: Makefile,v 1.7 2007/06/10 08:55:34 obache Exp $
#
Update p5-version to 0.7203. Patch provided by Mark E. Perkins in PR 36465. 2007-04-17 John Peacock <jpeacock@cpan.org> Neglected to delete or comment out a $DB::single (again). 2007-04-17 John Peacock <jpeacock@cpan.org> One last place that needed a leading 'v' (for non-magic v-strings). 2007-04-17 John Peacock <jpeacock@cpan.org> v-string created version objects always stringify with a leading 'v' for consistency's sake, since we have no way of knowing whether one was present for 5.6.0 <= Perl < 5.8.1 (non-magic v-strings). 2007-04-17 John Peacock <jpeacock@cpan.org> When copying an existing version object, forgot to copy the original string representation. 2007-04-14 John Peacock <jpeacock@cpan.org> Return original string value for all stringification cases except for qv(1.2) which returns 'v1.2' for roundtrip purposes. 2007-04-12 John Peacock <jpeacock@cpan.org> Output the original string form for numeric versions for XS code now. Ready to release to CPAN. 2007-04-12 John Peacock <jpeacock@cpan.org> It will be less surprising to overload string comparisons (now that the default stringification is identical to the initializer) than it would be to not overload them. 2007-04-11 John Peacock <jpeacock@cpan.org> Better way to handle the undef initialization case. 2007-04-11 John Peacock <jpeacock@cpan.org> Disallow string comparisons with version objects. Tests adjusted to use numeric comparisons only. 2007-04-11 John Peacock <jpeacock@cpan.org> Cache the original string used to initialize the version object and return that when stringifying. Only works with pure Perl class for the moment. 2007-03-18 John Peacock <jpeacock@cpan.org> Add more text to README on v-string support. 2007-03-18 John Peacock <jpeacock@cpan.org> Now supports non-magical v-strings (Perl 5.6.0-5.8.0)! Polymorphic error messages from 5.6.0 onwards. 2007-03-10 John Peacock <jpeacock@cpan.org> Polymorphic error messages work everywhere except XS under 5.6.2. :( 2007-03-10 John Peacock <jpeacock@cpan.org> Polymorphic error messages now working (and tested) in pure Perl module. 2007-02-13 John Peacock <jpeacock@cpan.org> Don't need to explicitely specify the MAN3POD stuff, since EU::MM will now do that automatically (since the POD is mentioned in PM). Actually, magic v-strings came in at 5.8.1, not 5.8.0 (spotted in the bleadperl variant).
2007-06-10 10:55:34 +02:00
DISTNAME= version-0.7203
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/J/JP/JPEACOCK/}
MAINTAINER= abs@absd.org
HOMEPAGE= http://search.cpan.org/~jpeacock/version/
COMMENT= Perl extension for Version Objects
PKG_DESTDIR_SUPPORT= user-destdir
PKG_INSTALLATION_TYPES= overwrite pkgviews
PERL5_MODULE_TYPE= Module::Build
2006-07-22 21:03:47 +02:00
USE_LANGUAGES= c
PERL5_PACKLIST= auto/version/vxs/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"