This file is indexed.

/usr/share/common-lisp/source/uuid/uuid.asd is in cl-uuid 20130813-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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-

(defpackage #:uuid-asd
  (:use :cl :asdf))

(in-package :uuid-asd)

(defsystem uuid
  :name "uuid"
  :version "2012.12.26"
  :maintainer "Boian Tzonev"
  :author "Boian Tzonev"
  :licence "LLGPL"
  :description "UUID Generation"
  :long-description "Lisp implementation of rfc 4122"

  :serial t ;; the dependencies are linear.
  :components ((:file "uuid"))
  :depends-on ("ironclad" "trivial-utf-8"))