Files
perl-Net-RabbitMQ/perl-Net-RabbitMQ.spec
2025-08-12 18:16:04 +02:00

68 lines
2.0 KiB
RPMSpec

#
# spec file for package perl-Net-RabbitMQ
#
# Copyright (c) 2012 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/
#
Name: perl-Net-RabbitMQ
Version: 0.2.0
Release: 0
%define cpan_name Net-RabbitMQ
Summary: interact with RabbitMQ over AMQP using librabbitmq
License: MPL-1.1
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Net-RabbitMQ/
Source: http://www.cpan.org/authors/id/J/JE/JESUS/%{cpan_name}-%{version}.tar.gz
Source100: README.md
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
%{perl_requires}
%description
'Net::RabbitMQ' provides a simple wrapper around the librabbitmq library
that allows connecting, delcaring exchanges and queues, binding and
unbinding queues, publising, consuming and receiving events.
Error handling in this module is primarily achieve by Perl_croak (die). You
should be making good use of eval around these methods to ensure that you
appropriately catch the errors.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
%if 0%{?_with_network_tests}
%{__make} test
%endif
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf %{buildroot}
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes LICENSE LICENSE-MPL-RabbitMQ README
%changelog