From 736226359c9440cf66edf8383e5032d10f0626ce 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/profile-pkgs/profile-doc/info.rkt | 4 ++++ pkgs/profile-pkgs/profile-lib/info.rkt | 4 ++++ pkgs/profile-pkgs/profile-test/info.rkt | 4 ++++ pkgs/profile-pkgs/profile/info.rkt | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/pkgs/profile-pkgs/profile-doc/info.rkt b/pkgs/profile-pkgs/profile-doc/info.rkt index 4e8512f..0e2c38b 100644 --- a/pkgs/profile-pkgs/profile-doc/info.rkt +++ b/pkgs/profile-pkgs/profile-doc/info.rkt @@ -6,3 +6,7 @@ "scribble-lib" "profile-lib" "racket-doc")) + +(define pkg-desc "documentation part of \"profile\"") + +(define pkg-authors '(eli)) diff --git a/pkgs/profile-pkgs/profile-lib/info.rkt b/pkgs/profile-pkgs/profile-lib/info.rkt index 6bc0fe7..275adf3 100644 --- a/pkgs/profile-pkgs/profile-lib/info.rkt +++ b/pkgs/profile-pkgs/profile-lib/info.rkt @@ -4,3 +4,7 @@ (define deps '("base")) (define build-deps '("at-exp-lib" "rackunit-lib")) + +(define pkg-desc "implementation (no documentation) part of \"profile\"") + +(define pkg-authors '(eli)) diff --git a/pkgs/profile-pkgs/profile-test/info.rkt b/pkgs/profile-pkgs/profile-test/info.rkt index 16d99ff..eb0cb63 100644 --- a/pkgs/profile-pkgs/profile-test/info.rkt +++ b/pkgs/profile-pkgs/profile-test/info.rkt @@ -5,3 +5,7 @@ (define build-deps '("base" "eli-tester" "profile-lib")) + +(define pkg-desc "tests for \"profile\"") + +(define pkg-authors '(eli)) diff --git a/pkgs/profile-pkgs/profile/info.rkt b/pkgs/profile-pkgs/profile/info.rkt index b92f442..0e4d120 100644 --- a/pkgs/profile-pkgs/profile/info.rkt +++ b/pkgs/profile-pkgs/profile/info.rkt @@ -6,3 +6,7 @@ "profile-doc")) (define implies '("profile-lib" "profile-doc")) + +(define pkg-desc "Libraries for statistical performance profiling") + +(define pkg-authors '(eli))