forked from pool/perl-Log-Dispatch-Array
- updated to 1.002
repackage, update bugtracker OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Log-Dispatch-Array?expand=0&rev=7
This commit is contained in:
committed by
Git OBS Bridge
parent
011d3d9fd6
commit
73f359d4cc
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:78f00ed5b0fdcae3cdcfc83b98f72893178ddaa5486e5071894845bbeab32344
|
|
||||||
size 21296
|
|
3
Log-Dispatch-Array-1.002.tar.gz
Normal file
3
Log-Dispatch-Array-1.002.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:268ec720eec3651d3dadcad7d16f033b47f883c72d6f2547c4ccbe7fb22a4940
|
||||||
|
size 13089
|
@@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 27 11:58:37 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.002
|
||||||
|
repackage, update bugtracker
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 1 13:33:20 UTC 2010 - coolo@novell.com
|
Wed Dec 1 13:33:20 UTC 2010 - coolo@novell.com
|
||||||
|
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
# vim: set sw=4 ts=4 et nu:
|
|
||||||
#
|
#
|
||||||
# spec file for package perl-Log-Dispatch-Array
|
# spec file for package perl-Log-Dispatch-Array
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -15,56 +14,51 @@
|
|||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Log-Dispatch-Array
|
Name: perl-Log-Dispatch-Array
|
||||||
Version: 1.001
|
Version: 1.002
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Log events to an array
|
%define cpan_name Log-Dispatch-Array
|
||||||
|
Summary: log events to an array (reference)
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Source: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Log-Dispatch-Array-%{version}.tar.gz
|
Url: http://search.cpan.org/dist/Log-Dispatch-Array/
|
||||||
Url: http://search.cpan.org/dist/Log-Dispatch-Array
|
Source: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
||||||
BuildRequires: perl(Log::Dispatch::Output)
|
BuildRequires: perl(Log::Dispatch::Output)
|
||||||
BuildRequires: perl(Test::Deep)
|
BuildRequires: perl(Test::Deep)
|
||||||
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
|
BuildRequires: perl(parent)
|
||||||
Requires: perl(Log::Dispatch::Output)
|
Requires: perl(Log::Dispatch::Output)
|
||||||
|
Requires: perl(parent)
|
||||||
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This provides a Log::Dispatch log output system that appends logged events
|
This provides a Log::Dispatch log output system that appends logged events
|
||||||
to an array reference. This is probably only useful for testing the
|
to an array reference. This is probably only useful for testing the logging
|
||||||
logging of your code.
|
of your code.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n "Log-Dispatch-Array-%{version}"
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
%__sed -i '/^auto_install/d' Makefile.PL
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%__perl Makefile.PL PREFIX="%{_prefix}"
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
%__make %{?jobs:-j%{jobs}}
|
%{__make} %{?_smp_mflags}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%{__make} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
|
%perl_gen_filelist
|
||||||
|
|
||||||
%check
|
%files -f %{name}.files
|
||||||
%__make test
|
%defattr(-,root,root,755)
|
||||||
|
%doc Changes LICENSE README
|
||||||
%clean
|
|
||||||
%{?buildroot:%__rm -rf "%{buildroot}"}
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc Changes README
|
|
||||||
%dir %{perl_vendorlib}/Log
|
|
||||||
%dir %{perl_vendorlib}/Log/Dispatch
|
|
||||||
%{perl_vendorlib}/Log/Dispatch/Array.pm
|
|
||||||
%dir %{perl_vendorarch}/auto/Log
|
|
||||||
%dir %{perl_vendorarch}/auto/Log/Dispatch
|
|
||||||
%{perl_vendorarch}/auto/Log/Dispatch/Array
|
|
||||||
%doc %{perl_man3dir}/Log::Dispatch::Array.%{perl_man3ext}%{ext_man}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user