From 45716c2652b1c35f78adef91838d2e43c392d665 Mon Sep 17 00:00:00 2001 From: Benjamin Trott Date: Wed, 18 Aug 2004 07:41:30 -0800 Subject: [PATCH] import Feed-Find 0.02 from CPAN git-cpan-module: Feed-Find git-cpan-version: 0.02 git-cpan-authorid: BTROTT git-cpan-file: authors/id/B/BT/BTROTT/Feed-Find-0.02.tar.gz --- Changes | 5 ++++- META.yml | 3 ++- Makefile.PL | 3 ++- lib/Feed/Find.pm | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 69c163b..028403e 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ -# $Id: Changes,v 1.2 2004/08/17 17:19:05 btrott Exp $ +# $Id: Changes,v 1.3 2004/08/18 02:43:20 btrott Exp $ Revision history for Feed::Find +0.02 2004.08.18 + - Added missing prereq to Makefile.PL (Class::ErrorHandler). + 0.01 2004.08.17 - Initial distribution. diff --git a/META.yml b/META.yml index 79e58fd..35d30bd 100644 --- a/META.yml +++ b/META.yml @@ -1,10 +1,11 @@ name: Feed-Find -version: 0.01 +version: 0.02 abstract: Syndication Feed Discovery author: Benjamin Trott license: perl distribution_type: module requires: + Class::ErrorHandler: 0 LWP: 0 HTML::Parser: 0 URI: 0 diff --git a/Makefile.PL b/Makefile.PL index d8d8e4b..888c3fe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -# $Id: Makefile.PL,v 1.1.1.1 2004/08/15 15:40:02 btrott Exp $ +# $Id: Makefile.PL,v 1.2 2004/08/18 02:43:20 btrott Exp $ use inc::Module::Install; @@ -12,6 +12,7 @@ sign(1); include('ExtUtils::AutoInstall'); +requires('Class::ErrorHandler'); requires('LWP'); requires('HTML::Parser'); requires('URI'); diff --git a/lib/Feed/Find.pm b/lib/Feed/Find.pm index 5e8cbad..870ff57 100644 --- a/lib/Feed/Find.pm +++ b/lib/Feed/Find.pm @@ -1,4 +1,4 @@ -# $Id: Find.pm,v 1.2 2004/08/17 17:19:05 btrott Exp $ +# $Id: Find.pm,v 1.3 2004/08/18 02:44:03 btrott Exp $ package Feed::Find; use strict; @@ -9,7 +9,7 @@ use HTML::Parser; use URI; use vars qw( $VERSION ); -$VERSION = '0.01'; +$VERSION = '0.02'; use constant FEED_MIME_TYPES => [ 'application/x.atom+xml',