add pkg-desc' and
pkg-authors' to each package
This information will be used to construct a catalog from the package directories.
This commit is contained in:
parent
fbcc9323d6
commit
057bfc2ea1
|
@ -1 +1 @@
|
||||||
Subproject commit f8c8984ebe8a442d474558dced0eb824cbb24772
|
Subproject commit f367c0c4b05b91401d68b0180b416d616b31720d
|
|
@ -18,3 +18,7 @@
|
||||||
"gui-lib"
|
"gui-lib"
|
||||||
"parser-tools-lib"
|
"parser-tools-lib"
|
||||||
"string-constants-lib"))
|
"string-constants-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "An implementation of the Algol60 language")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt robby))
|
||||||
|
|
|
@ -10,3 +10,7 @@
|
||||||
|
|
||||||
(define deps '())
|
(define deps '())
|
||||||
(define implies '(core))
|
(define implies '(core))
|
||||||
|
|
||||||
|
(define pkg-desc "Racket libraries that are currently always available")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -8,3 +8,7 @@
|
||||||
"compiler-lib"
|
"compiler-lib"
|
||||||
"gui-lib"
|
"gui-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"compatibility\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli mflatt robby samth))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"net-lib"
|
"net-lib"
|
||||||
"sandbox-lib"))
|
"sandbox-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"compatibility\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli mflatt robby samth))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
|
|
||||||
(define deps '("compatibility-lib" "compatibility-doc"))
|
(define deps '("compatibility-lib" "compatibility-doc"))
|
||||||
(define implies '("compatibility-lib" "compatibility-doc"))
|
(define implies '("compatibility-lib" "compatibility-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries that implement legacy interfaces")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli mflatt robby samth))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
|
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "Racket compilation tools, such as `raco exe'")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -8,3 +8,7 @@
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"math"))
|
"math"))
|
||||||
|
|
||||||
|
(define pkg-desc "Profiling tool for contracts")
|
||||||
|
|
||||||
|
(define pkg-authors '(stamourv))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
(define build-deps '("rackunit-lib"))
|
(define build-deps '("rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Data strucutures")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -9,3 +9,7 @@
|
||||||
"parser-tools-lib"))
|
"parser-tools-lib"))
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "An implementation of the Datalog language")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay))
|
||||||
|
|
|
@ -12,3 +12,7 @@
|
||||||
"web-server-lib"
|
"web-server-lib"
|
||||||
"db-lib"
|
"db-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"db\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"db\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"db-lib"
|
"db-lib"
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"web-server-lib"))
|
"web-server-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"db\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define deps
|
(define deps
|
||||||
'("base" "db-lib" "db-doc"))
|
'("base" "db-lib" "db-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Database connectivity")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -33,3 +33,7 @@
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"at-exp-lib"
|
"at-exp-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Teaching languages for _Die Macht der Abstraktion_")
|
||||||
|
|
||||||
|
(define pkg-authors '(sperber))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"sandbox-lib"
|
"sandbox-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"distributed-places\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(tewk))
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
#lang info
|
#lang info
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"distributed-places\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(tewk))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"distributed-places-doc"))
|
"distributed-places-doc"))
|
||||||
(define implies '("distributed-places-lib"
|
(define implies '("distributed-places-lib"
|
||||||
"distributed-places-doc"))
|
"distributed-places-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries for distributed computations")
|
||||||
|
|
||||||
|
(define pkg-authors '(tewk))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
"web-server-lib"
|
"web-server-lib"
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"ds-store-lib"))
|
"ds-store-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Tools for constructing a distribution of Racket")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -11,3 +11,7 @@
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"draw-lib"
|
"draw-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"draw\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -8,3 +8,7 @@
|
||||||
("draw-x86_64-macosx" #:platform "x86_64-macosx")
|
("draw-x86_64-macosx" #:platform "x86_64-macosx")
|
||||||
("draw-win32-i386" #:platform "win32\\i386")
|
("draw-win32-i386" #:platform "win32\\i386")
|
||||||
("draw-win32-x86_64" #:platform "win32\\x86_64")))
|
("draw-win32-x86_64" #:platform "win32\\x86_64")))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"draw\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"draw-doc"))
|
"draw-doc"))
|
||||||
(define implies '("draw-lib"
|
(define implies '("draw-lib"
|
||||||
"draw-doc"))
|
"draw-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Drawing libraries")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -12,3 +12,7 @@
|
||||||
"htdp"
|
"htdp"
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"string-constants-lib"))
|
"string-constants-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"drracket\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(robby))
|
||||||
|
|
|
@ -45,3 +45,7 @@
|
||||||
"r5rs-doc"
|
"r5rs-doc"
|
||||||
"at-exp-lib"
|
"at-exp-lib"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "The DrRacket programming environment")
|
||||||
|
|
||||||
|
(define pkg-authors '(robby))
|
||||||
|
|
|
@ -8,3 +8,7 @@
|
||||||
|
|
||||||
(define scribblings '(("ds-store.scrbl")))
|
(define scribblings '(("ds-store.scrbl")))
|
||||||
|
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"ds-store\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define collection "ds-store")
|
(define collection "ds-store")
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"ds-store\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
"base"))
|
"base"))
|
||||||
(define implies '("ds-store-lib"
|
(define implies '("ds-store-lib"
|
||||||
"ds-store-doc"))
|
"ds-store-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries for manipulating \".DS_Store\" files")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "Testing framework")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
(define build-deps '("rackunit-lib"
|
(define build-deps '("rackunit-lib"
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Teaching language for _Essentials of Programming Languages_")
|
||||||
|
|
||||||
|
(define pkg-authors '(dvanhorn))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
"base"
|
"base"
|
||||||
"errortrace-lib"
|
"errortrace-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"errortrace\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
#lang info
|
#lang info
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"errortrace\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
(define deps '())
|
(define deps '())
|
||||||
(define build-deps '("base"
|
(define build-deps '("base"
|
||||||
"compiler-lib"))
|
"compiler-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"errortrace\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"errortrace-doc"))
|
"errortrace-doc"))
|
||||||
(define implies '("errortrace-lib"
|
(define implies '("errortrace-lib"
|
||||||
"errortrace-doc"))
|
"errortrace-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Instrumentation tools for debugging")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -17,3 +17,7 @@
|
||||||
"gui-doc"
|
"gui-doc"
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "The implementation of the FrTime language")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay gcooper))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"future-visualizer"
|
"future-visualizer"
|
||||||
"typed-racket-lib"))
|
"typed-racket-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "type declarations for \"future-visualizer\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(jamesswaine))
|
||||||
|
|
|
@ -10,3 +10,7 @@
|
||||||
(define build-deps '("scribble-lib"
|
(define build-deps '("scribble-lib"
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Graphical performance tools for using futures")
|
||||||
|
|
||||||
|
(define pkg-authors '(jamesswaine))
|
||||||
|
|
|
@ -22,3 +22,7 @@
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"pict-lib"
|
"pict-lib"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Games")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt robby))
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"gui-lib"
|
"gui-lib"
|
||||||
"string-constants-lib"))
|
"string-constants-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"gui-pkg-manager\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"base"))
|
"base"))
|
||||||
|
|
||||||
(define implies '("gui-pkg-manager-lib"))
|
(define implies '("gui-pkg-manager-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Graphical tool for managing Racket package installations")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -14,3 +14,7 @@
|
||||||
"gui-lib"
|
"gui-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"gui\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -20,3 +20,7 @@
|
||||||
("gui-win32-i386" #:platform "win32\\i386")
|
("gui-win32-i386" #:platform "win32\\i386")
|
||||||
("gui-win32-x86_64" #:platform "win32\\x86_64")))
|
("gui-win32-x86_64" #:platform "win32\\x86_64")))
|
||||||
(define build-deps '("at-exp-lib"))
|
(define build-deps '("at-exp-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"gui\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -14,3 +14,7 @@
|
||||||
"snip-lib"
|
"snip-lib"
|
||||||
"wxme-lib"
|
"wxme-lib"
|
||||||
))
|
))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"gui\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"gui-doc"))
|
"gui-doc"))
|
||||||
(define implies '("gui-lib"
|
(define implies '("gui-lib"
|
||||||
"gui-doc"))
|
"gui-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Graphical user interface toolkit")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -12,3 +12,7 @@
|
||||||
|
|
||||||
;; Make honu.vim easier to find by copying it to the "share" directory:
|
;; Make honu.vim easier to find by copying it to the "share" directory:
|
||||||
(define copy-shared-files '("contrib/honu.vim"))
|
(define copy-shared-files '("contrib/honu.vim"))
|
||||||
|
|
||||||
|
(define pkg-desc "The implementation of the Honu language")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt rafkind))
|
||||||
|
|
|
@ -19,3 +19,7 @@
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
#;"at-exp-lib"
|
#;"at-exp-lib"
|
||||||
#;"rackunit-lib"))
|
#;"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"htdp\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(matthias mflatt robby))
|
||||||
|
|
|
@ -24,3 +24,7 @@
|
||||||
"deinprogramm"))
|
"deinprogramm"))
|
||||||
(define build-deps '("at-exp-lib"
|
(define build-deps '("at-exp-lib"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"htdp\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(matthias mflatt robby))
|
||||||
|
|
|
@ -9,3 +9,7 @@
|
||||||
"racket-test"
|
"racket-test"
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"wxme-lib"))
|
"wxme-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"htdp\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(matthias mflatt robby))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
|
|
||||||
(define deps '("htdp-lib" "htdp-doc"))
|
(define deps '("htdp-lib" "htdp-doc"))
|
||||||
(define implies '("htdp-lib" "htdp-doc"))
|
(define implies '("htdp-lib" "htdp-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Teaching languages for _How to Design Programs_")
|
||||||
|
|
||||||
|
(define pkg-authors '(matthias mflatt robby))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"html-lib"
|
"html-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"html\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"html\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay mflatt))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
|
|
||||||
(define deps '())
|
(define deps '())
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"html\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"html-doc"))
|
"html-doc"))
|
||||||
(define implies '("html-lib"
|
(define implies '("html-lib"
|
||||||
"html-doc"))
|
"html-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "HTML parsing and generation")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection "icons")
|
(define collection "icons")
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "An assortment of images")
|
||||||
|
|
||||||
|
(define pkg-authors '(ntoronto))
|
||||||
|
|
|
@ -24,3 +24,7 @@
|
||||||
(define scribblings '(["scribblings/images.scrbl" (multi-page) (gui-library)]))
|
(define scribblings '(["scribblings/images.scrbl" (multi-page) (gui-library)]))
|
||||||
|
|
||||||
(define compile-omit-paths '("tests"))
|
(define compile-omit-paths '("tests"))
|
||||||
|
|
||||||
|
(define pkg-desc "Functions for constructing icons and logos")
|
||||||
|
|
||||||
|
(define pkg-authors '(ntoronto))
|
||||||
|
|
|
@ -27,3 +27,7 @@
|
||||||
(define build-deps '("eli-tester"
|
(define build-deps '("eli-tester"
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "The implementation of the Lazy Racket language")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli stchang))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"parser-tools-lib"
|
"parser-tools-lib"
|
||||||
"unstable-list-lib"))
|
"unstable-list-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "The macro debugger tool with a console interface")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -14,3 +14,7 @@
|
||||||
(define build-deps '("rackunit-lib"
|
(define build-deps '("rackunit-lib"
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "The macro debugger tool")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc))
|
||||||
|
|
|
@ -16,3 +16,7 @@
|
||||||
"typed-racket-test"
|
"typed-racket-test"
|
||||||
"xrepl-test"
|
"xrepl-test"
|
||||||
"scribble-test"))
|
"scribble-test"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"main-distribution\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby))
|
||||||
|
|
|
@ -79,3 +79,7 @@
|
||||||
"wxme"
|
"wxme"
|
||||||
"xrepl"
|
"xrepl"
|
||||||
"ds-store"))
|
"ds-store"))
|
||||||
|
|
||||||
|
(define pkg-desc "A package that combines all of the packages in the main Racket distribution")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby))
|
||||||
|
|
|
@ -8,3 +8,7 @@
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Simple timestamp- and dependency-triggered actions")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -16,3 +16,7 @@
|
||||||
"plot"
|
"plot"
|
||||||
"sandbox-lib"
|
"sandbox-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Functions and data structures useful for working with numbers and collections of numbers")
|
||||||
|
|
||||||
|
(define pkg-authors '(ntoronto))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"at-exp-lib"
|
"at-exp-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Legacy library for working with COM on Windows")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -10,3 +10,7 @@
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"mysterx"
|
"mysterx"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "COM control to instantate a Racket instance")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "The legacy MzScheme language")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "Networking libraries")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"syntax-color-doc"
|
"syntax-color-doc"
|
||||||
"parser-tools-lib"
|
"parser-tools-lib"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"parser-tools\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
(define build-deps '("rackunit-lib"))
|
(define build-deps '("rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"parser-tools\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"parser-tools-doc"))
|
"parser-tools-doc"))
|
||||||
(define implies '("parser-tools-lib"
|
(define implies '("parser-tools-lib"
|
||||||
"parser-tools-doc"))
|
"parser-tools-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Lex- and Yacc-style parsing tools")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"compatibility-lib")) ;; for mlist
|
"compatibility-lib")) ;; for mlist
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
|
|
||||||
|
(define pkg-desc "Legacy library for printing Racket values")
|
||||||
|
|
||||||
|
(define pkg-authors '(robby))
|
||||||
|
|
|
@ -12,3 +12,7 @@
|
||||||
"pict-lib"
|
"pict-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"pict\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt robby))
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"compatibility-lib"
|
"compatibility-lib"
|
||||||
"draw-lib" "snip-lib"))
|
"draw-lib" "snip-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"pict\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt robby))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"pict-doc"))
|
"pict-doc"))
|
||||||
(define implies '("pict-lib"
|
(define implies '("pict-lib"
|
||||||
"pict-doc"))
|
"pict-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Building pictures with functional combinators")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt robby))
|
||||||
|
|
|
@ -9,3 +9,7 @@
|
||||||
"htdp"))
|
"htdp"))
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Teaching libraries for _Picturing Programs_")
|
||||||
|
|
||||||
|
(define pkg-authors '(sbloch))
|
||||||
|
|
|
@ -19,3 +19,7 @@
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"web-server-doc"
|
"web-server-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Teaching languages for _Programming Languages: Application and Interpretation_")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay))
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
#lang info
|
#lang info
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "Legacy support for automatic package distribution")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -29,3 +29,7 @@
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"slideshow-lib"
|
"slideshow-lib"
|
||||||
"unstable-doc"))
|
"unstable-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries for graph plotting")
|
||||||
|
|
||||||
|
(define pkg-authors '(ntoronto))
|
||||||
|
|
|
@ -23,3 +23,7 @@
|
||||||
"sandbox-lib"
|
"sandbox-lib"
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Miscellaneous management and maintenance tools used by the Racket development team")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli mflatt))
|
||||||
|
|
|
@ -10,3 +10,7 @@
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
(define build-deps '("racket-doc"
|
(define build-deps '("racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Preprocessors for text with embedded Racket code (mostly replaced by scribble/text)")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"profile-lib"
|
"profile-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"profile\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
(define build-deps '("at-exp-lib"
|
(define build-deps '("at-exp-lib"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"profile\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
(define build-deps '("base"
|
(define build-deps '("base"
|
||||||
"eli-tester"
|
"eli-tester"
|
||||||
"profile-lib"))
|
"profile-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"profile\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"profile-doc"))
|
"profile-doc"))
|
||||||
(define implies '("profile-lib"
|
(define implies '("profile-lib"
|
||||||
"profile-doc"))
|
"profile-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries for statistical performance profiling")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
"compatibility-lib"
|
"compatibility-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"r5rs\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"r5rs\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"r5rs-doc"))
|
"r5rs-doc"))
|
||||||
(define implies '("r5rs-lib"
|
(define implies '("r5rs-lib"
|
||||||
"r5rs-doc"))
|
"r5rs-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Legacy R5RS (Scheme) language")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
"scribble-lib"
|
"scribble-lib"
|
||||||
"r6rs-lib"
|
"r6rs-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"r6rs\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"r5rs-lib"
|
"r5rs-lib"
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"r6rs\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '())
|
(define deps '())
|
||||||
|
|
||||||
|
(define pkg-desc "tests for \"r6rs\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"r6rs-doc"))
|
"r6rs-doc"))
|
||||||
(define implies '("r6rs-lib"
|
(define implies '("r6rs-lib"
|
||||||
"r6rs-doc"))
|
"r6rs-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Legacy R6RS (Scheme) language")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
|
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "Libraries for @-expressions")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli mflatt))
|
||||||
|
|
|
@ -37,3 +37,7 @@
|
||||||
"compatibility-lib"
|
"compatibility-lib"
|
||||||
"future-visualizer"
|
"future-visualizer"
|
||||||
"distributed-places-doc"))
|
"distributed-places-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "Base Racket documentation")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
(define build-deps '("at-exp-lib"))
|
(define build-deps '("at-exp-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Racket Documentation driver")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))
|
||||||
|
|
|
@ -7,3 +7,7 @@
|
||||||
("racket-win32-x86_64" #:platform "win32\\x86_64")
|
("racket-win32-x86_64" #:platform "win32\\x86_64")
|
||||||
("db-win32-i386" #:platform "win32\\i386")
|
("db-win32-i386" #:platform "win32\\i386")
|
||||||
("db-win32-x86_64" #:platform "win32\\x86_64")))
|
("db-win32-x86_64" #:platform "win32\\x86_64")))
|
||||||
|
|
||||||
|
(define pkg-desc "Combines platform-specific native libraries that are useful for base Racket")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))
|
||||||
|
|
|
@ -27,3 +27,7 @@
|
||||||
|
|
||||||
(define build-deps '("base"
|
(define build-deps '("base"
|
||||||
"data-lib"))
|
"data-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Base Racket test suites")
|
||||||
|
|
||||||
|
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))
|
||||||
|
|
|
@ -10,3 +10,7 @@
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"racket-doc"
|
"racket-doc"
|
||||||
"scribble-lib"))
|
"scribble-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "The implementation of the Racklog (embedded Prolog) language")
|
||||||
|
|
||||||
|
(define pkg-authors '(jay))
|
||||||
|
|
|
@ -4,3 +4,7 @@
|
||||||
|
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"data-lib"))
|
"data-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "RackUnit testing framework")
|
||||||
|
|
||||||
|
(define pkg-authors '(ryanc noel))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"readline-lib"
|
"readline-lib"
|
||||||
"racket-doc"))
|
"racket-doc"))
|
||||||
(define deps '("base"))
|
(define deps '("base"))
|
||||||
|
|
||||||
|
(define pkg-desc "documentation part of \"readline\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -3,3 +3,7 @@
|
||||||
(define collection 'multi)
|
(define collection 'multi)
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"compatibility-lib"))
|
"compatibility-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "implementation (no documentation) part of \"readline\"")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -6,3 +6,7 @@
|
||||||
"readline-doc"))
|
"readline-doc"))
|
||||||
(define implies '("readline-lib"
|
(define implies '("readline-lib"
|
||||||
"readline-doc"))
|
"readline-doc"))
|
||||||
|
|
||||||
|
(define pkg-desc "GNU Readline access from Racket")
|
||||||
|
|
||||||
|
(define pkg-authors '(mflatt))
|
||||||
|
|
|
@ -19,3 +19,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"htdp"))
|
"htdp"))
|
||||||
(define build-deps '("rackunit-lib"))
|
(define build-deps '("rackunit-lib"))
|
||||||
|
|
||||||
|
(define pkg-desc "Sample code for _Realm of Racket_")
|
||||||
|
|
||||||
|
(define pkg-authors '(matthias))
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user