From 04a99f66a69b1144139506821aeb40387ecf7b0f Mon Sep 17 00:00:00 2001 From: Rolf-Thomas Happe Date: Sun, 14 Mar 2004 19:39:49 +0000 Subject: [PATCH] version numbers, explicit project dependencies --- s48/krims/NEWS | 2 +- s48/krims/pkg-def.scm | 2 +- scsh/bytio/NEWS | 2 +- scsh/bytio/README | 15 ++++++++++++--- scsh/bytio/pkg-def.scm | 2 +- scsh/image-info/BLURB | 2 +- scsh/image-info/NEWS | 2 +- scsh/image-info/README | 10 ++++++++++ scsh/image-info/load.scm | 2 +- scsh/image-info/pkg-def.scm | 2 +- scsh/sequences/BLURB | 3 ++- scsh/sequences/NEWS | 2 +- scsh/sequences/README | 13 ++++++++++++- scsh/sequences/pkg-def.scm | 2 +- scsh/tiff/BLURB | 2 +- scsh/tiff/NEWS | 2 +- scsh/tiff/README | 11 +++++++++++ scsh/tiff/pkg-def.scm | 2 +- 18 files changed, 60 insertions(+), 18 deletions(-) diff --git a/s48/krims/NEWS b/s48/krims/NEWS index 26f793c..f54a97c 100644 --- a/s48/krims/NEWS +++ b/s48/krims/NEWS @@ -1,2 +1,2 @@ -version 0.0 +version 0.1 * New package system. diff --git a/s48/krims/pkg-def.scm b/s48/krims/pkg-def.scm index 8bf18c0..7e75b7b 100644 --- a/s48/krims/pkg-def.scm +++ b/s48/krims/pkg-def.scm @@ -1,5 +1,5 @@ (define-package "krims" - (0 0) + (0 1) () (install-file "load.scm" 'base) (install-file "README" 'doc) diff --git a/scsh/bytio/NEWS b/scsh/bytio/NEWS index 26f793c..f54a97c 100644 --- a/scsh/bytio/NEWS +++ b/scsh/bytio/NEWS @@ -1,2 +1,2 @@ -version 0.0 +version 0.1 * New package system. diff --git a/scsh/bytio/README b/scsh/bytio/README index 10d23dd..39a3155 100644 --- a/scsh/bytio/README +++ b/scsh/bytio/README @@ -1,6 +1,15 @@ 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) (peek-byte [inport]) --> n in [0:256) @@ -9,7 +18,7 @@ Procedures Synopsis: Obvious byte analogues to Scheme's character readers and writers. [ Presently these are only wrappers around the char procs. 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). ] * @@ -24,7 +33,7 @@ we rever to raw numeric meat, small integers in [0:256). ] Synopsis: Obvious byte analogues of the corresponding string procs documented in the scsh manual, with byte-vectors BYTES replacing strings. (String arguments BYTES work, too.) - + Notes: * Byte-vector constructors etc. are in structure BYTE-VECTORS. * The present implementation avoids allocating temp buffers by not diff --git a/scsh/bytio/pkg-def.scm b/scsh/bytio/pkg-def.scm index b39047e..954571c 100644 --- a/scsh/bytio/pkg-def.scm +++ b/scsh/bytio/pkg-def.scm @@ -1,5 +1,5 @@ (define-package "bytio" - (0 0) + (0 1) () (install-file "load.scm" 'base) (install-file "README" 'doc) diff --git a/scsh/image-info/BLURB b/scsh/image-info/BLURB index 7e65a75..5ddacc6 100644 --- a/scsh/image-info/BLURB +++ b/scsh/image-info/BLURB @@ -1 +1 @@ -image-info: Extract vital stats from images (graphics, that is). +image-info: Extract vital stats from (graphic) images. diff --git a/scsh/image-info/NEWS b/scsh/image-info/NEWS index 11e7984..a88e54c 100644 --- a/scsh/image-info/NEWS +++ b/scsh/image-info/NEWS @@ -1,4 +1,4 @@ -version 0.1 +version 1.0 * New package system. version 0.0 2003-02-16 diff --git a/scsh/image-info/README b/scsh/image-info/README index 91cd5bf..0a9b664 100644 --- a/scsh/image-info/README +++ b/scsh/image-info/README @@ -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 exported by structure IMAGE-INFO. IMAGE-DIMENSION is the convenient diff --git a/scsh/image-info/load.scm b/scsh/image-info/load.scm index 39f981b..3313947 100644 --- a/scsh/image-info/load.scm +++ b/scsh/image-info/load.scm @@ -19,7 +19,7 @@ ;;; refers to structures SRFI-9+ and KRIMS from sunterlib/s48/krims ;;; BYTIO from sunterlib/s48/bytio -;;; SEQUENCE-LIB from sunterlib/s48/sequences +;;; SEQUENCE-LIB from sunterlib/scsh/sequences ;; extracting w x h etc. from images (define-structure image-info image-info-face diff --git a/scsh/image-info/pkg-def.scm b/scsh/image-info/pkg-def.scm index 54d9586..62a2cbd 100644 --- a/scsh/image-info/pkg-def.scm +++ b/scsh/image-info/pkg-def.scm @@ -1,5 +1,5 @@ (define-package "image-info" - (0 1) + (1 0) () (install-file "load.scm" 'base) (install-file "README" 'doc) diff --git a/scsh/sequences/BLURB b/scsh/sequences/BLURB index 65587c2..44fe238 100644 --- a/scsh/sequences/BLURB +++ b/scsh/sequences/BLURB @@ -1 +1,2 @@ -sequences: General and abstract sequences. Vectors. +sequences: Procedures for abstract and general sequences, in particular + vectors. diff --git a/scsh/sequences/NEWS b/scsh/sequences/NEWS index 26f793c..8818ae7 100644 --- a/scsh/sequences/NEWS +++ b/scsh/sequences/NEWS @@ -1,2 +1,2 @@ -version 0.0 +version 1.0 * New package system. diff --git a/scsh/sequences/README b/scsh/sequences/README index 04fc421..5875ff3 100644 --- a/scsh/sequences/README +++ b/scsh/sequences/README @@ -1,4 +1,4 @@ -sunterlib/s48/sequences -- Finite Sequences +sunterlib/scsh/sequences -- Finite Sequences A sequence library in various structures dealing with * abstract sequences defined by their behaviour @@ -6,6 +6,17 @@ A sequence library in various structures dealing with * vectors in particular [ 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: * ABSEQUENCES -- basic procedures for abstract sequences, contained in * SEQUENCE-LIB -- procedures for general (and abstract) sequences diff --git a/scsh/sequences/pkg-def.scm b/scsh/sequences/pkg-def.scm index bf97b34..582bc3c 100644 --- a/scsh/sequences/pkg-def.scm +++ b/scsh/sequences/pkg-def.scm @@ -1,5 +1,5 @@ (define-package "sequences" - (0 0) + (1 0) () (install-file "load.scm" 'base) (install-file "README" 'doc) diff --git a/scsh/tiff/BLURB b/scsh/tiff/BLURB index ec8c1b7..08c227c 100644 --- a/scsh/tiff/BLURB +++ b/scsh/tiff/BLURB @@ -1 +1 @@ -tiff: Read entries from the (first) image directory of tiff files. +tiff: Read entries from the (first) image directory of tiff files. diff --git a/scsh/tiff/NEWS b/scsh/tiff/NEWS index bd9fb75..295ba12 100644 --- a/scsh/tiff/NEWS +++ b/scsh/tiff/NEWS @@ -1,4 +1,4 @@ -version 0.1 +version 1.0 * New package system. version 0.0 2003-10-07 diff --git a/scsh/tiff/README b/scsh/tiff/README index 6bd2646..6bda39f 100644 --- a/scsh/tiff/README +++ b/scsh/tiff/README @@ -6,6 +6,17 @@ http://okmij.org/ftp/Scheme/binary-io.html#tiff This distribution comes with two family-friendly tiff files in sunterlib/ scsh/tiff/. + +** Package Dependencies + +TIFF's structures depend on structures from these other sunterlib projects: + + krims + sequences + + * + + ** Reading TIFF files [ Oleg's announcement. Main changes to the announced library: modularisation diff --git a/scsh/tiff/pkg-def.scm b/scsh/tiff/pkg-def.scm index 27c4099..f38b1b6 100644 --- a/scsh/tiff/pkg-def.scm +++ b/scsh/tiff/pkg-def.scm @@ -1,5 +1,5 @@ (define-package "tiff" - (0 1) + (1 0) () (install-file "load.scm" 'base) (install-file "README" 'doc)