8
0
Files
perl-Params-Validate/perl-Params-Validate.spec
Vítězslav Čížek 9475d67a74 - update to 1.05
* The XS code had a code path where it could pass the contents of a Perl
    variable as the first argument to the XS croak() subroutine. This subroutine
    is like printf(), and should receive a format string as its first
    argument. According to RT #74777, this can lead to segfaults on some systems.
    This could in theory be a security bug, but it's very unlikely that
    untrusted user input could end up being passed to this croak(). It is called
    when a spec specifies a "depend" value on another parameter. The value of
    the "depend" parameter was passed in the first argument to croak().
  1.04    2012-02-08
  * Use the latest Module::XSOrPP dzil plugin to generate a saner Build.PL. No
    need update if you're using an earlier version.
  * This release uses Module::Implementation to handle loading the XS or pure
    Perl implementation of Params::Validate.
  1.02    2012-02-06
  * The previous release never loaded the XS implementation, even if it had been
    compiled.
  * With newer versions of Perl, the pure Perl implementation treated regexp
    objects differently than the XS implementation. They should be treated as
    belonging to the SCALARREF type for backwards compatibility.
  * These two bugs combined managed to break the test suites of a number of
    modules on CPAN. This release should fix them.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Params-Validate?expand=0&rev=29
2012-02-10 12:46:22 +00:00

87 lines
2.6 KiB
RPMSpec

#
# spec file for package perl-Params-Validate
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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/
#
%bcond_with opt
Name: perl-Params-Validate
Version: 1.05
Release: 2
License: Artistic-2.0
%define cpan_name Params-Validate
Summary: Validate method/function parameters
Url: http://search.cpan.org/dist/Params-Validate/
Group: Development/Libraries/Perl
Source: %{cpan_name}-%{version}.tar.gz
BuildRequires: perl
BuildRequires: perl(Module::Build)
BuildRequires: perl-macros
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} >= 1120
BuildRequires: perl(Test::More) >= 0.88
%endif
%if %{with opt}
BuildRequires: perl(Readonly::XS)
BuildRequires: perl(Test::Taint) >= 0.02
%endif
BuildRequires: perl(Attribute::Handlers) >= 0.79
BuildRequires: perl(Scalar::Util) >= 1.10
BuildRequires: perl(Test::Fatal)
BuildRequires: perl(Module::Implementation)
Requires: perl(Attribute::Handlers) >= 0.79
Requires: perl(Module::Implementation)
Requires: perl(Scalar::Util) >= 1.10
%{perl_requires}
%description
The Params::Validate module allows you to validate method or function
call parameters to an arbitrary level of specificity. At the simplest
level, it is capable of validating the required parameters were given
and that no unspecified additional parameters were passed in.
It is also capable of determining that a parameter is of a specific
type, that it is an object of a certain class hierarchy, that it
possesses certain methods, or applying validation callbacks to
arguments.
%prep
%setup -q -n %{cpan_name}-%{version}
%if 0%{?suse_version} <= 1120
perl -p -i -e 's|0.3601|0.280801|' Build.PL
%endif
%build
perl Build.PL installdirs=vendor
./Build
%check
./Build test
%install
./Build install destdir=%{buildroot}
%perl_process_packlist
%perl_gen_filelist
%clean
rm -rf %{buildroot}
%files -f %{name}.files
%defattr(-, root, root)
%doc Changes LICENSE README
%changelog