commit a9f6a438384a78dca4a256cb035475a58cd2e94e
parent 5929a60d3b754b446bc257c687487f9e80d49d12
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:
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/pkgs/macro-debugger-pkgs/macro-debugger-text-lib/info.rkt b/pkgs/macro-debugger-pkgs/macro-debugger-text-lib/info.rkt
@@ -1 +1,3 @@
#lang setup/infotab
+
+(define collection 'multi)
diff --git a/pkgs/macro-debugger-pkgs/macro-debugger/info.rkt b/pkgs/macro-debugger-pkgs/macro-debugger/info.rkt
@@ -1,4 +1,6 @@
#lang setup/infotab
+(define collection 'multi)
+
(define deps '("macro-debugger-text-lib"))
(define build-deps '("racket-doc"))