bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 93c904b2b5bad50fa32b9090ba27e2029d32b505
parent 86f717015189fc3b3c9be7e2f9c74dbac60be73d
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Tue, 25 Jun 2013 22:17:38 +0200

a step toward single-collection packages as default

A package's "info.rkt" file should define `collection' as a
string to name a single-collection package's collection, or as
the symbol 'multi to declare the package as multi-collection.
If `collection' is 'same-as-pkg, then the package name is used
as the collection name.

The default for `collection' is 'multi for now, but the intent
is to change the default to 'same-as-pkg after a conversion
period. Also, support for a `single-collection' definition remains
in place, but it wil be removed.

original commit: c738a6aa3eee89a82d577dd35c70eca8ed32f5b4

Diffstat:
Mpkgs/scribble-pkgs/scribble-doc/info.rkt | 2++
Mpkgs/scribble-pkgs/scribble-lib/info.rkt | 2++
Mpkgs/scribble-pkgs/scribble/info.rkt | 2++
Mpkgs/unstable-parameter-group-lib/info.rkt | 2++
4 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/pkgs/scribble-pkgs/scribble-doc/info.rkt b/pkgs/scribble-pkgs/scribble-doc/info.rkt @@ -1,4 +1,6 @@ #lang setup/infotab +(define collection 'multi) + (define build-deps '("scribble-lib" "racket-doc")) diff --git a/pkgs/scribble-pkgs/scribble-lib/info.rkt b/pkgs/scribble-pkgs/scribble-lib/info.rkt @@ -1,5 +1,7 @@ #lang setup/infotab +(define collection 'multi) + (define deps '("at-exp-lib" "draw-lib" "syntax-color-lib")) diff --git a/pkgs/scribble-pkgs/scribble/info.rkt b/pkgs/scribble-pkgs/scribble/info.rkt @@ -1,4 +1,6 @@ #lang setup/infotab +(define collection 'multi) + (define deps '("scribble-lib" "scribble-doc")) diff --git a/pkgs/unstable-parameter-group-lib/info.rkt b/pkgs/unstable-parameter-group-lib/info.rkt @@ -1 +1,3 @@ #lang setup/infotab + +(define collection 'multi)