Version: 4.2.2
2 Package Utilities
This module provides definitions to easily create PLaneT packages
along with their documentation (using the automatic scribble parser,
see Scribble Definition Parser).
All the functions of this module are meant to be used
when current-directory is correctly set to the
directory of your package. This is generally true when evaluating
a file of your package in DrScheme.
A parameter controlling the name of the package.
By default it is the name of the current directory.
A parameter controlling the major-version number of the current package (default: 1).
A parameter controlling the minor-version number of the current package (default: 0).
A parameter controlling the username number of the current package.
By default it is the username of the OS environment.
Creates a environment suitable for calling the functions of this module,
by setting the
package-username,
major-version,
minor-version and
package-name parameters to the given values.
Call this function before any other if you want to change the default values
of the parameters.
Launches the
"planet" executable with the "create" option.
The package file is put in the parent directory of the package.
Using the planet executable seems to provide more debug info than
make-planet-archive.
Launches the
"planet" executable with the "file-inject" option
on the current package file in the parent directory of the
current-directory.
The package file must exist.
Calls
remove-pkg on the current package environment settings.
Creates the whole Scribble string associated
with
filename, automatically looking for the provided definitions
(using
quote-require) and adding header information.
Writes the
".scrbl" file associated with
file in the directory
dir.
The
exists argument is the same as for
with-output-to-file, and
the
dir argument is the same as for
build-path.
(Re)writes the main source file of the package, using require-provide
for each file of the package.
Writes the main
".scrbl" file in the
dir directory with a table of contents.
If
exists is
'error,
write-main-doc only displays
a warning and does not overwrite the file.
If modules have been added to the package since the last
execution of
(planet-build),
either the user should delete the
main file so that it will be rewritten,
or the user should add the inclusion of the modules himself in the
main file.
Writes a stub of the the
"info.ss" file that ought to be modified
by the user.
The argument
dir is the sub-directory of the documentation.
See
write-main-doc for information about the
exists option.
Calls
write-main-src on
main-src,
write-main-doc on
main-doc,
if they are provided.
Calls
write-info if
info? is
#t, and creates the documentation
directory
dir if it does not already exist.
(Re)writes the ".scrbl" file for all other ".ss" or ".scm" file
in the directory (but not in sub-directories), without warning.
An exception list of files that must not be included
in the process can be given through except.
Deletes all ".bak" files, in the current directory and
its sub-directories, that may have been created by DrScheme.
Creates a PLaneT hard link to the current directory
so that it is considered as a package.
Removes the planet hard link of the current package.