Examples for 'R.utils::System$parseDebian'


Parses a string, file or connection for Debian formatted parameters

Aliases: System$parseDebian parseDebian.System System.parseDebian parseDebian,System-method

Keywords: internal methods

### ** Examples

 file <- file.path(Package("R.utils")$path, "DESCRIPTION")
 l <- System$parseDebian(file=file)
 print(l)
$Package
[1] "R.utils"

$Version
[1] "2.11.0"

$Depends
[1] "R (>= 2.14.0), R.oo (>= 1.24.0)"

$Imports
[1] "methods, utils, tools, R.methodsS3 (>= 1.8.1)"

$Suggests
[1] "digest (>= 0.6.10)"

$Title
[1] "Various Programming Utilities"

$`Authors@R`
[1] "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))"

$Author
[1] "Henrik Bengtsson [aut, cre, cph]"

$Maintainer
[1] "Henrik Bengtsson <henrikb@braju.com>"

$Description
[1] "Utility functions useful when programming and developing R packages."

$License
[1] "LGPL (>= 2.1)"

$LazyLoad
[1] "TRUE"

$URL
[1] "https://github.com/HenrikBengtsson/R.utils"

$BugReports
[1] "https://github.com/HenrikBengtsson/R.utils/issues"

$NeedsCompilation
[1] "no"

$Packaged
[1] "2021-09-26 07:18:48 UTC; hb"

$Repository
[1] "CRAN"

$`Date/Publication`
[1] "2021-09-26 08:30:02 UTC"

$Built
[1] "R 4.2.3; ; 2024-11-28 07:40:29 UTC; unix"

[Package R.utils version 2.11.0 Index]