Files
perl-Catalyst-Model-Adaptor/perl-Catalyst-Model-Adaptor.spec

92 lines
3.3 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Catalyst-Model-Adaptor
#
# Copyright (c) 2024 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 Catalyst-Model-Adaptor
Name: perl-Catalyst-Model-Adaptor
Version: 0.100.0
Release: 0
# 0.10 -> normalize -> 0.100.0
%define cpan_version 0.10
License: Artistic-1.0 OR GPL-1.0-or-later
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
Source1: cpanspec.yml
2025-08-12 18:12:08 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Catalyst::Runtime)
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
BuildRequires: perl(MRO::Compat)
BuildRequires: perl(ok)
Requires: perl(Catalyst::Runtime)
Requires: perl(MRO::Compat)
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
%{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
%autosetup -n %{cpan_name}-%{cpan_version}
%build
PERL_USE_UNSAFE_INC=1 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 README
%changelog