Changed to new package system.
This commit is contained in:
parent
c6e5882d77
commit
7b6e2dc309
|
@ -1 +1 @@
|
||||||
Rolf-Thomas Happe, (credit to Marco Schmidt)
|
Copyright (c) 2003 Rolf-Thomas Happe
|
||||||
|
|
|
@ -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
|
|
@ -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
|
|
||||||
))
|
|
|
@ -1,6 +1,22 @@
|
||||||
; Copyright (c) 2003 RT Happe <rthappe at web de>
|
; Copyright (c) 2003 RT Happe <rthappe at web de>
|
||||||
; See the file COPYING distributed with the Scheme Untergrund Library
|
; 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
|
;;; refers to structures SRFI-9+ and KRIMS from sunterlib/s48/krims
|
||||||
;;; BYTIO from sunterlib/s48/bytio
|
;;; BYTIO from sunterlib/s48/bytio
|
||||||
;;; SEQUENCE-LIB from sunterlib/s48/sequences
|
;;; SEQUENCE-LIB from sunterlib/s48/sequences
|
|
@ -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))
|
|
@ -1 +1 @@
|
||||||
Martin Gasbichler
|
Copyright (c) 2003 Martin Gasbichler
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
version 0.0
|
||||||
|
* New package system.
|
|
@ -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))
|
|
|
@ -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
|
(define-structure repls repls-interface
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
command-levels
|
command-levels
|
||||||
|
@ -8,7 +20,7 @@
|
||||||
(files repl))
|
(files repl))
|
||||||
|
|
||||||
(define-structure inspect-exception inspect-exception-interface
|
(define-structure inspect-exception inspect-exception-interface
|
||||||
|
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
rt-modules
|
rt-modules
|
||||||
exceptions
|
exceptions
|
|
@ -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))
|
|
@ -1 +1 @@
|
||||||
Martin Gasbichler
|
Copyright (c) 2003 Martin Gasbichler
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
version 0.0
|
||||||
|
* New package system.
|
|
@ -1,6 +1,6 @@
|
||||||
(define-interface pps-interface
|
(define-interface pps-interface
|
||||||
(export pps
|
(export pps
|
||||||
|
|
||||||
process-info?
|
process-info?
|
||||||
process-info-pid
|
process-info-pid
|
||||||
process-info-ppid
|
process-info-ppid
|
||||||
|
@ -10,8 +10,14 @@
|
||||||
process-info-saved-set-uid
|
process-info-saved-set-uid
|
||||||
process-info-real-gid
|
process-info-real-gid
|
||||||
process-info-effective-gid
|
process-info-effective-gid
|
||||||
process-info-saved-set-gid
|
process-info-saved-set-gid
|
||||||
process-info-time
|
process-info-time
|
||||||
process-info-tty
|
process-info-tty
|
||||||
process-info-executable
|
process-info-executable
|
||||||
process-info-command-line))
|
process-info-command-line))
|
||||||
|
|
||||||
|
(define-structure pps pps-interface
|
||||||
|
(open scheme-with-scsh
|
||||||
|
(subset srfi-1 (drop take))
|
||||||
|
define-record-types)
|
||||||
|
(files pps))
|
|
@ -1,5 +0,0 @@
|
||||||
(define-structure pps pps-interface
|
|
||||||
(open scheme-with-scsh
|
|
||||||
(subset srfi-1 (drop take))
|
|
||||||
define-record-types)
|
|
||||||
(files pps))
|
|
|
@ -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))
|
Loading…
Reference in New Issue