automatic update OBS-URL: https://build.opensuse.org/request/show/305025 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTTP-Proxy?expand=0&rev=6
87 lines
2.9 KiB
RPMSpec
87 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-HTTP-Proxy
|
|
#
|
|
# 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-Proxy
|
|
Version: 0.303
|
|
Release: 0
|
|
%define cpan_name HTTP-Proxy
|
|
Summary: Pure Perl Http Proxy
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/HTTP-Proxy/
|
|
Source0: http://www.cpan.org/authors/id/B/BO/BOOK/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(HTTP::Daemon)
|
|
BuildRequires: perl(HTTP::Date)
|
|
BuildRequires: perl(HTTP::Headers)
|
|
BuildRequires: perl(HTTP::Headers::Util)
|
|
BuildRequires: perl(HTTP::Request)
|
|
BuildRequires: perl(HTTP::Request::Common)
|
|
BuildRequires: perl(LWP::ConnCache)
|
|
BuildRequires: perl(LWP::UserAgent)
|
|
Requires: perl(HTTP::Daemon)
|
|
Requires: perl(HTTP::Date)
|
|
Requires: perl(HTTP::Headers::Util)
|
|
Requires: perl(LWP::ConnCache)
|
|
Requires: perl(LWP::UserAgent)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module implements an HTTP proxy, using an the HTTP::Daemon manpage to
|
|
accept client connections, and an the LWP::UserAgent manpage to ask for the
|
|
requested pages.
|
|
|
|
The most interesting feature of this proxy object is its ability to filter
|
|
the HTTP requests and responses through user-defined filters.
|
|
|
|
Once the proxy is created, with the 'new()' method, it is possible to alter
|
|
its behaviour by adding so-called "filters." This is done by the
|
|
'push_filter()' method. Once the filter is ready to run, it can be
|
|
launched, with the 'start()' method. This method does not normally return
|
|
until the proxy is killed or otherwise stopped.
|
|
|
|
An important thing to note is that the proxy is (except when running the
|
|
'NoFork' engine) a _forking_ proxy: it doesn't support passing information
|
|
between child processes, and you can count on reliable information passing
|
|
only during a single HTTP connection (request + response).
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__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 LICENSE README
|
|
|
|
%changelog
|