split up images pkg into images-lib, images-gui-lib, images-doc, and images-tests

This commit is contained in:
Robby Findler 2013-09-16 09:07:42 -05:00
parent 01fd205c9a
commit 716bf763c4
52 changed files with 82 additions and 30 deletions

View File

@ -0,0 +1,2 @@
#lang info
(define scribblings '(["scribblings/images.scrbl" (multi-page) (gui-library)]))

View File

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

View File

@ -0,0 +1,23 @@
#lang info
(define collection 'multi)
(define deps '("base"
"images-lib"))
(define build-deps '("draw-doc"
"gui-doc"
"pict-doc"
"slideshow-doc"
"typed-racket-doc"
"draw-lib"
"gui-lib"
"pict-lib"
"racket-doc"
"scribble-lib"
"slideshow-lib"
"typed-racket-lib"
"unstable-latent-contract-lib"))
(define pkg-desc "Documentation for images-lib")
(define pkg-authors '(ntoronto))

View File

@ -0,0 +1,12 @@
#lang info
(define collection 'multi)
(define deps '("base"
"draw-lib"
"gui-lib"
"string-constants-lib"))
(define pkg-desc "Functions for constructing icons and logos")
(define pkg-authors '(ntoronto))

View File

@ -0,0 +1 @@
#lang info

View File

@ -0,0 +1,13 @@
#lang info
(define collection 'multi)
(define deps '("base"
"draw-lib"
"unstable-latent-contract-lib"
"unstable-parameter-group-lib"
"typed-racket-lib"))
(define pkg-desc "Functions for constructing icons and logos")
(define pkg-authors '(ntoronto))

View File

@ -0,0 +1,3 @@
#lang info
(define compile-omit-paths '("tests"))

View File

@ -0,0 +1,18 @@
#lang info
(define collection 'multi)
(define deps '("base"
"images-lib"))
(define build-deps '("pict-lib"
"scribble-lib"
"slideshow-lib"
"racket-doc"
"unstable-latent-contract-lib"
"unstable-parameter-group-lib"))
(define compile-omit-paths '("tests"))
(define pkg-desc "Tests for images-pkg")
(define pkg-authors '(ntoronto))

View File

@ -0,0 +1,10 @@
#lang info
(define collection 'multi)
(define deps '("images-lib" "images-gui-lib" "images-doc" "images-test"))
(define implies '("images-lib" "images-gui-lib" "images-doc" "images-test"))
(define pkg-desc "Functions (and docs and tests) for constructing icons and logos")
(define pkg-authors '(ntoronto))

View File

@ -1,30 +0,0 @@
#lang info
(define collection "images")
(define deps '("base"
"draw-lib"
"gui-lib"
"string-constants-lib"
"unstable-latent-contract-lib"
"unstable-parameter-group-lib"
"typed-racket-lib"))
(define build-deps '("draw-doc"
"gui-doc"
"pict-doc"
"slideshow-doc"
"typed-racket-doc"
"pict-lib"
"scribble-lib"
"slideshow-lib"
"racket-doc"
"unstable-latent-contract-lib"
"unstable-parameter-group-lib"))
(define scribblings '(["scribblings/images.scrbl" (multi-page) (gui-library)]))
(define compile-omit-paths '("tests"))
(define pkg-desc "Functions for constructing icons and logos")
(define pkg-authors '(ntoronto))