-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
141 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,115 @@ | ||
2023-10-13 Tomas Mraz <[email protected]> | ||
|
||
* anacron: Use xclose() instead of fclose() | ||
When replacing standard descriptors we use | ||
xclose() elsewhere and it is less error-prone. | ||
|
||
2023-09-28 Alexander Schwinn <[email protected]> | ||
|
||
* Show error when step size is out of bound | ||
|
||
2023-09-28 Alexander Schwinn <[email protected]> | ||
|
||
* Rename variables in 'get_range' to make code more readable | ||
|
||
2023-09-17 Jonathan Kamens <[email protected]> | ||
|
||
* Explain how to do skip values for non-multiples of the time unit | ||
|
||
2023-09-07 bwelterl <[email protected]> | ||
|
||
* Optimization to close fds from /proc/self/fd in case of high | ||
nofile limit after fork | ||
|
||
2023-07-25 Tomas Mraz <[email protected]> | ||
|
||
* cronnext: Round up the start time to whole minute | ||
|
||
2023-04-28 lilinjie <[email protected]> | ||
|
||
* fix typo | ||
|
||
2023-04-27 Johnny <[email protected]> | ||
|
||
* anacron: Add support for NO_MAIL_OUTPUT environment variable | ||
|
||
2023-03-29 YoruStar <[email protected]> | ||
|
||
* Support reloading with SIGURG in addition to SIGHUP | ||
|
||
2023-03-13 Tomas Mraz <[email protected]> | ||
|
||
* crontab.5: Clarify the evaluation of the step values | ||
|
||
2023-02-14 Li kunyu <[email protected]> | ||
|
||
* cronie_common.c: Check memory allocation result in expand_envvar() function. | ||
|
||
2023-01-12 lilinjie <[email protected]> | ||
|
||
* ChangeLog: fix typos | ||
|
||
2023-01-11 lilinjie <[email protected]> | ||
|
||
* CHANGELOG: fix typo | ||
|
||
2022-06-17 fgozzini <[email protected]> | ||
|
||
* Added double quotes | ||
|
||
2022-06-15 fgozzini <[email protected]> | ||
|
||
* Source directly from `/etc/default/anacron` | ||
|
||
2022-06-14 fgozzini <[email protected]> | ||
|
||
* Allow user to run anacron jobs on battery | ||
The user can allow running anacron jobs on battery by adding | ||
the string `ANACRON_RUN_ON_BATTERY_POWER=yes` to the | ||
file `/etc/default/anacron`. | ||
|
||
2022-08-16 Antti Antinoja <[email protected]> | ||
|
||
* Use _PATH_STDPATH instead of _PATH_DEFPATH | ||
|
||
2022-08-24 Christopher Odenbach <[email protected]> | ||
|
||
* do not put <> in quotation marks | ||
|
||
2022-08-23 Christopher Odenbach <[email protected]> | ||
|
||
* set the return-path hard to "<>" | ||
|
||
2022-09-26 Ondřej Pohořelský <[email protected]> | ||
|
||
* Add -n option for crontab entries | ||
The -n option causes no mail to be sent | ||
when the command finishes successfully. | ||
|
||
2022-12-16 iTrooz <[email protected]> | ||
|
||
* Make a backup of the crontab file on edition and deletion | ||
|
||
2022-12-23 iTrooz <[email protected]> | ||
|
||
* use packit srpm_build_deps key | ||
|
||
2022-12-16 Masanari Iida <[email protected]> | ||
|
||
* man: Fix some spelling typos in anacron.8 and cronnext.1 | ||
|
||
2022-12-12 lilinjie <[email protected]> | ||
|
||
* fix spelling error | ||
|
||
2022-08-31 Daniel M. Capella <[email protected]> | ||
|
||
* Remove excess comma | ||
|
||
2022-04-25 Tomas Mraz <[email protected]> | ||
|
||
* Release version 1.6.1 | ||
|
||
2022-03-23 w30023233 <[email protected]> | ||
|
||
* Fix regression in handling 1-5 crontab entries | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([cronie],[1.6.1]) | ||
AC_INIT([cronie],[1.7.0]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_PREREQ([2.64]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
Summary: Cron daemon for executing programs at set times | ||
Name: cronie | ||
Version: 1.6.1 | ||
Version: 1.7.0 | ||
Release: 0packit%{?dist} | ||
License: MIT and BSD and ISC and GPLv2+ | ||
URL: https://github.com/cronie-crond/cronie | ||
|
@@ -30,6 +30,7 @@ BuildRequires: autoconf, automake, libtool | |
|
||
BuildRequires: gcc | ||
BuildRequires: systemd | ||
BuildRequires: make | ||
Obsoletes: %{name}-sysvinit | ||
|
||
Requires(post): coreutils sed | ||
|
@@ -78,7 +79,7 @@ Old style of running {hourly,daily,weekly,monthly}.jobs without anacron. No | |
extra features. | ||
|
||
%prep | ||
%setup -q | ||
%autosetup -p1 | ||
|
||
%build | ||
./autogen.sh | ||
|
@@ -100,10 +101,10 @@ extra features. | |
--enable-pie \ | ||
--enable-relro | ||
|
||
make %{?_smp_mflags} V=2 | ||
%make_build V=2 | ||
|
||
%install | ||
make install DESTDIR=$RPM_BUILD_ROOT DESTMAN=$RPM_BUILD_ROOT%{_mandir} | ||
%make_install DESTMAN=$RPM_BUILD_ROOT%{_mandir} | ||
mkdir -pm700 $RPM_BUILD_ROOT%{_localstatedir}/spool/cron | ||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ | ||
mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/ | ||
|
@@ -209,10 +210,16 @@ exit 0 | |
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/dailyjobs | ||
|
||
%changelog | ||
* Mon Apr 25 2022 Packit <[email protected]> - 1.6.1-0packit | ||
* Mon Apr 25 2022 Packit <[email protected]> - 1.7.0-0packit | ||
- Packit build | ||
|
||
* Thu Oct 31 2019 Tomáš Mráz <[email protected]> - 1.5.5-1 | ||
* Mon Mar 29 2021 Tomáš Mráz <[email protected]> - 1.5.7-1 | ||
- new upstream release 1.5.7 with bug fixes and enhancements | ||
|
||
* Wed Mar 17 2021 Tomáš Mráz <[email protected]> - 1.5.6-1 | ||
- new upstream release 1.5.6 with bug fixes and enhancements | ||
|
||
** Thu Oct 31 2019 Tomáš Mráz <[email protected]> - 1.5.5-1 | ||
- new upstream release 1.5.5 with multiple bug fixes and improvements | ||
|
||
* Wed Jul 24 2019 Fedora Release Engineering <[email protected]> - 1.5.4-2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters