search for: split_descript

Displaying 10 results from an estimated 10 matches for "split_descript".

2004 Oct 16
3
Problem Compiling R-2.0.0 on Linux Alpha
Hi folks: I'm trying to compile R-2.0.0 on my Alpha (164SX; alphapca56-unknown-linux-gnu) running RedHat Linux 7.2 with gcc3.4.1. Here is where the compile terminates: .... .... building package 'tcltk' mkdir -p -- ../../../library/tcltk/R mkdir -p -- ../../../library/tcltk/demo mkdir -p -- ../../../library/tcltk/exec mkdir -p -- ../../../library/tcltk/man make[4]: Entering directory
2004 Oct 16
3
Problem Compiling R-2.0.0 on Linux Alpha
Hi folks: I'm trying to compile R-2.0.0 on my Alpha (164SX; alphapca56-unknown-linux-gnu) running RedHat Linux 7.2 with gcc3.4.1. Here is where the compile terminates: .... .... building package 'tcltk' mkdir -p -- ../../../library/tcltk/R mkdir -p -- ../../../library/tcltk/demo mkdir -p -- ../../../library/tcltk/exec mkdir -p -- ../../../library/tcltk/man make[4]: Entering directory
2025 Jan 16
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...build.R =================================================================== --- src/library/tools/R/build.R (revision 87545) +++ src/library/tools/R/build.R (working copy) @@ -1165,9 +1165,11 @@ desc <- .read_description(file.path(pkgname, "DESCRIPTION")) Rdeps <- .split_description(desc)$Rdepends2 hasDep350 <- FALSE + hasDep410 <- FALSE for(dep in Rdeps) { if(dep$op != '>=') next if(dep$version >= "3.5.0") hasDep350 <- TRUE + if(dep$version >= "4.1.0") hasDep410 <...
2025 Jan 16
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...================================================== > --- src/library/tools/R/build.R (revision 87545) > +++ src/library/tools/R/build.R (working copy) > @@ -1165,9 +1165,11 @@ > desc <- .read_description(file.path(pkgname, "DESCRIPTION")) > Rdeps <- .split_description(desc)$Rdepends2 > hasDep350 <- FALSE > + hasDep410 <- FALSE > for(dep in Rdeps) { > if(dep$op != '>=') next > if(dep$version >= "3.5.0") hasDep350 <- TRUE > + if(dep$version >= &qu...
2025 Jan 17
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...================================================ >> --- src/library/tools/R/build.R (revision 87545) >> +++ src/library/tools/R/build.R (working copy) >> @@ -1165,9 +1165,11 @@ >> desc <- .read_description(file.path(pkgname, "DESCRIPTION")) >> Rdeps <- .split_description(desc)$Rdepends2 >> hasDep350 <- FALSE >> + hasDep410 <- FALSE >> for(dep in Rdeps) { >> if(dep$op != '>=') next >> if(dep$version >= "3.5.0") hasDep350 <- TRUE >> + if(dep$version >= "4.1.0") hasD...
2025 Jan 19
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...============================ >>> --- src/library/tools/R/build.R (revision 87545) >>> +++ src/library/tools/R/build.R (working copy) >>> @@ -1165,9 +1165,11 @@ >>> desc <- .read_description(file.path(pkgname, "DESCRIPTION")) >>> Rdeps <- .split_description(desc)$Rdepends2 >>> hasDep350 <- FALSE >>> + hasDep410 <- FALSE >>> for(dep in Rdeps) { >>> if(dep$op != '>=') next >>> if(dep$version >= "3.5.0") hasDep350 <- TRUE >>> + if(dep$version >=...
2025 Jan 22
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...======== >>>> --- src/library/tools/R/build.R (revision 87545) >>>> +++ src/library/tools/R/build.R (working copy) >>>> @@ -1165,9 +1165,11 @@ >>>> desc <- .read_description(file.path(pkgname, "DESCRIPTION")) >>>> Rdeps <- .split_description(desc)$Rdepends2 >>>> hasDep350 <- FALSE >>>> + hasDep410 <- FALSE >>>> for(dep in Rdeps) { >>>> if(dep$op != '>=') next >>>> if(dep$version >= "3.5.0") hasDep350 <- TRUE >>>> +...
2004 Nov 16
2
problems with compiling a package
Hello, I am trying to compile packages for R2.0.0 patch in a win XP machine. Most of the packages compile without problems, with C or FTG or only R. Now some packeges give the following error which I do not understand how to correct ... preparing package xxx for lazy loading Error in "names <- .default"('*tmp*',value=c("R","Platform","Date", :
2004 Oct 17
2
Re: [R] Problem Compiling R-2.0.0 on Linux Alpha
...R-2.0.0 on Linux Alpha On 17 Oct 2004, Peter Dalgaard wrote: > This is not an architecture-specific bug at all, it just happens to be > tickled by the specific length of "alphapca56-unknown-linux-gnu"! > > I'm unsure whether the problem is in read.dcf or whether > split_description could just use strsplit(Built, ";[ \n]") and begone > with it. The latter should be a workaround for you in either case. The problem is in .install_package_description: the Built: field must not be split across lines. (The newline does not have to added after ;, so your fix is...
2025 Jan 22
1
Depends: R (>= 4.1) for packages that use |> and \(...)
...;> --- src/library/tools/R/build.R (revision 87545) > >>>> +++ src/library/tools/R/build.R (working copy) > >>>> @@ -1165,9 +1165,11 @@ > >>>> desc <- .read_description(file.path(pkgname, "DESCRIPTION")) > >>>> Rdeps <- .split_description(desc)$Rdepends2 > >>>> hasDep350 <- FALSE > >>>> + hasDep410 <- FALSE > >>>> for(dep in Rdeps) { > >>>> if(dep$op != '>=') next > >>>> if(dep$version >= "3.5.0") hasDep350 <- TRUE &...