bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 4644c7373deebff69e3a54d005a231b9b3e85dca
parent 3cc06458783920f3a9b42072d96f2984606daa14
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Tue, 30 Jul 2013 17:50:52 -0600

add `pkg-desc' and `pkg-authors' to each package

This information will be used to construct a catalog from the
package directories.

original commit: 057bfc2ea1a24e85ece2d5f85da30076643ea598

Diffstat:
Mpkgs/scribble-pkgs/scribble-doc/info.rkt | 4++++
Mpkgs/scribble-pkgs/scribble-lib/info.rkt | 4++++
Mpkgs/scribble-pkgs/scribble-test/info.rkt | 4++++
Mpkgs/scribble-pkgs/scribble-text-lib/info.rkt | 4++++
Mpkgs/scribble-pkgs/scribble/info.rkt | 4++++
5 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/pkgs/scribble-pkgs/scribble-doc/info.rkt b/pkgs/scribble-pkgs/scribble-doc/info.rkt @@ -16,3 +16,7 @@ "slideshow-lib" "scribble-lib" "racket-doc")) + +(define pkg-desc "documentation part of \"scribble\"") + +(define pkg-authors '(mflatt eli)) diff --git a/pkgs/scribble-pkgs/scribble-lib/info.rkt b/pkgs/scribble-pkgs/scribble-lib/info.rkt @@ -12,3 +12,7 @@ "syntax-color-lib" "sandbox-lib" "rackunit-lib")) + +(define pkg-desc "implementation (no documentation) part of \"scribble\"") + +(define pkg-authors '(mflatt eli)) diff --git a/pkgs/scribble-pkgs/scribble-test/info.rkt b/pkgs/scribble-pkgs/scribble-test/info.rkt @@ -10,3 +10,7 @@ "scribble-doc" ;; because some tests are examples from the docs "scribble-lib" "scribble-text-lib")) + +(define pkg-desc "tests for \"scribble\"") + +(define pkg-authors '(mflatt eli)) diff --git a/pkgs/scribble-pkgs/scribble-text-lib/info.rkt b/pkgs/scribble-pkgs/scribble-text-lib/info.rkt @@ -3,3 +3,7 @@ (define collection 'multi) (define deps '("base" "at-exp-lib")) + +(define pkg-desc "Language for text with embedded Racket code") + +(define pkg-authors '(mflatt eli)) diff --git a/pkgs/scribble-pkgs/scribble/info.rkt b/pkgs/scribble-pkgs/scribble/info.rkt @@ -6,3 +6,7 @@ "scribble-doc")) (define implies '("scribble-lib" "scribble-doc")) + +(define pkg-desc "Racket documentatation and typesetting tool") + +(define pkg-authors '(mflatt eli))