stalin 0.11-5 source package in Ubuntu

Changelog

stalin (0.11-5) unstable; urgency=low

  * Build with debugging information (gcc -g).

  * Remove build dependency on build-essential dpkg-dev package.
    Thanks to Manoj Srivastava <email address hidden> for the report.
    (closes: #553474)

  * Switch to debhelper which should fix issues with quilt and the clean
    target.  Thanks to Raphael Hertzog <email address hidden> for the
    report. (closes: 484910)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Tue,  10 Nov 2009 09:26:08 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Lucid
Original maintainer:
Rob Browning
Architectures:
i386 amd64 ia64 sparc kfreebsd-i386 kfreebsd-amd64
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe devel
Precise release universe devel

Downloads

File Size SHA-256 Checksum
stalin_0.11.orig.tar.gz 5.1 MiB 95eafb4fa870cb93f5d79b8935c42664cf54f227b2c7eacf7b55b06b33e1e3fe
stalin_0.11-5.diff.gz 11.1 MiB feec57db695db826b246209b95a8c3b0b3e572d77d67dbe224a0410bd0ba3e87
stalin_0.11-5.dsc 1.1 KiB 4c5fe65d15845587337a14462e6d787384d1c424bff5fbd84259c320b928dbe8

Available diffs

View changes file

Binary packages built by this source

stalin: An extremely aggressive Scheme compiler

 stalin is an aggressive self-hosting Scheme compiler, designed to
 generate resource efficient stand-alone executables with very high
 computational performance. It is a batch mode compiler like gcc, not
 an interpreter, and is designed to be used only after your code has
 stabilized.
 .
 It places a few limitations on the content of the source code. For
 example, you may not not LOAD or EVAL new expressions or procedure
 definitions at runtime, but in exchange, it is able to perform
 various global analyses which may allow it to transparently map
 Scheme types to C types and to use native C arithmetic operations on
 a per-expression basis, whenever such operations are proven safe.
 Further stalin can often reduce or eliminate run-time type checking
 and dispatching, and omit garbage collection for data of limited
 scope or accessibility, while omitting unreachable data altogether.
 .
 stalin also has a foreign procedure interface to both Xlib and OpenGL.