This file is indexed.

/usr/share/el-get/recipes/package.rcp is in el-get 3.1-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
(:name package
       :description "ELPA(Emacs Lisp Package Archive)"
       :type http
       :url "http://tromey.com/elpa/package.el"
       :features package
       :post-init (lambda ()
            (setq package-user-dir 
              (expand-file-name 
               (convert-standard-filename 
                (concat (file-name-as-directory 
                     (el-get-package-directory "package")) 
                    "elpa")))
              package-directory-list 
              (list (file-name-as-directory package-user-dir) 
                "/usr/share/emacs/site-lisp/elpa/"))
            (make-directory package-user-dir t)
            (package-initialize)))