Skip to content

Commit

Permalink
remove some unneeded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mflatt committed Oct 15, 2013
1 parent 44ee51f commit d5f6b72
Show file tree
Hide file tree
Showing 20 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion pkgs/contract-profile/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
(define build-deps '("racket-doc"
"scribble-lib"
"rackunit-lib"
"math"))
"math-lib"))

(define pkg-desc "Profiling tool for contracts")

Expand Down
2 changes: 2 additions & 0 deletions pkgs/db-pkgs/db/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

(define deps
'("base" "db-lib" "db-doc"))
(define implies
'("db-lib" "db-doc"))

(define pkg-desc "Database connectivity")

Expand Down
3 changes: 1 addition & 2 deletions pkgs/distro-build/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
(define collection "distro-build")

(define deps '("base"
"at-exp-lib"
"web-server-lib"
"scribble-lib"
"ds-store-lib"))
(define build-deps '("at-exp-lib"))

(define pkg-desc "Tools for constructing a distribution of Racket")

Expand Down
2 changes: 1 addition & 1 deletion pkgs/drracket-pkgs/drracket/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"net-lib"
"srfi-lib"
"srfi-doc"
"unstable"
"unstable-lib"
"drracket-plugin-lib"
"gui-pkg-manager-lib"))
(define build-deps '("mzscheme-doc"
Expand Down
7 changes: 4 additions & 3 deletions pkgs/games/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"drracket"
"gui-lib"
"net-lib"
"htdp"
"math"
"htdp-lib"
"math-lib"
"scribble-lib"
"sgl"
"srfi-lib"
Expand All @@ -21,7 +21,8 @@
"gui-doc"
"racket-doc"
"pict-lib"
"rackunit-lib"))
"rackunit-lib"
"htdp-doc"))

(define pkg-desc "Games")

Expand Down
4 changes: 2 additions & 2 deletions pkgs/gui-pkgs/gui-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
(define deps '("srfi-lite-lib"
"data-lib"
"base"
"rackunit-lib"
"syntax-color-lib"
"draw-lib"
"snip-lib"
Expand All @@ -22,7 +21,8 @@
("gui-ppc-macosx" #:platform "ppc-macosx")
("gui-win32-i386" #:platform "win32\\i386")
("gui-win32-x86_64" #:platform "win32\\x86_64")))
(define build-deps '("at-exp-lib"))
(define build-deps '("at-exp-lib"
"rackunit-lib"))

(define pkg-desc "implementation (no documentation) part of \"gui\"")

Expand Down
13 changes: 6 additions & 7 deletions pkgs/gui-pkgs/gui-test/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@

(define collection 'multi)

(define deps '("base"
"gui-lib"
"rackunit-lib"
"scribble-lib"
"pconvert-lib"
"compatibility-lib"))
(define deps '("base"))
(define build-deps '("scheme-lib"
"draw-lib"
"racket-test"
"sgl"
"snip-lib"
"wxme-lib"
))
"gui-lib"
"rackunit-lib"
"scribble-lib"
"pconvert-lib"
"compatibility-lib"))

(define pkg-desc "tests for \"gui\"")

Expand Down
3 changes: 2 additions & 1 deletion pkgs/htdp-pkgs/htdp-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"gui-lib"
"htdp-doc"
"html-lib"
"images"
"images-lib"
"images-gui-lib"
"pconvert-lib"
"r5rs-lib"
"sandbox-lib"
Expand Down
6 changes: 3 additions & 3 deletions pkgs/images-pkgs/images-doc/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

(define collection 'multi)

(define deps '("base"
"images-lib"))
(define build-deps '("draw-doc"
(define deps '("base"))
(define build-deps '("images-lib"
"draw-doc"
"gui-doc"
"pict-doc"
"slideshow-doc"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/lazy/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(define drracket-tool-names '("Lazy Racket"))
(define deps '("base"
"drracket-plugin-lib"
"htdp"
"htdp-lib"
"string-constants-lib"
"compatibility-lib"))
(define build-deps '("mzscheme-doc"
Expand Down
10 changes: 6 additions & 4 deletions pkgs/macro-debugger-pkgs/macro-debugger/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@
"compatibility-lib"
"data-lib"
"gui-lib"
"images"
"images-lib"
"images-gui-lib"
"parser-tools-lib"
"unstable-lib"
"unstable-list-lib"
"macro-debugger-text-lib"
"unstable"))
"macro-debugger-text-lib"))
(define build-deps '("rackunit-lib"
"scribble-lib"
"racket-doc"))
"racket-doc"
"unstable-doc"))

(define pkg-desc "The macro debugger tool")

Expand Down
3 changes: 2 additions & 1 deletion pkgs/picturing-programs/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
"draw-lib"
"gui-lib"
"snip-lib"
"htdp"))
"htdp-lib"))
(define build-deps '("racket-doc"
"htdp-doc"
"scribble-lib"))

(define pkg-desc "Teaching libraries for _Picturing Programs_")
Expand Down
4 changes: 1 addition & 3 deletions pkgs/racket-pkgs/racket-test/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
"sandbox-lib"
"compatibility-lib"
"planet-lib"
"net-lib"
"distributed-places-lib"
"eli-tester"
;; for `net` tests
"net-lib"
;; for `pkg` tests
"web-server-lib"
"rackunit-lib"
Expand All @@ -21,7 +20,6 @@
"scribble-lib"
"syntax-color-lib"
"typed-racket-lib"
"serialize-cstruct-lib"

"cext-lib"

Expand Down
2 changes: 1 addition & 1 deletion pkgs/realm/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

; (define scribblings '(("htdp.scrbl")))
(define deps '("base"
"htdp"))
"htdp-lib"))
(define build-deps '("rackunit-lib"))

(define pkg-desc "Sample code for _Realm of Racket_")
Expand Down
3 changes: 1 addition & 2 deletions pkgs/redex-pkgs/redex-examples/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"rackunit-lib"
"redex-lib"
"slideshow-lib"))
(define build-deps '("at-exp-lib"
"scribble-lib"))
(define build-deps '())

(define pkg-desc "PLT Redex examples")

Expand Down
6 changes: 3 additions & 3 deletions pkgs/scribble-pkgs/scribble-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"base"
"compatibility-lib"
"scribble-text-lib"
"planet-lib"
"planet-lib" ; used dynamically
"net-lib"
"at-exp-lib"
"draw-lib"
"syntax-color-lib"
"sandbox-lib"
"rackunit-lib"))
"sandbox-lib"))
(define build-deps '("rackunit-lib"))

(define pkg-desc "implementation (no documentation) part of \"scribble\"")

Expand Down
1 change: 0 additions & 1 deletion pkgs/srfi-pkgs/srfi-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
(define deps '("scheme-lib"
"base"
"srfi-lite-lib"
"r5rs-lib"
"r6rs-lib"
"compatibility-lib"))

Expand Down
1 change: 0 additions & 1 deletion pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"pconvert-lib"
"unstable-contract-lib"
"unstable-list-lib"
"unstable-debug-lib"
"compatibility-lib" ;; to assign types
"string-constants-lib"))

Expand Down
2 changes: 1 addition & 1 deletion pkgs/unstable-pkgs/unstable-lib/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scribble-lib"
"slideshow-lib"
"unstable-macro-testing-lib"))
(define imples '("unstable-macro-testing-lib"))
(define implies '("unstable-macro-testing-lib"))
(define build-deps '())

(define pkg-desc "implementation (no documentation) part of \"unstable\"")
Expand Down
2 changes: 1 addition & 1 deletion pkgs/web-server-pkgs/web-server-doc/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"compatibility-doc"
"db-doc"
"scribble-doc"
"unstable"
"unstable-doc"
"compatibility-lib"
"db-lib"
"net-lib"
Expand Down

0 comments on commit d5f6b72

Please sign in to comment.