|
|
|
@ -1,14 +1,22 @@
|
|
|
|
|
Name: perl-Devel-StackTrace
|
|
|
|
|
Summary: Perl module implementing stack trace and stack trace frame objects
|
|
|
|
|
Version: 2.04
|
|
|
|
|
Version: 2.03
|
|
|
|
|
Epoch: 1
|
|
|
|
|
Release: 10%{?dist}
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
License: Artistic 2.0
|
|
|
|
|
URL: https://metacpan.org/release/Devel-StackTrace
|
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
URL: http://search.cpan.org/dist/Devel-StackTrace/
|
|
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
# --with release_tests ... also check "RELEASE_TESTS".
|
|
|
|
|
# Disabled by default
|
|
|
|
|
%bcond_with release_tests
|
|
|
|
|
|
|
|
|
|
# --with author_tests ... also check "AUTHOR_TESTS".
|
|
|
|
|
# Disabled by default
|
|
|
|
|
%bcond_with author_tests
|
|
|
|
|
|
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
|
BuildRequires: %{__perl}
|
|
|
|
|
BuildRequires: %{__make}
|
|
|
|
@ -18,6 +26,7 @@ BuildRequires: perl(bytes)
|
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
|
BuildRequires: perl(File::Spec)
|
|
|
|
|
BuildRequires: perl(IO::Handle)
|
|
|
|
|
BuildRequires: perl(IPC::Open3)
|
|
|
|
|
BuildRequires: perl(overload)
|
|
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
|
|
|
BuildRequires: perl(Scalar::Util)
|
|
|
|
@ -25,6 +34,44 @@ BuildRequires: perl(strict)
|
|
|
|
|
BuildRequires: perl(warnings)
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
|
|
|
|
|
|
%if %{with release_tests}
|
|
|
|
|
# for improved tests
|
|
|
|
|
BuildRequires: perl(Exception::Class::Base)
|
|
|
|
|
BuildRequires: perl(Pod::Coverage::TrustPod)
|
|
|
|
|
BuildRequires: perl(Test::CPAN::Changes)
|
|
|
|
|
BuildRequires: perl(Test::EOL)
|
|
|
|
|
BuildRequires: perl(Test::NoTabs)
|
|
|
|
|
BuildRequires: perl(Test::Pod) > 1.41
|
|
|
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.08
|
|
|
|
|
BuildRequires: perl(Test::Pod::LinkCheck)
|
|
|
|
|
BuildRequires: perl(Test::Pod::No404s)
|
|
|
|
|
BuildRequires: perl(Test::Portability::Files)
|
|
|
|
|
BuildRequires: perl(Test::Synopsis)
|
|
|
|
|
BuildRequires: perl(LWP::Protocol::https)
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{with author_tests}
|
|
|
|
|
BuildRequires: perl(Pod::Coverage::TrustPod)
|
|
|
|
|
BuildRequires: perl(Test::CPAN::Changes)
|
|
|
|
|
BuildRequires: perl(Test::EOL)
|
|
|
|
|
BuildRequires: perl(Test::NoTabs)
|
|
|
|
|
BuildRequires: perl(Test::Pod) > 1.41
|
|
|
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.08
|
|
|
|
|
BuildRequires: perl(Test::Spelling) >= 0.12
|
|
|
|
|
BuildRequires: perl(Test::Synopsis)
|
|
|
|
|
# N/A in Fedora: BuildRequires: perl(Code::TidyAll::Plugin::SortLines::Naturally) >= 0.000003
|
|
|
|
|
BuildRequires: perl(Code::TidyAll::Plugin::Test::Vars) >= 0.02
|
|
|
|
|
BuildRequires: perl(Parallel::ForkManager) >= 1.19
|
|
|
|
|
BuildRequires: perl(Perl::Critic) >= 1.126
|
|
|
|
|
BuildRequires: perl(Perl::Tidy) >= 20160302
|
|
|
|
|
BuildRequires: perl(Test::CPAN::Meta::JSON) >= 0.16
|
|
|
|
|
BuildRequires: perl(Test::Code::TidyAll) >= 0.50
|
|
|
|
|
BuildRequires: perl(Test::Mojibake)
|
|
|
|
|
BuildRequires: perl(Test::Portability::Files)
|
|
|
|
|
BuildRequires: perl(Test::Vars) >= 0.009
|
|
|
|
|
BuildRequires: perl(Test::Version) >= 2.05
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
The Devel::StackTrace module contains two classes, Devel::StackTrace
|
|
|
|
|
and Devel::StackTraceFrame. The goal of this object is to encapsulate
|
|
|
|
@ -40,14 +87,14 @@ data available from caller() as of Perl 5.6.0.
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
%{__make} test
|
|
|
|
|
%{__make} test %{?with_release_tests:RELEASE_TESTING=1} %{?with_author_tests:AUTHOR_TESTING=1}
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc Changes
|
|
|
|
@ -56,47 +103,8 @@ data available from caller() as of Perl 5.6.0.
|
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:2.04-10
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:2.04-9
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.04-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.04-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.04-6
|
|
|
|
|
- Perl 5.32 rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.04-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.04-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.04-3
|
|
|
|
|
- Perl 5.30 rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 1:2.04-2
|
|
|
|
|
- Fix bogus %%changelog entry.
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 1:2.04-1
|
|
|
|
|
- Update to 2.04.
|
|
|
|
|
- Remove release_tests (Dropped by upstream).
|
|
|
|
|
- Remove author_tests (Avoid packaging bloat).
|
|
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.03-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.03-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.03-3
|
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
* Thu Apr 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1:2.03-2
|
|
|
|
|
- Rebuilt for MSVSphere 8.9
|
|
|
|
|
|
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.03-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|