diff --git a/pkgs/racket-pkgs/racket-test/info.rkt b/pkgs/racket-pkgs/racket-test/info.rkt index cf7c85e6ab..b85118802f 100644 --- a/pkgs/racket-pkgs/racket-test/info.rkt +++ b/pkgs/racket-pkgs/racket-test/info.rkt @@ -1,4 +1,3 @@ #lang setup/infotab (define collection 'multi) - diff --git a/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt b/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt index eec4916001..692d697cbe 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt @@ -6,6 +6,7 @@ "pconvert-lib" "unstable-contract-lib" "unstable-list-lib" + "unstable-debug-lib" "compatibility-lib" ;; to assign types "string-constants-lib")) diff --git a/pkgs/unstable-debug-lib/info.rkt b/pkgs/unstable-debug-lib/info.rkt new file mode 100644 index 0000000000..363e0e12c6 --- /dev/null +++ b/pkgs/unstable-debug-lib/info.rkt @@ -0,0 +1,5 @@ +#lang setup/infotab + +(define collection 'multi) +(define deps '("base" + "unstable-pretty-lib")) diff --git a/pkgs/typed-racket-pkgs/typed-racket-lib/unstable/debug.rkt b/pkgs/unstable-debug-lib/unstable/debug.rkt similarity index 100% rename from pkgs/typed-racket-pkgs/typed-racket-lib/unstable/debug.rkt rename to pkgs/unstable-debug-lib/unstable/debug.rkt diff --git a/pkgs/unstable-flonum-lib/info.rkt b/pkgs/unstable-flonum-lib/info.rkt new file mode 100644 index 0000000000..e43df74125 --- /dev/null +++ b/pkgs/unstable-flonum-lib/info.rkt @@ -0,0 +1,4 @@ +#lang setup/infotab + +(define collection 'multi) +(define deps '("base")) diff --git a/pkgs/unstable/flonum.rkt b/pkgs/unstable-flonum-lib/unstable/flonum.rkt similarity index 100% rename from pkgs/unstable/flonum.rkt rename to pkgs/unstable-flonum-lib/unstable/flonum.rkt diff --git a/pkgs/unstable-pretty-lib/info.rkt b/pkgs/unstable-pretty-lib/info.rkt new file mode 100644 index 0000000000..e43df74125 --- /dev/null +++ b/pkgs/unstable-pretty-lib/info.rkt @@ -0,0 +1,4 @@ +#lang setup/infotab + +(define collection 'multi) +(define deps '("base")) diff --git a/pkgs/typed-racket-pkgs/typed-racket-lib/unstable/pretty.rkt b/pkgs/unstable-pretty-lib/unstable/pretty.rkt similarity index 100% rename from pkgs/typed-racket-pkgs/typed-racket-lib/unstable/pretty.rkt rename to pkgs/unstable-pretty-lib/unstable/pretty.rkt diff --git a/pkgs/unstable/info.rkt b/pkgs/unstable/info.rkt index 960712141b..9a350316f2 100644 --- a/pkgs/unstable/info.rkt +++ b/pkgs/unstable/info.rkt @@ -21,4 +21,6 @@ "unstable-contract-lib" "unstable-list-lib" "unstable-options-lib" + "unstable-debug-lib" + "unstable-pretty-lib" "unstable-parameter-group-lib"))