forked from pool/perl-Params-Util
Copy from home:computersalat:devel:perl/perl-Params-Util via accept of submit request 36909 revision 2. Request was accepted with message: self accept OBS-URL: https://build.opensuse.org/request/show/36909 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Params-Util?expand=0&rev=9
88 lines
3.0 KiB
RPMSpec
88 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package perl-Params-Util (Version 1.01)
|
|
#
|
|
# 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.
|
|
|
|
|
|
Name: perl-Params-Util
|
|
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
|
Summary: Simple, compact and correct param-checking functions
|
|
Version: 1.01
|
|
Release: 2
|
|
License: Artistic
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/Params-Util
|
|
Source: %{cpan_name}-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
%if 0%{?suse_version} < 1120
|
|
BuildRequires: perl-macros
|
|
%endif
|
|
BuildRequires: perl(Scalar::Util) >= 1.18
|
|
BuildRequires: perl(Test::More) >= 0.42
|
|
BuildRequires: perl(File::Spec) >= 0.80
|
|
Requires: perl = %{perl_version}
|
|
Requires: perl(Scalar::Util) >= 1.18
|
|
Requires: perl(Test::More) >= 0.42
|
|
Requires: perl(File::Spec) >= 0.80
|
|
|
|
%description
|
|
Params::Util provides a basic set of importable functions that makes checking
|
|
parameters a hell of a lot easier While they can be (and are) used in other
|
|
contexts, the main point behind this module is that the functions both Do What
|
|
You Mean, and Do The Right Thing, so they are most useful when you are getting
|
|
params passed into your code from someone and/or somewhere else and you can't
|
|
really trust the quality.
|
|
|
|
Thus, Params::Util is of most use at the edges of your API, where params and
|
|
data are coming in from outside your code. The functions provided by
|
|
Params::Util check in the most strictly correct manner known, are documented as
|
|
thoroughly as possible so their exact behaviour is clear, and heavily tested so
|
|
make sure they are not fooled by weird data and Really Bad Things.
|
|
|
|
To use, simply load the module providing the functions you want to use as
|
|
arguments (as shown in the SYNOPSIS).
|
|
|
|
To aid in maintainability, Params::Util will never export by default.
|
|
|
|
You must explicitly name the functions you want to export, or use the :ALL
|
|
param to just have it export everything (although this is not recommended if
|
|
you have any _FOO functions yourself with which future additions to
|
|
Params::Util may clash)
|
|
|
|
Author:
|
|
-------
|
|
Adam Kennedy <adamk@cpan.org>
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
|
|
%{__make} %{?jobs:-j%jobs}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f %{name}.files
|
|
# normally you only need to check for doc files
|
|
%defattr(-,root,root)
|
|
%doc Changes LICENSE README
|
|
|
|
%changelog
|