move some test & doc collections out of "racket-" pkgs to new pkgs

original commit: 1920ac59ab
This commit is contained in:
Matthew Flatt 2013-10-15 16:19:27 -06:00
parent 7ce8c7c434
commit afe7f46d35
56 changed files with 35 additions and 2 deletions

View File

@ -6,6 +6,6 @@
"scheme-lib" "scheme-lib"
"rackunit-lib")) "rackunit-lib"))
(define pkg-desc "Racket compilation tools, such as `raco exe'") (define pkg-desc "implementation (no documentation) part of \"compiler\"")
(define pkg-authors '(mflatt)) (define pkg-authors '(mflatt))

View File

@ -0,0 +1,10 @@
compiler-test
Copyright (c) 2010-2013 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.

View File

@ -0,0 +1,13 @@
#lang info
(define collection 'multi)
(define deps '("base"))
(define pkg-desc "tests for \"compiler-lib\"")
(define pkg-authors '(mflatt))
(define build-deps '("compiler-lib"
"eli-tester"
"net-lib"
"scheme-lib"))

View File

@ -1,4 +1,4 @@
data-lib compiler
Copyright (c) 2010-2013 PLT Design Inc. Copyright (c) 2010-2013 PLT Design Inc.
This package is distributed under the GNU Lesser General Public This package is distributed under the GNU Lesser General Public

View File

@ -0,0 +1,10 @@
#lang info
(define collection 'multi)
(define deps '("compiler-lib"))
(define implies '("compiler-lib"))
(define pkg-desc "Racket compilation tools, such as `raco exe'")
(define pkg-authors '(mflatt))