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
This commit is contained in:
Matthew Flatt 2013-06-29 05:42:38 -06:00
parent a9f6a43838
commit c5b72b68fd
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,6 @@
#lang setup/infotab
(define collection 'multi)
(define deps '("base"
"parser-tools-lib"
"unstable-list-lib"))

View File

@ -2,5 +2,14 @@
(define collection 'multi)
(define deps '("macro-debugger-text-lib"))
(define build-deps '("racket-doc"))
(define deps '("base"
"compatibility-lib"
"data-lib"
"drracket"
"gui-lib"
"images"
"parser-tools-lib"
"unstable-list-lib"
"macro-debugger-text-lib"))
(define build-deps '("scribble-lib"
"racket-doc"))