version numbers, explicit project dependencies
This commit is contained in:
parent
73906656e2
commit
04a99f66a6
|
@ -1,2 +1,2 @@
|
||||||
version 0.0
|
version 0.1
|
||||||
* New package system.
|
* New package system.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define-package "krims"
|
(define-package "krims"
|
||||||
(0 0)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(install-file "load.scm" 'base)
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version 0.0
|
version 0.1
|
||||||
* New package system.
|
* New package system.
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
sunterlib/scsh/bytio -- Byte I/O
|
sunterlib/scsh/bytio -- Byte I/O
|
||||||
|
|
||||||
Procedures
|
Package-Dependencies
|
||||||
|
|
||||||
|
BYTIO's structure BYTIO depends on structures from these other sunterlib
|
||||||
|
projects:
|
||||||
|
krims
|
||||||
|
sequences
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
|
Procedures exported by BYTIO
|
||||||
|
|
||||||
(read-byte [inport]) --> n in [0:256)
|
(read-byte [inport]) --> n in [0:256)
|
||||||
(peek-byte [inport]) --> n in [0:256)
|
(peek-byte [inport]) --> n in [0:256)
|
||||||
|
@ -9,7 +18,7 @@ Procedures
|
||||||
Synopsis: Obvious byte analogues to Scheme's character readers and
|
Synopsis: Obvious byte analogues to Scheme's character readers and
|
||||||
writers. [ Presently these are only wrappers around the char procs.
|
writers. [ Presently these are only wrappers around the char procs.
|
||||||
That means, the system reads octets, cooks them into characters, that
|
That means, the system reads octets, cooks them into characters, that
|
||||||
we rever to raw numeric meat, small integers in [0:256). ]
|
we revert to raw numeric meat, i.e. small integers in [0:256). ]
|
||||||
|
|
||||||
*
|
*
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define-package "bytio"
|
(define-package "bytio"
|
||||||
(0 0)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(install-file "load.scm" 'base)
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
image-info: Extract vital stats from images (graphics, that is).
|
image-info: Extract vital stats from (graphic) images.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version 0.1
|
version 1.0
|
||||||
* New package system.
|
* New package system.
|
||||||
|
|
||||||
version 0.0 2003-02-16
|
version 0.0 2003-02-16
|
||||||
|
|
|
@ -27,6 +27,16 @@ inline images programmatically, like so:
|
||||||
|
|
||||||
*
|
*
|
||||||
|
|
||||||
|
Package Dependencies
|
||||||
|
|
||||||
|
IMAGE-INFO's structures depend on structures from the following other
|
||||||
|
sunterlib projects:
|
||||||
|
krims
|
||||||
|
bytio
|
||||||
|
sequences
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
Procedures
|
Procedures
|
||||||
|
|
||||||
exported by structure IMAGE-INFO. IMAGE-DIMENSION is the convenient
|
exported by structure IMAGE-INFO. IMAGE-DIMENSION is the convenient
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
;;; 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/scsh/sequences
|
||||||
|
|
||||||
;; extracting w x h etc. from images
|
;; extracting w x h etc. from images
|
||||||
(define-structure image-info image-info-face
|
(define-structure image-info image-info-face
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define-package "image-info"
|
(define-package "image-info"
|
||||||
(0 1)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(install-file "load.scm" 'base)
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
sequences: General and abstract sequences. Vectors.
|
sequences: Procedures for abstract and general sequences, in particular
|
||||||
|
vectors.
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version 0.0
|
version 1.0
|
||||||
* New package system.
|
* New package system.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
sunterlib/s48/sequences -- Finite Sequences
|
sunterlib/scsh/sequences -- Finite Sequences
|
||||||
|
|
||||||
A sequence library in various structures dealing with
|
A sequence library in various structures dealing with
|
||||||
* abstract sequences defined by their behaviour
|
* abstract sequences defined by their behaviour
|
||||||
|
@ -6,6 +6,17 @@ A sequence library in various structures dealing with
|
||||||
* vectors in particular
|
* vectors in particular
|
||||||
[ for list and string libraries ,open srfi-1 resp. srfi-13 ]
|
[ for list and string libraries ,open srfi-1 resp. srfi-13 ]
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
|
Package Dependencies
|
||||||
|
|
||||||
|
SEQUENCES' structures depend on structures from this other sunterlib
|
||||||
|
project:
|
||||||
|
krims
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
The library comes in three structures:
|
The library comes in three structures:
|
||||||
* ABSEQUENCES -- basic procedures for abstract sequences, contained in
|
* ABSEQUENCES -- basic procedures for abstract sequences, contained in
|
||||||
* SEQUENCE-LIB -- procedures for general (and abstract) sequences
|
* SEQUENCE-LIB -- procedures for general (and abstract) sequences
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define-package "sequences"
|
(define-package "sequences"
|
||||||
(0 0)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(install-file "load.scm" 'base)
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version 0.1
|
version 1.0
|
||||||
* New package system.
|
* New package system.
|
||||||
|
|
||||||
version 0.0 2003-10-07
|
version 0.0 2003-10-07
|
||||||
|
|
|
@ -6,6 +6,17 @@ http://okmij.org/ftp/Scheme/binary-io.html#tiff
|
||||||
This distribution comes with two family-friendly tiff files in sunterlib/
|
This distribution comes with two family-friendly tiff files in sunterlib/
|
||||||
scsh/tiff/.
|
scsh/tiff/.
|
||||||
|
|
||||||
|
|
||||||
|
** Package Dependencies
|
||||||
|
|
||||||
|
TIFF's structures depend on structures from these other sunterlib projects:
|
||||||
|
|
||||||
|
krims
|
||||||
|
sequences
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
** Reading TIFF files
|
** Reading TIFF files
|
||||||
|
|
||||||
[ Oleg's announcement. Main changes to the announced library: modularisation
|
[ Oleg's announcement. Main changes to the announced library: modularisation
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(define-package "tiff"
|
(define-package "tiff"
|
||||||
(0 1)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(install-file "load.scm" 'base)
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
|
|
Loading…
Reference in New Issue