Skip to content

Commit 80311c1

Browse files
committed
added recognition of netcdf4
1 parent 2a40677 commit 80311c1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

R-Package/DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Title: Tools to bridge CRAN (https://cran.r-project.org) and OBS (https://build.
33
Version: 0.8
44
Authors @R: person("Detlef", "Steuer", email = "steuer@hsu-hh.de", role = c("aut", "cre"))
55
Description: The package contains functions to generate and work with rpm packages for OpenSUSE from CRAN.
6-
Depends: tools, dplyr
6+
Depends: devtools, tools, dplyr
77
License: GPL (>=2)
88
Encoding: UTF-8
99
LazyData: true
10-
RoxygenNote: 7.1.0
10+
RoxygenNote: 7.1.1

R-Package/R/specs.R

+4
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ sysreq2depends <- function(line){
283283
result <- addtoresult( result, "", "libxml2-devel")
284284
}
285285

286+
if ( grepl( "netcdf", line)) {
287+
result <- addtoresult( result, "netcdf", "netcdf netcdf-devel")
288+
}
289+
286290
if ( grepl( "OpenSSL", line)) {
287291
result <- addtoresult( result, "openssl", "openssl-devel")
288292
}

0 commit comments

Comments
 (0)