Switch to pkg.racket-lang.org.

This commit is contained in:
Sam Tobin-Hochstadt 2013-01-22 14:59:20 -05:00
parent 15d41a787e
commit 295bb1e85e
4 changed files with 5 additions and 5 deletions

View File

@ -322,7 +322,7 @@
empty empty
(list "Someone tried to register your email address for an account on Planet2. If you want to authorize this registration and log in, please click the following link:"
""
(format "https://pnr.racket-lang.org~a" k-url)
(format "https://pkg.racket-lang.org~a" k-url)
""
"This link will expire, so if it is not available, you'll have to try to register again."))
(template

View File

@ -220,7 +220,7 @@
(λ ()
(match k
["indexes"
(list "https://pnr.racket-lang.org"
(list "https://pkg.racket-lang.org"
"https://planet-compat.racket-lang.org")]))))
(define (package-index-lookup pkg)

View File

@ -193,7 +193,7 @@ the @tech{package source} string and @racket['checksum] mapped to the
@racket['source] will be a remote URL.
PLT supports two @tech{package name resolvers} that are enabled by
default: @url{https://pnr.racket-lang.org} for new
default: @url{https://pkg.racket-lang.org} for new
packages and @url{https://planet-compat.racket-lang.org} for
automatically generated packages for old @|PLaneT|
packages. Anyone may host their own @tech{package name resolver}. The
@ -508,7 +508,7 @@ it by a simple name until it is listed on a @tech{package name resolver}.
If you'd like to use the official @tech{package name resolver}, browse
to
@link["https://pnr.racket-lang.org/manage/upload"]{https://pnr.racket-lang.org/manage/upload}
@link["https://pkg.racket-lang.org/manage/upload"]{https://pkg.racket-lang.org/manage/upload}
and upload a new package. You will need to create an account and log
in first.

View File

@ -6,6 +6,6 @@
(with-fake-root
(shelly-case
"reading and writing configs"
$ "raco pkg config indexes" =stdout> "https://pnr.racket-lang.org\nhttps://planet-compat.racket-lang.org\n"
$ "raco pkg config indexes" =stdout> "https://pkg.racket-lang.org\nhttps://planet-compat.racket-lang.org\n"
$ "raco pkg config --set indexes http://localhost:9000"
$ "raco pkg config indexes" =stdout> "http://localhost:9000\n")))