Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 16:12:09 +00:00
parent f823507c44
commit 22d470fc08
5 changed files with 32 additions and 19 deletions

View File

@ -1,3 +1,2 @@
Richard Kelsey
Michael Sperber
(restart.scm and port to sunterlib by Eric Knauel)
Copyright (c) 2002 Richard Kelsey, Michael Sperber
Copyright (c) 2004 Eric Knauel

5
s48/exceptions/NEWS Normal file
View File

@ -0,0 +1,5 @@
version 0.1
* restart.scm and port to sunterlib (Eric Knauel)
version 0.0 2002-12-01
* Upstream from Richard Kelsey, Michael Sperber

View File

@ -26,3 +26,20 @@
(export
(raise-restartable :syntax)
(restart :syntax)))
(define-structure srfi-34 srfi-34-interface
(open scheme
signals)
(files srfi-34))
(define-structure srfi-35 srfi-35-interface
(open scheme
signals
srfi-1
srfi-9)
(files srfi-35))
(define-structure srfi-34-restart srfi-34-restart-interface
(open scheme
srfi-34 srfi-35)
(files restart))

View File

@ -1,16 +0,0 @@
(define-structure srfi-34 srfi-34-interface
(open scheme
signals)
(files srfi-34))
(define-structure srfi-35 srfi-35-interface
(open scheme
signals
srfi-1
srfi-9)
(files srfi-35))
(define-structure srfi-34-restart srfi-34-restart-interface
(open scheme
srfi-34 srfi-35)
(files restart))

View File

@ -0,0 +1,8 @@
(define-package "exceptions"
(0 1)
()
(install-file "load.scm" 'base)
(install-string (COPYING) "COPYING" 'doc)
(install-file "restart.scm" 'scheme)
(install-file "srfi-34.scm" 'scheme)
(install-file "srfi-35.scm" 'scheme))