logrotate-vl.spec 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. Summary: Rotates, compresses, removes and mails system log files.
  2. Summary(ja): システムのログファイルを圧縮/削除するプログラム
  3. Name: logrotate
  4. Version: 3.8.6
  5. Release: 2%{?_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. * Sun Jul 20 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.6-1
  60. - rebuild with VineSeed environment
  61. * Thu Oct 03 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.6-1
  62. - new upstream release
  63. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.9-1
  64. - new upstream release
  65. - add Url
  66. - add patches from fedora
  67. - fix #688520 - fixed CVE-2011-1154, CVE-2011-1155 and CVE-2011-1098
  68. - fix #671926 - fixed crash when tabooext is used in config file
  69. - fix #661181 - fixed SIGBUS when config file is empty or 4096 bytes
  70. - fix #666677 - preserve ACLs when rotating files
  71. - fix #644309 - mention all logrotate params in man page
  72. - fix #638629 - better size directive description
  73. - fixed AUTHORS in man page
  74. * Sun Jun 15 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.7.7-1
  75. - new upstream release
  76. - spec in UTF-8
  77. * Wed Jun 7 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.7.4-1vl1
  78. - based on 3.7.4-1 from Rawhide
  79. * Wed May 17 2006 Peter Vrabec <pvrabec@redhat.com> 3.7.4-1
  80. - add new "minsize" option (#173088)
  81. * Tue Mar 28 2006 Peter Vrabec <pvrabec@redhat.com> 3.7.3-3
  82. - correct man page "extension" option description (#185318)
  83. * Mon Nov 07 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-11
  84. - man description for "nodateext" option (#171577)
  85. - remove not working "pattern" option (#171577)
  86. * Wed Sep 07 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-3
  87. - even when sharedscript option used, do postrotate
  88. script before compress (#167575)
  89. * Wed Aug 17 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.2-2
  90. - allow yearly rotations(#134612)
  91. * Wed Jun 22 2005 Peter Vrabec <pvrabec@redhat.com> 3.7.1-12
  92. - enhance logrotate with "dateext", "maxage"
  93. * Fri Apr 11 2003 Ryoichi INAGAKI <ryo1@ueda.info.waseda.ac.jp> 3.6.8-1vl1
  94. - based on 3.6.8-1 from Rawhide
  95. - add Requires, BuildRequires popt
  96. * Mon Jan 20 2003 Elliot Lee <sopwith@redhat.com> 3.6.8-1
  97. - Old patch from pm@debian.org
  98. * Tue Jan 14 2003 Elliot Lee <sopwith@redhat.com> 3.6.7-1
  99. - Fixes from bugzilla
  100. * Fri Nov 15 2002 Elliot Lee <sopwith@redhat.com> 3.6.6-1
  101. - Commit patch from Fidelis Assis <fidelis@embratel.net.br>
  102. * Thu Jun 20 2002 Elliot Lee <sopwith@redhat.com> 3.6.5-1
  103. - Commit fix for #65299
  104. * Mon Apr 15 2002 Elliot Lee <sopwith@redhat.com> 3.6.4-1
  105. - Commit fix for #62560
  106. * Wed Mar 13 2002 Elliot Lee <sopwith@redhat.com> 3.6.3-1
  107. - Apply various bugfix patches from the openwall people
  108. * Tue Jan 29 2002 Elliot Lee <sopwith@redhat.com> 3.6.2-1
  109. - Fix bug #55809 (include logrotate.status in %files)
  110. - Fix bug #58328 (incorrect error detection when reading state file)
  111. - Allow 'G' size specifier from bug #57242
  112. * Wed Nov 28 2001 Preston Brown <pbrown@redhat.com> 3.6-1
  113. - patch from Alexander Kourakos <awk@awks.org> to stop the shared
  114. postrotate/prerotate scripts from running if none of the log(s) need
  115. rotating. All log files are now checked for rotation in one batch,
  116. rather than sequentially.
  117. - more fixes from Paul Martin <pm@debian.org>
  118. * Thu Oct 4 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp> 3.5.4-1vl2
  119. - added noreplace flag (%%config file is not replaced)
  120. * Sun Jan 14 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  121. - 3.5.4-1vl1
  122. - based on 3.5.4-1 from Rawhide
  123. - use better macros (%%{_tmppath}, %%{_sbindir})
  124. - added Japanese summary and description
  125. * Thu Jan 4 2001 Bill Nottingham <notting@redhat.com>
  126. - %defattr
  127. * Wed Jan 03 2001 Preston Brown <pbrown@redhat.com>
  128. - see CHANGES
  129. * Tue Aug 15 2000 Erik Troan <ewt@redhat.com>
  130. - see CHANGES
  131. * Sun Jul 23 2000 Erik Troan <ewt@redhat.com>
  132. - see CHANGES
  133. * Tue Jul 11 2000 Erik Troan <ewt@redhat.com>
  134. - support spaces in filenames
  135. - added sharedscripts
  136. * Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
  137. - use %%{_mandir} for man pages
  138. * Thu Feb 24 2000 Erik Troan <ewt@redhat.com>
  139. - don't rotate lastlog
  140. * Thu Feb 03 2000 Erik Troan <ewt@redhat.com>
  141. - gzipped manpages