1.79 imported
This commit is contained in:
parent
6331eff446
commit
5ae7776c88
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/threads-1.79.tar.gz
|
||||
60
perl-threads.spec
Normal file
60
perl-threads.spec
Normal file
@ -0,0 +1,60 @@
|
||||
Name: perl-threads
|
||||
Version: 1.79
|
||||
Release: 1%{?dist}
|
||||
Summary: Perl interpreter-based threads
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/threads/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/J/JD/JDHEDDEN/threads-%{version}.tar.gz
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(ExtUtils::testlib)
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Tests only:
|
||||
BuildRequires: perl(ExtUtils::testlib)
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(Test::More)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
%{?perl_default_filter}
|
||||
|
||||
%description
|
||||
Since Perl 5.8, thread programming has been available using a model called
|
||||
interpreter threads which provides a new Perl interpreter for each thread,
|
||||
and, by default, results in no data or state information being shared
|
||||
between threads.
|
||||
|
||||
(Prior to Perl 5.8, 5005threads was available through the "Thread.pm" API.
|
||||
This threading model has been deprecated, and was removed as of Perl 5.10.0.)
|
||||
|
||||
%prep
|
||||
%setup -q -n threads-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=perl OPTIMIZE="$RPM_OPT_FLAGS"
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes README
|
||||
%{perl_archlib}/auto/*
|
||||
%{perl_archlib}/threads*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Petr Pisar <ppisar@redhat.com> 1.79-1
|
||||
- Specfile autogenerated by cpanspec 1.78.
|
||||
- Remove BuildRoot stuff
|
||||
Loading…
Reference in New Issue
Block a user