2011-04-19 07:36:40 +00:00
|
|
|
#
|
2011-04-19 07:36:53 +00:00
|
|
|
# spec file for package perl-Log-Any
|
2011-04-19 07:36:40 +00:00
|
|
|
#
|
2011-04-19 07:36:53 +00:00
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2011-04-19 07:36:40 +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/
|
|
|
|
|
#
|
|
|
|
|
|
2011-04-19 07:36:53 +00:00
|
|
|
|
2011-04-19 07:36:40 +00:00
|
|
|
Name: perl-Log-Any
|
2011-12-19 14:52:21 +00:00
|
|
|
Version: 0.14
|
|
|
|
|
Release: 0
|
2011-04-19 07:36:40 +00:00
|
|
|
%define cpan_name Log-Any
|
|
|
|
|
Summary: Bringing loggers and listeners together
|
2011-12-19 14:52:21 +00:00
|
|
|
License: GPL-1.0+ or Artistic-1.0
|
2011-04-19 07:36:40 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2011-12-19 14:52:21 +00:00
|
|
|
Url: http://search.cpan.org/dist/Log-Any/
|
2011-06-01 08:38:17 +00:00
|
|
|
Source: http://www.cpan.org/authors/id/J/JS/JSWARTZ/%{cpan_name}-%{version}.tar.gz
|
2011-04-19 07:36:40 +00:00
|
|
|
Patch0: noprovides.diff
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
BuildRequires: perl
|
|
|
|
|
BuildRequires: perl-macros
|
2011-08-23 14:04:43 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
2011-04-19 07:36:40 +00:00
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
'Log::Any' allows CPAN modules to safely and efficiently log messages,
|
|
|
|
|
while letting the application choose (or decline to choose) a logging
|
|
|
|
|
mechanism such as 'Log::Dispatch' or 'Log::Log4perl'.
|
|
|
|
|
|
|
|
|
|
'Log::Any' has a very tiny footprint and no dependencies beyond Perl 5.6,
|
|
|
|
|
which makes it appropriate for even small CPAN modules to use. It defaults
|
|
|
|
|
to 'null' logging activity, so a module can safely log without worrying
|
|
|
|
|
about whether the application has chosen (or will ever choose) a logging
|
|
|
|
|
mechanism.
|
|
|
|
|
|
|
|
|
|
The application, in turn, may choose one or more logging mechanisms via
|
|
|
|
|
Log::Any::Adapter.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
|
%patch0 -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
%{__make} test
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%perl_make_install
|
|
|
|
|
%perl_process_packlist
|
2011-08-23 14:04:43 +00:00
|
|
|
find %{buildroot} -name "*.orig" -exec rm -f {} \;
|
2011-04-19 07:36:40 +00:00
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
|
%defattr(-,root,root,755)
|
2011-06-01 08:38:17 +00:00
|
|
|
%doc Changes LICENSE README
|
2011-04-19 07:36:40 +00:00
|
|
|
|
|
|
|
|
%changelog
|