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.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
(define-package "krims"
 | 
			
		||||
  (0 0)
 | 
			
		||||
  (0 1)
 | 
			
		||||
  ()
 | 
			
		||||
  (install-file "load.scm" 'base)
 | 
			
		||||
  (install-file "README" 'doc)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,2 +1,2 @@
 | 
			
		|||
version 0.0
 | 
			
		||||
version 0.1
 | 
			
		||||
* New package system.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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). ]
 | 
			
		||||
 | 
			
		||||
                                *
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
(define-package "bytio"
 | 
			
		||||
  (0 0)
 | 
			
		||||
  (0 1)
 | 
			
		||||
  ()
 | 
			
		||||
  (install-file "load.scm" 'base)
 | 
			
		||||
  (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.
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
;;;                      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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
(define-package "image-info"
 | 
			
		||||
  (0 1)
 | 
			
		||||
  (1 0)
 | 
			
		||||
  ()
 | 
			
		||||
  (install-file "load.scm" 'base)
 | 
			
		||||
  (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.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
(define-package "sequences"
 | 
			
		||||
  (0 0)
 | 
			
		||||
  (1 0)
 | 
			
		||||
  ()
 | 
			
		||||
  (install-file "load.scm" 'base)
 | 
			
		||||
  (install-file "README" 'doc)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
version 0.1
 | 
			
		||||
version 1.0
 | 
			
		||||
* New package system.
 | 
			
		||||
 | 
			
		||||
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/
 | 
			
		||||
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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
(define-package "tiff"
 | 
			
		||||
  (0 1)
 | 
			
		||||
  (1 0)
 | 
			
		||||
  ()
 | 
			
		||||
  (install-file "load.scm" 'base)
 | 
			
		||||
  (install-file "README" 'doc)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue