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 103cb2bfa6
commit e1bb8f5d6c
73 changed files with 66 additions and 2 deletions

View File

@ -1,4 +1,4 @@
data-lib net-doc
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,17 @@
#lang info
(define collection 'multi)
(define deps '("base"))
(define pkg-desc "documentation part of \"net\"")
(define pkg-authors '(mflatt))
(define build-deps '("compatibility-lib"
"net-lib"
"racket-doc"
"scribble-lib"
"unstable-contract-lib"
"unstable-doc"
"web-server-doc"
"web-server-lib"))

View File

@ -4,6 +4,6 @@
(define deps '("srfi-lite-lib" (define deps '("srfi-lite-lib"
"base")) "base"))
(define pkg-desc "Networking libraries") (define pkg-desc "implementation (no documentation) part of \"net\"")
(define pkg-authors '(mflatt)) (define pkg-authors '(mflatt))

View File

@ -0,0 +1,10 @@
net-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,17 @@
#lang info
(define collection 'multi)
(define deps '("base"))
(define pkg-desc "tests for \"net-lib\"")
(define pkg-authors '(mflatt))
(define build-deps '("at-exp-lib"
"compatibility-lib"
"eli-tester"
"net-lib"
"racket-test"
"rackunit-lib"
"scheme-lib"
"web-server-lib"))

View File

@ -0,0 +1,10 @@
net
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,10 @@
#lang info
(define collection 'multi)
(define deps '("net-lib" "net-doc"))
(define implies '("net-lib" "net-doc"))
(define pkg-desc "Networking libraries")
(define pkg-authors '(mflatt))