pkgsrc/textproc/p5-XML-Atom-SimpleFeed/Makefile

20 lines
596 B
Makefile
Raw Normal View History

Update p5-XML-Atom-SimpleFeed to 0.8, as provided by Martin Wilke in PR pkg/34399. Revision history for XML-Atom-SimpleFeed: 0.8 2006 Jun 3 - Multiple consecutive internal refactors; code structure is now actually satisfactory - Handles multiple authors and contributors - Support for icon and logo elements - Big POD cleanup - Use Carp::Clean to get rid of silly $Carp::CarpLevel juggling - ***BACKWARDS INCOMPATIBLE API CHANGE***: Elements such as C<link> which may appear multiple times are no longer specified in an anonymous array, but simply given repeatedly. - ***BACKWARDS INCOMPATIBLE API CHANGE***: Atom 0.3 element and attribute names are no longer supported. (No point keeping a lot of deprecation code around in the face of a change like the above.) - ***BACKWARDS INCOMPATIBLE API CHANGE***: Suppress the default C<generator> element requires calling the C<no_generator> method instead of passing a C<generator> key to C<new> with an undefined value. - ***BACKWARDS INCOMPATIBLE API CHANGE***: Well, since I'm at it, the C<save_file> method is no longer supported. C<print> now takes a handle, though. - Cleaned up errors and warning messages and got rid of DIAGNOSTICS section in POD 0.8_004 2006 May 10 - Brownbag upload: forgot to update ./Changes in 0.8_003 0.8_003 2006 May 10 - Minor incremental progress; various bugfixes, some refactor. 0.8_002 2006 Apr 9 - Use builtin XML writer instead of SAX for output. This eliminates huge amounts of redundancy. - Big improvements in the distribution of responsibilities for deprecation and validation checks. - Array-based implementation rather than inside-out objects. - Internal structure is now more logical and consistent. 0.8_001 2005 Sep 28 - Emit Atom 1.0. Documentation updated to reflect Atom 1.0. Usage according to Atom 0.3 will transparently generate 1.0 elements but emit deprectation warnings. - Remove _generate_entry_id and use HTTP URLs as IDs by default. Using tag: URIs is useful for generating the ID once, up front, so that it won't change even if the permalink does -- if the ID is generated from the permalink, we might as well use the permalink directly. - Use XML::SAX::Writer instead of XML::Simple for output.
2006-09-03 16:30:08 +02:00
# $NetBSD: Makefile,v 1.3 2006/09/03 14:30:08 kleink Exp $
Update p5-XML-Atom-SimpleFeed to 0.8, as provided by Martin Wilke in PR pkg/34399. Revision history for XML-Atom-SimpleFeed: 0.8 2006 Jun 3 - Multiple consecutive internal refactors; code structure is now actually satisfactory - Handles multiple authors and contributors - Support for icon and logo elements - Big POD cleanup - Use Carp::Clean to get rid of silly $Carp::CarpLevel juggling - ***BACKWARDS INCOMPATIBLE API CHANGE***: Elements such as C<link> which may appear multiple times are no longer specified in an anonymous array, but simply given repeatedly. - ***BACKWARDS INCOMPATIBLE API CHANGE***: Atom 0.3 element and attribute names are no longer supported. (No point keeping a lot of deprecation code around in the face of a change like the above.) - ***BACKWARDS INCOMPATIBLE API CHANGE***: Suppress the default C<generator> element requires calling the C<no_generator> method instead of passing a C<generator> key to C<new> with an undefined value. - ***BACKWARDS INCOMPATIBLE API CHANGE***: Well, since I'm at it, the C<save_file> method is no longer supported. C<print> now takes a handle, though. - Cleaned up errors and warning messages and got rid of DIAGNOSTICS section in POD 0.8_004 2006 May 10 - Brownbag upload: forgot to update ./Changes in 0.8_003 0.8_003 2006 May 10 - Minor incremental progress; various bugfixes, some refactor. 0.8_002 2006 Apr 9 - Use builtin XML writer instead of SAX for output. This eliminates huge amounts of redundancy. - Big improvements in the distribution of responsibilities for deprecation and validation checks. - Array-based implementation rather than inside-out objects. - Internal structure is now more logical and consistent. 0.8_001 2005 Sep 28 - Emit Atom 1.0. Documentation updated to reflect Atom 1.0. Usage according to Atom 0.3 will transparently generate 1.0 elements but emit deprectation warnings. - Remove _generate_entry_id and use HTTP URLs as IDs by default. Using tag: URIs is useful for generating the ID once, up front, so that it won't change even if the permalink does -- if the ID is generated from the permalink, we might as well use the permalink directly. - Use XML::SAX::Writer instead of XML::Simple for output.
2006-09-03 16:30:08 +02:00
DISTNAME= XML-Atom-SimpleFeed-0.8
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5xas
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/}
MAINTAINER= kleink@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/XML-Atom-SimpleFeed/
COMMENT= Generate simple Atom syndication feeds
BUILD_DEPENDS+= p5-Test-Simple-[0-9]*:../../devel/p5-Test-Simple
DEPENDS+= p5-XML-Simple>=2.10:../../textproc/p5-XML-Simple
PERL5_PACKLIST= auto/XML/Atom/SimpleFeed/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"