AboutSummaryRefsLogTreeCommitDiffStats
Commit message (Collapse)AuthorAgeFilesLines
...
| * main: Remove unused 'regular-file?' procedure.Mathieu Lirzin2016-05-071-9/+0
| | | | | | | | * scm/mcron/main.scm (regular-file?): Delete procedure.
| * main: Improve 'process-user-file' definition.Mathieu Lirzin2016-05-071-17/+15
| | | | | | | | | | | | | | * scm/mcron/main.scm (process-user-file): Rename parameters 'file-path' to 'file-name' and 'assume-guile' to 'guile-syntax?'. Capture 'guile-regexp' and 'vixie-regexp' bindings in the procedure scope. (guile-file-regexp, vixie-file-regexp): Delete variables.
| * mcron: Mark local functions as static.Mathieu Lirzin2016-05-071-6/+6
| | | | | | | | | | * mcron.c (inner_main, react_to_terminal_signal, set_cron_signals): Declare static.
| * mcron: Rework comments.Mathieu Lirzin2016-05-071-37/+10
| | | | | | | | * mcron.c: Rework comments.
| * mcron: Use symbolic constants.Mathieu Lirzin2016-05-071-2/+3
| | | | | | | | | | * mcron.c (main, react_to_terminal_signal): Use EXIT_SUCCESS and EXIT_FAILURE macros instead of magic numbers.
| * mcron: Add forward declarations.Mathieu Lirzin2016-05-071-25/+28
| | | | | | | | * mcron.c: Reorder function definitions sequentially.
| * redirect: Use module (ice-9 regex).Mathieu Lirzin2016-05-071-0/+1
| | | | | | | | | | * scm/mcron/redirect.scm: Use module (ice-9 regex) to prevent variables 'match:prefix', 'match:substring', and 'match:prefix' to be unbound.
| * main: Remove obsolete Guile debug option.Mathieu Lirzin2016-05-071-1/+0
| | | | | | | | | | * scm/mcron/main.scm (main): Remove obsolete invocation of 'debug-enable'.
| * build: Enable silent rules by default.Mathieu Lirzin2016-05-073-2/+15
| | | | | | | | | | | | | | | | * configure.ac (AM_SILENT_RULES): Use macro. * makefile.am (doc/mcron.1): Use $(AM_V_HELP2MAN). (AM_V_HELP2MAN, AM_V_HELP2MAN_, AM_V_HELP2MAN_): New variables. * scm/mcron/makefile.am (.scm.go): Use $(AM_V_GUILEC). (AM_V_GUILEC, AM_V_GUILEC_, AM_V_GUILEC_): New variables.
| * build: Compile and install '.go' files.Mathieu Lirzin2016-05-074-7/+58
| | | | | | | | | | | | | | | | | | | | * configure.ac: Set and substitute 'mcronmoduledir'. Check for 'guild' which requires Guile >= 2.0.7. Use 'AC_CANONICAL_HOST'. * scm/mcron/makefile.am (.scm.go): New target. (MODULES, GEN_MODULES, GOBJECTS, CLEANFILES, SUFFIXES) (dist_mcronmodule_DATA, mcronmodule_DATA): New variables. (pkgdata_DATA, EXTRA_DIST): Remove variables. * .gitignore: Adjust accordingly.
| * main: Add (mcron main) module.Mathieu Lirzin2016-05-077-227/+153
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove 'ed' hack to eval content of scm/mcron/main.scm in the C wrapper. Use proper libguile functions instead. * scm/mcron/main.scm (mcron main): New module. (show-version, show-package-information, show-help, main): Remove extra newline characters in strings. * mcron.c.template: Rename to ... * mcron.c: ... this. (inner_main): Set current module to (mcron main). * makefile.ed: Delete file. * configure.ac: Remove check for 'ed'. * makefile.am: Adjust accordingly. * .gitignore: Likewise.
| * main: Add 'main' procedure.Mathieu Lirzin2016-05-071-137/+115
| | | | | | | | | | * scm/mcron/main.scm (main): New Thunk. Move remaining top-level code to it.
| * main: Add 'cron-file-descriptors' procedure.Mathieu Lirzin2016-05-071-31/+28
| | | | | | | | | | | | | | | | * scm/mcron/main.scm (fd-list): Delete variable. (cron-file-descriptors): New procedure. Return a list instead of mutating 'fd-list'. (process-update-request): Add 'fdes-list' parameter. Adapt caller by using 'cron-file-descriptors' as an effective parameter.
| * main: Add docstrings.Mathieu Lirzin2016-05-071-61/+32
| | | | | | | | | | | | | | | | * scm/mcron/main.scm (delete-run-file, mcron-error) (process-files-in-system-directory, process-files-in-user-directory) (process-update-request, process-user-file, regular-file?) (stdin->string, valid-user): Turn comments into docstrings. (command-type, options): Move comments inside the definitions.
| * main: Make 'catch-mcron-error' macro hygienic.Mathieu Lirzin2016-05-071-13/+7
| | | | | | | | | | * scm/mcron/main.scm (catch-mcron-error): Use 'define-syntax-rule' instead of 'defmacro'.
| * main: Turn 'command-name' into a thunk.Mathieu Lirzin2016-05-071-21/+18
| | | | | | | | | | * scm/mcron/main.scm (command-name): Turn into a thunk. All callers changed.
| * main: Use 'when' and 'unless' special forms.Mathieu Lirzin2016-05-071-60/+57
| | | | | | | | * scm/mcron/main.scm: Use 'when' and 'unless' special forms.
| * main: Import the modules all together.Mathieu Lirzin2016-05-071-21/+9
| | | | | | | | * scm/mcron/main.scm: Gather module imports.
| * build: Generate 'ChangeLog' upon 'make dist'.Mathieu Lirzin2016-05-074-165/+658
| | | | | | | | | | | | | | | | | | | | * ChangeLog: Rename to ... * ChangeLog.old: ... this. * ChangeLog: New file. * Makefile.am (gen_start_date): New variable. (gen-ChangeLog, dist-hook): New targets. (EXTRA_DIST): Add 'ChangeLog.old'. * build-aux/gitlog-to-changelog: New file, from Gnulib.
| * build: Remove MAINTAINERCLEANFILES variable.Mathieu Lirzin2016-05-071-4/+0
| | | | | | | | | | * makefile.am (MAINTAINERCLEANFILES): Delete unneeded variable. Using 'git clean -xdf' is more reliable than 'make maintainer-clean'
| * maint: Augment TODO.Mathieu Lirzin2016-05-071-0/+9
| | | | | | | | * TODO <Maybe in the near future>: Add items.
| * main: Add 'show-help' procedure.Mathieu Lirzin2016-05-071-28/+22
| | | | | | | | * scm/mcron/main.scm (show-help): New procedure.
| * main: Add 'show-package-information' procedure.Mathieu Lirzin2016-05-071-5/+12
| | | | | | | | * scm/mcron/main.scm (show-package-information): New procedure.
| * main: Add 'show-version' procedure.Mathieu Lirzin2016-05-071-17/+18
| | | | | | | | * scm/mcron/main.scm (show-version): New procedure.
| * build: Add package variables.Mathieu Lirzin2016-05-071-0/+4
| | | | | | | | | | * scm/mcron/config.scm.in (config-package-name) (configure-package-version, configure-package-url): New variables.
| * doc: Include a copy of the GNU FDL.Mathieu Lirzin2016-05-073-1/+512
| | | | | | | | | | | | * doc/fdl.texi: New file. * doc/mcron.texi: Include it. * makefile.am (doc_mcron_TEXINFOS): New variable.
| * maint: Fix package name and bug reports email address.Mathieu Lirzin2016-05-071-1/+1
| | | | | | | | | | * configure.ac (AC_INIT): Fix package name and bug reports email address.
| * maint: Use 'build-aux' directory for auxiliary build tools.Mathieu Lirzin2016-05-072-0/+8
| | | | | | | | | | * configure.ac (AC_CONFIG_AUX_DIR): Set it to 'build-aux'. * .gitignore: Adapt to it.
| * build: Fix build of the manual.Mathieu Lirzin2016-05-076-66/+79
| | | | | | | | | | | | | | | | | | | | * mcron.texinfo.in: Rename to ... * doc/mcron.texi: ... this. * doc/config.texi.in: New file. * configure.ac: Adapt to it. * makefile.am: Likewise. * .gitignore: Likewise. * README--git: Likewise.
| * build: Add missing 'makefile.am'.Mathieu Lirzin2016-05-042-1/+16
| | | | | | | | | | * scm/mcron/makefile.am: New file. * .gitignore: Ignore 'mcron' only in the top-level directory.
* | Revert "Add missing 'makefile.am'."Mathieu Lirzin2017-09-273-23/+1
| | | | | | | | This reverts commit 2039060a1de3cca3aa3e9a1035ce08b430ff5ea6.
* | Revert "Fix build of the manual."Mathieu Lirzin2017-09-277-87/+65
| | | | | | | | This reverts commit e6a94adeb3384cb883f49ec5a4cc589df6b40d10.
* | Revert "Remove derived doc/mcron.1 with maintainer-clean."Mathieu Lirzin2017-09-271-1/+1
| | | | | | | | This reverts commit eca341bd824c5cfe39fb0001014e5b86933719d9.
* | Revert "Fix package name and bug reports email address."Mathieu Lirzin2017-09-272-21/+1
| | | | | | | | This reverts commit df4fa60a031e30eff00c2fa06b0ea23d4e50b057.
* | Revert "Have a new directory to get rid of with maintainer-clean."Mathieu Lirzin2017-09-273-8/+47
| | | | | | | | This reverts commit 024027ae2dcc425f7a3bf5bf3ff3671833b02ce6.
* | Revert "Taken on board suggestions of Mathieu Lirzin as per e-mails to the ↵Mathieu Lirzin2017-09-2720-1165/+674
| | | | | | | | | | | | bug-mcron@gnu.org mailing list around September 2015." This reverts commit c0a6eb14c257a47e9573631e5ac09e6528fba377.
* | Taken on board suggestions of Mathieu Lirzin as per e-mails to the ↵Dale Mellor2015-10-2220-674/+1165
| | | | | | | | bug-mcron@gnu.org mailing list around September 2015.
* | Have a new directory to get rid of with maintainer-clean.Dale Mellor2015-07-063-47/+8
| |
* | Fix package name and bug reports email address.Mathieu Lirzin2015-07-062-1/+21
| | | | | | | | | | | | Conflicts: ChangeLog configure.ac
* | Remove derived doc/mcron.1 with maintainer-clean.Dale Mellor2015-07-051-1/+1
| |
* | Fix build of the manual.Mathieu Lirzin2015-07-047-65/+87
| |
* | Add missing 'makefile.am'.Mathieu Lirzin2015-07-043-1/+23
|/
* Add maintainer-mode option to configure, to pacify Debian.Dale Mellor2014-05-251-0/+4
|
* Correction in 'make clean' rules.Dale Mellor2014-05-251-1/+1
|
* Distribute the minimal man page in case the builder hasn't get help2man.1.0.8Dale Mellor2014-05-251-1/+1
|
* Juggled build infrastructure to make mcron.1 man page properly.Dale Mellor2014-05-2514-29/+30
|
* Now runs (only) against guile-2.0.1.0.7Dale Mellor2014-04-2812-155/+104
|
* Look for user configuration files in $XDG_CONFIG_HOME (default to ↵Dale Mellor2012-02-049-58/+115
| | | | ~/.config/cron) as well as ~/.cron.
* Unified copyright notices in minor files, removed immutable page covers from ↵1.0.6Dale Mellor2010-06-199-90/+70
| | | | texinfo file.
* Added .gitignore.1.0.5Dale Mellor2010-06-131-0/+20
|