Hello community,
here is the log from the commit of package perl-HTTP-Parser-XS for
openSUSE:Factory checked in at 2016-03-08 09:38:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-HTTP-Parser-XS (Old)
and /work/SRC/openSUSE:Factory/.perl-HTTP-Parser-XS.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-HTTP-Parser-XS"
Changes:
--------
New Changes file:
--- /dev/null 2016-01-27 19:41:03.648095915 +0100
+++
/work/SRC/openSUSE:Factory/.perl-HTTP-Parser-XS.new/perl-HTTP-Parser-XS.changes
2016-03-08 09:38:45.000000000 +0100
@@ -0,0 +1,65 @@
+-------------------------------------------------------------------
+Tue Apr 14 19:32:46 UTC 2015 - [email protected]
+
+- updated to 0.17
+ see /usr/share/doc/packages/perl-HTTP-Parser-XS/Changes
+
+ 0.17
+ - update picohttpparser (runs faster / does slightly more strict
parsing)
+
+ 0.16
+ - documentation about PATH_INFO
+
+ 0.15
+ - deny HTTP header field with an empty name
+
+ 0.14
+ - do not include '#' and the following characters in URI in PATH_INFO
or QUERY_STRING
+
+ 0.13
+ - fix compile error on GCC < 3 (RT #63074)
+
+ 0.12
+ - fix undeclared dependency on URI::Escape (RT #62716)
+ - fix parsing of protocol version in the pure perl impl to exactly
match that of XS
+
+-------------------------------------------------------------------
+Tue Apr 14 19:32:44 UTC 2015 - [email protected]
+
+- updated to 0.14
+ see /usr/share/doc/packages/perl-HTTP-Parser-XS/Changes
+
+ 0.14
+ - do not include '#' and the following characters in URI in PATH_INFO
or QUERY_STRING
+
+ 0.13
+ - fix compile error on GCC < 3 (RT #63074)
+
+ 0.12
+ - fix undeclared dependency on URI::Escape (RT #62716)
+ - fix parsing of protocol version in the pure perl impl to exactly
match that of XS
+
+-------------------------------------------------------------------
+Tue Nov 30 19:20:20 UTC 2010 - [email protected]
+
+- switch to perl_requires macro
+
+-------------------------------------------------------------------
+Mon Nov 29 18:30:13 UTC 2010 - [email protected]
+
+- remove /var/adm/perl-modules
+
+-------------------------------------------------------------------
+Mon Nov 1 14:05:40 UTC 2010 - [email protected]
+
+- update to 0.11:
+ * fix build error due to the use of Module::Install::ReadmeMarkdownFromPod
(RT #62589)
+
+- changes from 0.10:
+ * support for HTTP response parsing
+
+-------------------------------------------------------------------
+Thu Oct 7 11:23:22 UTC 2010 - [email protected]
+
+- initial package (0.09)
+
New:
----
HTTP-Parser-XS-0.17.tar.gz
perl-HTTP-Parser-XS.changes
perl-HTTP-Parser-XS.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-HTTP-Parser-XS.spec ++++++
#
# spec file for package perl-HTTP-Parser-XS
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-HTTP-Parser-XS
Version: 0.17
Release: 0
%define cpan_name HTTP-Parser-XS
Summary: a fast, primitive HTTP request parser
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/HTTP-Parser-XS/
Source:
http://www.cpan.org/authors/id/K/KA/KAZUHO/%{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::More) >= 0.96
%{perl_requires}
%description
HTTP::Parser::XS is a fast, primitive HTTP request/response parser.
The request parser can be used either for writing a synchronous HTTP server
or a event-driven server.
The response parser can be used for writing HTTP clients.
Note that even if this distribution name ends '::XS', *pure Perl*
implementation is supported, so you can use this module on compiler-less
environments.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%changelog