perl-Readonly-XS/perl-Readonly-XS.spec
OBS User autobuild a3125fad69 Accepting request 35014 from devel:languages:perl
Copy from devel:languages:perl/perl-Readonly-XS based on submit request 35014 from user computersalat

OBS-URL: https://build.opensuse.org/request/show/35014
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Readonly-XS?expand=0&rev=2
2010-03-17 13:19:09 +00:00

76 lines
2.1 KiB
RPMSpec

#
# spec file for package perl-Readonly-XS (Version 1.05)
#
# 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/
#
# norootforbuild
Name: perl-Readonly-XS
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
Summary: Companion module for Readonly.pm, to speed up read-only scalar variables
Version: 1.05
Release: 2
License: GPLv2+
Group: Development/Libraries/Perl
AutoReqProv: on
Url: http://search.cpan.org/dist/Readonly-XS/
Source: %{cpan_name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
%if 0%{?suse_version} < 1120
BuildRequires: perl-macros
%endif
#
BuildRequires: perl(Readonly) >= 1.02
Requires: perl = %{perl_version}
Requires: perl(Readonly) >= 1.02
Provides: %{cpan_name}
%description
This is a companion module to Readonly.pm. You do not use
Readonly::XS directly. Instead, once it is installed, Readonly.pm
will detect this and will use it for creating read-only scalars. This
results in a significant speed improvement. This does not speed up
read-only arrays or hashes.
Authors:
--------
Eric Roode, <roode@cpan.org>
%prep
%setup -q -n %{cpan_name}-%{version}
%build
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-, root, root)
%doc Changes README
%changelog