Pedro Monreal Gonzalez
bbb05dd3a3
- updated to 1.45 see /usr/share/doc/packages/perl-Exception-Class/Changes 1.45 2021-05-02 - The field names for an exception are now checked to ensure that they are valid Perl identifiers. Implemented by brian d foy. PR #13. OBS-URL: https://build.opensuse.org/request/show/890284 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Exception-Class?expand=0&rev=37
85 lines
2.9 KiB
RPMSpec
85 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Exception-Class
|
|
#
|
|
# Copyright (c) 2021 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 Exception-Class
|
|
Name: perl-Exception-Class
|
|
Version: 1.45
|
|
Release: 0
|
|
Summary: Module that allows you to declare real exception classes in Perl
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Class::Data::Inheritable) >= 0.02
|
|
BuildRequires: perl(Devel::StackTrace) >= 2.00
|
|
BuildRequires: perl(Test::More) >= 0.96
|
|
Requires: perl(Class::Data::Inheritable) >= 0.02
|
|
Requires: perl(Devel::StackTrace) >= 2.00
|
|
%{perl_requires}
|
|
|
|
%description
|
|
*RECOMMENDATION 1*: If you are writing modern Perl code with Moose or Moo I
|
|
highly recommend using Throwable instead of this module.
|
|
|
|
*RECOMMENDATION 2*: Whether or not you use Throwable, you should use
|
|
Try::Tiny.
|
|
|
|
Exception::Class allows you to declare exception hierarchies in your
|
|
modules in a "Java-esque" manner.
|
|
|
|
It features a simple interface allowing programmers to 'declare' exception
|
|
classes at compile time. It also has a base exception class,
|
|
Exception::Class::Base, that can be easily extended.
|
|
|
|
It is designed to make structured exception handling simpler and better by
|
|
encouraging people to use hierarchies of exceptions in their applications,
|
|
as opposed to a single catch-all exception class.
|
|
|
|
This module does not implement any try/catch syntax. Please see the "OTHER
|
|
EXCEPTION MODULES (try/catch syntax)" section for more information on how
|
|
to get this syntax.
|
|
|
|
You will also want to look at the documentation for Exception::Class::Base,
|
|
which is the default base class for all exception objects created by this
|
|
module.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{version}
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
%make_build
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc azure-pipelines.yml Changes CODE_OF_CONDUCT.md CONTRIBUTING.md precious.toml README.md
|
|
%license LICENSE
|
|
|
|
%changelog
|