12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- Summary: Populates HTML Forms with CGI data with Perl
- Name: perl-HTML-FillInForm
- Version: 2.21
- Release: 1%{?_dist_release}
- License: Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/author/TJMATHER/HTML-FillInForm/
- Source0: http://search.cpan.org/CPAN/authors/id/T/TJ/TJMATHER/HTML-FillInForm-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl(HTML::Parser) >= 3.26
- Requires: perl(HTML::Parser) >= 3.26
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- This module automatically inserts data from a previous HTML form into
- the HTML input and select tags. It is a subclass of HTML::Parser and
- uses it to parse the HTML and insert the values into the form tags.
- One useful application is after a user submits an HTML form without
- filling out required field.
- HTML::FillInForm can be used to redisplay the HTML form with all the
- form elements containing the submitted info.
- %prep
- %setup -q -n HTML-FillInForm-%{version}
- %build
- CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS="vendor"
- make
- %install
- rm -rf $RPM_BUILD_ROOT
- mkdir -p $RPM_BUILD_ROOT%{_prefix}
- make DESTDIR=$RPM_BUILD_ROOT install
- find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
- find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
- find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
- chmod -R u+w $RPM_BUILD_ROOT
- *
- %changelog
- * Wed Dec 24 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 2.21-1
- - updated to 2.21
- - built with perl 5.16.3
- * Sun May 22 2011 IWAI, Masaharu <iwai@alib.jp> 2.00-2
- - build with perl 5.12.3
- * Thu Nov 12 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.00-1
- - applied new versioning policy
- * Mon Oct 1 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.00-0vl1
- - new upstream release
- - changed Group to Development/Libraries
- * Fri Sep 9 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.05-0vl1
- - updated to 1.05
- - use vendor_perl dir
- * Tue Apr 29 2003 IWAI Masaharu <iwai@alib.jp> 1.01-0vl1
- - first build for Vine Linux
|