X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=trunk%2FR%2Fdebcontrol.R;h=a4f9271f5df1f8c484655bc7b10f700ca0ce958f;hb=a510afc2162b3bd5b1e5a64010f5e8f5d960d0ab;hp=a044f89ca4b041c0a8ed2f375fab9d898ef8bd13;hpb=5c3346e04a30bab6dfd88ad54a838afa50eb63e8;p=cran2deb.git diff --git a/trunk/R/debcontrol.R b/trunk/R/debcontrol.R index a044f89..a4f9271 100644 --- a/trunk/R/debcontrol.R +++ b/trunk/R/debcontrol.R @@ -122,14 +122,17 @@ generate_control <- function(pkg) { control[1,'Priority'] <- 'optional' control[1,'Maintainer'] <- maintainer control[1,'Build-Depends'] <- paste(pkg$depends$build, collapse=', ') - control[1,'Standards-Version'] <- '3.8.4' + control[1,'Standards-Version'] <- '3.9.1' + if ('URL' %in% colnames(pkg$description)) { + control[1,'Homepage'] <- pkg$description[1,'URL'] + } control[2,'Package'] <- pkg$debname control[2,'Architecture'] <- 'all' if (pkg$archdep) { control[2,'Architecture'] <- 'any' } - control[2,'Depends'] <- paste(pkg$depends$bin,collapse=', ') + control[2,'Depends'] <- paste(pkg$depends$bin,collapse=', ',sep='') # generate the description descr <- 'GNU R package "' @@ -151,7 +154,7 @@ generate_control <- function(pkg) { # write.dcf does not appear to have a nicer way of doing this. descr <- paste(descr,'"\n\n', long_descr, sep='') # add some extra nice info about the original R package - for (r_info in c('Author','Maintainer','URL')) { + for (r_info in c('Author','Maintainer')) { if (r_info %in% colnames(pkg$description)) { descr <- paste(descr,'\n\n',r_info,': ',pkg$description[1,r_info],sep='') }