Install the packages.scm files.
This commit is contained in:
parent
fd392547db
commit
cd1d0fb4e7
3
NEWS
3
NEWS
|
@ -4,8 +4,9 @@ version 0.6
|
||||||
* Libraries now have their own NEWS.
|
* Libraries now have their own NEWS.
|
||||||
* AUTHORS files now must contain copyrights.
|
* AUTHORS files now must contain copyrights.
|
||||||
* New package system
|
* New package system
|
||||||
* interfaces.scm + packages.scm -> load.scm
|
* interfaces.scm + packages.scm -> packages.scm
|
||||||
* add pkg-def.scm
|
* add pkg-def.scm
|
||||||
|
* load.scm autogenerated.
|
||||||
* New scsh library: scsh-packages
|
* New scsh library: scsh-packages
|
||||||
* New s48 library: profiler
|
* New s48 library: profiler
|
||||||
* New s48 library: heap-images
|
* New s48 library: heap-images
|
||||||
|
|
|
@ -26,12 +26,13 @@ touch files in your library's tree.
|
||||||
pkg-def.scm -- (NEW in Sunterlib 0.6) the package definition for
|
pkg-def.scm -- (NEW in Sunterlib 0.6) the package definition for
|
||||||
your library. Use the COPYING procedure to generate the COPYING
|
your library. Use the COPYING procedure to generate the COPYING
|
||||||
file. For an example, see s48/args-fold/pkg-def.scm
|
file. For an example, see s48/args-fold/pkg-def.scm
|
||||||
load.scm -- (WAS interfaces.scm, packages.scm before Sunterlib 0.6)
|
|
||||||
the interfaces and packages defined by your library.
|
|
||||||
|
|
||||||
Our administration and the build systems depends on those files.
|
Our administration and the build systems depends on those files.
|
||||||
|
|
||||||
README -- a text file documenting your library. Recomended
|
README -- a text file documenting your library. Recomended
|
||||||
|
package.scm -- (WAS interfaces.scm, packages.scm before Sunterlib
|
||||||
|
0.6) the interfaces and packages defined by your
|
||||||
|
library. Recomended
|
||||||
|
|
||||||
3. Add an entry for your library to the NEWS file in the top-level
|
3. Add an entry for your library to the NEWS file in the top-level
|
||||||
directory of Sunterlib.
|
directory of Sunterlib.
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "banana.scm" 'scheme))
|
(install-file "banana.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "binary-parse.scm" 'scheme))
|
(install-file "binary-parse.scm" 'scheme))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "async-channels.scm" 'scheme)
|
(install-file "async-channels.scm" 'scheme)
|
||||||
(install-file "placeholder.scm" 'scheme)
|
(install-file "placeholder.scm" 'scheme)
|
||||||
(install-file "trans-id.scm" 'scheme)
|
(install-file "trans-id.scm" 'scheme)
|
||||||
|
|
|
@ -8,5 +8,6 @@
|
||||||
(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 "semaphore.scm" 'scheme)
|
(install-file "semaphore.scm" 'scheme)
|
||||||
(install-file "with-lock.scm" 'scheme))
|
(install-file "with-lock.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "continuation-data-type.scm" 'scheme))
|
(install-file "continuation-data-type.scm" 'scheme))
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
(get-directory 'scheme #f)))))
|
(get-directory 'scheme #f)))))
|
||||||
(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 "restart.scm" 'scheme)
|
(install-file "restart.scm" 'scheme)
|
||||||
(install-file "srfi-34.scm" 'scheme)
|
(install-file "srfi-34.scm" 'scheme)
|
||||||
(install-file "srfi-35.scm" 'scheme))
|
(install-file "srfi-35.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "reinitializer.scm" 'scheme))
|
(install-file "reinitializer.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "intsets.scm" 'scheme))
|
(install-file "intsets.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "krims.scm" 'scheme))
|
(install-file "krims.scm" 'scheme))
|
||||||
|
|
|
@ -8,5 +8,6 @@
|
||||||
(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 "overlapping-imports.scm" 'scheme)
|
(install-file "overlapping-imports.scm" 'scheme)
|
||||||
(install-file "rt-module.scm" 'scheme))
|
(install-file "rt-module.scm" 'scheme))
|
||||||
|
|
|
@ -8,5 +8,6 @@
|
||||||
(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 "procedure-tables.scm" 'scheme)
|
(install-file "procedure-tables.scm" 'scheme)
|
||||||
(install-file "procedure-hash.scm" 'scheme))
|
(install-file "procedure-hash.scm" 'scheme))
|
||||||
|
|
|
@ -8,5 +8,6 @@
|
||||||
(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 "no-profile.scm" 'scheme)
|
(install-file "no-profile.scm" 'scheme)
|
||||||
(install-file "profile.scm" 'scheme))
|
(install-file "profile.scm" 'scheme))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "srfi-10.scm" 'scheme)
|
(install-file "srfi-10.scm" 'scheme)
|
||||||
(install-file "test/math.scm" 'scheme)
|
(install-file "test/math.scm" 'scheme)
|
||||||
(install-file "test/pi.scm" 'scheme))
|
(install-file "test/pi.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "afs-fs.scm" 'scheme))
|
(install-file "afs-fs.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "base64.scm" 'scheme))
|
(install-file "base64.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "rw-bytes.scm" 'scheme))
|
(install-file "rw-bytes.scm" 'scheme))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "dir-stream.scm" 'scheme)
|
(install-file "dir-stream.scm" 'scheme)
|
||||||
(install-file "dir-stream-predicates.scm" 'scheme)
|
(install-file "dir-stream-predicates.scm" 'scheme)
|
||||||
(install-file "stream.scm" 'scheme))
|
(install-file "stream.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "file-mode.scm" 'scheme))
|
(install-file "file-mode.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "imxize.scm" 'scheme))
|
(install-file "imxize.scm" 'scheme))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "inspect-exception.scm" 'scheme)
|
(install-file "inspect-exception.scm" 'scheme)
|
||||||
(install-file "repl.scm" 'scheme)
|
(install-file "repl.scm" 'scheme)
|
||||||
(install-file "socket2stdport.scm" 'scheme))
|
(install-file "socket2stdport.scm" 'scheme))
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "pps.scm" 'scheme))
|
(install-file "pps.scm" 'scheme))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "baseqs.scm" 'scheme)
|
(install-file "baseqs.scm" 'scheme)
|
||||||
(install-file "genseqs.scm" 'scheme)
|
(install-file "genseqs.scm" 'scheme)
|
||||||
(install-file "uniseqs.scm" 'scheme)
|
(install-file "uniseqs.scm" 'scheme)
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(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 "aux.scm" 'scheme)
|
(install-file "aux.scm" 'scheme)
|
||||||
(install-file "tiff-prober.scm" 'scheme)
|
(install-file "tiff-prober.scm" 'scheme)
|
||||||
(install-file "vtiff.scm" 'scheme)
|
(install-file "vtiff.scm" 'scheme)
|
||||||
|
|
|
@ -8,4 +8,5 @@
|
||||||
(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 "treap.scm" 'scheme))
|
(install-file "treap.scm" 'scheme))
|
||||||
|
|
Loading…
Reference in New Issue