This file is indexed.

/usr/lib/R/site-library/RSQLite/announce is in r-cran-rsqlite 0.11.4-3.

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
Version 0.4-1 of the RSQLite package has been uploaded to CRAN
(RSQLite embeds the SQLite (www.sqlite.org) database engine in R.)

Changes include:

* Fixed problems exporting/importing NA's 

* An experimental new dbWriteTable() method to create SQLite tables
  from simple files (delimited fields) without creating intermediate 
  data.frames (useful for handling reasonably large amounts of data), 
  e.g., 
     > dbWriteTable(con, "tablename", "filename", header = TRUE, 
     +              sep = ",", eol = "\n", skip = 0)
     > methods?dbWriteTable           ## see full documentation
  
* dbConnect() now accepts values for the "cache_size" and "synchronous" 
  PRAGMAs (synchronous is set to 0 or "off") to improve SQLite 
  performance.
     > methods?dbConnect              ## see full documentation

Thanks to Seth Falcon, Ronggui Huang, and Charles Loboz for their
patches, bug reports, suggestions, and testing.