setup-plt -> raco setup

Survived unnoticed for 6+ years.
This commit is contained in:
Vincent St-Amour 2016-08-24 15:33:07 -05:00
parent 6983adc31d
commit 00f0311473
6 changed files with 5 additions and 7 deletions

View File

@ -51,7 +51,7 @@ the following additional associations apply to launchers:
@item{@racket['independent?] (Windows) --- a boolean; @racket[#t] @item{@racket['independent?] (Windows) --- a boolean; @racket[#t]
creates an old-style launcher that work with any creates an old-style launcher that work with any
Racket or GRacket binary, like @exec{setup-plt.exe}. No other Racket or GRacket binary, like @exec{raco.exe}. No other
@racket[aux] associations are used for an old-style launcher.} @racket[aux] associations are used for an old-style launcher.}
@item{@racket['exe-name] (Mac OS X, @racket['script-3m] or @item{@racket['exe-name] (Mac OS X, @racket['script-3m] or

View File

@ -374,7 +374,7 @@ marks include @racket[managed-compiled-context-key] keys.
@defboolparam[trust-existing-zos trust?]{ @defboolparam[trust-existing-zos trust?]{
A parameter that is intended for use by @exec{setup-plt} when A parameter that is intended for use by @exec{raco setup} when
installing with pre-built @filepath{.zo} files. It causes a installing with pre-built @filepath{.zo} files. It causes a
compilation-manager @racket[load/use-compiled] handler to ``touch'' compilation-manager @racket[load/use-compiled] handler to ``touch''
out-of-date @filepath{.zo} files instead of re-compiling from source.} out-of-date @filepath{.zo} files instead of re-compiling from source.}

View File

@ -49,8 +49,6 @@
@(define ref-src @(define ref-src
'(lib "scribblings/reference/reference.scrbl")) '(lib "scribblings/reference/reference.scrbl"))
@(define setup-plt @exec{setup-plt})
@(define (defaults v) @(define (defaults v)
@elem{The default is @|v|.}) @elem{The default is @|v|.})

View File

@ -131,7 +131,7 @@ Various common pieces of code that both the client and server need to access
;; lookup-package-by-keys : string string nat nat nat -> (list path string string (listof string) nat nat) | #f ;; lookup-package-by-keys : string string nat nat nat -> (list path string string (listof string) nat nat) | #f
;; looks up and returns a list representation of the package named by the given owner, ;; looks up and returns a list representation of the package named by the given owner,
;; package name, major and (exact) minor version. ;; package name, major and (exact) minor version.
;; this function is intended to be useful for setup-plt and other applications that need to know where planet ;; this function is intended to be useful for raco setup and other applications that need to know where planet
;; packages live ;; packages live
(define (lookup-package-by-keys owner name maj min-lo min-hi) (define (lookup-package-by-keys owner name maj min-lo min-hi)
(let ([result (let ([result

View File

@ -16,7 +16,7 @@
,(cons (planet:CACHE-DIR) 4) ,(cons (planet:CACHE-DIR) 4)
;; add planet links, each as a root (if there is a change in ;; add planet links, each as a root (if there is a change in
;; the format, this will just ignore these paths, but these ;; the format, this will just ignore these paths, but these
;; collections will throw an error in setup-plt) ;; collections will throw an error in raco setup)
,@(with-handlers ([exn? (lambda (e) ,@(with-handlers ([exn? (lambda (e)
(printf "WARNING: bad planet links at ~a:\n ~a" (printf "WARNING: bad planet links at ~a:\n ~a"
(planet:HARD-LINK-FILE) (exn-message e)) (planet:HARD-LINK-FILE) (exn-message e))

View File

@ -4,7 +4,7 @@
;; given directory, or 'all if the directory is completely omitted. Considers ;; given directory, or 'all if the directory is completely omitted. Considers
;; the local info.rkt as well as info.rkt in parent directories all the way to a ;; the local info.rkt as well as info.rkt in parent directories all the way to a
;; collection root. (Could be a bit easier using `find-relevant-directories', ;; collection root. (Could be a bit easier using `find-relevant-directories',
;; but it needs to be available for setup-plt, before the "info-domain" caches ;; but it needs to be available for raco setup, before the "info-domain" caches
;; are created.) ;; are created.)
(provide omitted-paths) (provide omitted-paths)