Files
perl-RT-Client-REST/perl-RT-Client-REST.spec

85 lines
2.8 KiB
RPMSpec

#
# spec file for package perl-RT-Client-REST
#
# Copyright (c) 2018 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 https://bugs.opensuse.org/
#
Name: perl-RT-Client-REST
Version: 0.53
Release: 0
%define cpan_name RT-Client-REST
Summary: Client for RT using REST API
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DJ/DJZORT/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
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(HTTP::Server::Simple) >= 0.44
BuildRequires: perl(HTTP::Server::Simple::CGI)
BuildRequires: perl(HTTP::Server::Simple::CGI::Environment)
BuildRequires: perl(LWP)
BuildRequires: perl(Module::Build) >= 0.280000
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}
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
%build
perl Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc CHANGES examples README README.md TODO
%license LICENSE
%changelog