Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 18:46:33 +00:00
parent c6e5882d77
commit 7b6e2dc309
15 changed files with 77 additions and 41 deletions

View File

@ -1 +1 @@
Rolf-Thomas Happe, (credit to Marco Schmidt)
Copyright (c) 2003 Rolf-Thomas Happe

6
scsh/image-info/NEWS Normal file
View File

@ -0,0 +1,6 @@
version 0.1
* New package system.
version 0.0 2003-02-16
* Loose port of small parts from Marco Schmidt's public
domain ImageInfo 1.3 Java program

View File

@ -1,18 +0,0 @@
; Copyright (c) 2003 RT Happe <rthappe at web de>
; See the file COPYING distributed with the Scheme Untergrund Library
(define-interface image-info-face
(export image-dimension
get-image-info
image-info:format
image-info:depth
image-info:width/pixel
image-info:height/pixel
image-info:width/dpi
image-info:height/dpi
inport->byte-stream
byte-vector->byte-stream
segment-byte-stream
))

View File

@ -1,6 +1,22 @@
; Copyright (c) 2003 RT Happe <rthappe at web de>
; See the file COPYING distributed with the Scheme Untergrund Library
(define-interface image-info-face
(export image-dimension
get-image-info
image-info:format
image-info:depth
image-info:width/pixel
image-info:height/pixel
image-info:width/dpi
image-info:height/dpi
inport->byte-stream
byte-vector->byte-stream
segment-byte-stream
))
;;; refers to structures SRFI-9+ and KRIMS from sunterlib/s48/krims
;;; BYTIO from sunterlib/s48/bytio
;;; SEQUENCE-LIB from sunterlib/s48/sequences

View File

@ -0,0 +1,8 @@
(define-package "image-info"
(0 1)
()
(install-file "load.scm" 'base)
(install-file "README" 'doc)
(install-file "NEWS" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "imxize.scm" 'scheme))

View File

@ -1 +1 @@
Martin Gasbichler
Copyright (c) 2003 Martin Gasbichler

2
scsh/interaction/NEWS Normal file
View File

@ -0,0 +1,2 @@
version 0.0
* New package system.

View File

@ -1,11 +0,0 @@
(define-interface repls-interface
(export script-repl
remote-repl))
(define-interface inspect-exception-interface
(export with-inspecting-handler
with-fatal-and-capturing-error-handler
display-continuation))
(define-interface socket2stdports-interface
(export socket<->stdports))

View File

@ -1,3 +1,15 @@
(define-interface repls-interface
(export script-repl
remote-repl))
(define-interface inspect-exception-interface
(export with-inspecting-handler
with-fatal-and-capturing-error-handler
display-continuation))
(define-interface socket2stdports-interface
(export socket<->stdports))
(define-structure repls repls-interface
(open scheme-with-scsh
command-levels

View File

@ -0,0 +1,10 @@
(define-package "interaction"
(0 0)
()
(install-file "load.scm" 'base)
(install-file "README" 'doc)
(install-file "NEWS" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "inspect-exception.scm" 'scheme)
(install-file "repl.scm" 'scheme)
(install-file "socket2stdport.scm" 'scheme))

View File

@ -1 +1 @@
Martin Gasbichler
Copyright (c) 2003 Martin Gasbichler

2
scsh/pps/NEWS Normal file
View File

@ -0,0 +1,2 @@
version 0.0
* New package system.

View File

@ -15,3 +15,9 @@
process-info-tty
process-info-executable
process-info-command-line))
(define-structure pps pps-interface
(open scheme-with-scsh
(subset srfi-1 (drop take))
define-record-types)
(files pps))

View File

@ -1,5 +0,0 @@
(define-structure pps pps-interface
(open scheme-with-scsh
(subset srfi-1 (drop take))
define-record-types)
(files pps))

8
scsh/pps/pkg-def.scm Normal file
View File

@ -0,0 +1,8 @@
(define-package "pps"
(0 0)
()
(install-file "load.scm" 'base)
(install-file "README" 'doc)
(install-file "NEWS" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "pps.scm" 'scheme))