[Guile-commits] Failed: Hydra job gnu:guile-2-0:coverage on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-2-0:coverage (on x86_64-linux) has changed 
from Failed with output to Failed.  For details, see

  http://hydra.nixos.org/build/6500275


This is likely due to Eelco Dolstra eelco.dols...@logicblox.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] GNU Guile branch, master, updated. v2.1.0-249-g361d0de

2013-10-17 Thread Andy Wingo
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Guile.

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=361d0de285587ef4c9f19b9e07c1175424520aa5

The branch, master has been updated
   via  361d0de285587ef4c9f19b9e07c1175424520aa5 (commit)
   via  9d87158fdb1c3159db90911e96d833392a02ff58 (commit)
   via  8d23c43641345c9a93cbe173c67c4f12d812770b (commit)
   via  e93c0430faf34cc881d4d87750bd2cdad2dd9813 (commit)
   via  73c3db666926aa4a0307ea0ed4b38608a31ecd82 (commit)
   via  ac371963218c757172e3f8322322853254097d7f (commit)
   via  342370bd56469925f7a5dbd608bb469d3c0ef2e4 (commit)
   via  1d94a35d69994bdbfd5dcb2c5f2af951152735a5 (commit)
   via  0bd6b1cae194ccc5b698b67257154e42933c43e5 (commit)
   via  234155e3364f5c09abca3ab82409187d3d9418c5 (commit)
   via  99511cd0abfa0bde4440b2781740f18f49248a99 (commit)
  from  5bd4b6585b3733077d0a36265ce057611836e163 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 361d0de285587ef4c9f19b9e07c1175424520aa5
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:25:01 2013 +0200

Stack traces skip RTL boot frames

* libguile/frames.c (frame-previous)
* libguile/stacks.c (make-stack): Skip RTL boot frames.

commit 9d87158fdb1c3159db90911e96d833392a02ff58
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:24:16 2013 +0200

RTL engine can apply smobs and applicable structs w/o stack VM

* libguile/vm-engine.c (rtl_vm_engine): Allow the RTL VM to handle the
  dispatch for SMOBs and applicable structs.

commit 8d23c43641345c9a93cbe173c67c4f12d812770b
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:21:29 2013 +0200

Fix subr-call

* libguile/vm-engine.c (subr-call): Fix for locals count including the
  procedure.

commit e93c0430faf34cc881d4d87750bd2cdad2dd9813
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:19:57 2013 +0200

Fix tail-apply bugs

* libguile/vm-engine.c (tail-apply): Fix for old change that made
  the procedure indexed 0 instead of -1.

commit 73c3db666926aa4a0307ea0ed4b38608a31ecd82
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:16:32 2013 +0200

Better vm.c support for RTL programs

* libguile/vm.c (scm_c_vm_run): Directly dispatch to the RTL VM for RTL
  programs.
  (scm_bootstrap_vm): Initialize the RTL program stubs early, and mark
  the RTL boot program with the boot flag.

commit ac371963218c757172e3f8322322853254097d7f
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:14:56 2013 +0200

Procedure traps work with RTL programs.

* module/system/vm/traps.scm (frame-matcher): Work with RTL programs.

commit 342370bd56469925f7a5dbd608bb469d3c0ef2e4
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:14:26 2013 +0200

minimal RTL program support in (system xref)

* module/system/xref.scm (procedure-sources*): Work with RTL programs.

commit 1d94a35d69994bdbfd5dcb2c5f2af951152735a5
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:13:56 2013 +0200

(system vm coverage) works with RTL programs

* module/system/vm/coverage.scm (hashq-proc, assq-proc)
  (program-sources*, closed-over-procedures, coverage-data-lcov): Work
  with RTl procedures.

commit 0bd6b1cae194ccc5b698b67257154e42933c43e5
Author: Andy Wingo wi...@pobox.com
Date:   Thu Oct 17 23:12:23 2013 +0200

Statprof works better with RTL programs

* module/statprof.scm (get-call-data, procedure=?): Work with RTL
  programs.

commit 234155e3364f5c09abca3ab82409187d3d9418c5
Author: Andy Wingo wi...@pobox.com
Date:   Mon Oct 14 21:45:48 2013 +0200

bind-rest works in the optional-and-rest-arg case.

* libguile/vm-engine.c (bind-rest): If the sp is below the dst reg,
  alloc the frame to ensure there is enough space, and to fill in
  intermediate values with SCM_UNDEFINED.

commit 99511cd0abfa0bde4440b2781740f18f49248a99
Author: Andy Wingo wi...@pobox.com
Date:   Mon Oct 14 17:32:16 2013 +0200

Refactor vm_abort

* libguile/vm.c (vm_abort):
* libguile/vm-i-system.c (abort): Refactor abort interface so that it is
  more amenable to the RTL VM.

---

Summary of changes:
 libguile/frames.c |3 +-
 libguile/stacks.c |5 ++-
 libguile/vm-engine.c  |   63 -
 libguile/vm-i-system.c|   10 --
 libguile/vm.c |   48 +++
 module/statprof.scm   |   16 ++
 module/system/vm/coverage.scm |   35 

[Guile-commits] Failed with output: Hydra job gnu:guile-master:build on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build (on x86_64-linux) has changed 
from Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505240


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_without_threads on i686-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_without_threads (on i686-linux) 
has changed from Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505257


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_CPPFLAGS=_DSCM_DEBUG=1 on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_CPPFLAGS=_DSCM_DEBUG=1 (on 
x86_64-linux) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505243


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_clang on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_clang (on x86_64-linux) has 
changed from Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505270


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_without_threads on x86_64-darwin

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_without_threads (on 
x86_64-darwin) has changed from Success to Failed with output.  For 
details, see

  http://hydra.nixos.org/build/6505254


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build on x86_64-darwin

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build (on x86_64-darwin) has changed 
from Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505258


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_without_threads on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_without_threads (on 
x86_64-linux) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505241


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_CPPFLAGS=_DSCM_DEBUG_TYPING_STRICTNESS=2 on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job 
gnu:guile-master:build_CPPFLAGS=_DSCM_DEBUG_TYPING_STRICTNESS=2 (on 
x86_64-linux) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505261


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_enable_guile_debug on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_enable_guile_debug (on 
x86_64-linux) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505245


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_gcc47 on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_gcc47 (on x86_64-linux) has 
changed from Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505239


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_disable_networking on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_disable_networking (on 
x86_64-linux) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505242


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build on i686-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build (on i686-linux) has changed from 
Success to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505253


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-2-0:coverage on x86_64-linux

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-2-0:coverage (on x86_64-linux) has changed 
from Failed to Failed with output.  For details, see

  http://hydra.nixos.org/build/6505075


This is likely due to 8 commits by Eelco Dolstra eelco.dols...@logicblox.com 
or Shea Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.



[Guile-commits] Failed with output: Hydra job gnu:guile-master:build_without_threads on i686-freebsd

2013-10-17 Thread Hydra Build Daemon
Hi,

The status of Hydra job gnu:guile-master:build_without_threads (on 
i686-freebsd) has changed from Success to Failed with output.  For details, 
see

  http://hydra.nixos.org/build/6505238


This is likely due to 108 commits by Andy Wingo wi...@pobox.com, Bjørn 
Forsman bjorn.fors...@gmail.com, Domen Kožar do...@dev.si, Eelco Dolstra 
eelco.dols...@logicblox.com, Jaka Hudoklin jakahudok...@gmail.com, Jason 
Don O'Conal lovek...@gmail.com, Michael Raskin 7c6f4...@mail.ru, Peter 
Simons sim...@cryp.to, Sander van der Burg svanderb...@gmail.com or Shea 
Levy s...@shealevy.com.

Go forth and fix it.

Regards,

The Hydra build daemon.