/usr/share/racket/pkgs/base/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 | #lang info
;; The "base" package exists mainly as a way to declare dependencies
;; on the current Racket core. If the core gets smaller in the
;; future, then "base" can have new dependencies to cover things
;; moved out of the core, while a new "base2" package can represent
;; the new, smaller core.
;; The "base" package also depends on "racket-lib", which ensures that
;; any native libraries needed for a platform are installed along with
;; practically any package installation.
(define collection 'multi)
(define version "6.1")
(define deps `("racket-lib"
["racket" #:version ,version]))
(define implies '(core))
(define pkg-desc "Racket libraries that are currently always available")
(define pkg-authors '(mflatt))
|