2011-01-19 12:49:15 +00:00
|
|
|
#
|
2015-04-17 05:34:24 +00:00
|
|
|
# spec file for package perl-Catalyst-Model-Adaptor
|
2011-01-19 12:49:15 +00:00
|
|
|
#
|
2024-07-19 20:49:35 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2011-01-19 12:49:15 +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.
|
|
|
|
|
2019-10-15 11:51:45 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-01-19 12:49:15 +00:00
|
|
|
#
|
|
|
|
|
2015-04-17 05:34:24 +00:00
|
|
|
|
2024-07-19 20:49:35 +00:00
|
|
|
%define cpan_name Catalyst-Model-Adaptor
|
2011-01-19 12:49:15 +00:00
|
|
|
Name: perl-Catalyst-Model-Adaptor
|
2024-07-19 20:49:35 +00:00
|
|
|
Version: 0.100.0
|
2015-04-17 05:34:24 +00:00
|
|
|
Release: 0
|
2024-07-19 20:49:35 +00:00
|
|
|
# 0.10 -> normalize -> 0.100.0
|
|
|
|
%define cpan_version 0.10
|
2019-10-15 11:51:45 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
2024-07-19 20:49:35 +00:00
|
|
|
Summary: Use a plain class as a Catalyst model
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/%{cpan_name}-%{cpan_version}.tar.gz
|
2015-04-17 05:34:24 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:12:08 +02:00
|
|
|
Source100: README.md
|
2015-04-17 05:34:24 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2011-01-19 12:49:15 +00:00
|
|
|
BuildRequires: perl(Catalyst::Runtime)
|
2024-07-19 20:49:35 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
|
2011-01-19 12:49:15 +00:00
|
|
|
BuildRequires: perl(MRO::Compat)
|
|
|
|
BuildRequires: perl(ok)
|
|
|
|
Requires: perl(Catalyst::Runtime)
|
|
|
|
Requires: perl(MRO::Compat)
|
2024-07-19 20:49:35 +00:00
|
|
|
Provides: perl(Catalyst::Helper::Model::Adaptor)
|
|
|
|
Provides: perl(Catalyst::Helper::Model::Factory)
|
|
|
|
Provides: perl(Catalyst::Helper::Model::Factory::PerRequest)
|
|
|
|
Provides: perl(Catalyst::Model::Adaptor) = %{version}
|
|
|
|
Provides: perl(Catalyst::Model::Adaptor::Base)
|
|
|
|
Provides: perl(Catalyst::Model::Factory) = %{version}
|
|
|
|
Provides: perl(Catalyst::Model::Factory::PerRequest) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2011-01-19 12:49:15 +00:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
The idea is that you don't want your Catalyst model to be anything other
|
|
|
|
than a line or two of glue. Using this module ensures that your Model
|
|
|
|
classes are separate from your application and therefore are
|
|
|
|
well-abstracted, reusable, and easily testable.
|
|
|
|
|
|
|
|
Right now there are too many modules on CPAN that are Catalyst-specific.
|
|
|
|
Most of the models would be better written as a class that handles most of
|
|
|
|
the functionality with just a bit of glue to make it work nicely with
|
|
|
|
Catalyst. This module aims to make integrating your class with Catalyst
|
|
|
|
trivial, so you won't have to do any extra work to make your model generic.
|
|
|
|
|
|
|
|
For a good example of a Model that takes the right design approach, take a
|
|
|
|
look at Catalyst::Model::DBIC::Schema. All it does is glues an existing
|
|
|
|
DBIx::Class::Schema to Catalyst. It provides a bit of sugar, but no actual
|
|
|
|
functionality. Everything important happens in the 'DBIx::Class::Schema'
|
|
|
|
object.
|
|
|
|
|
|
|
|
The end result of that is that you can use your app's DBIC schema without
|
|
|
|
ever thinking about Catalyst. This is a Good Thing.
|
|
|
|
|
|
|
|
Catalyst is glue, not a way of life!
|
|
|
|
|
|
|
|
%prep
|
2024-07-19 20:49:35 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2011-01-19 12:49:15 +00:00
|
|
|
|
|
|
|
%build
|
2019-10-15 11:51:45 +00:00
|
|
|
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
|
2024-07-19 20:49:35 +00:00
|
|
|
%make_build
|
2011-01-19 12:49:15 +00:00
|
|
|
|
|
|
|
%check
|
2019-10-15 11:51:45 +00:00
|
|
|
make test
|
2011-01-19 12:49:15 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2015-04-17 05:34:24 +00:00
|
|
|
%doc Changes README
|
2011-01-19 12:49:15 +00:00
|
|
|
|
|
|
|
%changelog
|