This file is indexed.

/usr/share/doc/cl-asdf/examples/test-asdf.script is in cl-asdf 2:3.1.7-1.

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
(with-asdf-cache (:override t)
  (load-system "test-asdf/test-module-depend"))

(defparameter *plan* (make-plan () 'load-op "test-asdf/test-module-depend"))
(DBG :foo *plan*
     (component-depends-on 'compile-op '("test-asdf/test-module-depend" "quux" "file3mod" "file3"))
     (asdf::component-if-feature (find-component "test-asdf/test-module-depend" '("quux" "file3mod" "file3"))))

(assert (not (in-plan-p *plan* '(compile-op "test-asdf/test-module-depend" "file1"))))