Accepting request 34419 from home:computersalat:devel:perl
Copy from home:computersalat:devel:perl/perl-Devel-StackTrace via accept of submit request 34419 revision 4. Request was accepted with message: self accept OBS-URL: https://build.opensuse.org/request/show/34419 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Devel-StackTrace?expand=0&rev=8
This commit is contained in:
parent
7a45a94aed
commit
439d4340a2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:aa580845f70439b6e1a133dc5f56eef42deb5d203030c567a7da1508151fc95c
|
|
||||||
size 18380
|
|
3
Devel-StackTrace-1.22.tar.bz2
Normal file
3
Devel-StackTrace-1.22.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:049b0eee2481064b323ce3841109482138febf4be365fd9f399bd42d63dd14f0
|
||||||
|
size 19067
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 8 21:59:06 UTC 2010 - chris@computersalat.de
|
||||||
|
|
||||||
|
- update to version 1.22
|
||||||
|
- Apparently, overload::StrVal on older Perls (5.8.5, but not 5.8.8)
|
||||||
|
tried to call a stringification method if it existed. So now,
|
||||||
|
Devel::StackTrace just uses overload::AddrRef instead, which should
|
||||||
|
always be safe. Reported by Michael Stevens. Fixes RT #47900.
|
||||||
|
- 1.21 Jul 1, 2009
|
||||||
|
- Overloaded objects which didn't provide a stringification method
|
||||||
|
cause Devel::StackTrace to die when respect_overload was
|
||||||
|
true. Reported by Laurent Dami. RT #39533.
|
||||||
|
- Added a frame_filter option which allows for fine-grained control
|
||||||
|
over what frames are included in a trace. Based on (but expanded)
|
||||||
|
from a patch proposed by Florian Ragwitz. RT #47415.
|
||||||
|
- cleanup spec
|
||||||
|
- Header version
|
||||||
|
- License
|
||||||
|
- Provides
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 25 19:37:10 CEST 2009 - chris@computersalat.de
|
Sat Jul 25 19:37:10 CEST 2009 - chris@computersalat.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Devel-StackTrace
|
# spec file for package perl-Devel-StackTrace (Version 1.22)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 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
|
||||||
@ -17,30 +17,30 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
#Distribution: %dist
|
|
||||||
#Packager: %packager
|
|
||||||
#Vendor: %vendor
|
|
||||||
|
|
||||||
Name: perl-Devel-StackTrace
|
Name: perl-Devel-StackTrace
|
||||||
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
||||||
Summary: Stack trace and stack trace frame objects
|
Summary: Stack trace and stack trace frame objects
|
||||||
Version: 1.20
|
Version: 1.22
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL/Artistic
|
License: GPLv2/Artistic
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Devel-StackTrace
|
Url: http://search.cpan.org/dist/Devel-StackTrace
|
||||||
Source: %{cpan_name}-%{version}.tar.bz2
|
Source: %{cpan_name}-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
|
%if 0%{?suse_version} < 1120
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Test::More) >= 0.46
|
%endif
|
||||||
BuildRequires: perl(Test::Pod) >= 1.14
|
|
||||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
|
BuildRequires: perl(Test::More) >= 0.46
|
||||||
|
# other not perl || perl-base
|
||||||
|
BuildRequires: perl(Test::Pod) >= 1.14
|
||||||
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
Requires: perl(File::Spec)
|
Requires: perl(File::Spec)
|
||||||
Requires: perl(Scalar::Util)
|
Requires: perl(Scalar::Util)
|
||||||
|
Provides: %{cpan_name}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The Devel::StackTrace module contains two classes, Devel::StackTrace and
|
The Devel::StackTrace module contains two classes, Devel::StackTrace and
|
||||||
|
Loading…
Reference in New Issue
Block a user