.gear/rules | 2 + .../tags/87480c2d6756464b0e9756965f3606f279182ee2 | 13 ++++ .gear/tags/list | 1 + perl-WWW-Mechanize.spec | 69 ++++++++++++++++++++ 4 files changed, 85 insertions(+), 0 deletions(-) diff --git a/.gear/rules b/.gear/rules new file mode 100644 index 0000000..6d567c6 --- /dev/null +++ b/.gear/rules @@ -0,0 +1,2 @@ +tar: @version@:. name=WWW-Mechanize-@version@ +diff: @version@:. . name=perl-WWW-Mechanize-@version@-@release@.patch diff --git a/.gear/tags/87480c2d6756464b0e9756965f3606f279182ee2 b/.gear/tags/87480c2d6756464b0e9756965f3606f279182ee2 new file mode 100644 index 0000000..812ff9a --- /dev/null +++ b/.gear/tags/87480c2d6756464b0e9756965f3606f279182ee2 @@ -0,0 +1,13 @@ +object 4040bf8a243861679e74128176e90395377caba5 +type commit +tag 1.34 +tagger Alexey Tourbin 1213691690 +0400 + +1.34 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkhXdyoACgkQfBKgtDjnu0Y85QCdFS04Zq3hjsJid59pnk1FsOLP +3dEAn2uTSDc0p2Lr0bw9Zm5waeJcIqH1 +=KlPN +-----END PGP SIGNATURE----- diff --git a/.gear/tags/list b/.gear/tags/list new file mode 100644 index 0000000..13d2550 --- /dev/null +++ b/.gear/tags/list @@ -0,0 +1 @@ +87480c2d6756464b0e9756965f3606f279182ee2 1.34 diff --git a/perl-WWW-Mechanize.spec b/perl-WWW-Mechanize.spec new file mode 100644 index 0000000..5d138a0 --- /dev/null +++ b/perl-WWW-Mechanize.spec @@ -0,0 +1,69 @@ +%define dist WWW-Mechanize +Name: perl-%dist +Version: 1.34 +Release: alt1 + +Summary: Handy web browsing in a Perl object +License: Artistic +Group: Development/Perl + +URL: %CPAN %dist +Source: %dist-%version.tar +Patch: %name-%version-%release.patch + +BuildArch: noarch + +# Automatically added by buildreq on Tue Jun 17 2008 +BuildRequires: perl-CGI perl-Test-Pod perl-libwww + +%description +"WWW::Mechanize", or Mech for short, helps you automate interaction +with a website. It supports performing a sequence of page fetches +including following links and submitting forms. Each fetched page +is parsed and its links and forms are extracted. A link or a form +can be selected, form fields can be filled and the next page can +be fetched. Mech also stores a history of the URLs you've visited, +which can be queried and revisited. + +See also: `Screen Scraping for Fun and Profit' by Randal Schwartz, +http://www.linux-mag.com/content/view/1322/2206/ + +%prep +%setup -q -n %dist-%version +%patch -p1 + +%build +%perl_vendor_build --nolive + +%install +%perl_vendor_install + +%files +%doc Changes + %_bindir/mech-dump +%dir %perl_vendor_privlib/WWW + %perl_vendor_privlib/WWW/Mechanize.pm +%dir %perl_vendor_privlib/WWW/Mechanize + %perl_vendor_privlib/WWW/Mechanize/*.pm +%doc %perl_vendor_privlib/WWW/Mechanize/*.pod + +%changelog +* Tue Jun 17 2008 Alexey Tourbin 1.34-alt1 +- 1.18 -> 1.34 + +* Sun May 28 2006 Alexey Tourbin 1.18-alt1 +- 1.14 -> 1.18 + +* Wed Aug 31 2005 Alexey Tourbin 1.14-alt1 +- 1.12 -> 1.14 +- disabled live tests + +* Sun Mar 20 2005 Alexey Tourbin 1.12-alt1 +- 1.10 -> 1.12 + +* Thu Feb 03 2005 Alexey Tourbin 1.10-alt1 +- 1.02 -> 1.10 +- manual pages not packaged (use perldoc) + +* Sat Apr 17 2004 Alexey Tourbin 1.02-alt1 +- initial revision, inspired by Randal Schwartz