From d5fe4f2f900af8160f059dfa24f79af3a5cbd982 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 30 Jul 2013 17:50:52 -0600 Subject: [PATCH] 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 --- pkgs/typed-racket-pkgs/typed-racket-doc/info.rkt | 4 ++++ pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt | 4 ++++ pkgs/typed-racket-pkgs/typed-racket-more/info.rkt | 4 ++++ pkgs/typed-racket-pkgs/typed-racket-test/info.rkt | 4 ++++ pkgs/typed-racket-pkgs/typed-racket/info.rkt | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/pkgs/typed-racket-pkgs/typed-racket-doc/info.rkt b/pkgs/typed-racket-pkgs/typed-racket-doc/info.rkt index 8066dd84..f3adf50c 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-doc/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-doc/info.rkt @@ -13,3 +13,7 @@ "typed-racket-lib" "racket-doc")) (define deps '("base")) + +(define pkg-desc "documentation part of \"typed-racket\"") + +(define pkg-authors '(samth stamourv)) diff --git a/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt b/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt index 468056f7..a467443c 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-lib/info.rkt @@ -10,3 +10,7 @@ "compatibility-lib" ;; to assign types "string-constants-lib")) + +(define pkg-desc "implementation (no documentation) part of \"typed-racket\"") + +(define pkg-authors '(samth stamourv)) diff --git a/pkgs/typed-racket-pkgs/typed-racket-more/info.rkt b/pkgs/typed-racket-pkgs/typed-racket-more/info.rkt index 8dbc7f6a..6e8ba61b 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-more/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-more/info.rkt @@ -9,3 +9,7 @@ "typed-racket-lib" "gui-lib")) (define build-deps '("scribble-lib")) + +(define pkg-desc "Types for various libraries") + +(define pkg-authors '(samth stamourv)) diff --git a/pkgs/typed-racket-pkgs/typed-racket-test/info.rkt b/pkgs/typed-racket-pkgs/typed-racket-test/info.rkt index 0e26be1e..88dcf31c 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-test/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-test/info.rkt @@ -10,3 +10,7 @@ "sandbox-lib" "unstable-flonum-lib" "unstable")) + +(define pkg-desc "tests for \"typed-racket\"") + +(define pkg-authors '(samth stamourv)) diff --git a/pkgs/typed-racket-pkgs/typed-racket/info.rkt b/pkgs/typed-racket-pkgs/typed-racket/info.rkt index 6b922f74..8e7e11e3 100644 --- a/pkgs/typed-racket-pkgs/typed-racket/info.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket/info.rkt @@ -6,3 +6,7 @@ "typed-racket-doc")) (define implies '("typed-racket-lib" "typed-racket-doc")) + +(define pkg-desc "The implementation of the Typed Racket language") + +(define pkg-authors '(samth stamourv))