2011-11-19 07:42:16 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-MooseX-Types-LoadableClass
|
|
|
|
#
|
2012-02-17 11:23:54 +00:00
|
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2011-11-19 07:42:16 +00:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
2012-02-17 11:23:54 +00:00
|
|
|
|
2011-11-19 07:42:16 +00:00
|
|
|
Name: perl-MooseX-Types-LoadableClass
|
2012-02-17 11:23:54 +00:00
|
|
|
Version: 0.007
|
2011-12-19 15:28:22 +00:00
|
|
|
Release: 0
|
2011-11-19 07:42:16 +00:00
|
|
|
%define cpan_name MooseX-Types-LoadableClass
|
2012-02-17 11:23:54 +00:00
|
|
|
Summary: ClassName type constraint with coercion to load the class.
|
|
|
|
License: Artistic-1.0 or GPL-1.0+
|
2011-11-19 07:42:16 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2011-12-19 15:28:22 +00:00
|
|
|
Url: http://search.cpan.org/dist/MooseX-Types-LoadableClass/
|
2011-11-19 07:42:16 +00:00
|
|
|
Source: http://www.cpan.org/authors/id/B/BO/BOBTFISH/%{cpan_name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Class::Load) >= 0.06
|
|
|
|
BuildRequires: perl(Moose)
|
|
|
|
BuildRequires: perl(MooseX::Types) >= 0.22
|
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
2011-12-19 15:28:22 +00:00
|
|
|
BuildRequires: perl(namespace::clean)
|
2011-11-19 07:42:16 +00:00
|
|
|
#BuildRequires: perl(Class::MOP)
|
|
|
|
#BuildRequires: perl(inc::Module::Install)
|
|
|
|
#BuildRequires: perl(JSON)
|
|
|
|
#BuildRequires: perl(LWP::Simple)
|
|
|
|
#BuildRequires: perl(Module::Build)
|
|
|
|
#BuildRequires: perl(Module::Install::AuthorRequires)
|
|
|
|
#BuildRequires: perl(Module::Install::AuthorTests)
|
|
|
|
#BuildRequires: perl(Module::Install::Base)
|
|
|
|
#BuildRequires: perl(Moose::Role)
|
|
|
|
#BuildRequires: perl(Moose::Util::TypeConstraints)
|
|
|
|
#BuildRequires: perl(MooseX::Types::LoadableClass)
|
|
|
|
#BuildRequires: perl(MooseX::Types::Moose)
|
|
|
|
#BuildRequires: perl(Parse::CPAN::Meta)
|
|
|
|
#BuildRequires: perl(Test::EOL)
|
|
|
|
#BuildRequires: perl(Test::Exception)
|
|
|
|
#BuildRequires: perl(Test::NoTabs)
|
|
|
|
#BuildRequires: perl(YAML::Tiny)
|
|
|
|
Requires: perl(Class::Load) >= 0.06
|
|
|
|
Requires: perl(MooseX::Types) >= 0.22
|
|
|
|
Requires: perl(namespace::clean)
|
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
use Moose::Util::TypeConstraints;
|
|
|
|
|
|
|
|
my $tc = subtype as ClassName;
|
|
|
|
coerce $tc, from Str, via { Class::MOP::load_class($_); $_ };
|
|
|
|
|
|
|
|
I've written those three lines of code quite a lot of times, in quite a lot
|
|
|
|
of places.
|
|
|
|
|
|
|
|
Now I don't have to.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
|
|
|
%doc Changes README
|
|
|
|
|
|
|
|
%changelog
|