This file is indexed.

/usr/share/common-lisp/source/local-time/local-time.asd is in cl-local-time 20140713-2.

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
(defsystem #:local-time
  :name "local-time"
  :version "1.0.4"
  :author "Daniel Lowe <dlowe@dlowe.net>"
  :description "A library for manipulating dates and times, based on a paper by Erik Naggum"
  :depends-on (:cl-fad)
  :serial t
  :components ((:module "src"
                :components ((:file "package")
                             (:file "local-time")))))

(defmethod perform ((op test-op) (system (eql (find-system :local-time))))
  (asdf:load-system :local-time.test)
  (eval (read-from-string "(stefil:funcall-test-with-feedback-message 'local-time.test::test)")))