AboutSummaryRefsLogTreeCommitDiffStats
path: root/scm
Commit message (Expand)AuthorAgeFilesLines
* build: Use a non-recursive makefile....* configure.ac (AM_INIT_AUTOMAKE): Use 'subdir-objects' option. (AC_CONFIG_FILES): Remove 'scm/mcron/makefile' and 'makefile'. Add 'Makefile'. * makefile.am: Delete file. Move its content into ... * scm/mcron/makefile.am: Likewise. * Makefile.am: ... this. New file. * .gitignore: Update. Mathieu Lirzin2016-05-071-59/+0
* core: Use SRFI-9 records for the job data structure....* scm/mcron/mcron-core.scm <job>: New record type. This Replaces a vector data structure. All consumers changed. Mathieu Lirzin2016-05-071-47/+46
* main: Remove 'valid-user' procedure....* scm/mcron/main.scm (valid-user): Delete procedure. (process-files-in-system-directory): Adjust accordingly by using a local definition. Mathieu Lirzin2016-05-071-13/+7
* main: Add 'for-each-file' procedure....* scm/mcron/main.scm (for-each-file): New procedure. (process-files-in-user-directory, process-files-in-system-directory): Use it. Mathieu Lirzin2016-05-071-28/+33
* 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-074-32/+21
* 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
* 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-071-0/+6
* 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-072-5/+45
* 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-071-58/+50
* 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
* 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
* build: Add missing 'makefile.am'....* scm/mcron/makefile.am: New file. * .gitignore: Ignore 'mcron' only in the top-level directory. Mathieu Lirzin2016-05-041-0/+15
* Juggled build infrastructure to make mcron.1 man page properly.Dale Mellor2014-05-259-0/+2197