This file is indexed.

/usr/lib/R/site-library/date/CITATION is in r-cran-date 1.2.34-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
citHeader("To cite in publications use:")

## R >= 2.8.0 passes package metadata to citation().
if(!exists("meta") || is.null(meta)) meta <- packageDescription("date")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s.", meta$Version)

citEntry(entry = "Manual",
	 title = "date: Functions for handling dates",
	 author = personList(
           person("Terry", "Therneau",
                  email = "therneau@mayo.edu"),
           person("Thomas", "Lumley",
                  email = "thomas@biostat.washington.edu"),
           person("Kjetil", "Halvorsen",
                  email = "khal@alumni.uv.es"),
           person("Kurt", "Hornik",
                  email = "Kurt.Hornik@R-project.org")),
         year = year,
	 note = {
             paste(note,
                   "S original by Terry Therneau,",
		   "R port by Thomas Lumley, Kjetil Halvorsen,",
		   "and Kurt Hornik.")
         },
	 url = "http://CRAN.R-project.org/package=date",
	 textVersion = {
             paste("Terry Therneau and Thomas Lumley",
	           "and Kjetil Halvorsen and Kurt Hornik",
	           sprintf("(%s).", year),
		   "date: Functions for handling dates.",
                   note)
         })