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
This commit is contained in:
Matthew Flatt 2013-06-25 22:17:38 +02:00
parent e18a1de431
commit f9a8f87c15
3 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,6 @@
#lang setup/infotab
(define collection 'multi)
(define build-deps '("gui-lib"
"racket-doc"))

View File

@ -1,5 +1,7 @@
#lang setup/infotab
(define collection 'multi)
(define deps '("draw-lib"
"snip-lib"
"wxme-lib"

View File

@ -1,4 +1,6 @@
#lang setup/infotab
(define collection 'multi)
(define deps '("gui-lib"
"gui-doc"))