2011-11-08 10:06:53 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-REST-Client
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
2010-08-27 20:57:51 +00:00
|
|
|
# norootforbuild
|
|
|
|
|
2011-11-08 10:06:53 +00:00
|
|
|
|
2010-08-27 20:57:51 +00:00
|
|
|
Name: perl-REST-Client
|
2011-11-08 10:06:53 +00:00
|
|
|
Version: 236
|
2010-08-27 20:57:51 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Simple Client for Interacting with RESTful HTTP/HTTPS Resources
|
|
|
|
Source: http://search.cpan.org/CPAN/authors/id/M/MC/MCRAWFOR/REST-Client-%{version}.tar.gz
|
2011-11-08 10:06:53 +00:00
|
|
|
Url: http://search.cpan.org/dist/REST-Client
|
2010-08-27 20:57:51 +00:00
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
License: Perl License
|
2011-11-08 10:06:53 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-12-01 13:53:45 +00:00
|
|
|
%{perl_requires}
|
2010-08-27 20:57:51 +00:00
|
|
|
BuildRequires: perl
|
2010-12-03 14:49:06 +00:00
|
|
|
BuildRequires: perl-macros
|
2010-08-27 20:57:51 +00:00
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
|
|
|
|
BuildRequires: perl(URI)
|
|
|
|
BuildRequires: perl(LWP::UserAgent)
|
|
|
|
BuildRequires: perl(Crypt::SSLeay)
|
2011-05-23 05:13:43 +00:00
|
|
|
# for tests:
|
|
|
|
BuildRequires: perl(HTTP::Server::Simple)
|
2010-08-27 20:57:51 +00:00
|
|
|
Requires: perl(URI)
|
|
|
|
Requires: perl(LWP::UserAgent)
|
|
|
|
Requires: perl(Crypt::SSLeay)
|
|
|
|
|
|
|
|
%description
|
|
|
|
REST::Client provides a simple way to interact with HTTP RESTful
|
|
|
|
resources.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n "REST-Client-%{version}"
|
|
|
|
%__sed -i '/^auto_install/d' Makefile.PL
|
|
|
|
|
|
|
|
%build
|
|
|
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
|
|
|
%__make %{?jobs:-j%{jobs}}
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
|
2011-05-23 05:13:43 +00:00
|
|
|
%if 0%{?suse_version} > 1120
|
2011-11-08 10:06:53 +00:00
|
|
|
|
2010-08-27 20:57:51 +00:00
|
|
|
%check
|
|
|
|
%__make test
|
2011-05-23 05:13:43 +00:00
|
|
|
%endif
|
2010-08-27 20:57:51 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc CHANGES
|
|
|
|
%dir %{perl_vendorlib}/REST
|
|
|
|
%{perl_vendorlib}/REST/Client.pm
|
|
|
|
%dir %{perl_vendorarch}/auto/REST
|
|
|
|
%{perl_vendorarch}/auto/REST/Client
|
|
|
|
%doc %{perl_man3dir}/REST::Client.%{perl_man3ext}%{ext_man}
|
|
|
|
|
2011-11-08 10:06:53 +00:00
|
|
|
%changelog
|