source: projects/specs/branches/6/p/perl-PlRPC/perl-PlRPC-vl.spec @ 3116

Revision 3116, 2.6 KB checked in by iwaim, 13 years ago (diff)

perl-PlRPC-0.2020-7

Line 
1Name:       perl-PlRPC
2Version:    0.2020
3Release:    7%{?_dist_release}
4License:    GPL+ or Artistic
5Group:      Development/Libraries
6Summary:    Interface for building pServer Clients
7Source:     http://search.cpan.org/CPAN/authors/id/M/MN/MNOONING/PlRPC/PlRPC-%{version}.tar.gz
8Url:        http://search.cpan.org/dist/PlRPC
9BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
11BuildArch:  noarch
12
13BuildRequires: perl(ExtUtils::MakeMaker)
14BuildRequires: perl(Net::Daemon) >= 0.13
15BuildRequires: perl(Storable)
16# tests
17BuildRequires: perl(Compress::Zlib)
18BuildRequires: perl(Crypt::DES)
19
20# the better to compress you with, my dear
21Requires:      perl(Compress::Zlib)
22Requires:      perl(MD5)
23Requires:      perl(Crypt::DES)
24
25Vendor:       Project Vine
26Distribution: Vine Linux
27
28%description
29PlRPC (Perl RPC) is a package that simplifies the writing of Perl based
30client/server applications. RPC::PlServer is the package used on the
31server side, and you guess what RPC::PlClient is for.  PlRPC works by
32defining a set of methods that may be executed by the client.
33
34%prep
35%setup -q -n PlRPC
36
37%build
38%{__perl} Makefile.PL INSTALLDIRS=vendor
39make %{?_smp_mflags}
40
41%install
42rm -rf %{buildroot}
43
44make pure_install PERL_INSTALL_ROOT=%{buildroot}
45find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
46find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
47
48%{_fixperms} %{buildroot}/*
49
50%check
51# tests fail in buildsys/mock
52%{?_with_tests: make test }
53
54%clean
55rm -rf %{buildroot}
56
57%files
58%defattr(-,root,root,-)
59%doc ChangeLog README
60%{perl_vendorlib}/*
61%{_mandir}/man3/*.3*
62
63%changelog
64* Fri Mar 25 2011 IWAI, Masaharu <iwai@alib.jp> 0.2020-7
65- build for Vine Linux
66
67* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2020-6
68- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
69
70* Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.2020-5
71- 661697 rebuild for fixing problems with vendorach/lib
72
73* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.2020-4
74- Mass rebuild with perl-5.12.0
75
76* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.2020-3
77- rebuild against perl 5.10.1
78
79* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2020-2
80- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
81
82* Wed Apr 01 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.2020-1
83- submission
84
85* Thu Mar 19 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.2020-0
86- initial RPM packaging
87- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8)
88
Note: See TracBrowser for help on using the repository browser.