/usr/lib/R/site-library/desc/README.Rmd is in r-cran-desc 1.1.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 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | ```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE,
fig.width = 8,
fig.height = 8)
```
# desc
> Parse DESCRIPTION files
[![Linux Build Status](https://travis-ci.org/r-lib/desc.svg?branch=master)](https://travis-ci.org/r-lib/desc)
[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/r-lib/desc?svg=true)](https://ci.appveyor.com/project/gaborcsardi/desc)
[![](http://www.r-pkg.org/badges/version/desc)](http://www.r-pkg.org/pkg/desc)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/desc)](http://www.r-pkg.org/pkg/desc)
[![Coverage Status](https://img.shields.io/codecov/c/github/r-lib/desc/master.svg)](https://codecov.io/github/r-lib/desc?branch=master)
Parse, manipulate and reformat DESCRIPTION files. The package
provides two APIs, one is object oriented, the other one is
procedural and manipulates the files *in place*.
---
- [Installation](#installation)
- [The object oriented API](#the-oo-api)
- [Introduction](#introduction)
- [Loading or creating new `DESCRIPTION` files](#loading-or-creating-new-description-files)
- [Normalizing `DESCRIPTION` files](#normalizing-description-files)
- [Querying, changing and removing fields](#querying-changing-and-removing-fields)
- [Dependencies](#dependencies)
- [Collate fields](#collate-fields)
- [Authors](#authors)
- [The procedural API](#the-procedural-api)
- [License](#license)
## Installation
```{r eval = FALSE}
source("https://install-github.me/r-lib/desc")
```
## The object oriented API
```{r}
library(desc)
```
### Introduction
The object oriented API uses [R6](https://github.com/wch/R6) classes.
### Loading or creating new `DESCRIPTION` files
A new `description` object can be created by reading a `DESCRPTION`
file form the disk. By default the `DESCRIPTION` file in the current
directory is read:
```{r}
desc <- description$new()
desc
```
A new object can also be created from scratch:
```{r}
desc2 <- description$new("!new")
desc2
```
### Normalizing `DESCRIPTION` files
Most `DESCRIPTION` fields may be formatted in multiple equivalent
ways. `desc` does not reformat fields, unless they are
updated or reformatting is explicitly requested via a call to
the `normalize()` method or using the `normalize` argument of the
`write()` method.
### Querying, changing and removing fields
`get()` and `set()` queries or updates a field:
```{r}
desc$set("Package", "foo")
desc$get("Package")
```
They work with multiple fields as well:
```{r}
desc$set(Package = "bar", Title = "Bar Package")
desc$get(c("Package", "Title"))
```
### Dependencies
Package dependencies can be set and updated via an easier API:
```{r}
desc$get_deps()
desc$set_dep("mvtnorm")
desc$set_dep("Rcpp", "LinkingTo")
desc$get_deps()
desc
```
### Collate fields
Collate fields can be queried and set using simple character
vectors of file names:
```{r}
desc$set_collate(list.files("../R"))
desc$get_collate()
```
### Authors
Authors information, when specified via the `Authors@R` field,
also has a simplified API:
```{r}
desc <- description$new("DESCRIPTION2")
desc$get_authors()
desc$add_author("Bugs", "Bunny", email = "bb@acme.com")
desc$add_me()
desc$get_authors()
```
## The procedural API
The procedural API is simpler to use for one-off `DESCRIPTION`
manipulation, since it does not require dealing with
`description` objects. Each object oriented method has a
procedural counterpart that works on a file, and potentially
writes its result back to the same file.
For example, adding a new dependency to `DESCRIPTION` in the
current working directory can be done with
```{r}
desc_set_dep("newpackage", "Suggests")
```
This added `newpackage` to the `Suggests` field:
```{r}
desc_get("Suggests")
```
So the full list of dependencies are now
```{r}
desc_get_deps()
```
## License
MIT © [Gábor Csárdi](https://github.com/gaborcsardi).
|