quota/quota.spec

Fri, 11 Mar 2011 21:39:41 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 11 Mar 2011 21:39:41 +0100
changeset 2
e3665a058d13
parent 0
4f133201e207
permissions
-rw-r--r--

Import new package specs for introduction into repository.

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

mercurial