forked from pool/perl-Params-Classify
90 lines
3.2 KiB
RPMSpec
90 lines
3.2 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package perl-Params-Classify (Version 0.013)
|
||
|
#
|
||
|
# Copyright (c) 2010 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/
|
||
|
#
|
||
|
|
||
|
Name: perl-Params-Classify
|
||
|
Version: 0.013
|
||
|
Release: 1
|
||
|
License: GPL+ or Artistic
|
||
|
%define cpan_name Params-Classify
|
||
|
Summary: argument type classification
|
||
|
Url: http://search.cpan.org/dist/Params-Classify/
|
||
|
Group: Development/Libraries/Perl
|
||
|
Source: http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
BuildRequires: perl
|
||
|
BuildRequires: perl(Module::Build)
|
||
|
BuildRequires: perl-macros
|
||
|
BuildRequires: perl(Exporter)
|
||
|
BuildRequires: perl(ExtUtils::ParseXS) >= 2.2006
|
||
|
BuildRequires: perl(Module::Build)
|
||
|
BuildRequires: perl(parent)
|
||
|
BuildRequires: perl(Scalar::Util) >= 1.01
|
||
|
BuildRequires: perl(strict)
|
||
|
BuildRequires: perl(Test::More)
|
||
|
BuildRequires: perl(warnings)
|
||
|
Requires: perl(Exporter)
|
||
|
Requires: perl(parent)
|
||
|
Requires: perl(Scalar::Util) >= 1.01
|
||
|
Requires: perl(strict)
|
||
|
Requires: perl(warnings)
|
||
|
Recommends: perl(XSLoader)
|
||
|
%{perl_requires}
|
||
|
|
||
|
%description
|
||
|
This module provides various type-testing functions. These are intended for
|
||
|
functions that, unlike most Perl code, care what type of data they are
|
||
|
operating on. For example, some functions wish to behave differently
|
||
|
depending on the type of their arguments (like overloaded functions in
|
||
|
C++).
|
||
|
|
||
|
There are two flavours of function in this module. Functions of the first
|
||
|
flavour only provide type classification, to allow code to discriminate
|
||
|
between argument types. Functions of the second flavour package up the most
|
||
|
common type of type discrimination: checking that an argument is of an
|
||
|
expected type. The functions come in matched pairs, of the two flavours,
|
||
|
and so the type enforcement functions handle only the simplest requirements
|
||
|
for arguments of the types handled by the classification functions.
|
||
|
Enforcement of more complex types may, of course, be built using the
|
||
|
classification functions, or it may be more convenient to use a module
|
||
|
designed for the more complex job, such as the Params::Validate manpage.
|
||
|
|
||
|
This module is implemented in XS, with a pure Perl backup version for
|
||
|
systems that can't handle XS.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{cpan_name}-%{version}
|
||
|
|
||
|
%build
|
||
|
%{__perl} Build.PL installdirs=vendor optimize="%{optflags}"
|
||
|
./Build build flags=%{?_smp_mflags}
|
||
|
|
||
|
%check
|
||
|
./Build test
|
||
|
|
||
|
%install
|
||
|
./Build install destdir=%{buildroot} create_packlist=0
|
||
|
%perl_gen_filelist
|
||
|
|
||
|
%clean
|
||
|
%{__rm} -rf %{buildroot}
|
||
|
|
||
|
%files -f %{name}.files
|
||
|
%defattr(-,root,root,755)
|
||
|
%doc Changes README
|
||
|
|
||
|
%changelog
|