8
0
Files
perl-Sub-HandlesVia/perl-Sub-HandlesVia.spec
Dirk Stoecker 1ca4f9eab8 Accepting request 997383 from devel:languages:perl:autoupdate
- updated to 0.035
   see /usr/share/doc/packages/perl-Sub-HandlesVia/Changes
  0.035	2022-08-12
   - Sub::HandlesVia::CodeGenerator method_installer is now a rw attribute as
     Sub::Accessor::Small was relying on that.
  0.034	2022-08-07
   - Sub::HandlesVia::CodeGenerator now handles generating code for type
     assertions and coercions instead of relying on handlers to do it.
   - Sub::HandlesVia::CodeGenerator now has a configurable sandbox package.
   - Updated: Sub::HandlesVia::Toolkit::Mite supports recent Mite features
     such as lvalue accessors and new ways of specifying defaults.
  0.033	2022-07-12
   - Optimizations to Sub::HandlesVia::CodeGenerator.
   - Updated: Recompile with newer Mite.

OBS-URL: https://build.opensuse.org/request/show/997383
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Sub-HandlesVia?expand=0&rev=9
2022-08-16 14:35:43 +00:00

85 lines
2.8 KiB
RPMSpec

#
# spec file for package perl-Sub-HandlesVia
#
# Copyright (c) 2022 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 Sub-HandlesVia
Name: perl-Sub-HandlesVia
Version: 0.035
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Alternative handles_via implementation
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Class::Method::Modifiers)
BuildRequires: perl(Exporter::Shiny)
BuildRequires: perl(List::Util) >= 1.54
BuildRequires: perl(Role::Hooks) >= 0.008
BuildRequires: perl(Role::Tiny)
BuildRequires: perl(Test::Fatal)
BuildRequires: perl(Test::More) >= 0.96
BuildRequires: perl(Test::Requires)
BuildRequires: perl(Try::Tiny)
BuildRequires: perl(Type::Tiny) >= 1.004
Requires: perl(Class::Method::Modifiers)
Requires: perl(Exporter::Shiny)
Requires: perl(List::Util) >= 1.54
Requires: perl(Role::Hooks) >= 0.008
Requires: perl(Role::Tiny)
Requires: perl(Type::Tiny) >= 1.004
Recommends: perl(Sub::Util)
%{perl_requires}
%description
If you've used Moose's native attribute traits, or MooX::HandlesVia before,
you should have a fairly good idea what this does.
Why re-invent the wheel? Well, this is an implementation that should work
okay with Moo, Moose, Mouse, and any other OO toolkit you throw at it. One
ring to rule them all, so to speak.
Also, unlike MooX::HandlesVia, it honours type constraints, plus it doesn't
have the limitation that it can't mutate non-reference values.
Note: as Sub::HandlesVia needs to detect whether you're using Moo, Moose,
or Mouse, and often needs to detect whether your package is a class or a
role, it needs to be loaded _after_ Moo/Moose/Mouse.
%prep
%autosetup -n %{cpan_name}-%{version}
%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 Changes COPYRIGHT CREDITS doap.ttl README
%license LICENSE
%changelog