12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- Name: perl-PlRPC
- Version: 0.2020
- Release: 7%{?_dist_release}
- License: GPL+ or Artistic
- Group: Development/Libraries
- Summary: Interface for building pServer Clients
- Source: http://search.cpan.org/CPAN/authors/id/M/MN/MNOONING/PlRPC/PlRPC-%{version}.tar.gz
- Url: http://search.cpan.org/dist/PlRPC
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Net::Daemon) >= 0.13
- BuildRequires: perl(Storable)
- # tests
- BuildRequires: perl(Compress::Zlib)
- BuildRequires: perl(Crypt::DES)
- # the better to compress you with, my dear
- Requires: perl(Compress::Zlib)
- Requires: perl(MD5)
- Requires: perl(Crypt::DES)
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- PlRPC (Perl RPC) is a package that simplifies the writing of Perl based
- client/server applications. RPC::PlServer is the package used on the
- server side, and you guess what RPC::PlClient is for. PlRPC works by
- defining a set of methods that may be executed by the client.
- %prep
- %setup -q -n PlRPC
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install PERL_INSTALL_ROOT=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
- %{_fixperms} %{buildroot}/*
- %check
- # tests fail in buildsys/mock
- %{?_with_tests: make test }
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc ChangeLog README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*.3*
- %changelog
- * Fri Mar 25 2011 IWAI, Masaharu <iwai@alib.jp> 0.2020-7
- - build for Vine Linux
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2020-6
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.2020-5
- - 661697 rebuild for fixing problems with vendorach/lib
- * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.2020-4
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.2020-3
- - rebuild against perl 5.10.1
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2020-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Wed Apr 01 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.2020-1
- - submission
- * Thu Mar 19 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.2020-0
- - initial RPM packaging
- - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8)
|