make user PLaneT install path use installation name instead of version

This commit is contained in:
Matthew Flatt 2013-08-02 10:44:16 -06:00
parent d63b49ccbb
commit ac20e7fc0d
2 changed files with 8 additions and 6 deletions

View File

@ -9,7 +9,8 @@
planet/util planet/util
planet/version planet/version
planet/syntax planet/syntax
planet/scribble)) planet/scribble
setup/dirs))
@title{Utility Libraries} @title{Utility Libraries}
@ -150,7 +151,7 @@ manually edit the @filepath{config.rkt} file.
@defparam[PLANET-DIR dir path-string?]{ @defparam[PLANET-DIR dir path-string?]{
The root of the version-specific PLaneT files. The root of the version-specific PLaneT files.
Defaults to @racket[(build-path (PLANET-BASE-DIR) (version))]. Defaults to @racket[(build-path (PLANET-BASE-DIR) (get-installation-name))].
} }
@defparam[CACHE-DIR dir path-string?]{ @defparam[CACHE-DIR dir path-string?]{
@ -206,7 +207,7 @@ The port on the server the client should connect to if
@defparam[HARD-LINK-FILE file path?]{ @defparam[HARD-LINK-FILE file path?]{
The name of the file where hard links are saved. Defaults to The name of the file where hard links are saved. Defaults to
@racket[(build-path (PLANET-BASE-DIR) (version) "HARD-LINKS")]. @racket[(build-path (PLANET-BASE-DIR) (get-installation-name) "HARD-LINKS")].
} }
@defparam[PLANET-ARCHIVE-FILTER regexp-filter (or/c #f string? regexp?)]{ @defparam[PLANET-ARCHIVE-FILTER regexp-filter (or/c #f string? regexp?)]{
A regular-expression based filter that is used to skip files when building a @|PLaneT| archive. A regular-expression based filter that is used to skip files when building a @|PLaneT| archive.

View File

@ -1,5 +1,6 @@
#lang racket/base #lang racket/base
(require "private/define-config.rkt") (require "private/define-config.rkt"
setup/dirs)
(define-parameters (define-parameters
(PLANET-SERVER-NAME "planet.racket-lang.org") (PLANET-SERVER-NAME "planet.racket-lang.org")
(PLANET-SERVER-PORT 270) (PLANET-SERVER-PORT 270)
@ -10,11 +11,11 @@
(build-path (find-system-path 'addon-dir) (build-path (find-system-path 'addon-dir)
"planet" "planet"
(PLANET-CODE-VERSION))))) (PLANET-CODE-VERSION)))))
(PLANET-DIR (build-path (PLANET-BASE-DIR) (version))) (PLANET-DIR (build-path (PLANET-BASE-DIR) (get-installation-name)))
(CACHE-DIR (build-path (PLANET-DIR) "cache")) (CACHE-DIR (build-path (PLANET-DIR) "cache"))
(UNINSTALLED-PACKAGE-CACHE (build-path (PLANET-BASE-DIR) "packages")) (UNINSTALLED-PACKAGE-CACHE (build-path (PLANET-BASE-DIR) "packages"))
(LINKAGE-FILE (build-path (PLANET-DIR) "LINKAGE")) (LINKAGE-FILE (build-path (PLANET-DIR) "LINKAGE"))
(HARD-LINK-FILE (build-path (PLANET-BASE-DIR) (version) "HARD-LINKS")) (HARD-LINK-FILE (build-path (PLANET-BASE-DIR) (get-installation-name) "HARD-LINKS"))
(LOG-FILE (build-path (PLANET-DIR) "INSTALL-LOG")) (LOG-FILE (build-path (PLANET-DIR) "INSTALL-LOG"))
(DEFAULT-PACKAGE-LANGUAGE (version)) (DEFAULT-PACKAGE-LANGUAGE (version))