# # spec file for package perl-Catalyst-Log-Log4perl # # 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-Log-Log4perl Name: perl-Catalyst-Log-Log4perl Version: 1.60.0 Release: 0 # 1.06 -> normalize -> 1.60.0 %define cpan_version 1.06 License: Artistic-1.0 OR GPL-1.0-or-later Summary: DEPRECATED (see Log::Log4perl::Catalyst) 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 Source100: README.md BuildArch: noarch BuildRequires: perl BuildRequires: perl-macros BuildRequires: perl(Catalyst) >= 5.600.0 BuildRequires: perl(Data::Dump) BuildRequires: perl(ExtUtils::MakeMaker) >= 6.36 BuildRequires: perl(Log::Log4perl) >= 1.04 BuildRequires: perl(MRO::Compat) BuildRequires: perl(Params::Validate) Requires: perl(Catalyst) >= 5.600.0 Requires: perl(Data::Dump) Requires: perl(Log::Log4perl) >= 1.04 Requires: perl(MRO::Compat) Requires: perl(Params::Validate) Provides: perl(Catalyst::Log::Log4perl) = %{version} %undefine __perllib_provides %{perl_requires} %description This module provides a Catalyst::Log implementation that uses Log::Log4perl as the underlying log mechanism. It provides all the methods listed in Catalyst::Log, with the exception of: levels enable disable These methods simply return 0 and do nothing, as similar functionality is already provided by Log::Log4perl. These methods will all instantiate a logger with the component set to the package who called it. For example, if you were in the MyApp::C::Main package, the following: package MyApp::C::Main; sub default : Private { my ( $self, $c ) = @_; my $logger = $c->log; $logger->debug("Woot!"); } Would send a message to the Myapp.C.Main Log::Log4perl component. See Log::Log4perl for more information on how to configure different logging mechanisms based on the component. %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 example.conf README %changelog