Fri, 11 Mar 2011 21:30:26 +0100
Import package vendor original specs for necessary manipulations.
1 #allow remote set quota by defined rpcsetquota to 1(set to 0 to disabled it)
2 %{!?rpcsetquota:%define rpcsetquota 1}
4 Name: quota
5 Summary: System administration tools for monitoring users' disk usage
6 Epoch: 1
7 Version: 4.00
8 Release: 0.1.pre1%{?dist}
9 License: BSD and GPLv2+
10 URL: http://sourceforge.net/projects/linuxquota/
11 Group: System Environment/Base
12 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
13 Requires: initscripts >= 6.38 tcp_wrappers
14 Requires: quota-nls = %{epoch}:%{version}-%{release}
15 Conflicts: kernel < 2.4
16 BuildRequires: e2fsprogs-devel gettext tcp_wrappers-devel nss-devel
17 BuildRequires: openldap-devel openssl-devel dbus-devel libnl-devel
18 Source0: http://downloads.sourceforge.net/linuxquota/%{name}-%{version}-pre1.tar.gz
19 Source1: quota_nld.init
20 Source2: quota_nld.sysconfig
21 Patch0: quota-3.06-warnquota.patch
22 Patch1: quota-3.06-no-stripping.patch
23 Patch2: quota-3.06-man-page.patch
24 Patch3: quota-3.06-pie.patch
25 Patch4: quota-3.13-wrong-ports.patch
26 Patch5: quota-3.16-helpoption.patch
27 Patch6: quota-3.16-quotaoffhelp.patch
28 Patch8: quota-3.17-ftbfs.patch
29 # Bug #528581, remove in upstream 4.00
30 Patch9: quota-4.00_pre1-quotactl_null_corruption.patch
31 # Included in upstream 4.00_pre2
32 Patch10: quota-4.00_pre1-add-gfs2-support.patch
34 %description
35 The quota package contains system administration tools for monitoring
36 and limiting user and or group disk usage per file system.
39 %package nld
40 Summary: quota_nld daemon
41 Group: System Environment/Base
42 Requires: initscripts
43 Requires: quota-nls = %{epoch}:%{version}-%{release}
44 Requires(post): chkconfig
45 Requires(preun): chkconfig initscripts
47 %description nld
48 Daemon that listens on netlink socket and processes received quota warnings.
49 Note, that you have to enable the kernel support for sending quota messages
50 over netlink (in Filesystems->Quota menu). The daemon supports forwarding
51 warning messages to the system D-Bus (so that desktop manager can display
52 a dialog) and writing them to the terminal user has last accessed.
55 %package warnquota
56 Summary: Send e-mail to users over quota
57 Group: System Environment/Base
58 Requires: quota-nls = %{epoch}:%{version}-%{release}
60 %description warnquota
61 Utility that checks disk quota for each local file system and mails a warning
62 message to those users who have reached their soft limit. It is typically run
63 via cron(8).
66 %package nls
67 Summary: Gettext catalogs for disk quota tools
68 Group: System Environment/Base
69 BuildArch: noarch
71 %description nls
72 Disk quota tools messages translated into different natural languages.
75 %package devel
76 Summary: Development files for quota
77 Group: System Environment/Base
78 Requires: quota = %{epoch}:%{version}-%{release}
80 %description devel
81 The quota package contains system administration tools for monitoring
82 and limiting user and or group disk usage per file system.
84 This package contains development header files for implementing quotas
85 on remote machines.
88 %package doc
89 Summary: Additional documentation for disk quotas
90 Group: Documentation
91 Requires: quota = %{epoch}:%{version}-%{release}
92 BuildArch: noarch
94 %description doc
95 This package contains additional documentation for disk quotas concept in
96 Linux/UNIX environment.
99 %prep
100 %setup -q -n quota-tools
101 %patch0 -p1
102 %patch1 -p1
103 %patch2 -p1
104 %ifnarch ppc ppc64
105 %patch3 -p1
106 %endif
107 %patch4 -p1
108 %patch5 -p1
109 %patch6 -p1 -b .usage
110 %patch8 -p1
111 %patch9 -p1 -b .quotactl_null_corruption
112 %patch10 -p1 -b .gfs2
113 # quotactl(2) moved into `man-pages' package (bug #640590)
114 rm -f quotactl.2
115 # remove VCS files
116 rm -rf doc/CVS
118 #fix typos/mistakes in localized documentation
119 for pofile in $(find ./po/*.p*)
120 do
121 sed -i 's/editting/editing/' "$pofile"
122 done
124 # Fix charset
125 for F in Changelog; do
126 iconv -f latin1 -t utf-8 <"$F" >"${F}.utf8"
127 touch -r "$F"{,.utf8}
128 mv "$F"{.utf8,}
129 done
131 %build
132 %configure \
133 --enable-ldapmail=try \
134 %if %{rpcsetquota}
135 --enable-rpcsetquota=yes \
136 %endif
137 --enable-rootsbin \
138 --enable-netlink=yes
139 make
142 %install
143 rm -fr %{buildroot}
144 mkdir -p %{buildroot}/sbin
145 mkdir -p %{buildroot}%{_sysconfdir}
146 mkdir -p %{buildroot}%{_sbindir}
147 mkdir -p %{buildroot}%{_bindir}
148 mkdir -p %{buildroot}%{_mandir}/{man1,man3,man8}
149 make install INSTALL='install -p' ROOTDIR=%{buildroot}
150 install -m 644 warnquota.conf %{buildroot}%{_sysconfdir}
151 #
152 # we don't support XFS yet
153 #
154 rm -f %{buildroot}%{_sbindir}/quot
155 rm -f %{buildroot}%{_sbindir}/xqmstats
156 rm -f %{buildroot}%{_mandir}/man8/quot.*
157 rm -f %{buildroot}%{_mandir}/man8/xqmstats.*
158 ln -s quotaon.8.gz \
159 %{buildroot}%{_mandir}/man8/quotaoff.8
160 ln -s rquotad.8.gz \
161 %{buildroot}%{_mandir}/man8/rpc.rquotad.8
163 install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/quota_nld
164 install -p -m644 -D %{SOURCE2} \
165 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/quota_nld
167 %find_lang %{name}
170 %post nld
171 /sbin/chkconfig --add quota_nld
173 %preun nld
174 if [ $1 = 0 ] ; then
175 /sbin/service quota_nld stop >/dev/null 2>&1
176 /sbin/chkconfig --del quota_nld
177 fi
180 %clean
181 rm -rf %{buildroot}
184 %files
185 %defattr(-,root,root,-)
186 %attr(0755,root,root) /sbin/*
187 %attr(0755,root,root) %{_bindir}/*
188 %attr(0755,root,root) %{_sbindir}/*
189 %exclude %{_sbindir}/quota_nld
190 %exclude %{_sbindir}/warnquota
191 %attr(0644,root,root) %{_mandir}/man1/*
192 %attr(0644,root,root) %{_mandir}/man8/*
193 %exclude %{_mandir}/man8/quota_nld.8*
194 %exclude %{_mandir}/man8/warnquota.8*
195 %doc Changelog
197 %files nld
198 %defattr(-,root,root,-)
199 %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/quota_nld
200 %attr(0755,root,root) %{_initrddir}/quota_nld
201 %attr(0755,root,root) %{_sbindir}/quota_nld
202 %attr(0644,root,root) %{_mandir}/man8/quota_nld.8*
203 %doc Changelog
205 %files warnquota
206 %defattr(-,root,root,-)
207 %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/quotagrpadmins
208 %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/quotatab
209 %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/warnquota.conf
210 %attr(0755,root,root) %{_sbindir}/warnquota
211 %attr(0644,root,root) %{_mandir}/man8/warnquota.8*
212 %doc Changelog README.ldap-support README.mailserver
214 %files nls -f %{name}.lang
215 %defattr(-,root,root,-)
216 %doc Changelog
218 %files devel
219 %defattr(-,root,root,-)
220 %dir %{_includedir}/rpcsvc
221 %{_includedir}/rpcsvc/*
222 %attr(0644,root,root) %{_mandir}/man3/*
224 %files doc
225 %defattr(-,root,root,-)
226 %doc doc/*
229 %changelog
230 * Tue Nov 16 2010 Petr Pisar <ppisar@redhat.com> - 1:4.00-0.1.pre1
231 - 4.00-pre1 bump
232 - Separate gettext catalogs becuase they are required by all binary sub-packages
234 * Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-18
235 - Break warnquota dependency on main package
237 * Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-17
238 - Convert Changelog to UTF-8
240 * Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-16
241 - Break dependecies on main package as there are none
242 - Add plain text documentation to each sub-package
243 - Package additional documentation into `doc' sub-package
245 * Thu Nov 11 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-15
246 - Add quota_nld deamon init script (bug #634169)
247 - Sub-package quota_nld files to weak dependecies
248 - Sub-package warnquota files to weak dependecies
250 * Wed Oct 06 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-14
251 - Remove quotactl(2) as it's part of `man-pages' package (bug #640590)
253 * Tue May 11 2010 Petr Pisar <ppisar@redhat.com> 1:3.17-13
254 - Add GFS2 support
256 * Tue May 10 2010 Petr Pisar <ppisar@redhat.com> 1:3.17-12
257 - Prevent corruptive read/write from/to NULL address in rpc.rquotad
258 (Resolves #528581, example in #532342)
259 - Fix spelling in summary
261 * Fri Mar 12 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-11
262 - the require from previous fix deleted altogether (it will
263 be resolved automatically)
265 * Fri Mar 12 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-10
266 - Requires: e2fsprogs changed to e2fsprogs-libs (#570005)
268 * Tue Feb 23 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-9
269 - fix #565124 - FTBFS quota-3.17-8.fc13: ImplicitDSOLinking
271 * Mon Sep 29 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-8
272 - add buildrequires for quota_nld, enable-netlink to build
273 quota_nld (#526047)
275 * Fri Sep 18 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-7
276 - Fix headers and structs in quotactl manpage(#524138)
278 * Fri Aug 28 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-6
279 - symlink manpage for rpc.rquotad
281 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.17-5
282 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
284 * Fri Mar 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-4
285 - clarify statements about LDAP in warnquota conf
286 (related to #490106)
287 - fix parsing issue in warnquota.c(#490125)
288 - enable rpcsetquota by default(#159292, #469753)
290 * Fri Mar 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-3
291 - add missing buildrequires needed to compile with
292 enable-ldapmail=try option with LDAP(#490106)
294 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.17-2
295 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
297 * Tue Jan 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-1
298 - new upstream release, remove already applied patches
300 * Mon Dec 08 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-8
301 - fix documentation inconsistency (now rpc(3) instead of
302 rpc(3N) in rquotad manpage) (#474836)
304 * Fri Nov 14 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-7
305 - fix quotaoff --help output (was same as quotaon output)
307 * Thu Oct 30 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-6
308 - fix implementation of ext4 support
309 (by Mingming Cao, #469127)
311 * Wed Sep 10 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-5
312 - fix rpmlint warnings - absolute symlink and not using epoch
313 in version in changelog (#226353)
314 - rquota headers and manpage now in devel subpackage
316 * Wed Aug 27 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-4
317 - fix bug in warnquota which could result in bogus hostname
318 and domainname (upstream)
319 - remove IMMUTABLE flag from quota file in quotacheck(upstream)
321 * Tue Aug 05 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-3
322 - Add support for -h option (do not show invalid option
323 error) at edquota,setquota and quota (#457898)
325 * Fri Jun 20 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-2
326 - upstream fix of some typos, string formats + 4TB+ fix
327 for repquota
328 - some additional stripping removal
329 - change default mode of binaries from 555 to 755
330 (strip error messages in build log)
332 * Wed Apr 23 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-1
333 - own directory of rpcsvc headers(#442143)
334 - new upstream release
336 * Wed Mar 12 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-6
337 - added enable-ldapmail=try option(wonder how #133207
338 got closed by FC-4 without it or warnquota.conf change)
339 - dropped with-ext2direct=no option - this option is
340 invalid and original bug was fixed in 3.07
342 * Thu Mar 6 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-5
343 - added symbolic link for quotaoff man page(#436110)
344 - don't ship xqmstats.8 man page as we don't ship those
345 binaries(#436100)
347 * Thu Feb 21 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-4
348 - added pointers to quota_nld and warnquota to some
349 manpages(upstream, #83975)
351 * Tue Feb 12 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-3
352 - allow to build with rpcsetquota enabled(disabled by
353 default, #159292)
354 - rebuild for gcc43
356 * Thu Jan 24 2008 Steve Dickson <SteveD@RedHat.com> 3.15-2
357 - More review comments:
358 - BuiltPreReq to BuiltReq
359 - Removed '.' From Summary
360 - Added 'GPLv2+' to License Tag
361 - Condensed the _sysconfdir entries in to one line
363 * Thu Jan 24 2008 Steve Dickson <SteveD@RedHat.com> 3.15-1
364 - Upgraded to version 3.15
365 - Updated spec file per Merge Review (bz 226353)
367 * Thu Feb 15 2007 Steve Dickson <SteveD@RedHat.com> 3.14-1
368 - Upgraded to version 3.14 (bz# 213641)
370 * Mon Dec 4 2006 Thomas Woerner <twoerner@redhat.com> 1:3.13-1.3
371 - tcp_wrappers has a new devel and libs sub package, therefore changing build
372 requirement for tcp_wrappers to tcp_wrappers-devel
374 * Wed Nov 1 2006 Steve Dickson <SteveD@RedHat.com> 1:3.13-1.2.3.2
375 - Added range checking on -p flag (bz 205145)
376 - Error message prints garbage characters (bz 201226)
378 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2.3.1
379 - rebuild
381 * Fri Jun 30 2006 Steve Dickson <steved@redhat.com> - 1:3.13-1.2.3
382 - fix 192826 - quota config files should not be overwritten
384 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2.1
385 - bump again for double-long bug on ppc(64)
387 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2
388 - rebuilt for new gcc4.1 snapshot and glibc changes
390 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
391 - rebuilt
393 * Mon Oct 31 2005 Steve Dickson <steved@redhat.com> 3.13-1
394 - Upgraded to version 3.13 (bz# 171245)
396 * Thu Aug 18 2005 Florian La Roche <laroche@redhat.com>
397 - change the "Requires: kernel" into a "Conflicts:"
399 * Sun Sep 26 2004 Rik van Riel <riel@redhat.com> 3.12-5
400 - add URL (bz# 131862)
402 * Fri Sep 24 2004 Steve Dickson <SteveD@RedHat.com>
403 - Fixed typos in warnquota.conf patch
404 (bz# 82250 and bz# 83974)
406 * Mon Sep 13 2004 Steve Dickson <SteveD@RedHat.com>
407 - upgraded to 3.12
409 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
410 - rebuilt
412 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
413 - rebuilt
415 * Tue Jan 27 2004 Florian La Roche <Florian.LaRoche@redhat.de>
416 - add -pie support
417 - update to 3.10
419 * Sat Aug 16 2003 Steve Dickson <SteveD@RedHat.com>
420 - upgraded to 3.0.9
421 - added quota-3.09-root_sbindir.patch
423 * Sun Aug 10 2003 Elliot Lee <sopwith@redhat.com> 3.06-11
424 - Rebuild
426 * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
427 - rebuilt
429 * Tue May 27 2003 Steve Dickson <SteveD@RedHat.com>
430 - rebuilt for 7.3 errata
432 * Tue Feb 25 2003 Elliot Lee <sopwith@redhat.com>
433 - rebuilt
435 * Sun Feb 23 2003 Tim Powers <timp@redhat.com>
436 - add buildprereq on tcp_wrappers
438 * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
439 - rebuilt
441 * Mon Nov 18 2002 Tim Powers <timp@redhat.com>
442 - rebuild on all arches
445 * Fri Sep 6 2002 Philip Copeland <bryce@redhat.com> 3.06-5
446 - added --with-ext2direct=no to fix #73244
447 without this users with UID's > 65535 will not
448 be able to exist on a quota enabled FS
450 * Wed Aug 7 2002 Philip Copeland <bryce@redhat.com> 3.06-4
451 - Man page change. #60108
453 * Tue Aug 6 2002 Philip Copeland <bryce@redhat.com> 3.06-3
454 - Bah, I'd dropped epoch from the spec file but seems
455 we need this if you want to upgrade as the epoch
456 number has precedence over the version/release
457 numbers.
459 * Wed Jul 17 2002 Philip Copeland <bryce@redhat.com> 3.06-2
460 - Lets stop the makefile from stripping the
461 binaries as thats rpms job (apparently)
463 * Mon Jul 01 2002 Philip Copeland <bryce@redhat.com> 3.06-1
464 - Ditched the 3.01-pre9 src base for 3.06
465 Rebuilt without any patchs
467 ============================================================
469 * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
470 - automated rebuild
472 * Thu May 23 2002 Tim Powers <timp@redhat.com>
473 - automated rebuild
475 * Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com>
476 - IfArch the badkernelinclude patch for ppc-only.
477 - Update to 3.03
479 * Wed Dec 12 2001 Guy Streeter <streeter@redhat.com>
480 - Make #include of kernel header file work on non-x86
482 * Wed Sep 5 2001 Preston Brown <pbrown@redhat.com>
483 - require new initscripts
485 * Thu Aug 30 2001 Preston Brown <pbrown@redhat.com>
486 - fixed bug #52075 (problem with ext2 labels)
487 - backup data files off by default in quotacheck, optional backup flag added
488 - fix bug where giving a bad directory or device would cause
489 quotaon/quotacheck to simulate "-a" behaviour
490 - if a device name (i.e /dev/hda1) is passed, look up the corresponding mount
491 point
493 * Wed Aug 29 2001 Preston Brown <pbrown@redhat.com>
494 - return an error code in more cases in convertquota
496 * Tue Aug 28 2001 Preston Brown <pbrown@redhat.com>
497 - 3.01pre9
499 * Fri Jul 20 2001 Preston Brown <pbrown@redhat.com>
500 - more cleanups on 3.01pre8
502 * Mon Jul 2 2001 Preston Brown <pbrown@redhat.com>
503 - 3.01 version, everything has changed again. :(
505 * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
506 - Bump release + rebuild.
508 * Fri Mar 30 2001 Preston Brown <pbrown@redhat.com>
509 - use rpc.rquotad from here again (#33738)
511 * Thu Mar 15 2001 Preston Brown <pbrown@redhat.com>
512 - enable ALT_FORMAT for edquota
514 * Tue Mar 13 2001 Preston Brown <pbrown@redhat.com>
515 - I broke passing devices on the cmd line. Fixed.
517 * Fri Mar 09 2001 Preston Brown <pbrown@redhat.com>
518 - quota 3.00 is required by recent kernel 2.4 changes
519 - no warnquota included this time, not yet ported
520 - quite a bit of work on quotacheck to make is backwards compatible
521 - we will likely go back to "quota 2.00" as these projects merge...
523 * Fri Feb 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
524 - use "rm -f" instead of only "rm"
526 * Wed Feb 7 2001 Preston Brown <pbrown@redhat.com>
527 - fix quotacheck man page for -a option (#26380)
529 * Thu Feb 1 2001 Preston Brown <pbrown@redhat.com>
530 - 2.00 final, rolls in pretty much all our patches. :)
531 - fix reporting of in use dquot entries from quotastats
532 - change repquota man page to fix documentation of -v (#10330)
533 - include warnquota.conf
535 * Mon Nov 20 2000 Bill Nottingham <notting@redhat.com>
536 - fix ia64 build
538 * Mon Aug 21 2000 Jeff Johnson <jbj@redhat.com>
539 - add LABEL=foo support (#16390).
541 * Thu Jul 27 2000 Jeff Johnson <jbj@redhat.com>
542 - remote NFS quotas with different blocksize converted incorrectly (#11932).
544 * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
545 - automatic rebuild
547 * Thu Jun 15 2000 Jeff Johnson <jbj@redhat.com>
548 - FHS packaging.
550 * Wed May 10 2000 Jeff Johnson <jbj@redhat.com>
551 - apply patch5 (H.J. Lu)
553 * Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
554 - fix description
555 - man pages are compressed
557 * Tue Jan 18 2000 Preston Brown <pbrown@redhat.com>
558 - quota 2.00 series
559 - removed unnecessary patches
561 * Thu Aug 5 1999 Jeff Johnson <jbj@redhat.com>
562 - fix man page FUD (#4369).
564 * Thu May 13 1999 Peter Hanecak <hanecak@megaloman.sk>
565 - changes to allow non-root users to build too (Makefile patch, %%attr)
567 * Tue Apr 13 1999 Jeff Johnson <jbj@redhat.com>
568 - fix for sparc64 quotas (#2147)
570 * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
571 - auto rebuild in the new build environment (release 5)
573 * Mon Dec 28 1998 Cristian Gafton <gafton@redhat.com>
574 - don't install rpc.rquotad - we will use the one from the knfsd package
575 instead
577 * Thu Dec 17 1998 Jeff Johnson <jbj@redhat.com>
578 - merge ultrapenguin 1.1.9 changes.
580 * Thu May 07 1998 Prospector System <bugs@redhat.com>
581 - translations modified for de, fr, tr
583 * Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
584 - removed patch for mntent
586 * Fri Mar 27 1998 Jakub Jelinek <jj@ultra.linux.cz>
587 - updated to quota 1.66
589 * Tue Jan 13 1998 Erik Troan <ewt@redhat.com>
590 - builds rquotad
591 - installs rpc.rquotad.8 symlink
593 * Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
594 - removed /usr/include/rpcsvc/* from filelist
595 - uses a buildroot and %%attr
597 * Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
598 - built against glibc
600 * Tue Mar 25 1997 Erik Troan <ewt@redhat.com>
601 - Moved /usr/sbin/quota to /usr/bin/quota