This file is indexed.

/usr/share/racket/pkgs/make/collection-unit.rkt is in racket-common 6.7-3.

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 mzscheme

(require mzlib/unit
         mzlib/list
         mzlib/file
         "collection-sig.rkt"
         "make-sig.rkt"
         compiler/sig
         dynext/file-sig)

(provide make:collection@)

(define-unit make:collection@
  (import make^
          dynext:file^
          compiler^)
  (export make:collection^)

  (define (make-collection collection-name collection-files argv)
    (printf "building collection ~a: ~a\n" collection-name collection-files)
    (let* ([zo-compiler #f]
           [src-dir (current-directory)]
           [sses (sort collection-files
                       (lambda (a b)
                         (string-ci<? (path->string a) (path->string b))))]
           [zos (map (lambda (ss)
                       (build-path "compiled" (append-zo-suffix ss)))
		     sses)]
           [ss->zo-list
            (map (lambda (ss zo)
                   `(,zo (,ss)
                     ,(lambda ()
                        (unless zo-compiler
                          (set! zo-compiler (compile-zos #f)))
                        (zo-compiler (list ss) "compiled"))))
                 sses zos)])
      (unless (directory-exists? "compiled") (make-directory "compiled"))
      (make/proc (append `(("zo" ,zos)) ss->zo-list) argv))))