1 | Name: libaio |
---|
2 | Version: 0.3.106 |
---|
3 | Release: 1 |
---|
4 | Summary: Linux-native asynchronous I/O access library |
---|
5 | Copyright: LGPL |
---|
6 | Group: System Environment/Libraries |
---|
7 | Source: %{name}-%{version}.tar.gz |
---|
8 | BuildRoot: %{_tmppath}/%{name}-root |
---|
9 | # Fix ExclusiveArch as we implement this functionality on more architectures |
---|
10 | ExclusiveArch: i386 x86_64 ia64 s390 s390x ppc ppc64 ppc64pseries ppc64iseries alpha alphaev6 |
---|
11 | |
---|
12 | %description |
---|
13 | The Linux-native asynchronous I/O facility ("async I/O", or "aio") has a |
---|
14 | richer API and capability set than the simple POSIX async I/O facility. |
---|
15 | This library, libaio, provides the Linux-native API for async I/O. |
---|
16 | The POSIX async I/O facility requires this library in order to provide |
---|
17 | kernel-accelerated async I/O capabilities, as do applications which |
---|
18 | require the Linux-native async I/O API. |
---|
19 | |
---|
20 | %package devel |
---|
21 | Summary: Development files for Linux-native asynchronous I/O access |
---|
22 | Group: Development/System |
---|
23 | Requires: libaio |
---|
24 | Provides: libaio.so.1 |
---|
25 | |
---|
26 | %description devel |
---|
27 | This package provides header files to include and libraries to link with |
---|
28 | for the Linux-native asynchronous I/O facility ("async I/O", or "aio"). |
---|
29 | |
---|
30 | %prep |
---|
31 | %setup |
---|
32 | |
---|
33 | %build |
---|
34 | make |
---|
35 | |
---|
36 | %install |
---|
37 | [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT |
---|
38 | |
---|
39 | make install prefix=$RPM_BUILD_ROOT/usr \ |
---|
40 | libdir=$RPM_BUILD_ROOT/%{_libdir} \ |
---|
41 | root=$RPM_BUILD_ROOT |
---|
42 | |
---|
43 | %clean |
---|
44 | [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT |
---|
45 | |
---|
46 | %post -p /sbin/ldconfig |
---|
47 | |
---|
48 | %postun -p /sbin/ldconfig |
---|
49 | |
---|
50 | %files |
---|
51 | %defattr(-,root,root) |
---|
52 | %attr(0755,root,root) %{_libdir}/libaio.so.* |
---|
53 | %doc COPYING TODO |
---|
54 | |
---|
55 | %files devel |
---|
56 | %defattr(-,root,root) |
---|
57 | %attr(0644,root,root) %{_includedir}/* |
---|
58 | %attr(0755,root,root) %{_libdir}/libaio.so |
---|
59 | %attr(0644,root,root) %{_libdir}/libaio.a |
---|
60 | |
---|
61 | %changelog |
---|
62 | * Tue Jan 3 2006 Jeff Moyer <jmoyer@redhat.com> - 0.3.106-1 |
---|
63 | - Add a .proc directive for the ia64_aio_raw_syscall macro. This sounds a lot |
---|
64 | like the previous entry, but that one fixed the __ia64_raw_syscall macro, |
---|
65 | located in syscall-ia64.h. This macro is in raw_syscall.c, which pretty much |
---|
66 | only exists for ia64. This bug prevented the package from building with |
---|
67 | newer version of gcc. |
---|
68 | |
---|
69 | * Mon Aug 1 2005 Jeff Moyer <jmoyer@redhat.com> - 0.3.105-1 |
---|
70 | - Add a .proc directive for the ia64 raw syscall macro. |
---|
71 | |
---|
72 | * Fri Apr 1 2005 Jeff Moyer <jmoyer@redhat.com> - 0.3.104-1 |
---|
73 | - Add Alpha architecture support. (Sergey Tikhonov <tsv@solvo.ru>) |
---|
74 | |
---|
75 | * Tue Jan 25 2005 Jeff Moyer <jmoyer@redhat.com> - 0.3.103-1 |
---|
76 | - Fix SONAME breakage. In changing file names around, I also changed the |
---|
77 | SONAME, which is a no no. |
---|
78 | |
---|
79 | * Thu Oct 14 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.102-1 |
---|
80 | - S390 asm had a bug; I forgot to update the clobber list. Lucky for me, |
---|
81 | newer compilers complain about such things. |
---|
82 | - Also update the s390 asm to look more like the new kernel variants. |
---|
83 | |
---|
84 | * Wed Oct 13 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.101-1 |
---|
85 | - Revert syscall return values to be -ERRNO. This was an inadvertant bug |
---|
86 | introduced when clobber lists changed. |
---|
87 | - add ppc64pseries and ppc64iseries to exclusivearch |
---|
88 | |
---|
89 | * Tue Sep 14 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.100-1 |
---|
90 | - Switch around the tests for _PPC_ and _powerpc64_ so that the ppc64 |
---|
91 | platforms get the right padding. |
---|
92 | |
---|
93 | * Wed Jul 14 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.99-4 |
---|
94 | - Ok, there was a race in moving the cvs module. Someone rebuild from |
---|
95 | the old cvs into fc3. *sigh* bumping rev. |
---|
96 | |
---|
97 | * Wed Jul 14 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.99-3 |
---|
98 | - Actually provide libaio.so.1. |
---|
99 | |
---|
100 | * Tue Mar 30 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.99-2 |
---|
101 | - Apparently the 0.3.93 patch was not meant for 0.3.96. Backed it out. |
---|
102 | |
---|
103 | * Tue Mar 30 2004 Jeff Moyer <jmoyer@redhat.com> - 0.3.99-1 |
---|
104 | - Fix compat calls. |
---|
105 | - make library .so.1.0.0 and make symlinks properly. |
---|
106 | - Fix header file for inclusion in c++ code. |
---|
107 | |
---|
108 | * Thu Feb 26 2004 Jeff Moyer <jmoyer@redhat.com> 0.3.98-2 |
---|
109 | - bah. fix version nr in changelog. |
---|
110 | |
---|
111 | * Thu Feb 26 2004 Jeff Moyer <jmoyer@redhat.com> 0.3.98-1 |
---|
112 | - fix compiler warnings. |
---|
113 | |
---|
114 | * Thu Feb 26 2004 Jeff Moyer <jmoyer@redhat.com> 0.3.97-2 |
---|
115 | - make srpm was using rpm to do a build. changed that to use rpmbuild if |
---|
116 | it exists, and fallback to rpm if it doesn't. |
---|
117 | |
---|
118 | * Tue Feb 24 2004 Jeff Moyer <jmoyer@redhat.com> 0.3.97-1 |
---|
119 | - Use libc syscall(2) instead of rolling our own calling mechanism. This |
---|
120 | change is inspired due to a failure to build with newer gcc, since clobber |
---|
121 | lists were wrong. |
---|
122 | - Add -fpic to the CFLAGS for all architectures. Should address bz #109457. |
---|
123 | - change a #include from <linux/types.h> to <sys/types.h>. Fixes a build |
---|
124 | issue on s390. |
---|
125 | |
---|
126 | * Wed Jul 7 2003 Bill Nottingham <notting@redhat.com> 0.3.96-3 |
---|
127 | - fix paths on lib64 arches |
---|
128 | |
---|
129 | * Wed Jun 18 2003 Michael K. Johnson <johnsonm@redhat.com> 0.3.96-2 |
---|
130 | - optimization in io_getevents from Arjan van de Ven in 0.3.96-1 |
---|
131 | - deal with ia64 in 0.3.96-2 |
---|
132 | |
---|
133 | * Wed May 28 2003 Michael K. Johnson <johnsonm@redhat.com> 0.3.95-1 |
---|
134 | - ppc bugfix from Julie DeWandel |
---|
135 | |
---|
136 | * Tue May 20 2003 Michael K. Johnson <johnsonm@redhat.com> 0.3.94-1 |
---|
137 | - symbol versioning fix from Ulrich Drepper |
---|
138 | |
---|
139 | * Mon Jan 27 2003 Benjamin LaHaise <bcrl@redhat.com> |
---|
140 | - bump to 0.3.93-3 for rebuild. |
---|
141 | |
---|
142 | * Mon Dec 16 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
143 | - libaio 0.3.93 test release |
---|
144 | - add powerpc support from Gianni Tedesco <gianni@ecsc.co.uk> |
---|
145 | - add s/390 support from Arnd Bergmann <arnd@bergmann-dalldorf.de> |
---|
146 | |
---|
147 | * Fri Sep 12 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
148 | - libaio 0.3.92 test release |
---|
149 | - build on x86-64 |
---|
150 | |
---|
151 | * Thu Sep 12 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
152 | - libaio 0.3.91 test release |
---|
153 | - build on ia64 |
---|
154 | - remove libredhat-kernel from the .spec file |
---|
155 | |
---|
156 | * Thu Sep 5 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
157 | - libaio 0.3.90 test release |
---|
158 | |
---|
159 | * Mon Apr 29 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
160 | - add requires initscripts >= 6.47-1 to get boot time libredhat-kernel |
---|
161 | linkage correct. |
---|
162 | - typo fix |
---|
163 | |
---|
164 | * Thu Apr 25 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
165 | - make /usr/lib/libredhat-kernel.so point to /lib/libredhat-kernel.so.1.0.0 |
---|
166 | |
---|
167 | * Mon Apr 15 2002 Tim Powers <timp@redhat.com> |
---|
168 | - make the post scriptlet not use /bin/sh |
---|
169 | |
---|
170 | * Sat Apr 12 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
171 | - add /lib/libredhat-kernel* to %files. |
---|
172 | |
---|
173 | * Fri Apr 12 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
174 | - make the dummy install as /lib/libredhat-kernel.so.1.0.0 so |
---|
175 | that ldconfig will link against it if no other is installed. |
---|
176 | |
---|
177 | * Tue Jan 22 2002 Benjamin LaHaise <bcrl@redhat.com> |
---|
178 | - add io_getevents |
---|
179 | |
---|
180 | * Tue Jan 22 2002 Michael K. Johnson <johnsonm@redhat.com> |
---|
181 | - Make linker happy with /usr/lib symlink for libredhat-kernel.so |
---|
182 | |
---|
183 | * Mon Jan 21 2002 Michael K. Johnson <johnsonm@redhat.com> |
---|
184 | - Added stub library |
---|
185 | |
---|
186 | * Sun Jan 20 2002 Michael K. Johnson <johnsonm@redhat.com> |
---|
187 | - Initial packaging |
---|