/usr/share/racket/pkgs/unstable-doc/info.rkt is in racket-common 6.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #lang info
(define collection "unstable")
(define scribblings
'(("scribblings/unstable.scrbl" (multi-page) (experimental))
("scribblings/gui/unstable-gui.scrbl" (multi-page) (experimental))))
(define deps '("base"))
(define build-deps '("rackunit-doc"
"scheme-lib"
"at-exp-lib"
"compatibility-lib"
"draw-lib"
"gui-lib"
"pict-lib"
"racket-doc"
"rackunit-lib"
"scribble-lib"
"slideshow-lib"
"typed-racket-lib"
"unstable-contract-lib"
"unstable-debug-lib"
"unstable-lib"
"unstable-list-lib"
"unstable-macro-testing-lib"
"unstable-options-lib"
"unstable-parameter-group-lib"
"unstable-pretty-lib"
"unstable-2d"
"draw-doc"
"gui-doc"
"pict-doc"
"scribble-doc"
"slideshow-doc"))
(define pkg-desc "documentation part of \"unstable\"")
(define pkg-authors '(jay samth cce ryanc))
|