An open API service indexing awesome lists of open source software.

https://github.com/eddelbuettel/rcppapt

Rcpp Interface to the APT Package Manager
https://github.com/eddelbuettel/rcppapt

apt cran libapt-pkg r r-package

Last synced: over 1 year ago
JSON representation

Rcpp Interface to the APT Package Manager

Awesome Lists containing this project

README

          

## RcppAPT: Rcpp Interface to APT Package Manager

[![CI](https://github.com/eddelbuettel/rcppapt/workflows/ci/badge.svg)](https://github.com/eddelbuettel/rcppapt/actions?query=workflow%3Aci)
[![License](https://eddelbuettel.github.io/badges/GPL2+.svg)](https://www.gnu.org/licenses/gpl-2.0.html)
[![CRAN](https://www.r-pkg.org/badges/version/RcppAPT)](https://cran.r-project.org/package=RcppAPT)
[![Downloads](https://cranlogs.r-pkg.org/badges/RcppAPT?color=brightgreen)](https://www.r-pkg.org:443/pkg/RcppAPT)
[![Code Coverage](https://img.shields.io/codecov/c/github/eddelbuettel/rcppapt/master.svg)](https://app.codecov.io/github/eddelbuettel/rcppapt)
[![Last Commit](https://img.shields.io/github/last-commit/eddelbuettel/rcppapt)](https://github.com/eddelbuettel/rcppapt)

### Background

[Debian](https://www.debian.org) and its derivatives like
[Ubuntu](https://ubuntu.com/) utilize a powerful package managing backend /
frontend combination in APT (A Packaging Tool). Accessible at the
command-line via front-ends `apt`, `apt-get`, `apt-cache`, ... as well as
numerous GUI variants, it is implemented using a library `libapt-pkg`. This
small package provides [R](https://www.r-project.org) with access to this
library via [Rcpp](https://dirk.eddelbuettel.com/code/rcpp.html).

### Examples

We can query packages by regular expression:

```{.r}
R> library(RcppAPT)
R> getPackages("^r-base-.")
```

which returns a data frame with name, version (if installed) and section.

We can also check for installability of a given package or set of packages:

```{.r}
R> hasPackages(c("r-cran-rcpp", "r-cran-rcppapt"))
r-cran-rcpp r-cran-rcppapt
TRUE FALSE
R>
```

which shows that [Rcpp](http://dirk.eddelbuettel.com/code/rcpp.html) is (of
course) available, but this (very new) package is (unsurprisingly) not
available pre-built.

Moreover, we can look at the package information of a given package.
The `buildDepends()` function extracts just the build dependencies:

```{.r}
R> buildDepends("r-cran-rcppeigen")
[1] "debhelper" "r-base-dev" "cdbs"
[4] "r-cran-rcpp" "r-cran-matrix" "r-cran-pkgkitten"
R>
```

The `showSrc()` and `dumpPackages()` functions display even more information.

We can also look at reverse dependencies:

```{.r}
R> reverseDepends("r-cran-rcpp$")
package version
1 r-cran-surveillance
2 r-cran-rquantlib 0.11.0
3 r-cran-reshape2
4 r-cran-readxl
5 r-cran-rcppeigen 0.11.0-1
6 r-cran-rcpparmadillo 0.11.0
7 r-cran-plyr
8 r-cran-minqa 0.11.0
R>
```

### Status

The package is still fairly small, and functionality is (currently) limited
to the examples shown above. It builds reliably on the supported systems.

But `libapt-pkg` is pretty mature, and feature-rich, so this package acts
mostly as a wrapper from R.

### Installation

The package is on [CRAN](https://cran.r-project.org) so a very standard

```{.r}
install.packages("RcppAPT")
```

will do. Make sure you install the
[libapt-pkg-dev](https://packages.debian.org/sid/libapt-pkg-dev)
package first as it is a build-dependency.

Versions of the package may also be available via
[drat](http://dirk.eddelbuettel.com/code/drat.html) via:

```{.r}
drat:::add("eddelbuettel")
install.packages("RcppAPT")
```

### Author

Dirk Eddelbuettel

### License

GPL (>= 2)