This revision supports cross-compilation, so guile is added to the
native-inputs to enable this.
* gnu/packages/guile-xyz.scm (guile-prometheus): Update to 0-1.8980f39.
[native-inputs]: Add guile.
* gnu/packages/guile-xyz.scm (guile-wisp): Update to 1.0.3.
[source]: Access via hg and change from bitbucket to hg.sr.ht.
[arguments]: Replace 'bootstrap phase; remove Guile 3 patch
because Guile 3 is supported in 1.0.3.
[native-inputs]: Add autoconf and automake.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This allow the package to be resused by r6rs compliant scheme implementations
that expect *.sls files.
* gnu/packages/guile-xyz.scm (guile2.2-pfds): Rename *.sls files to *.scm
since Guile 2 does not support the sls extension.
(guile-pfds): Removed the renaming of files to *.sls to *.scm.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* gnu/packages/guile-xyz.scm (g-golf): Update to 0.1.0-822.84e894e.
This also fixes the version to the correct one which is 0.1.0. Technically
g-golf does not actually have a release yet. The author of g-golf confirmed
versions will start at 0.1.0 as autotools currently has that version.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Emacsy now includes trivial fixes for 'end-of-line to be on par with Emacs
'end-of-line.
* gnu/packages/guile-xyz.scm (emacsy-minimal): Update to v0.4.1-31-g415d96f.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* gnu/packages/guile-xyz.scm (guile-gi)[build-system]: Use
glib-or-gtk-build-system.
[arguments]: Install the extension to the "extensions" sub-directory.
* gnu/packages/guile-xyz.scm (nomad): Update to 0.2.0-alpha.
This is a significant update to Nomad. This removes the majority of C code and
replaces it with gobject introspection using g-golf.
In the process the nomad package expression has changed significantly.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
* gnu/packages/guile-xyz.scm (guile-reader)[inputs]: Switch to GUILE-3.0.
(guile2.2-reader): New variable.
* gnu/packages/guile-xyz.scm (haunt)[propagated-inputs]: Add GUILE-READER.
(guile2.2-haunt)[propagated-inputs]: Use GUILE2.2-READER.
* gnu/packages/skribilo.scm (skribilo)[propagated-inputs]: Use
GUILE2.2-READER and GUILE2.2-LIB.
* gnu/packages/guile-xyz.scm (python-on-guile): Update to 1.2.3.
[source]: Download from <https://gitlab.com/python-on-guile/python-on-guile>.
[inputs]: Change from GUILE-2.2 to GUILE-3.0.
[arguments]: Add phase augment-GUILE_LOAD_PATH.
* gnu/packages/guile-xyz.scm (emacsy-minimal)[inputs]: Use guile2.2-lib and
guile2.2-readline instead of the 3.0 variants.
Signed-off-by: Marius Bakke <marius@gnu.org>
* gnu/packages/guile-xyz.scm (guile-dsv)[arguments]: Add "wrap program"
phase. Import target-guile-effective-version from guile-build-system for use
in new phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
guile-fibers@1.0.0 has a resource leak where run-fibers will only destroy one
scheduler, but it creates as many as there are cpu cores by default (see
https://github.com/wingo/fibers/issues/36). This causes the tests to fail on
systems with many cores, and can cause guile to crash under certain
circumstances. This fixes that resource leak. At present neither git master
nor the latest release has fixed this yet.
* gnu/packages/patches/guile-fibers-destroy-peer-schedulers.patch: New patch.
* gnu/local.mk: Add it to the list of patches.
* gnu/packages/guile-xyz.scm (guile-fibers): Use it.