From 19ea3a7194612a5178758cc800ac0348fba3a8e1 Mon Sep 17 00:00:00 2001
From: Matthew Flatt <mflatt@racket-lang.org>
Date: Thu, 6 Feb 2014 09:19:08 -0700
Subject: [PATCH] split "scribble-html-lib" package out of "scribble-lib"
 package

original commit: 0ad3a6a7f6c897b4fe7d3d2dfdceb3a8831e293a
---
 pkgs/scribble-pkgs/scribble-html-lib/LICENSE.txt      | 10 ++++++++++
 pkgs/scribble-pkgs/scribble-html-lib/info.rkt         | 11 +++++++++++
 .../scribble/html.rkt                                 |  0
 .../scribble/html/html.rkt                            |  0
 .../scribble/html/info.rkt                            |  0
 .../scribble/html/lang.rkt                            |  0
 .../scribble/html/lang/reader.rkt                     |  0
 .../scribble/html/main.rkt                            |  0
 .../scribble/html/resource.rkt                        |  0
 .../scribble/html/xml.rkt                             |  0
 pkgs/scribble-pkgs/scribble-lib/info.rkt              |  3 +++
 11 files changed, 24 insertions(+)
 create mode 100644 pkgs/scribble-pkgs/scribble-html-lib/LICENSE.txt
 create mode 100644 pkgs/scribble-pkgs/scribble-html-lib/info.rkt
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/html.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/info.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/lang.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/lang/reader.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/main.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/resource.rkt (100%)
 rename pkgs/scribble-pkgs/{scribble-lib => scribble-html-lib}/scribble/html/xml.rkt (100%)

diff --git a/pkgs/scribble-pkgs/scribble-html-lib/LICENSE.txt b/pkgs/scribble-pkgs/scribble-html-lib/LICENSE.txt
new file mode 100644
index 00000000..99f2f919
--- /dev/null
+++ b/pkgs/scribble-pkgs/scribble-html-lib/LICENSE.txt
@@ -0,0 +1,10 @@
+scribble-text-lib
+Copyright (c) 2010-2014 PLT Design Inc.
+
+This package is distributed under the GNU Lesser General Public
+License (LGPL).  This means that you can link Racket into proprietary
+applications, provided you follow the rules stated in the LGPL.  You
+can also modify this package; if you distribute a modified version,
+you must distribute it under the terms of the LGPL, which in
+particular means that you must release the source code for the
+modified software.  See COPYING_LESSER.txt for more information.
diff --git a/pkgs/scribble-pkgs/scribble-html-lib/info.rkt b/pkgs/scribble-pkgs/scribble-html-lib/info.rkt
new file mode 100644
index 00000000..3fc25086
--- /dev/null
+++ b/pkgs/scribble-pkgs/scribble-html-lib/info.rkt
@@ -0,0 +1,11 @@
+#lang info
+
+(define collection 'multi)
+
+(define deps '("scheme-lib"
+               "base" "at-exp-lib"
+               "scribble-text-lib"))
+
+(define pkg-desc "Language for HTML with embedded Racket code")
+
+(define pkg-authors '(mflatt eli))
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/html.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/html.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/html.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/html.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/info.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/info.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/info.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/info.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/lang.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/lang.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/lang.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/lang.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/lang/reader.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/lang/reader.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/lang/reader.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/lang/reader.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/main.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/main.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/main.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/main.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/resource.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/resource.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/resource.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/resource.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/scribble/html/xml.rkt b/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/xml.rkt
similarity index 100%
rename from pkgs/scribble-pkgs/scribble-lib/scribble/html/xml.rkt
rename to pkgs/scribble-pkgs/scribble-html-lib/scribble/html/xml.rkt
diff --git a/pkgs/scribble-pkgs/scribble-lib/info.rkt b/pkgs/scribble-pkgs/scribble-lib/info.rkt
index 909bc9a1..fc1bec26 100644
--- a/pkgs/scribble-pkgs/scribble-lib/info.rkt
+++ b/pkgs/scribble-pkgs/scribble-lib/info.rkt
@@ -7,6 +7,7 @@
                "base"
                "compatibility-lib"
                "scribble-text-lib"
+               "scribble-html-lib"
                "planet-lib" ; used dynamically
 	       "net-lib"
                "at-exp-lib"
@@ -15,6 +16,8 @@
                "sandbox-lib"))
 (define build-deps '("rackunit-lib"))
 
+(define implies '("scribble-html-lib"))
+
 (define pkg-desc "implementation (no documentation) part of \"scribble\"")
 
 (define pkg-authors '(mflatt eli))