This file is indexed.

/usr/lib/R/site-library/sourcetools/NEWS.md is in r-cran-sourcetools 0.1.6-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
# sourcetools 0.1.5

- Ensure that symbols included from e.g. `<cstdio>`, `<cstring>`
  are resolved using a `std::` prefix.
# sourcetools 0.1.4

- More work to ensure `sourcetools` can build on Solaris.

# sourcetools 0.1.3

- Relax C++11 requirement, to ensure that `sourcetools` can
  build on machines with older compilers (e.g. gcc 4.4).
  
# sourcetools 0.1.2

- Disable failing tests on Solaris.

# sourcetools 0.1.1

- Rename token type `ERR` to `INVALID` to fix build errors
  on Solaris.

# sourcetools 0.1.0

## Features

The first release of `sourcetools` comes with a small set
of features exposed to R:

- `read(file)`: Read a file (as a string). Similar to
  `readChar()`, but faster (and maybe be optimized to
  use a memory mapped file reader in the future).

- `tokenize_file(file)`: Tokenize an R script.

- `tokenize_string(string)`: Tokenize a string of R code.