AboutSummaryRefsLogTreeCommitDiffStats
Commit message (Expand)AuthorAgeFilesLines
* all: Add a custom indentation rule for 'mcron-error'....* .dir-locals.el: Define a custom indentation rule for 'mcron-error'. * scm/mcron/crontab.scm: Use it. * scm/mcron/job-specifier.scm: Likewise. * scm/mcron/main.scm: Likewise. * scm/mcron/vixie-specification.scm: Likewise. Mathieu Lirzin2016-05-075-33/+25
* maint: Define directory-local variables for Emacs....This configures Emacs automatically. * .dir-locals.el: New file. Mathieu Lirzin2016-05-071-0/+7
* environment: Redefine 'modify-environment'....* scm/mcron/environment.scm (modify-environment): Add docstring. Compute 'passwd:dir' and 'passwd:name' only once. (impose-default-environment): Merge it into 'modify-environment'. Mathieu Lirzin2016-05-071-31/+23
* main: Remove unused 'regular-file?' procedure....* scm/mcron/main.scm (regular-file?): Delete procedure. Mathieu Lirzin2016-05-071-9/+0
* main: Improve 'process-user-file' definition....* 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. Mathieu Lirzin2016-05-071-17/+15
* mcron: Mark local functions as static....* mcron.c (inner_main, react_to_terminal_signal, set_cron_signals): Declare static. Mathieu Lirzin2016-05-071-6/+6
* mcron: Rework comments....* mcron.c: Rework comments. Mathieu Lirzin2016-05-071-37/+10
* mcron: Use symbolic constants....* mcron.c (main, react_to_terminal_signal): Use EXIT_SUCCESS and EXIT_FAILURE macros instead of magic numbers. Mathieu Lirzin2016-05-071-2/+3
* mcron: Add forward declarations....* mcron.c: Reorder function definitions sequentially. Mathieu Lirzin2016-05-071-25/+28
* redirect: Use module (ice-9 regex)....* scm/mcron/redirect.scm: Use module (ice-9 regex) to prevent variables 'match:prefix', 'match:substring', and 'match:prefix' to be unbound. Mathieu Lirzin2016-05-071-0/+1
* main: Remove obsolete Guile debug option....* scm/mcron/main.scm (main): Remove obsolete invocation of 'debug-enable'. Mathieu Lirzin2016-05-071-1/+0
* build: Enable silent rules by default....* 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. Mathieu Lirzin2016-05-073-2/+15
* build: Compile and install '.go' files....* 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. Mathieu Lirzin2016-05-074-7/+58
* main: Add (mcron main) module....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. Mathieu Lirzin2016-05-077-227/+153
* main: Add 'main' procedure....* scm/mcron/main.scm (main): New Thunk. Move remaining top-level code to it. Mathieu Lirzin2016-05-071-137/+115
* main: Add 'cron-file-descriptors' procedure....* 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. Mathieu Lirzin2016-05-071-31/+28
* main: Add docstrings....* 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. Mathieu Lirzin2016-05-071-61/+32
* main: Make 'catch-mcron-error' macro hygienic....* scm/mcron/main.scm (catch-mcron-error): Use 'define-syntax-rule' instead of 'defmacro'. Mathieu Lirzin2016-05-071-13/+7
* main: Turn 'command-name' into a thunk....* scm/mcron/main.scm (command-name): Turn into a thunk. All callers changed. Mathieu Lirzin2016-05-071-21/+18
* main: Use 'when' and 'unless' special forms....* scm/mcron/main.scm: Use 'when' and 'unless' special forms. Mathieu Lirzin2016-05-071-60/+57
* main: Import the modules all together....* scm/mcron/main.scm: Gather module imports. Mathieu Lirzin2016-05-071-21/+9
* build: Generate 'ChangeLog' upon 'make dist'....* 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. Mathieu Lirzin2016-05-074-165/+658
* build: Remove MAINTAINERCLEANFILES variable....* makefile.am (MAINTAINERCLEANFILES): Delete unneeded variable. Using 'git clean -xdf' is more reliable than 'make maintainer-clean' Mathieu Lirzin2016-05-071-4/+0
* maint: Augment TODO....* TODO <Maybe in the near future>: Add items. Mathieu Lirzin2016-05-071-0/+9
* main: Add 'show-help' procedure....* scm/mcron/main.scm (show-help): New procedure. Mathieu Lirzin2016-05-071-28/+22
* main: Add 'show-package-information' procedure....* scm/mcron/main.scm (show-package-information): New procedure. Mathieu Lirzin2016-05-071-5/+12
* main: Add 'show-version' procedure....* scm/mcron/main.scm (show-version): New procedure. Mathieu Lirzin2016-05-071-17/+18
* build: Add package variables....* scm/mcron/config.scm.in (config-package-name) (configure-package-version, configure-package-url): New variables. Mathieu Lirzin2016-05-071-0/+4
* doc: Include a copy of the GNU FDL....* doc/fdl.texi: New file. * doc/mcron.texi: Include it. * makefile.am (doc_mcron_TEXINFOS): New variable. Mathieu Lirzin2016-05-073-1/+512
* maint: Fix package name and bug reports email address....* configure.ac (AC_INIT): Fix package name and bug reports email address. Mathieu Lirzin2016-05-071-1/+1
* maint: Use 'build-aux' directory for auxiliary build tools....* configure.ac (AC_CONFIG_AUX_DIR): Set it to 'build-aux'. * .gitignore: Adapt to it. Mathieu Lirzin2016-05-072-0/+8
* build: Fix build of the manual....* 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. Mathieu Lirzin2016-05-076-66/+79
* build: Add missing 'makefile.am'....* scm/mcron/makefile.am: New file. * .gitignore: Ignore 'mcron' only in the top-level directory. Mathieu Lirzin2016-05-042-1/+16
* 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 ~/.config/c...Dale Mellor2012-02-049-58/+115
* Unified copyright notices in minor files, removed immutable page covers from ...1.0.6Dale Mellor2010-06-199-90/+70
* Added .gitignore.1.0.5Dale Mellor2010-06-131-0/+20
* Leave info/dir around; the Debian package has a patch to remove it.Dale Mellor2010-06-131-9/+0
* Fixed up makefile to provide rule to create man page (not done automatically)...Dale Mellor2010-06-132-2/+22
* Make sure $DESTDIR pervades the makefile.Dale Mellor2010-06-131-4/+4
* Bumped version number to 1.0.5.Dale Mellor2010-06-131-1/+1
* Added --enable-no-vixie-clobber to configure.ac.Dale Mellor2010-06-133-19/+47
* Removed makefile dependence on mkinstalldirs, which was supplied by an earlie...Dale Mellor2010-06-121-26/+19
* Added a simple man page using help2man (the generation is _not_ automatic thr...Dale Mellor2010-06-122-1/+52
* Made NEWS about the savannah GIT repository.Dale Mellor2010-06-121-0/+3
* Upgrade to GPLv3 and bump version to 1.0.4.1.0.4Dale Mellor2010-06-1218-179/+870