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 2ceea4ea7b5e3f6a5a4aa82cac174f4f025f3abe
parent d96417e7952362c269b1079957645aede7a26a21
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Sat, 29 Jun 2013 05:42:38 -0600

auto-fix dependencies in "pkgs"

Left one dependency broken: "drracket" currently depends on "htdp" for
a test. That needs to be fixed by removing the dependency (moving the
test to "htdp?), instead of changing the declared dependencies.

original commit: 51290fd2a95def6bb3b6d3d735cb62444e157553

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

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