source: projects/specs/trunk/p/perl-IO-AIO/perl-IO-AIO-vl.spec @ 5803

Revision 5803, 3.8 KB checked in by shaolin, 12 years ago (diff)
  • new packages (and a few updates)
Line 
1Name:           perl-IO-AIO
2Version:        4.12
3Release:        1%{?_dist_release}
4Summary:        Asynchronous Input/Output
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/IO-AIO/
8Source0:        http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/IO-AIO-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
10BuildRequires:  perl >= 2:5.8.2
11BuildRequires:  perl(Carp)
12BuildRequires:  perl(common::sense)
13BuildRequires:  perl(ExtUtils::MakeMaker)
14Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
15
16%{?perl_default_filter}
17
18%description
19This module implements asynchronous I/O using whatever means your operating
20system supports.
21
22%prep
23%setup -q -n IO-AIO-%{version}
24
25%build
26perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
27make %{?_smp_mflags}
28
29%install
30rm -rf %{buildroot}
31make pure_install DESTDIR=%{buildroot}
32
33# Remove script we don't want packaged
34rm -f %{buildroot}%{_bindir}/treescan
35
36find %{buildroot} -type f -name .packlist -exec rm -f {} \;
37find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
38find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
39%{_fixperms} %{buildroot}
40
41%check
42make test
43
44%clean
45rm -rf %{buildroot}
46
47%files
48%defattr(-,root,root,-)
49%doc Changes COPYING README
50%{perl_vendorarch}/auto/IO/
51%{perl_vendorarch}/IO/
52%{_mandir}/man3/IO::AIO.3pm*
53
54%changelog
55* Fri Mar 02 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.12-1
56- initial build for Vine Linux
57
58* Thu Feb  2 2012 Paul Howarth <paul@city-fan.org> - 4.12-1
59- Update to 4.12 (see Changes file for details)
60  - INCOMPATIBLE CHANGE: fork is no longer supported (indeed, it never was);
61    see FORK BEHAVIOUR in manpage for details
62- BR: perl(Carp)
63- Reinstate compatibility with old distributions such as EL-5
64  - Add back BuildRoot definition and cleaning
65- Use DESTDIR rather than PERL_INSTALL_ROOT
66- Don't use macros for commands
67- Use tabs
68
69* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.71-4
70- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
71
72* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3.71-3
73- Perl mass rebuild
74
75* Thu Mar 10 2011 Paul Howarth <paul@city-fan.org> - 3.71-2
76- Spec cleanup
77- Use %%{?perl_default_filter} instead of our own custom provides filter
78
79* Wed Feb  9 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.71-1
80- Upstream released new version
81
82* Tue Feb  8 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.65-3
83- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
84
85* Fri Dec 17 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.65-2
86- Rebuild to fix problems with vendorarch/lib (#661697)
87
88* Thu Jun 24 2010 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.65-1
89- Upstream released new version
90
91* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.17-5
92- Mass rebuild with perl-5.12.0
93
94* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 3.17-4
95- Rebuild against perl 5.10.1
96
97* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17-3
98- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
99
100* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17-2
101- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
102
103* Thu Dec 18 2008 Nicolas Chauvet <kwizart@gmail.com> - 3.17-1
104- Update to 3.17
105
106* Sun Nov 09 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.16-1
107- Upstream release new version
108
109* Mon Mar 03 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.51-2
110- Rebuild for new perl (again)
111
112* Sat Feb 09 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> - 2.51-1
113- Sync with upstream
114
115* Thu Feb  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.33-2
116- Rebuild for new perl
117
118* Sun May 13 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> - 2.33-1
119- Initial import
Note: See TracBrowser for help on using the repository browser.