This file is indexed.

/usr/share/common-lisp/source/reversi/package.lisp is in cl-reversi 1.0.15-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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;;;;***************************************************************************
;;;;
;;;; FILE IDENTIFICATION
;;;;
;;;;  Name:           package.lisp
;;;;  Purpose:        Package definition for reversi
;;;;  Programer:      Kevin M. Rosenberg
;;;;  Date Started:   1 Nov 2001
;;;;
;;;; $Id$
;;;;
;;;; This file is Copyright (c) 2001-2003 by Kevin M. Rosenberg
;;;;
;;;; Reversi users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;;***************************************************************************

(in-package #:cl-user)

(defpackage #:reversi
  (:use #:common-lisp
        #+clisp #:ext
        #+clim #:clim
        #+clim #:clim-sys)
  #+clim
  (:shadowing-import-from :clim :pathname)
  #+clim
  (:shadowing-import-from :clim :interactive-stream-p)
  #+clim
  (:shadowing-import-from :clim :boolean)

  (:export
   #:reversi
   #:random-reversi-series
   #:round-robin
   #:reversi-series
   #:human
   #:iago
   #:alpha-beta-searcher
   #:alpha-beta-searcher2
   #:alpha-beta-searcher3
   #:count-difference
   #:weighted-squares
   #:modified-weighted-squares

   #:text-reversi
   #+clim #:clim-reversi
))