Moved package and interface definition to packages.scm. Generate load scripts.
This commit is contained in:
parent
04a99f66a6
commit
aeef47ae62
|
@ -8,7 +8,8 @@
|
||||||
-mindepth 1
|
-mindepth 1
|
||||||
-type d
|
-type d
|
||||||
! -name CVS
|
! -name CVS
|
||||||
! -name rt-modules)))
|
! -name rt-modules
|
||||||
|
! -name sequences)))
|
||||||
|
|
||||||
(define scsh-dirs
|
(define scsh-dirs
|
||||||
(run/strings (find scsh
|
(run/strings (find scsh
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
(define-package "srfi-37"
|
(define-package "srfi-37"
|
||||||
(0 4)
|
(0 4)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
(install-file "packages.scm" 'scheme)
|
||||||
(install-file "args-fold.scm" 'scheme))
|
(install-file "args-fold.scm" 'scheme))
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "banana"
|
(define-package "banana"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "binary-parse"
|
(define-package "binary-parse"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "cml"
|
(define-package "cml"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "concurrency"
|
(define-package "concurrency"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "continuation-data-type"
|
(define-package "continuation-data-type"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "exceptions"
|
(define-package "exceptions"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
(install-file "restart.scm" 'scheme)
|
(install-file "restart.scm" 'scheme)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "heap-images"
|
(define-package "heap-images"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "intsets"
|
(define-package "intsets"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "krims"
|
(define-package "krims"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "module-system"
|
(define-package "module-system"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "procedure-tables"
|
(define-package "procedure-tables"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "profile"
|
(define-package "profile"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "srfi-10"
|
(define-package "srfi-10"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "afs"
|
(define-package "afs"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "base64"
|
(define-package "base64"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "bytio"
|
(define-package "bytio"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "dir-streams"
|
(define-package "dir-streams"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "file-mode"
|
(define-package "file-mode"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "image-info"
|
(define-package "image-info"
|
||||||
(1 0)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "interaction"
|
(define-package "interaction"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "pps"
|
(define-package "pps"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "scsh-packages"
|
(define-package "scsh-packages"
|
||||||
(0 0)
|
(0 0)
|
||||||
()
|
()
|
||||||
; (install-file "load.scm" 'base)
|
;(write-to-load-script
|
||||||
|
; `((config)
|
||||||
|
; (load ,(absolute-file-name "packages.scm"
|
||||||
|
; (get-directory 'scheme #f)))))
|
||||||
; (install-file "README" 'doc)
|
; (install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "sequences"
|
(define-package "sequences"
|
||||||
(1 0)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "tiff"
|
(define-package "tiff"
|
||||||
(1 0)
|
(1 0)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(define-package "treaps"
|
(define-package "treaps"
|
||||||
(0 1)
|
(0 1)
|
||||||
()
|
()
|
||||||
(install-file "load.scm" 'base)
|
(write-to-load-script
|
||||||
|
`((config)
|
||||||
|
(load ,(absolute-file-name "packages.scm"
|
||||||
|
(get-directory 'scheme #f)))))
|
||||||
(install-file "README" 'doc)
|
(install-file "README" 'doc)
|
||||||
(install-file "NEWS" 'doc)
|
(install-file "NEWS" 'doc)
|
||||||
(install-string (COPYING) "COPYING" 'doc)
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
|
Loading…
Reference in New Issue