cron-apt-vl.spec 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. Name: cron-apt
  2. Version: 0.0.20
  3. Release: 1%{?_dist_release}
  4. Vendor: Project Vine
  5. Distribution: Vine Linux
  6. License: GPL
  7. Group: Applications/Administration
  8. Source0: ftp://ftp.debian.org/debian/pool/main/c/cron-apt/cron-apt_%{version}.tar.gz
  9. Patch0: cron-apt-docbook.patch
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildArch: noarch
  12. Requires: apt bash mailx
  13. BuildPreReq: docbook-utils
  14. Summary: Automatic update of packages using apt
  15. Summary(ja): apt を用いてパッケージを自動でアップデートする
  16. %description
  17. This package contains a tool that is run by a cron job at regular
  18. intervals. By default it just updates the package list and download
  19. new packages without installing. You can instruct it to run anything
  20. that you can do with apt-get.
  21. It also sends mail (configurable) to the system administrator on
  22. errors.
  23. Observe that this tool is a security risk, so you should not set it to
  24. do more than necessary (automatic upgrade of all packages is NOT
  25. recommended).
  26. %description -l ja
  27. このパッケージは一定の間隔で cron job により実行されるツールです。初期
  28. 設定ではパッケージリストを更新し、インストールせずに新パッケージをダウ
  29. ンロードするだけです。apt-get と共に用いられる他の何かを実行するように
  30. 指示することも可能です。
  31. また、本パッケージはエラー時には管理者にメールを送るように設定できます。
  32. 本ツールはセキュリティホールとなる危険があることに注意し、必要以外のこ
  33. とを行わないように設定してください。 (自動的に全パッケージをアップグレー
  34. ドすることは推奨されません。)
  35. %prep
  36. %setup -q -n %{name}
  37. %patch0 -p1
  38. %build
  39. %__make
  40. %install
  41. %__rm -rf %{buildroot}
  42. %makeinstall DESTDIR=%{buildroot}
  43. %clean
  44. %__rm -rf %{buildroot}
  45. %files
  46. %defattr(-,root,root)
  47. %doc COPYING debian/README.Debian debian/changelog
  48. %{_docdir}/cron-apt
  49. %{_mandir}/man?/*
  50. %{_sysconfdir}/cron-apt
  51. %{_sysconfdir}/cron.d/*
  52. %{_sysconfdir}/logrotate.d/*
  53. %{_sbindir}/*
  54. %dir %{_var}/log/cron-apt
  55. %changelog
  56. * Sun Sep 21 2008 Shu KONNO <owa@bg.wakwak.com> 0.0.20-1vl5
  57. - applied new versioning policy, spec in utf-8
  58. * Sun Jul 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.0.20-0vl2
  59. - changed Group to Applications/Administration
  60. * Tue Jun 22 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.0.20-0vl1
  61. - Initial build.