This file is indexed.

/usr/share/common-lisp/source/ieee-floats/ieee-floats.asd is in cl-ieee-floats 20160318-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
(defpackage :ieee-floats-system
  (:use :common-lisp :asdf))
(in-package :ieee-floats-system)

(defsystem :ieee-floats
  :components ((:file "ieee-floats")))

(defsystem :ieee-floats-tests
  :description "Convert floating point values to IEEE 754 binary representation"
  :author "Marijn Haverbeke <marijnh@gmail.com>"
  :license "BSD"
  :depends-on (:ieee-floats :eos)
  :components ((:file "tests")))