| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | build: Use lowercase names for local variables....This helps distinguish variable names with a special Automake semantic.
* Makefile.am (MODULES): Rename to ...
(modules): ... this.
(mcronmodule_DATA, dist_mcronmodule_DATA): Adapt to it.
| Mathieu Lirzin | 2016-05-07 | 1 | -11/+11 |
| * | build: Remove GOBJECTS and GEN_MODULES variables....* Makefile.am (GOBJECTS, GEN_MODULES): Remove variables.
(mcronmodule_DATA, DISTCLEANFILES): Inline their contents.
(mcron_DEPENDENCIES, CLEANFILES): Use 'mcronmodule_DATA'.
| Mathieu Lirzin | 2016-05-07 | 1 | -12/+5 |
| * | base: Rename (mcron core) module to (mcron base)....The 'configure' script deletes the 'core.*' files. Having a file named
'base.scm' instead of 'core.scm' simplifies the build process without
changing the semantics.
* src/mcron/mcron-core.scm: Rename to ...
* src/mcron/base.scm: ... this.
All module users changed.
* Makefile.am (MODULES): Add 'src/mcron/base.scm'.
(CP): Remove variable.
(src/mcron/core.scm): Remove target.
(GEN_MODULES): Remove 'src/mcron/core.scm'.
(dist_mcronmodule_DATA): Remove 'src/mcron/mcron-core.scm'
* doc/mcron.texi: Adapt to name change.
* .gitignore: Update.
| Mathieu Lirzin | 2016-05-07 | 7 | -29/+23 |
| * | build: Use AC_CONFIG_SRCDIR safety check....* configure.ac (AC_CONFIG_SCRDIR): Set it to 'src/mcron.c'.
| Mathieu Lirzin | 2016-05-07 | 1 | -0/+1 |
| * | all: Rename 'scm' directory to 'src'....* scm/mcron/config.scm.in: Rename to ...
* src/mcron/config.scm.in: ... this.
* scm/mcron/crontab.scm: Rename to ...
* src/mcron/crontab.scm: ... this.
* scm/mcron/environment.scm: Rename to ...
* src/mcron/environment.scm: ... this.
* scm/mcron/job-specifier.scm: Rename to ...
* src/mcron/job-specifier.scm: ... this.
* scm/mcron/main.scm: Rename to ...
* src/mcron/main.scm: ... this.
* scm/mcron/mcron-core.scm: Rename to ...
* src/mcron/mcron-core.scm: ... this.
* scm/mcron/redirect.scm: Rename to ...
* src/mcron/redirect.scm: ... this.
* scm/mcron/vixie-specification.scm: Rename to ...
* src/mcron/vixie-specification.scm: ... this.
* scm/mcron/vixie-time.scm: Rename to ...
* src/mcron/vixie-time.scm: ... this.
* mcron.c: Rename to ...
* src/mcron.c: ... this.
* Makefile.am: Adapt to them.
* build-aux/pre-inst-env.in: Likewise.
* configure.ac (AC_CONFIG_FILES): Likewise.
(AC_CONFIG_HEADER): Set to 'src/config.h'.
* .gitignore: Update.
| Mathieu Lirzin | 2016-05-07 | 14 | -20/+20 |
| * | build: Do not auto-compile 'guild'....* Makefile.am (.scm.go): Set GUILE_AUTO_COMPILE to 0.
| Mathieu Lirzin | 2016-05-07 | 1 | -2/+3 |
| * | job-specifier: Add '%find-best-next' procedure....* scm/mcron/job-specifier.scm (find-best-next): Rename to ...
(%find-best-next): ... this. Rewrite it using a functional style.
All callers changed.
| Mathieu Lirzin | 2016-05-07 | 2 | -42/+33 |
| * | job-specifier: Rewrite 'range' procedure....* scm/mcron/job-specifier.scm (range): Use 'unfold'.
| Mathieu Lirzin | 2016-05-07 | 1 | -17/+8 |
| * | build: Fix 'distcheck' target failures....* Makefile.am (TEXI2DVI, DISTCLEANFILES, doc_mcron_TEXINFOS)
(nodist_doc_mcron_TEXINFOS): New variables. This fixes the build of the
dvi/pdf documentation.
| Mathieu Lirzin | 2016-05-07 | 1 | -0/+6 |
| * | build: Support VPATH builds....This allows using 'mcron' before it is installed without hardcoding the
local build environment in the executable.
* build-aux/pre-inst-env.in: New script.
* configure.ac (AC_CONFIG_FILES): Create it.
(AC_CONFIG_HEADER): Add 'config.h'.
(moduledir): New variable.
(PACKAGE_LOAD_PATH): new C preprocessor macro.
* mcron.c: Include "config.h".
(main): Don't overwrite Guile load paths.
(inner_main): Prepend Mcron modules load paths.
* Makefile.am (.scm.go, doc/mcron.1): Use 'pre-inst-env'.
(mcron_CFLAGS): Remove GUILE_LOAD_PATH macro.
(noinst_SCRIPTS): New variable.
* .gitignore: Update.
| Mathieu Lirzin | 2016-05-07 | 5 | -7/+59 |
| * | 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 Lirzin | 2016-05-07 | 5 | -170/+162 |
| * | 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 Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 5 | -33/+25 |
| * | maint: Define directory-local variables for Emacs....This configures Emacs automatically.
* .dir-locals.el: New file.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -31/+23 |
| * | main: Remove unused 'regular-file?' procedure....* scm/mcron/main.scm (regular-file?): Delete procedure.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -17/+15 |
| * | mcron: Mark local functions as static....* mcron.c (inner_main, react_to_terminal_signal, set_cron_signals):
Declare static.
| Mathieu Lirzin | 2016-05-07 | 1 | -6/+6 |
| * | mcron: Rework comments....* mcron.c: Rework comments.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -2/+3 |
| * | mcron: Add forward declarations....* mcron.c: Reorder function definitions sequentially.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -0/+1 |
| * | main: Remove obsolete Guile debug option....* scm/mcron/main.scm (main): Remove obsolete invocation of
'debug-enable'.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 3 | -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 Lirzin | 2016-05-07 | 4 | -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 Lirzin | 2016-05-07 | 7 | -227/+153 |
| * | main: Add 'main' procedure....* scm/mcron/main.scm (main): New Thunk. Move remaining top-level
code to it.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 1 | -61/+32 |
| * | main: Make 'catch-mcron-error' macro hygienic....* scm/mcron/main.scm (catch-mcron-error): Use 'define-syntax-rule'
instead of 'defmacro'.
| Mathieu Lirzin | 2016-05-07 | 1 | -13/+7 |
| * | main: Turn 'command-name' into a thunk....* scm/mcron/main.scm (command-name): Turn into a thunk.
All callers changed.
| Mathieu Lirzin | 2016-05-07 | 1 | -21/+18 |
| * | main: Use 'when' and 'unless' special forms....* scm/mcron/main.scm: Use 'when' and 'unless' special forms.
| Mathieu Lirzin | 2016-05-07 | 1 | -60/+57 |
| * | main: Import the modules all together....* scm/mcron/main.scm: Gather module imports.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 4 | -165/+658 |
| * | build: Remove MAINTAINERCLEANFILES variable....* makefile.am (MAINTAINERCLEANFILES): Delete unneeded variable. Using
'git clean -xdf' is more reliable than 'make maintainer-clean'
| Mathieu Lirzin | 2016-05-07 | 1 | -4/+0 |
| * | maint: Augment TODO....* TODO <Maybe in the near future>: Add items.
| Mathieu Lirzin | 2016-05-07 | 1 | -0/+9 |
| * | main: Add 'show-help' procedure....* scm/mcron/main.scm (show-help): New procedure.
| Mathieu Lirzin | 2016-05-07 | 1 | -28/+22 |
| * | main: Add 'show-package-information' procedure....* scm/mcron/main.scm (show-package-information): New procedure.
| Mathieu Lirzin | 2016-05-07 | 1 | -5/+12 |
| * | main: Add 'show-version' procedure....* scm/mcron/main.scm (show-version): New procedure.
| Mathieu Lirzin | 2016-05-07 | 1 | -17/+18 |
| * | build: Add package variables....* scm/mcron/config.scm.in (config-package-name)
(configure-package-version, configure-package-url): New variables.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 3 | -1/+512 |
| * | maint: Fix package name and bug reports email address....* configure.ac (AC_INIT): Fix package name and bug reports email
address.
| Mathieu Lirzin | 2016-05-07 | 1 | -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 Lirzin | 2016-05-07 | 2 | -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 Lirzin | 2016-05-07 | 6 | -66/+79 |
| * | build: Add missing 'makefile.am'....* scm/mcron/makefile.am: New file.
* .gitignore: Ignore 'mcron' only in the top-level directory.
| Mathieu Lirzin | 2016-05-04 | 2 | -1/+16 |
* | | Revert "Add missing 'makefile.am'."...This reverts commit 2039060a1de3cca3aa3e9a1035ce08b430ff5ea6.
| Mathieu Lirzin | 2017-09-27 | 3 | -23/+1 |
* | | Revert "Fix build of the manual."...This reverts commit e6a94adeb3384cb883f49ec5a4cc589df6b40d10.
| Mathieu Lirzin | 2017-09-27 | 7 | -87/+65 |
* | | Revert "Remove derived doc/mcron.1 with maintainer-clean."...This reverts commit eca341bd824c5cfe39fb0001014e5b86933719d9.
| Mathieu Lirzin | 2017-09-27 | 1 | -1/+1 |