|
@@ -3,47 +3,40 @@
|
|
%bcond_without audit
|
|
%bcond_without audit
|
|
%bcond_without inotify
|
|
%bcond_without inotify
|
|
|
|
|
|
-%define ver 1.5.1
|
|
+Summary: Cron daemon for executing programs at set times
|
|
-%define rel 1
|
|
+Name: cronie
|
|
-
|
|
+Version: 1.5.5
|
|
-Summary: Cron daemon for executing programs at set times
|
|
+Release: 1%{?_dist_release}
|
|
-Name: cronie
|
|
+Group: System Environment/Base
|
|
-Version: %{ver}
|
|
+Vendor: Project Vine
|
|
-Release: %{rel}%{?_dist_release}
|
|
+Distribution: Vine Linux
|
|
-License: MIT and BSD and ISC and GPLv2+
|
|
+Packager: iwaim
|
|
-Group: System Environment/Base
|
|
+License: MIT and BSD and ISC and GPLv2+
|
|
-URL: https://fedorahosted.org/cronie
|
|
+URL: https://github.com/cronie-crond/cronie
|
|
-Source0: https://fedorahosted.org/releases/c/r/cronie/%{name}-%{version}.tar.gz
|
|
+Source0: https://github.com/cronie-crond/cronie/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
|
|
# from cronie 1.4.8 tarball
|
|
# from cronie 1.4.8 tarball
|
|
-Source1: cronie.init
|
|
+Source1: cronie.init
|
|
-
|
|
|
|
-Patch0: cronie-1.5.1-power.patch
|
|
|
|
-Patch1: cronie-1.5.1-y2038.patch
|
|
|
|
-
|
|
|
|
-Requires: dailyjobs
|
|
|
|
-Conflicts: vixie-cron
|
|
|
|
|
|
|
|
-Vendor: Project Vine
|
|
+Requires: dailyjobs
|
|
-Distribution: Vine Linux
|
|
+Conflicts: vixie-cron
|
|
-Packager: iwaim
|
|
|
|
|
|
|
|
%if %{with selinux}
|
|
%if %{with selinux}
|
|
-Requires: libselinux >= 2.0.64
|
|
+Requires: libselinux >= 2.0.64
|
|
-Buildrequires: libselinux-devel >= 2.0.64
|
|
+BuildRequires: libselinux-devel >= 2.0.64
|
|
%endif
|
|
%endif
|
|
%if %{with pam}
|
|
%if %{with pam}
|
|
-Requires: pam >= 1.0.1
|
|
+Requires: pam >= 1.0.1
|
|
-Buildrequires: pam-devel >= 1.0.1
|
|
+BuildRequires: pam-devel >= 1.0.1
|
|
%endif
|
|
%endif
|
|
%if %{with audit}
|
|
%if %{with audit}
|
|
-Buildrequires: audit-libs-devel >= 1.4.1
|
|
+BuildRequires: audit-libs-devel >= 1.4.1
|
|
%endif
|
|
%endif
|
|
|
|
|
|
Requires(post): coreutils sed
|
|
Requires(post): coreutils sed
|
|
Requires(post): chkconfig
|
|
Requires(post): chkconfig
|
|
Requires(preun): chkconfig
|
|
Requires(preun): chkconfig
|
|
|
|
|
|
-Obsoletes: vixie-cron <= 3.0.1
|
|
+Obsoletes: vixie-cron <= 3.0.1
|
|
|
|
|
|
%description
|
|
%description
|
|
Cronie contains the standard UNIX daemon crond that runs specified programs at
|
|
Cronie contains the standard UNIX daemon crond that runs specified programs at
|
|
@@ -86,8 +79,6 @@ extra features.
|
|
%prep
|
|
%prep
|
|
%setup -q
|
|
%setup -q
|
|
|
|
|
|
-%patch0 -p1 -b .power
|
|
|
|
-%patch1 -p1 -b .y2038
|
|
|
|
|
|
|
|
%build
|
|
%build
|
|
%configure \
|
|
%configure \
|
|
@@ -161,13 +152,16 @@ fi
|
|
/sbin/chkconfig --add crond
|
|
/sbin/chkconfig --add crond
|
|
|
|
|
|
%files
|
|
%files
|
|
-%doc AUTHORS COPYING INSTALL README ChangeLog
|
|
+%license COPYING*
|
|
|
|
+%doc AUTHORS INSTALL README ChangeLog
|
|
%attr(755,root,root) %{_sbindir}/crond
|
|
%attr(755,root,root) %{_sbindir}/crond
|
|
%attr(4755,root,root) %{_bindir}/crontab
|
|
%attr(4755,root,root) %{_bindir}/crontab
|
|
|
|
+%attr(755,root,root) %{_bindir}/cronnext
|
|
%{_mandir}/man8/crond.*
|
|
%{_mandir}/man8/crond.*
|
|
%{_mandir}/man8/cron.*
|
|
%{_mandir}/man8/cron.*
|
|
%{_mandir}/man5/crontab.*
|
|
%{_mandir}/man5/crontab.*
|
|
%{_mandir}/man1/crontab.*
|
|
%{_mandir}/man1/crontab.*
|
|
|
|
+%{_mandir}/man1/cronnext.*
|
|
%dir %{_localstatedir}/spool/cron
|
|
%dir %{_localstatedir}/spool/cron
|
|
%dir %{_sysconfdir}/cron.d
|
|
%dir %{_sysconfdir}/cron.d
|
|
%if %{with pam}
|
|
%if %{with pam}
|
|
@@ -193,6 +187,10 @@ fi
|
|
%attr(0644,root,root) %{_sysconfdir}/cron.d/dailyjobs
|
|
%attr(0644,root,root) %{_sysconfdir}/cron.d/dailyjobs
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Wed Mar 25 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.5-1
|
|
|
|
+- new upstream release.
|
|
|
|
+- dropped all patches.
|
|
|
|
+
|
|
* Mon Sep 11 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.1-1
|
|
* Mon Sep 11 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.1-1
|
|
- new upstream release.
|
|
- new upstream release.
|
|
- dropped Patch0.
|
|
- dropped Patch0.
|