source: projects/specs/tags/6_0_REL/lib/libt/libtirpc/libtirpc-vl.spec @ 1901

Revision 1901, 9.1 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

Line 
1Name:           libtirpc
2Version:        0.2.1
3Release:        3%{?_dist_release}
4Summary:        Transport Independent RPC Library
5Group:          System Environment/Libraries
6License:        SISSL and BSD
7URL:            http://nfsv4.bullopensource.org/
8
9BuildRoot:      %{_tmppath}/%{name}-%{version}-root
10Source0:        http://downloads.sourceforge.net/libtirpc/libtirpc-%{version}.tar.bz2
11
12BuildRequires:  automake, autoconf, libtool, pkgconfig
13BuildRequires:  libgssglue-devel
14
15%description
16This package contains SunLib's implementation of transport-independent
17RPC (TI-RPC) documentation.  This library forms a piece of the base of
18Open Network Computing (ONC), and is derived directly from the
19Solaris 2.3 source.
20
21TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V
22Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface
23(XTI).  TI-RPC is on-the-wire compatible with the TS-RPC, which is supported
24by almost 70 vendors on all major operating systems.  TS-RPC source code
25(RPCSRC 4.0) remains available from several internet sites.
26
27%package devel
28Summary:        Development files for the libtirpc library
29Group:          Development/Libraries
30Requires:       %{name} = %{version}-%{release}
31Requires:       pkgconfig
32
33%description devel
34This package includes header files and libraries necessary for
35developing programs which use the tirpc library.
36
37
38%prep
39%setup -q
40
41# Remove .orig files
42find . -name "*.orig" | xargs rm -f
43
44%build
45autoreconf -fisv
46%configure --enable-gss
47make all
48
49%install
50rm -rf %{buildroot}
51mkdir -p %{buildroot}/etc
52make install DESTDIR=%{buildroot}
53
54# Don't package .a or .la files
55rm -f %{buildroot}%{_libdir}/*.{a,la}
56
57# Creat the man diretory
58#mv %{buildroot}%{_mandir}/man3 %{buildroot}%{_mandir}/man3t
59
60%post  -p /sbin/ldconfig
61
62%postun -p /sbin/ldconfig
63
64%clean
65rm -rf %{buildroot}
66
67%files
68%defattr(-,root,root)
69%doc AUTHORS ChangeLog NEWS README
70%{_libdir}/libtirpc.so.*
71%config(noreplace)%{_sysconfdir}/netconfig
72
73%files devel
74%defattr(0644,root,root,755)
75%dir %{_includedir}/tirpc
76%dir %{_includedir}/tirpc/rpc
77%dir %{_includedir}/tirpc/rpcsvc
78%{_libdir}/libtirpc.so
79%{_libdir}/pkgconfig/libtirpc.pc
80%{_includedir}/tirpc/netconfig.h
81%{_includedir}/tirpc/rpc/auth.h
82%{_includedir}/tirpc/rpc/auth_des.h
83%{_includedir}/tirpc/rpc/auth_gss.h
84%{_includedir}/tirpc/rpc/auth_kerb.h
85%{_includedir}/tirpc/rpc/auth_unix.h
86%{_includedir}/tirpc/rpc/clnt.h
87%{_includedir}/tirpc/rpc/clnt_soc.h
88%{_includedir}/tirpc/rpc/clnt_stat.h
89%{_includedir}/tirpc/rpc/des.h
90%{_includedir}/tirpc/rpc/des_crypt.h
91%{_includedir}/tirpc/rpc/nettype.h
92%{_includedir}/tirpc/rpc/pmap_clnt.h
93%{_includedir}/tirpc/rpc/pmap_prot.h
94%{_includedir}/tirpc/rpc/pmap_rmt.h
95%{_includedir}/tirpc/rpc/raw.h
96%{_includedir}/tirpc/rpc/rpc.h
97%{_includedir}/tirpc/rpc/rpc_com.h
98%{_includedir}/tirpc/rpc/rpc_msg.h
99%{_includedir}/tirpc/rpc/rpcb_clnt.h
100%{_includedir}/tirpc/rpc/rpcb_prot.h
101%{_includedir}/tirpc/rpc/rpcb_prot.x
102%{_includedir}/tirpc/rpc/rpcent.h
103%{_includedir}/tirpc/rpc/svc.h
104%{_includedir}/tirpc/rpc/svc_auth.h
105%{_includedir}/tirpc/rpc/svc_dg.h
106%{_includedir}/tirpc/rpc/svc_soc.h
107%{_includedir}/tirpc/rpc/types.h
108%{_includedir}/tirpc/rpc/xdr.h
109%{_includedir}/tirpc/rpcsvc/crypt.h
110%{_includedir}/tirpc/rpcsvc/crypt.x
111%{_mandir}/*/*
112
113%changelog
114* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.1-3
115- rebuild with rpm-4.8.1 for pkg-config file
116
117* Sun Feb 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.1-2
118- Initial build for Vine Linux
119
120* Mon Nov 30 2009 Steve Dickson  <steved@redhat.com> 0.2.1-1
121- Updated to latest upstream version: 0.2.1
122
123* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-4
124- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
125
126* Thu Jul  9 2009 Steve Dickson  <steved@redhat.com> 0.2.0-3
127- Updated to latest upstream tag: 0-2-1-rc3
128    Fixed the --disable-gss options
129    Fixed a number of warnings
130    Change how architectures are define in xdr_float.c
131
132* Mon Jun 29 2009 Steve Dickson  <steved@redhat.com> 0.2.0-2
133- Updated to latest upstream tag: 0-2-1-rc2
134    rpcb_clnt: RPC_PROGNOTREGISTERED is a permanent error
135    clnt_dg: Fix infinite loop when datagram call times ou
136    Updated .gitignore file
137    Replace the hard coded path name with the top_srcdir macrc
138    Added 'doc' to the SUBDIRS list so make install work correctly.
139
140* Fri May 29 2009 Steve Dickson  <steved@redhat.com> 0.2.0-1
141- Updated to latest upstream version: 0.2.0
142
143* Tue May 19 2009 Tom "spot" Callaway <tcallawa@redhat.com> 0.1.11-3
144- Replace the Sun RPC license with the BSD license, with the explicit permission of Sun Microsystems
145
146* Mon Apr 20 2009 Steve Dickson  <steved@redhat.com> 0.1.11-2
147- Updated to libtirpc-0.1.12-rc1
148
149* Mon Apr 20 2009 Steve Dickson  <steved@redhat.com> 0.1.11-1
150- Updated to the latest release: 0.1.11
151
152* Fri Mar 13 2009 Steve Dickson  <steved@redhat.com> 0.1.10-6
153- libtirpc: set r_netid and r_owner in __rpcb_findaddr_timed
154- libtirpc: be sure to free cl_netid and cl_tp
155- libtirpc: must free saved wire verifier when destroying context
156
157* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-5
158- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
159
160* Wed Jan 28 2009 Steve Dickson  <steved@redhat.com> 0.1.10-4
161- Converted all uids and uids to type uid_t and gid_t (sf 2446314)
162
163* Wed Jan 28 2009 Steve Dickson  <steved@redhat.com> 0.1.10-3
164- backwards compatibility: fix order of fields in TI-RPC's
165  svc_req (bz 481388)
166- Removed a number warnings.
167
168* Thu Jan 22 2009 Steve Dickson  <steved@redhat.com> 0.1.10-2
169- Header file fixes for C++
170
171* Thu Nov 20 2008 Steve Dickson  <steved@redhat.com> 0.1.10-1
172- Updated to latest upstream version: 0.1.10
173
174* Tue Oct 28 2008 Steve Dickson  <steved@redhat.com> 0.1.9-7
175- Fixed some incorrect function declarations (bz468815)
176
177* Mon Oct 27 2008 Steve Dickson  <steved@redhat.com> 0.1.9-6
178- Fix bad assumption taddr2uaddr processing that
179  caused a segfault (bz468014)
180
181* Tue Sep 16 2008 Steve Dickson <steved@redhat.com> 0.1.9-5
182- Fix for taddr2addr conversion bug of local addresses
183- Fixed some of warnings in: src/auth_time.c, src/clnt_dg.c and
184  src/clnt_raw.c
185- Added some #ifdef NOTUSED around some code in src/rpbc_clnt.c
186  that was not being used...
187
188* Thu Sep  4 2008 Steve Dickson <steved@redhat.com> 0.1.9-4
189- Always make IPv6 sockets V6ONLY
190- Fix incorrect sizeof() in __rpc_getbroadifs
191
192* Thu Aug  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.1.9-3
193- fix license tag
194
195* Tue Jul 9 2008 Steve Dickson  <steved@redhat.com> 0.1.9-1
196- Update to latest upstream version 0.1.9
197
198* Fri Jun 27 2008 Steve Dickson  <steved@redhat.com> 0.1.8-2
199- Added super-H(sh3,4) architecture support (bz 446559)
200
201* Tue Jun 10 2008 Steve Dickson  <steved@redhat.com> 0.1.8-1
202- Update to latest upstream version 0.1.8
203
204* Wed Mar 12 2008 Steve Dickson  <steved@redhat.com> 0.1.7-18
205- Install man pages in the 3t section
206
207* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1.7-17
208- Autorebuild for GCC 4.3
209
210* Mon Feb 18 2008 Steve Dickson  <steved@redhat.com> 0.1.7-16
211- Added patch that creates a libtirpc.pc used by the
212  pkg-config command.
213
214* Thu Jan 24 2008 Steve Dickson  <steved@redhat.com> 0.1.7-15
215- Protect from buffer overflow in the GSS code. (bz 362121)
216
217* Mon Dec 17 2007 Steve Dickson  <steved@redhat.com> 0.1.7-14
218- Fixed typo in /etc/netconfig file (bz 414471)
219
220* Thu Oct 25 2007 Steve Dickson  <steved@redhat.com> 0.1.7-13
221- Added a check for the ARM arch (bz 351071)
222
223* Wed Oct 17 2007 Steve Dickson  <steved@redhat.com> 0.1.7-12
224- Switch the libgssapi dependency to libgssglue
225
226* Mon Oct 15 2007 Steve Dickson  <steved@redhat.com> 0.1.7-11
227- Made tcp6/udp6 network ids no longer visible in the netconfig
228  file since the ipv6 code is not fully baked yet in rpcbind. (bz 249121)
229
230* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.1.7-10
231- Rebuild for selinux ppc32 issue.
232
233* Mon Jul 30 2007 <steved@redhat.com> 0.1.7-9
234- Fixed mutex lock problem in clnt_raw_create()
235- Ignore the return value of snprintf() and use strlen() instead
236  to bump the pointer in clnt_sperror()
237- A couple ntohs() were needed in bindresvport_sa()
238- Added IP_RECVERR processing with to clnt_dg_call() so
239  application will see errors instead of timing out
240- Make sure remote address (xp_rtaddr) is populated
241  with the correct type of address.
242- Change the order of network ids in /etc/netconfg
243  putting ipv4 ids before ipv6.
244- Bumped up Release from 8 to 9.
245
246* Mon Jul  9 2007 <steved@redhat.com> 0.1.7-7
247- Fixed infinite loop in svc_run() (bz 246677)
248
249* Thu Apr 26 2007 <steved@redhat.com> 0.1.7-6
250- Fixed potential buffer overflow in xdr_strings
251- Added a optimization to bindresvport that allows more
252  ports to be tried.
253
254* Mon Mar 26 2007 Steve Dickson <steved@redhat.com> 0.1.7-5
255- Fixed Unowned Directory RPM problem (bz 233873)
256
257* Mon Aug 28 2006 Steve Dickson <steved@redhat.com> 0.1.7-4
258- Fixed undefined symbol (bz 204296)
259
260* Mon Aug 14 2006 Steve Dickson <steved@redhat.com> 0.1.7-3
261- Added in svc_auth_none needed by the GSSAPI code.
262- Added compile define for ppc64 archs
263
264* Fri Aug 11 2006 Steve Dickson <steved@redhat.com> 0.1.7-2
265- Uncommented tcp6 and udp6 in the default /etc/netconfig file.
266- Added hooks to used the libgssapi library.
267
268* Fri Aug  4 2006 Steve Dickson <steved@redhat.com> 0.1.7-1
269- Initial commit
Note: See TracBrowser for help on using the repository browser.