79 lines
2.5 KiB
RPMSpec
79 lines
2.5 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package perl-RT-Client-REST
|
||
|
#
|
||
|
# 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-RT-Client-REST
|
||
|
Version: 0.50
|
||
|
Release: 0
|
||
|
%define cpan_name RT-Client-REST
|
||
|
Summary: Talk to Rt Installation Using Rest Protocol
|
||
|
License: Artistic-1.0 or GPL-1.0+
|
||
|
Group: Development/Libraries/Perl
|
||
|
Url: http://search.cpan.org/dist/RT-Client-REST/
|
||
|
Source0: http://www.cpan.org/authors/id/S/SR/SRVSH/%{cpan_name}-%{version}.tar.gz
|
||
|
BuildArch: noarch
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
BuildRequires: perl
|
||
|
BuildRequires: perl-macros
|
||
|
BuildRequires: perl(DateTime)
|
||
|
BuildRequires: perl(DateTime::Format::DateParse)
|
||
|
BuildRequires: perl(Error)
|
||
|
BuildRequires: perl(Exception::Class)
|
||
|
BuildRequires: perl(HTTP::Cookies)
|
||
|
BuildRequires: perl(HTTP::Request::Common)
|
||
|
BuildRequires: perl(LWP)
|
||
|
BuildRequires: perl(Params::Validate)
|
||
|
BuildRequires: perl(Test::Exception)
|
||
|
BuildRequires: perl(URI)
|
||
|
Requires: perl(DateTime)
|
||
|
Requires: perl(DateTime::Format::DateParse)
|
||
|
Requires: perl(Error)
|
||
|
Requires: perl(Exception::Class)
|
||
|
Requires: perl(HTTP::Cookies)
|
||
|
Requires: perl(HTTP::Request::Common)
|
||
|
Requires: perl(LWP)
|
||
|
Requires: perl(Params::Validate)
|
||
|
Requires: perl(URI)
|
||
|
%{perl_requires}
|
||
|
|
||
|
%description
|
||
|
*RT::Client::REST* is */usr/bin/rt* converted to a Perl module. I needed to
|
||
|
implement some RT interactions from my application, but did not feel that
|
||
|
invoking a shell command is appropriate. Thus, I took *rt* tool, written by
|
||
|
Abhijit Menon-Sen, and converted it to an object-oriented Perl module.
|
||
|
|
||
|
%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 examples README TODO
|
||
|
|
||
|
%changelog
|