This file is indexed.

/usr/share/common-lisp/source/asdf-system-connections/asdf-system-connections.asd is in cl-asdf-system-connections 20170124-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
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-

(defpackage #:asdf-system-connections-system (:use #:cl #:asdf))
(in-package #:asdf-system-connections-system)

(defsystem asdf-system-connections
  :version "0.8.4"
  :author "Gary Warren King <gwking@metabang.com>"
  :maintainer "Gary Warren King <gwking@metabang.com>"
  :licence "MIT Style License"
  :description "Allows for ASDF system to be connected so that auto-loading may occur."
  :components 
  ((:module 
    "dev"
    :components ((:file "asdf-system-connections")))   
   (:module 
    "website"
    :components ((:module
		  "source"
		  :components ((:static-file "index.md")))))))