commit perl-HTML-FillInForm for openSUSE:Factory

2015-08-29 Thread h_root
Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory checked in at 2015-08-29 20:04:46

Comparing /work/SRC/openSUSE:Factory/perl-HTML-FillInForm (Old)
 and  /work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new (New)


Package is perl-HTML-FillInForm

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-HTML-FillInForm/perl-HTML-FillInForm.changes
2015-04-16 14:13:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new/perl-HTML-FillInForm.changes
   2015-08-29 20:04:47.0 +0200
@@ -1,0 +2,8 @@
+Thu Aug 27 13:19:06 UTC 2015 - h...@imb-jena.de
+
+- add CGI to Requires:, BuildRequires:, as that module is not in
+  perl core since perl 5.22
+- rt-100926.patch: patch from rt.cpan.org, #100926 / github, pr #9,
+  to avoid security warning
+
+---

New:

  rt-100926.patch



Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.qdaqVa/_old  2015-08-29 20:04:47.0 +0200
+++ /var/tmp/diff_new_pack.qdaqVa/_new  2015-08-29 20:04:47.0 +0200
@@ -27,12 +27,15 @@
 Url:http://search.cpan.org/dist/HTML-FillInForm/
 Source0:
http://www.cpan.org/authors/id/M/MA/MARKSTOS/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
+Patch0: rt-100926.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CGI)
 BuildRequires:  perl(HTML::Parser) = 3.26
 BuildRequires:  perl(HTML::TokeParser) = 3.26
+Requires:   perl(CGI)
 Requires:   perl(HTML::Parser) = 3.26
 Requires:   perl(HTML::TokeParser) = 3.26
 %{perl_requires}

++ rt-100926.patch ++
diff -ur a/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm 
b/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm
--- a/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm   2014-08-14 
17:21:43.0 +0200
+++ b/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm   2015-08-27 
15:10:07.462905794 +0200
@@ -424,7 +424,12 @@
   # traverse the list in reverse order for backwards compatibility
   # with the previous implementation.
   for my $o (reverse @{$self-{objects}}) {
-my @v = $o-param($param);
+my @v;
+if ($o-can('multi_param')) {
+  @v = $o-multi_param($param);
+} else {
+  @v = $o-param($param);
+} 
 
 next unless @v;
 



commit perl-HTML-FillInForm for openSUSE:Factory

2015-04-16 Thread h_root
Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory checked in at 2015-04-16 14:13:55

Comparing /work/SRC/openSUSE:Factory/perl-HTML-FillInForm (Old)
 and  /work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new (New)


Package is perl-HTML-FillInForm

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-HTML-FillInForm/perl-HTML-FillInForm.changes
2014-02-22 18:11:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new/perl-HTML-FillInForm.changes
   2015-04-16 14:13:56.0 +0200
@@ -1,0 +2,10 @@
+Tue Apr 14 19:51:24 UTC 2015 - co...@suse.com
+
+- updated to 2.21
+   see /usr/share/doc/packages/perl-HTML-FillInForm/Changes
+
+  2.21 - August 14th, 2014
+  
+- Declare CGI.pm as a testing dependency (RT #98012, thanks to Martin 
McGrath)
+
+---

Old:

  HTML-FillInForm-2.20.tar.gz

New:

  HTML-FillInForm-2.21.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.vpKBo7/_old  2015-04-16 14:13:56.0 +0200
+++ /var/tmp/diff_new_pack.vpKBo7/_new  2015-04-16 14:13:57.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTML-FillInForm
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,22 @@
 
 
 Name:   perl-HTML-FillInForm
-Version:2.20
+Version:2.21
 Release:0
+#Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
 %define cpan_name HTML-FillInForm
-Summary:Populates HTML Forms with data.
+Summary:Populates HTML Forms with data
 License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/HTML-FillInForm/
-Source: 
http://www.cpan.org/authors/id/M/MA/MARKSTOS/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/M/MA/MARKSTOS/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(HTML::Parser) = 3.26
 BuildRequires:  perl(HTML::TokeParser) = 3.26
-#BuildRequires: perl(HTML::FillInForm)
 Requires:   perl(HTML::Parser) = 3.26
 Requires:   perl(HTML::TokeParser) = 3.26
 %{perl_requires}

++ HTML-FillInForm-2.20.tar.gz - HTML-FillInForm-2.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.20/Changes 
new/HTML-FillInForm-2.21/Changes
--- old/HTML-FillInForm-2.20/Changes2013-08-10 15:15:41.0 +0200
+++ new/HTML-FillInForm-2.21/Changes2014-08-14 17:21:37.0 +0200
@@ -1,4 +1,8 @@
 
+2.21 - August 14th, 2014
+
+  - Declare CGI.pm as a testing dependency (RT #98012, thanks to Martin 
McGrath)
+
 2.20 - August 10th, 2013
 
 - Updated to support HTML5 (RT #75933, thanks to charsbar)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.20/MANIFEST 
new/HTML-FillInForm-2.21/MANIFEST
--- old/HTML-FillInForm-2.20/MANIFEST   2013-08-10 15:14:26.0 +0200
+++ new/HTML-FillInForm-2.21/MANIFEST   2014-08-14 17:22:19.0 +0200
@@ -32,3 +32,4 @@
 t/25_select_absent_checkboxes.t
 t/26_invalid_fields.t
 t/data/form1.html
+META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.20/META.json 
new/HTML-FillInForm-2.21/META.json
--- old/HTML-FillInForm-2.20/META.json  1970-01-01 01:00:00.0 +0100
+++ new/HTML-FillInForm-2.21/META.json  2014-08-14 17:22:19.0 +0200
@@ -0,0 +1,31 @@
+{
+   abstract : unknown,
+   author : [
+  unknown
+   ],
+   dynamic_config : 1,
+   generated_by : ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter 
version 2.120921,
+   license : [
+  unknown
+   ],
+   meta-spec : {
+  url : http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
+  version : 2
+   },
+   name : HTML-FillInForm,
+   no_index : {
+  directory : [
+ t,
+ inc
+  ]
+   },
+   release_status : stable,
+   resources : {
+  repository : {
+ type : git,
+ url : https://github.com/markstos/HTML-FillInForm.git;,
+ web : https://github.com/markstos/HTML-FillInForm;
+  }
+   },
+   version : 2.21
+}
diff -urN '--exclude=CVS' 

commit perl-HTML-FillInForm for openSUSE:Factory

2014-02-22 Thread h_root
Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory checked in at 2014-02-22 18:11:58

Comparing /work/SRC/openSUSE:Factory/perl-HTML-FillInForm (Old)
 and  /work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new (New)


Package is perl-HTML-FillInForm

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-HTML-FillInForm/perl-HTML-FillInForm.changes
2013-06-13 17:34:18.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new/perl-HTML-FillInForm.changes
   2014-02-22 18:11:59.0 +0100
@@ -1,0 +2,6 @@
+Fri Oct  4 09:11:11 UTC 2013 - co...@suse.com
+
+- updated to 2.20
+ - Updated to support HTML5 (RT #75933, thanks to charsbar)
+
+---

Old:

  HTML-FillInForm-2.11.tar.gz

New:

  HTML-FillInForm-2.20.tar.gz



Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.grZ3HV/_old  2014-02-22 18:11:59.0 +0100
+++ /var/tmp/diff_new_pack.grZ3HV/_new  2014-02-22 18:11:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTML-FillInForm
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-HTML-FillInForm
-Version:2.11
+Version:2.20
 Release:0
 %define cpan_name HTML-FillInForm
 Summary:Populates HTML Forms with data.

++ HTML-FillInForm-2.11.tar.gz - HTML-FillInForm-2.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.11/Changes 
new/HTML-FillInForm-2.20/Changes
--- old/HTML-FillInForm-2.11/Changes2013-06-03 21:45:40.0 +0200
+++ new/HTML-FillInForm-2.20/Changes2013-08-10 15:15:41.0 +0200
@@ -1,4 +1,8 @@
 
+2.20 - August 10th, 2013
+
+- Updated to support HTML5 (RT #75933, thanks to charsbar)
+
 2.11 - June 3rd, 2013
 
 Updated tests so that they pass with Perl 5.18 (Mark Stosberg)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.11/MANIFEST 
new/HTML-FillInForm-2.20/MANIFEST
--- old/HTML-FillInForm-2.11/MANIFEST   2013-06-03 22:02:46.0 +0200
+++ new/HTML-FillInForm-2.20/MANIFEST   2013-08-10 15:14:26.0 +0200
@@ -32,4 +32,3 @@
 t/25_select_absent_checkboxes.t
 t/26_invalid_fields.t
 t/data/form1.html
-META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.11/META.json 
new/HTML-FillInForm-2.20/META.json
--- old/HTML-FillInForm-2.11/META.json  2013-06-03 22:02:46.0 +0200
+++ new/HTML-FillInForm-2.20/META.json  1970-01-01 01:00:00.0 +0100
@@ -1,43 +0,0 @@
-{
-   abstract : unknown,
-   author : [
-  unknown
-   ],
-   dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter 
version 2.120921,
-   license : [
-  unknown
-   ],
-   meta-spec : {
-  url : http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  version : 2
-   },
-   name : HTML-FillInForm,
-   no_index : {
-  directory : [
- t,
- inc
-  ]
-   },
-   prereqs : {
-  build : {
- requires : {
-ExtUtils::MakeMaker : 0
- }
-  },
-  configure : {
- requires : {
-ExtUtils::MakeMaker : 0
- }
-  },
-  runtime : {
- requires : {
-HTML::Parser : 3.26,
-HTML::TokeParser : 3.26,
-warnings : 0
- }
-  }
-   },
-   release_status : stable,
-   version : 2.11
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.11/META.yml 
new/HTML-FillInForm-2.20/META.yml
--- old/HTML-FillInForm-2.11/META.yml   2013-06-03 22:02:46.0 +0200
+++ new/HTML-FillInForm-2.20/META.yml   2013-08-10 15:18:59.0 +0200
@@ -1,24 +1,23 @@

-abstract: unknown
-author:
-  - unknown
-build_requires:
-  ExtUtils::MakeMaker: 0
+--- #YAML:1.0
+name:   HTML-FillInForm
+version:2.20
+abstract:   ~
+author:  []
+license:unknown
+distribution_type:  module
 configure_requires:
-  ExtUtils::MakeMaker: 0
-dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 
2.120921'
-license: unknown
-meta-spec:
-  url: 

commit perl-HTML-FillInForm for openSUSE:Factory

2013-06-13 Thread h_root
Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory checked in at 2013-06-13 17:34:17

Comparing /work/SRC/openSUSE:Factory/perl-HTML-FillInForm (Old)
 and  /work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new (New)


Package is perl-HTML-FillInForm

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-HTML-FillInForm/perl-HTML-FillInForm.changes
2011-09-23 12:37:18.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new/perl-HTML-FillInForm.changes
   2013-06-13 17:34:18.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun 10 12:12:33 UTC 2013 - co...@suse.com
+
+- updated to 2.11
+  * Updated tests so that they pass with Perl 5.18 (Mark Stosberg)
+
+---

Old:

  HTML-FillInForm-2.1.tar.gz

New:

  HTML-FillInForm-2.11.tar.gz



Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.4JM89e/_old  2013-06-13 17:34:19.0 +0200
+++ /var/tmp/diff_new_pack.4JM89e/_new  2013-06-13 17:34:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTML-FillInForm
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,53 +15,57 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-HTML-FillInForm
-BuildRequires:  perl-HTML-Parser
-BuildRequires:  perl-macros
-Version:2.1
-Release:1
-Requires:   perl-HTML-Parser = 3.26
-AutoReqProv:on
-Group:  Development/Libraries/Perl
+Version:2.11
+Release:0
+%define cpan_name HTML-FillInForm
+Summary:Populates HTML Forms with data.
 License:GPL-1.0+ or Artistic-1.0
-Url:http://cpan.org/modules/by-module/HTML/
-Summary:Perl module HTML::FillInForm
-Source: HTML-FillInForm-%{version}.tar.gz
+Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/HTML-FillInForm/
+Source: 
http://www.cpan.org/authors/id/M/MA/MARKSTOS/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
+BuildRequires:  perl-macros
+BuildRequires:  perl(HTML::Parser) = 3.26
+BuildRequires:  perl(HTML::TokeParser) = 3.26
+#BuildRequires: perl(HTML::FillInForm)
+Requires:   perl(HTML::Parser) = 3.26
+Requires:   perl(HTML::TokeParser) = 3.26
 %{perl_requires}
 
 %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.
+This module fills in an HTML form with data from a Perl data structure,
+allowing you to keep the HTML and Perl separate.
+
+Here are two common use cases:
 
+1. A user submits an HTML form without filling out a required field. You
+want to redisplay the form with all the previous data in it, to make it
+easy for the user to see and correct the error.
 
+2. You have just retrieved a record from a database and need to display it
+in an HTML form.
 
 %prep
-%setup -n HTML-FillInForm-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL
-make %{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
-make test
+%{__make} test
 
 %install
 %perl_make_install
 %perl_process_packlist
+%perl_gen_filelist
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%files
-%defattr(-,root,root)
+%files -f %{name}.files
+%defattr(-,root,root,755)
 %doc Changes README
-%doc %{_mandir}/man?/*
-%{perl_vendorlib}/HTML
-%{perl_vendorarch}/auto/HTML
 
 %changelog

++ HTML-FillInForm-2.1.tar.gz - HTML-FillInForm-2.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.1/Changes 
new/HTML-FillInForm-2.11/Changes
--- old/HTML-FillInForm-2.1/Changes 2011-08-29 20:57:15.0 +0200
+++ new/HTML-FillInForm-2.11/Changes2013-06-03 21:45:40.0 +0200
@@ -1,3 +1,8 @@
+
+2.11 - June 3rd, 2013
+
+Updated tests so that they pass with Perl 5.18 (Mark Stosberg)
+
 2.1 - August 29th, 2011
 
 Fixed disable_fields option (#52667 Dirk Braun, Goro Fuji)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTML-FillInForm-2.1/MANIFEST 
new/HTML-FillInForm-2.11/MANIFEST
--- old/HTML-FillInForm-2.1/MANIFEST2011-08-29 20:40:28.0 +0200
+++ 

commit perl-HTML-FillInForm for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory checked in at 2011-12-06 18:42:24

Comparing /work/SRC/openSUSE:Factory/perl-HTML-FillInForm (Old)
 and  /work/SRC/openSUSE:Factory/.perl-HTML-FillInForm.new (New)


Package is perl-HTML-FillInForm, Maintainer is vci...@suse.com

Changes:




Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.RU0weC/_old  2011-12-06 19:10:13.0 +0100
+++ /var/tmp/diff_new_pack.RU0weC/_new  2011-12-06 19:10:13.0 +0100
@@ -26,7 +26,7 @@
 Requires:   perl-HTML-Parser = 3.26
 AutoReqProv:on
 Group:  Development/Libraries/Perl
-License:GPL-1.0+ or Artistic
+License:GPL-1.0+ or Artistic-1.0
 Url:http://cpan.org/modules/by-module/HTML/
 Summary:Perl module HTML::FillInForm
 Source: HTML-FillInForm-%{version}.tar.gz

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-HTML-FillInForm for openSUSE:Factory

2011-08-31 Thread h_root

Hello community,

here is the log from the commit of package perl-HTML-FillInForm for 
openSUSE:Factory
checked in at Wed Aug 31 10:28:34 CEST 2011.




--- perl-HTML-FillInForm/perl-HTML-FillInForm.changes   2010-12-01 
14:46:20.0 +0100
+++ 
/mounts/work_src_done/STABLE/perl-HTML-FillInForm/perl-HTML-FillInForm.changes  
2011-08-30 10:12:43.0 +0200
@@ -1,0 +2,15 @@
+Tue Aug 30 01:34:15 UTC 2011 - vci...@suse.com
+
+- update to 2.1
+  * Fixed disable_fields option (#52667 Dirk Braun, Goro Fuji)
+  * Add an option to clear absent checkboxes (#44101 Alex Kapranoff)
+  * Fix incorrectly multiple escaped data in list context
+  (#34081 Miika Pekkarinen)
+  * Allow FIF to process the new input field  types (URL, email, and number) 
+  as defined in the HTML5 draft and already implemented by the iPhone.
+  * (Michael Fisher)
+  * Allow alternate parsing class (Mark Stosberg) mark 
+  invalid fields (Sam Tregar)
+- licence correction
+
+---

calling whatdependson for head-i586


Old:

  HTML-FillInForm-2.00.tar.bz2

New:

  HTML-FillInForm-2.1.tar.gz



Other differences:
--
++ perl-HTML-FillInForm.spec ++
--- /var/tmp/diff_new_pack.J6ubuv/_old  2011-08-31 10:28:16.0 +0200
+++ /var/tmp/diff_new_pack.J6ubuv/_new  2011-08-31 10:28:16.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-HTML-FillInForm (Version 2.00)
+# spec file for package perl-HTML-FillInForm
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,15 +21,15 @@
 Name:   perl-HTML-FillInForm
 BuildRequires:  perl-HTML-Parser
 BuildRequires:  perl-macros
-Version:2.00
-Release:74
+Version:2.1
+Release:1
 Requires:   perl-HTML-Parser = 3.26
 AutoReqProv:on
 Group:  Development/Libraries/Perl
-License:Artistic
+License:GPL-1.0+ or Artistic
 Url:http://cpan.org/modules/by-module/HTML/
 Summary:Perl module HTML::FillInForm
-Source: HTML-FillInForm-%{version}.tar.bz2
+Source: HTML-FillInForm-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 
@@ -40,16 +40,14 @@
 
 
 
-Authors:
-
-Thomas J. Mather tjmat...@alumni.princeton.edu
-
 %prep
 %setup -n HTML-FillInForm-%{version}
 
 %build
 perl Makefile.PL
 make %{?_smp_mflags}
+
+%check
 make test
 
 %install






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org