Displaying 20 results from an estimated 2000 matches similar to: "[patch] AIX package build fixes, please commit"
2002 Mar 09
0
OpenSSH-3.1p1 AIX buildbff.sh patch
Hello All,
Attached is a patch makes the following changes to contrib/aix
relative to 3.1p1:
* Gets version number from ssh -V as suggested by Tim Rice.
* Does a better job of generating valid AIX package version numbers
(fixes inutoc "format of the toc file is invalid" and "invalid level"
errors reported by Mandar Mirashi).
* Tests for "make install" failure and
2002 Mar 07
0
OpenSSH-3.1p1 AIX packaging bug [patch]
Hello,
The change in release number broke some some assumptions in
buildbff.sh:
* SSH_VERSION was always on the last line of version.h
* The OpenSSH version number would give a valid installp version (which
must have four parts).
Thanks to Mandar Mirashi for pointing this out.
Anyone affected can try the following patch which works for me and
hopefully will behave sanely in future.
-Daz.
2002 May 20
0
OpenSSH AIX native packages available
Hello All,
Since (a) I've offered them to people and (b) the previous source of
AIX OpenSSH packages (freeware.bull.net) seems to be offline I've put my
AIX bff (SMIT/installp installable) packages up for download. Packages
for 3.1p1 and 3.2.2p1 are currently available.
If you want AIX packages I recommend you build them yourself with
contrib/aix/buildbff.sh, however if you can't
2007 Oct 02
0
patch: allow R CMD build exclude patterns to match symlinks
The following is a patch (svn diff) for the R CMD build script that
calculates exclude patterns after the tar/untar step rather than before. The
perl find() function, used in the calculation of the exclude patterns,
ignores symlinks, which meant that directory symlinks were not considered
for exclusion. Since the tar/untar step resolves (copies) symlinks, this
works around that limitation.
2002 Aug 07
2
OpenSSH 34p1 for AIX error. Please help
I'm trying to install open-ssh 34p1 on an Aix server, running 4.3.3..
I compiled openssh 0.9.6d and zlib 1.1.4. on the server , and also created
the a bff pancake using the contrib/aix/buildbff.sh script.
I can't start sshd either installing it as a package or without.
When I tried to start sshd I received the following error:
0509-036 Cannot load program /.sshd because of the following
2012 Apr 30
0
R CMD check . segfault on re-building vignettes
(Warning: There is some potential that this message is redundant.)
I think that i have spotted an issue with R CMD check that does not
trace back to a rare case, so it must have been reported already or i am
doing something stupid. However, to be sure and because I did not find
any comments on this while searching the R mailing lists, here is what i
did:
R CMD check .
from within a package
2012 Apr 30
0
file.copy(src, src, recursive=TRUE) causes a segfault (Was: Re: R CMD check . segfault on re-building vignettes)
It appears that file.copy() does not protect against the case when one
copies one directory to a subdirectory of itself resulting in it
trying to create and endless recursive copy of itself.
REPRODUCIBLE EXAMPLE:
src <- "foo"
dir.create(src);
file.copy(src, src, recursive=FALSE) # ok
file.copy(src, src, recursive=TRUE) # PROBLEM
2002 Dec 16
1
Creating libraries: Cannot make help
Hi all
I am trying to package a library in R 1.6.1 (Windoze XP).
I have read the document "Writing R extensions" and think I
have done things correctly (though apparently not). I have
searched the mail archives for help to no avail.
I also posted a few days ago and thanks to Peter Dalgaard I have
managed to focus my search for errors.
I am trying to create a library in R. I run the
2016 Dec 06
0
MSYS2 maintainer contacted
I wrote to the MSYS2 package maintainer about the download
mingw-w64-i686-xapian-core-1.4.1-1-any.pkg.tar.xz, missing
the /mingw32/lib/libxapian.la file.
Admittedly, I ran without arguments configure on their copy
"xapian-1.4.1-1" of the sources, whereas the maintainer had
arguments to configure. So before further attendance to the
subject I should check if the xapian-1.4.1 &
2017 Sep 22
0
R CMD build errors if files cannot be moved, even if they are in Rbuildignore
When a package is built it is first moved to a temporary directory (lines
962-980 in build.R). However, this moves *all* files to the temporary
directory, even those in Rbuildignore; only later (lines 997-1024) are
Rbuildignore files excluded.
The problem with this approach is that some files in the package directory
may not be movable. On Windows at least, the full path name to a file must
not
2006 Sep 20
0
RE: Samba/AD and AIX (WAS: Dependent module /usr/lib/libiconv.a)
On Wed, 20 Sep 2006, Alexandre Sobral wrote:
> Willian,
>
> Tnks It´s ok with unset command.
>
Fantastic!
> I´m trying implement the Samba for AIX with Active Directory Integration.
> Do you have any idea where can i find a How to about this.
> I´ve already search from internet but I haven´t found yet.
>
>
I know that Johann Kappacher in Vienna, Austria just
2005 Feb 07
1
Problems encountered/fixed making CrossCompileBuild
Dear All:
I encountered and apparently overcame problems following Yan
and Rossini?s procedure for "Building Microsoft Windows
Versions of R and R packages under Intel Linux"
(http://cran.r-project.org/doc/contrib/cross-build.pdf): I
have successfully cross-compiled R packages for Windows on a
FreeBSD 4.10 i386 system.
My revisions to Makefile-rcb (http://cran.r-
2002 Mar 02
2
Support for AIX native (.bff) packages: patch available
Hello All,
I've written basic support for creating AIX native packages (ie installp/SMIT installable .bff's) that lives in contrib/aix. It is based on Ben Lindstrom's Solaris buildpkg.sh. It requires no special tools and all code was either written by me or derived from the openssh distribution itself. It is made available under the same terms as buildpkg.sh (ie public domain).
2001 Apr 27
1
INSTALL Problems
Dear All,
I have tried to install the tensor package (from:
http://cran.r-project.org/src/contrib/PACKAGES.html#tensor ), using the
comand:
"
shell("Rcmd INSTALL tensor")
"
then I got the following mensage:
----------------------------------------------------------------------------------
make: Entering directory `/d/bin/cran/rw1022/src/gnuwin32'
make DLLNM= EXTRADOCS= \
2002 May 24
1
patch for openssh/contrib/solaris/buildpkg.sh
Here is a small patch for OpenSSH 3.2.3p1..
When the package postinstall script runs, it presumes that the package
will be installed relative to the current / directory.. If this package
is installed as part of a Solaris Jumpstart installation, this will not be
the case. Consequentially, the /etc/ssh/sshd_config.default will never
get copied to /etc/ssh/sshd_config on the new operating system.
2001 Feb 23
0
cross building
I was trying to learn cross building an R pcakage for windows on my linux
machine. I picked a relatively small library gee to test. I downloaded the
cross-tools and put them in my path,
jyan at ludwig:/a3/jyan/src/R-1.2.1/src/gnuwin32$ echo $PATH
/home/jyan/cross-tools/bin:/home/jyan/cross-tools/i386-mingw32msvc/bin:
/usr/lib:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games
Following the
2004 Apr 30
0
buildpkg.sh enhancements
I've made some changes to buildpkg.sh to make it easier for package
builders to add their local changes.
I'd like people that use buildpkg.sh to test and comment on these
changes before I commit them to CVS.
None of the defaults have changed.
Some of the patch is is just moving chunks of code to a different
location to make some of the enhancements work.
Some things you may find
2009 Jun 01
0
install.packages hangs RGui with frozen rpwd process at (PR#13739)
Uwe Ligges wrote:
>
>
> astokes at esica.com wrote:
>> Full_Name: Allan Stokes
>> Version: 2.8.1
>> OS: XP
>> Submission from: (NULL) (24.108.0.245)
>>
>>
>> I've just spent a hellish six hours trying to create my own R package
>> with a
>> bare bones "hello world" R function inside. I was able to create a
>>
2024 Aug 16
2
boxplot notch
Thanks Ben,
Here the reproducible example.
It works without notch=TRUE, but provides an error with notch=TURE
Error in `geom_boxplot()`:
! Problem while converting geom to grob.
? Error occurred in the 1st layer.
Caused by error in `ans[ypos] <- rep(yes, length.out = len)[ypos]`:
! replacement has length zero
Run `rlang::last_trace()` to see where the error occurred.
Warning message:
In
2003 Sep 28
0
(fwd) package inst directory copied too early? (PR#4329)
This bug appears in the current Windows build; I don't know if it
applies generally.
Duncan Murdoch
On Fri, 26 Sep 2003 15:25:57 +1200 (NZST), Ray Brownrigg
<ray@mcs.vuw.ac.nz> wrote:
>If you INSTALL (Rcmd INSTALL) or cross-compile
>(make PKGDIR=/pkg RLIB=/library pkg-mypkg) the copying of the inst
>directory seems to happen very early in the process, *before anything is