Files
perl-RT-Client-REST/perl-RT-Client-REST.spec
2025-08-12 18:16:56 +02:00

101 lines
3.7 KiB
RPMSpec

#
# spec file for package perl-RT-Client-REST
#
# Copyright (c) 2024 SUSE LLC
#
# 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/
#
%define cpan_name RT-Client-REST
Name: perl-RT-Client-REST
Version: 0.720.0
Release: 0
# 0.72 -> normalize -> 0.720.0
%define cpan_version 0.72
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Client for RT using REST API
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DJ/DJZORT/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(DateTime)
BuildRequires: perl(DateTime::Format::DateParse)
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.28
BuildRequires: perl(Params::Validate)
BuildRequires: perl(Test::Exception)
BuildRequires: perl(Try::Tiny)
BuildRequires: perl(URI)
BuildRequires: perl(parent)
Requires: perl(DateTime)
Requires: perl(DateTime::Format::DateParse)
Requires: perl(Exception::Class)
Requires: perl(HTTP::Cookies)
Requires: perl(HTTP::Request::Common)
Requires: perl(LWP)
Requires: perl(Params::Validate)
Requires: perl(Try::Tiny)
Requires: perl(URI)
Requires: perl(parent)
Provides: perl(RT::Client::REST) = %{version}
Provides: perl(RT::Client::REST::Attachment) = %{version}
Provides: perl(RT::Client::REST::Exception) = 0.190.0
Provides: perl(RT::Client::REST::Forms) = %{version}
Provides: perl(RT::Client::REST::Group) = %{version}
Provides: perl(RT::Client::REST::HTTPClient) = %{version}
Provides: perl(RT::Client::REST::NoopLogger) = %{version}
Provides: perl(RT::Client::REST::Object) = %{version}
Provides: perl(RT::Client::REST::Object::Exception) = %{version}
Provides: perl(RT::Client::REST::Queue) = %{version}
Provides: perl(RT::Client::REST::SearchResult) = %{version}
Provides: perl(RT::Client::REST::Ticket) = %{version}
Provides: perl(RT::Client::REST::Transaction) = %{version}
Provides: perl(RT::Client::REST::User) = %{version}
%undefine __perllib_provides
%{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
%autosetup -n %{cpan_name}-%{cpan_version}
%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
%doc CHANGES CONTRIBUTORS examples README README.md TODO
%license LICENSE
%changelog