From c7b3750320c1b4b00e5acab2defbc20900656bec Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Tue, 2 Jul 2013 12:12:12 -0400 Subject: [PATCH] Create `unstable-debug-lib`, `unstable-pretty-lib`, `unstable-flonum-lib` packages. --- pkgs/racket-pkgs/racket-test/info.rkt | 1 - pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt | 1 + pkgs/unstable-debug-lib/info.rkt | 5 +++++ .../unstable/debug.rkt | 0 pkgs/unstable-flonum-lib/info.rkt | 4 ++++ pkgs/{ => unstable-flonum-lib}/unstable/flonum.rkt | 0 pkgs/unstable-pretty-lib/info.rkt | 4 ++++ .../unstable/pretty.rkt | 0 pkgs/unstable/info.rkt | 2 ++ 9 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 pkgs/unstable-debug-lib/info.rkt rename pkgs/{typed-racket-pkgs/typed-racket-lib => unstable-debug-lib}/unstable/debug.rkt (100%) create mode 100644 pkgs/unstable-flonum-lib/info.rkt rename pkgs/{ => unstable-flonum-lib}/unstable/flonum.rkt (100%) create mode 100644 pkgs/unstable-pretty-lib/info.rkt rename pkgs/{typed-racket-pkgs/typed-racket-lib => unstable-pretty-lib}/unstable/pretty.rkt (100%) 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"))