logrotate-vl.spec 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. Summary: Rotates, compresses, removes and mails system log files.
  2. Summary(ja): システムのログファイルを圧縮/削除するプログラム
  3. Name: logrotate
  4. Version: 3.8.6
  5. Release: 1%{?_dist_release}
  6. License: GPL
  7. Group: System Environment/Base
  8. Url: https://fedorahosted.org/logrotate/
  9. Source: https://fedorahosted.org/releases/l/o/logrotate/logrotate-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: popt-devel
  12. Requires: coreutils >= 5.92
  13. Requires: popt
  14. %description
  15. The logrotate utility is designed to simplify the administration of
  16. log files on a system which generates a lot of log files. Logrotate
  17. allows for the automatic rotation compression, removal and mailing of
  18. log files. Logrotate can be set to handle a log file daily, weekly,
  19. monthly or when the log file gets to a certain size. Normally,
  20. logrotate runs as a daily cron job.
  21. Install the logrotate package if you need a utility to deal with the
  22. log files on your system.
  23. %description -l ja
  24. logrotate ユーティリティは,ログファイルを大量に生成するシステムでの
  25. ログファイル管理を楽にする目的で作られています.
  26. logrotate はログファイルを古いものから順にリネームしたり,
  27. 圧縮したり,メールで送ったりすることが出来ます.
  28. logrotate の処理は,毎日/毎週/毎月といった単位でも設定出来ますし,
  29. ログファイルが一定サイズに達した時に処理する様にすることも出来ます.
  30. 通常は logrotate は cron によって毎日実行される様になっています.
  31. システム上のログファイルを管理するツールが必要なら
  32. logrotate パッケージをインストールして下さい.
  33. %prep
  34. %setup -q
  35. %build
  36. make %{?_smp_mflags} RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
  37. %install
  38. rm -rf $RPM_BUILD_ROOT
  39. make PREFIX=$RPM_BUILD_ROOT BINDIR=%{_sbindir} MANDIR=%{_mandir} install
  40. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
  41. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily
  42. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib
  43. install -m 644 examples/logrotate-default $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.conf
  44. install -m 755 examples/logrotate.cron $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily/logrotate
  45. touch $RPM_BUILD_ROOT%{_localstatedir}/lib/logrotate.status
  46. %clean
  47. rm -rf $RPM_BUILD_ROOT
  48. %files
  49. %defattr(-,root,root)
  50. %doc CHANGES
  51. %attr(0755, root, root) %{_sbindir}/logrotate
  52. %attr(0644, root, root) %{_mandir}/man8/logrotate.8*
  53. %attr(0644, root, root) %{_mandir}/man5/logrotate.conf.5*
  54. %attr(0755, root, root) %{_sysconfdir}/cron.daily/logrotate
  55. %attr(0644, root, root) %config(noreplace) %{_sysconfdir}/logrotate.conf
  56. %attr(0755, root, root) %dir %{_sysconfdir}/logrotate.d
  57. %attr(0644, root, root) %verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/logrotate.status
  58. %changelog
  59. * Thu Oct 03 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.6-1
  60. - new upstream release
  61. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.9-1
  62. - new upstream release
  63. - add Url
  64. - add patches from fedora
  65. - fix #688520 - fixed CVE-2011-1154, CVE-2011-1155 and CVE-2011-1098
  66. - fix #671926 - fixed crash when tabooext is used in config file
  67. - fix #661181 - fixed SIGBUS when config file is empty or 4096 bytes
  68. - fix #666677 - preserve ACLs when rotating files
  69. - fix #644309 - mention all logrotate params in man page
  70. - fix #638629 - better size directive description
  71. - fixed AUTHORS in man page
  72. * Sun Jun 15 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.7.7-1
  73. - new upstream release
  74. - spec in UTF-8
  75. * Wed Jun 7 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.7.4-1vl1
  76. - based on 3.7.4-1 from Rawhide
  77. * Wed May 17 2006 Peter Vrabec <pvrabec@redhat.com> 3.7.4-1
  78. - add new "minsize" option (#173088)
  79. * Tue Mar 28 2006 Peter Vrabec <pvrabec@redhat.com> 3.7.3-3
  80. - correct man page "extension" option description (#185318)
  81. * Mon Nov 07 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-11
  82. - man description for "nodateext" option (#171577)
  83. - remove not working "pattern" option (#171577)
  84. * Wed Sep 07 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-3
  85. - even when sharedscript option used, do postrotate
  86. script before compress (#167575)
  87. * Wed Aug 17 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-2
  88. - allow yearly rotations(#134612)
  89. * Wed Jun 22 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.1-12
  90. - enhance logrotate with "dateext", "maxage"
  91. * Fri Apr 11 2003 Ryoichi INAGAKI <ryo1@ueda.info.waseda.ac.jp> 3.6.8-1vl1
  92. - based on 3.6.8-1 from Rawhide
  93. - add Requires, BuildRequires popt
  94. * Mon Jan 20 2003 Elliot Lee <sopwith@redhat.com> 3.6.8-1
  95. - Old patch from pm@debian.org
  96. * Tue Jan 14 2003 Elliot Lee <sopwith@redhat.com> 3.6.7-1
  97. - Fixes from bugzilla
  98. * Fri Nov 15 2002 Elliot Lee <sopwith@redhat.com> 3.6.6-1
  99. - Commit patch from Fidelis Assis <fidelis@embratel.net.br>
  100. * Thu Jun 20 2002 Elliot Lee <sopwith@redhat.com> 3.6.5-1
  101. - Commit fix for #65299
  102. * Mon Apr 15 2002 Elliot Lee <sopwith@redhat.com> 3.6.4-1
  103. - Commit fix for #62560
  104. * Wed Mar 13 2002 Elliot Lee <sopwith@redhat.com> 3.6.3-1
  105. - Apply various bugfix patches from the openwall people
  106. * Tue Jan 29 2002 Elliot Lee <sopwith@redhat.com> 3.6.2-1
  107. - Fix bug #55809 (include logrotate.status in %files)
  108. - Fix bug #58328 (incorrect error detection when reading state file)
  109. - Allow 'G' size specifier from bug #57242
  110. * Wed Nov 28 2001 Preston Brown <pbrown@redhat.com> 3.6-1
  111. - patch from Alexander Kourakos <awk@awks.org> to stop the shared
  112. postrotate/prerotate scripts from running if none of the log(s) need
  113. rotating. All log files are now checked for rotation in one batch,
  114. rather than sequentially.
  115. - more fixes from Paul Martin <pm@debian.org>
  116. * Thu Oct 4 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp> 3.5.4-1vl2
  117. - added noreplace flag (%%config file is not replaced)
  118. * Sun Jan 14 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  119. - 3.5.4-1vl1
  120. - based on 3.5.4-1 from Rawhide
  121. - use better macros (%%{_tmppath}, %%{_sbindir})
  122. - added Japanese summary and description
  123. * Thu Jan 4 2001 Bill Nottingham <notting@redhat.com>
  124. - %defattr
  125. * Wed Jan 03 2001 Preston Brown <pbrown@redhat.com>
  126. - see CHANGES
  127. * Tue Aug 15 2000 Erik Troan <ewt@redhat.com>
  128. - see CHANGES
  129. * Sun Jul 23 2000 Erik Troan <ewt@redhat.com>
  130. - see CHANGES
  131. * Tue Jul 11 2000 Erik Troan <ewt@redhat.com>
  132. - support spaces in filenames
  133. - added sharedscripts
  134. * Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
  135. - use %%{_mandir} for man pages
  136. * Thu Feb 24 2000 Erik Troan <ewt@redhat.com>
  137. - don't rotate lastlog
  138. * Thu Feb 03 2000 Erik Troan <ewt@redhat.com>
  139. - gzipped manpages