This file is indexed.

/usr/share/common-lisp/source/parse-number/parse-number.asd is in cl-parse-number 1.4-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
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;; -*- Lisp -*-

(defsystem :parse-number
  :author "Matthew Danish <mrd@debian.org>"
  :maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
  :description "Number parsing library"
  :license "public domain"
  :version #.(with-open-file (f (merge-pathnames "version.lisp-expr"
                                                 (or *compile-file-pathname*
                                                     *load-truename*)))
               (read f))
  :components ((:file "parse-number"))
  :in-order-to ((asdf:test-op (asdf:load-op :parse-number-tests)))
  :perform (asdf:test-op :after (op c)
             (funcall (find-symbol (string '#:run-tests)
                                   :org.mapcar.parse-number-tests))))

(defsystem :parse-number-tests
  :author "Stelian Ionescu <sionescu@cddr.org>"
  :maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
  :description "Parse-Number test suite"
  :license "public domain"
  :depends-on (:parse-number)
  :components ((:file "tests")))