Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 18:30:44 +00:00
parent bb0a48574a
commit e52e38c1f5
15 changed files with 62 additions and 46 deletions

View File

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

2
scsh/afs/NEWS Normal file
View File

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

View File

@ -9,3 +9,11 @@
set-acl!
add-acl!
set-fs-command!))
(define-structure afs-fs afs-fs-interface
(open scheme-with-scsh
enum-sets
finite-types
srfi-1
srfi-13)
(files afs-fs))

View File

@ -1,7 +0,0 @@
(define-structure afs-fs afs-fs-interface
(open scheme-with-scsh
enum-sets
finite-types
srfi-1
srfi-13)
(files afs-fs))

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

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

View File

@ -1 +1 @@
Michel Schinz
Copyright (c) 2003 Michel Schinz

2
scsh/base64/NEWS Normal file
View File

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

View File

@ -4,3 +4,10 @@
base64-encode-string
base64-decode-string
base64-decode-port))
(define-structure base64 base64-interface
(open scheme-with-scsh
let-opt
byte-vectors
bytio)
(files base64))

View File

@ -1,6 +0,0 @@
(define-structure base64 base64-interface
(open scheme-with-scsh
let-opt
byte-vectors
bytio)
(files base64))

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

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

View File

@ -1 +1 @@
Rolf-Thomas Happe
Copyright (c) 2003 Rolf-Thomas Happe

2
scsh/bytio/NEWS Normal file
View File

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

View File

@ -1,28 +0,0 @@
; Copyright (c) 2003 RT Happe <rthappe at web de>
; See the file COPYING distributed with the Scheme Untergrund Library
(define-interface bytio-face
(export read-byte
peek-byte
write-byte
read-bytes!/partial
read-bytes/partial
read-bytes!
read-bytes
write-bytes/partial
write-bytes
))

View File

@ -1,11 +1,24 @@
; Copyright (c) 2003 RT Happe <rthappe at web de>
; See the file COPYING distributed with the Scheme Untergrund Library
(define-interface bytio-face
(export read-byte
peek-byte
write-byte
read-bytes!/partial
read-bytes/partial
read-bytes!
read-bytes
write-bytes/partial
write-bytes
))
;; byte (rather than character) i/o
(define-structure bytio bytio-face
(open krims ; assert
sequence-lib ; subsequence sequence-length
byte-vectors
byte-vectors
let-opt ; let-optionals
srfi-23 ; error
scsh ; fdes & port stuff, bitwise-and
@ -16,4 +29,3 @@
primitives ; copy-bytes!
)
(files rw-bytes))

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

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