]> git.donarmstrong.com Git - cran2deb.git/blob - pkg/trunk/R/debianpkg.R
iconv: don't truncate input; omit the invalid character and continue.
[cran2deb.git] / pkg / trunk / R / debianpkg.R
1 append_build_from_pkg <- function(pkg, builds) {
2     pkg_build <- data.frame(id = -1     # never used
3                            ,package = pkg$name
4                            ,r_version = version_upstream(pkg$debversion)
5                            ,deb_epoch = version_epoch(pkg$debversion)
6                            ,deb_revision = version_revision(pkg$debversion)
7                            ,db_version = db_get_version()
8                            ,date_stamp = pkg$date_stamp
9                            ,git_revision = git_revision
10                            ,success = 1 # never used
11                            ,log = ''    # never used
12                            )
13     return(cbind(data.frame(srcname=pkg$srcname), rbind(builds, pkg_build)))
14 }
15
16 generate_changelog <- function(pkg) {
17     # TODO: ``Writing R extensions'' mentions that a package may also have
18     # {NEWS,ChangeLog} files.
19     builds <- append_build_from_pkg(pkg, db_builds(pkg$name))
20     sapply(rev(rownames(builds)), function(b, changelog) generate_changelog_entry(builds[b,], changelog), pkg$debfile('changelog.in'))
21 }
22
23 generate_changelog_entry <- function(build, changelog) {
24     # TODO: should say 'New upstream release' when necessary
25     debversion <- version_new(build$r_version, build$deb_revision, build$deb_epoch)
26     cat(paste(paste(build$srcname,' (',debversion,') unstable; urgency=low',sep='')
27              ,'' ,paste('  * cran2deb ',build$git_revision
28                        ,' with DB version ',as.integer(build$db_version),'.',sep='')
29              ,'',paste(' --',maintainer,'',build$date_stamp)
30              ,'','','',sep='\n'),file=changelog, append=TRUE)
31 }
32
33 generate_rules <- function(pkg) {
34     cat(paste('#!/usr/bin/make -f'
35              ,paste('debRreposname :=',pkg$repo)
36              ,'include /usr/share/R/debian/r-cran.mk'
37              ,'',sep='\n')
38        ,file=pkg$debfile('rules'))
39     Sys.chmod(pkg$debfile('rules'),'0700')
40 }
41
42 generate_copyright <- function(pkg) {
43     # generate_copyright file; we trust DESCRIPTION
44     writeLines(strwrap(
45         paste('This Debian package of the GNU R package',pkg$name
46              ,'was generated automatically using cran2deb by'
47              ,paste(maintainer,'.',sep='')
48              ,''
49              ,'The original GNU R package is Copyright (C) '
50              # TODO: copyright start date, true copyright date
51              ,format(Sys.time(),'%Y')
52              ,pkg$description[1,'Author']
53              ,'and possibly others.'
54              ,''
55              ,'The original GNU R package is maintained by'
56              ,pkg$description[1,'Maintainer'],'and was obtained from:'
57              ,''
58              ,pkg$repoURL
59              ,''
60              ,''
61              ,'The GNU R package DESCRIPTION offers a'
62              ,'Copyright licenses under the terms of the license:'
63              ,pkg$license,'.  On a Debian GNU/Linux system, common'
64              ,'licenses are included in the directory'
65              ,'/usr/share/common-licenses/.'
66              ,''
67              ,'The DESCRIPTION file for the original GNU R package '
68              ,'can be found in '
69              ,file.path('/usr/lib/R/site-library'
70                    ,pkg$debname
71                    ,'DESCRIPTION'
72                    )
73              ,sep='\n'), width=72), con=pkg$debfile('copyright.in'))
74 }
75
76 prepare_new_debian <- function(pkg,extra_deps) {
77     # generate Debian version and name
78     pkg$debversion = new_build_version(pkg$name)
79
80     # make the debian/ directory
81     debdir <- file.path(pkg$path,'debian')
82     pkg$debfile <- function(x) { file.path(debdir,x) }
83     unlink(debdir,recursive=T)
84     dir.create(debdir)
85
86     # see if this is an architecture-dependent package.
87     # heuristic: if /src/ exists in pkg$path, then this is an
88     #            architecture-dependent package.
89     # CRAN2DEB.pm is a bit fancier about this but ``Writing R extensions''
90     # says: ``The sources and headers for the compiled code are in src, plus
91     # optionally file Makevars or Makefile.'' It seems unlikely that
92     # architecture independent code would end up here.
93     if (pkg$is_bundle) {
94         # if it's a bundle, check each of the packages
95         pkg$archdep = F
96         for (pkgname in r_bundle_contains(pkg$name)) {
97             pkg$archdep = file.exists(file.path(pkg$path,pkgname,'src'))
98             if (pkg$archdep) {
99                 break
100             }
101         }
102     } else {
103         pkg$archdep = file.exists(file.path(pkg$path,'src'))
104     }
105     pkg$arch <- 'all'
106     if (pkg$archdep) {
107         pkg$arch <- host_arch()
108     }
109
110     pkg$license <- accept_license(pkg)
111     pkg$depends <- get_dependencies(pkg,extra_deps)
112     generate_changelog(pkg)
113     generate_rules(pkg)
114     generate_copyright(pkg)
115     generate_control(pkg)
116
117     # convert text to utf8 (who knows what the original character set is --
118     # let's hope iconv DTRT).
119     for (file in c('control','changelog','copyright')) {
120         log_system('iconv -o ',shQuote(pkg$debfile(file))
121                     ,' -t utf8 -c '
122                     ,shQuote(pkg$debfile(paste(file,'in',sep='.'))))
123         file.remove(pkg$debfile(paste(file,'in',sep='.')))
124     }
125     return(pkg)
126 }