Displaying 20 results from an estimated 1000 matches similar to: "Build a special RPM"
2019 Oct 10
2
How to refer to my package from another package DESCRIPTION
Hello, I am developing some packages. Package1 requires Package2, both of which I developed:
Right now Package2 is installed properly here:
/myHome/libraries/Package2
Package1 needs Package2. Package1 refers to Package2 both in the Roxygen @import field for one of the functions, and also in the Imports section in the DESCRIPTION
However, when I do ?R CMD check Package1? I get:
* checking
2014 Nov 27
2
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Many thanks Duncan for the quick response.
A bug is a relief in a way. I've been digging my way deeper into this (and
learning more as I go) for several days now - but it is a diversion from (a
diversion from) my main goal :-(
Is there somewhere specific I should report or log the bug or will that
happen from this mailing-list automatically? (I have seen the Bug Tracking
link on the
2014 Nov 26
3
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Hi
I'm still exploring the R programming universe, so if this is being asked in
the wrong place, or in the wrong way (e.g. too verbose or lacking in crucial
detail or in the wrong format) please let me know
I am trying to understand when the version constraints for packages which
appear in the Imports field of a DESCRIPTION file are checked.
Along the way I've hit a snag
2014 Nov 27
2
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Hi Duncan
The difference is that in your call to loadNamespace, the versionCheck list
has 3 components (name, op and version), whereas the documentation only
mentions 2 (op and version).
loadNamespace 'works' for me provided I add a third component to the list
(even a nonsense one).
What I haven't yet had the fortitude to do is track down through the code to
see what the arguments
2009 Sep 12
3
problem with a repo
Hello,
I've got rpmforge and epel on centos 5.3. I'm trying to do an
install of perl-Image-Info for spamassassin image scanning. The package was
picked up in rpmforge since first, but it is failing to install because a
dependency is missing. I added perl-Image-Info to rpmforge's excludepkgs
line and tried to install the package again this time thinking it would pull
from epel. This
2014 Nov 27
1
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Hi Duncan,
Many thanks (yet again).
With the hint given by your earlier email (viz that currently loadNamespace
expects a 3rd component called name in the list that is used for the
versionCheck argument) I had another look at what was going on with my toy
examples yesterday evening. I'm still working on my issue, but thus far I
have:
1) Confirmed that internal calls to loadNamespace
2007 Feb 19
22
Puppet''s yum provider does not support versions?
Why doesn''t the yum provider support version, I tried added ensure ->
''ver'' and it barfs up (on clients) with:
<snip>
err: //stan.gbuild.org/any-host/java/Package[j2sdk]/ensure:
change from 1.4.2_12-fcs to 1.4.2_13-fcs failed: Package provider yum
does not support specifying versions at /etc/puppet/manifests/classes/
java.pp:13
</snip>
2007 Sep 09
2
package manager
How do I force the package manager to re-install a package?
Such as Development - > Development Tools -> G77
Or the entire Development tools package?
The G77 Is missing - and when I ask it to install - it states that is
already installed.
Thanks
Dan A. Dansereau
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Apr 30
1
aditional repo's
i'm looking for aditional repo's to add to yum that:
1) have multimedia apps
2) don't break my centos base install
2012 Jun 21
1
package slot of generic "[" and missing env@target?
Hi,
Since upgraded to R 2.15, I have a problem with duplicate S4 class name no longer works (the reason for having duplicate S4 class names is just software forks - they are largely identical but don't have an inheritence relationship, and will never have such).
This is happening with "library(mypackage2)" :
Error: package slot missing from signature for generic ?[?
and classes
2010 May 30
4
Changing R_LIB_USER variable in ubuntu...
Hi,
I'm an experienced R user on windows, but new to linux. This may be an
issue with how R (or Ubuntu) was install on my computer, but maybe not.
I just installed Ubuntu 10.04, I have administrator privileges and
am using R 2.11. Here goes:
I'd like to change the location where R installs packages not included
in the base installation (using install.packages()). Right now it is
2006 Feb 22
5
Can't join my domain
Guys and dolls,
Greetings, I hope you all are in good health, great spirits and your glasses
never empty.
I have a samba, openldap question.
I am trying to setup a FC-4 box to be a PDC for a small network of about 150
users. I was following the HOWTO on the SAMBA site. Everything seems to be
fine however I cannot join the domain. I get the error "User name could not
be found." The
2019 Oct 10
0
How to refer to my package from another package DESCRIPTION
On 10/10/2019 5:13 p.m., Ramiro Barrantes wrote:
> Hello, I am developing some packages. Package1 requires Package2, both of which I developed:
>
> Right now Package2 is installed properly here:
>
> /myHome/libraries/Package2
>
> Package1 needs Package2. Package1 refers to Package2 both in the Roxygen @import field for one of the functions, and also in the Imports section
2005 Sep 27
1
Samba 3 as PDC with Debian Linux server and Windows XP clients
Dear list
I am relatively new to networking problems of this kind so apologies
for the potentially simple question. I am trying to upgrade an existing
network to one using Samba 3 to configure roaming XP profiles on a
limited number of clients. I have re-written the smb.conf file to
reflect what I think are the appropriate settings, and this passed
testparm successfully, but I am unclear
2011 Aug 18
10
Circular RPM dependencies...
Hi.
I encountered a following problem, if I state for example:
package{"aspell-en": ensure => absent, }
package{"aspell": ensure => absent, }
I get error in logs because of dependencies. It seems that puppet uses
''yum'' for installation on CentOS and ''rpm -e'' for removal of packages,
so it cannot handle this kind of dependencies:
2007 Nov 19
1
building packages: hhc.exe not found using xp
Hello,
Apologies in advance if this should be in R-devel, not Rhelp. I did read through the R-devel thread started by Gabor Grothendieck in September of this year - I am getting the exact same error using a new computer that has XP installed, not vista, complaining that the file hhc.exe is not found. I have downloaded the hhc.exe to HTML Help Workshop dir in Program Files but it says that
2014 Nov 27
0
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
On 26/11/2014, 7:38 PM, Geoff Lee wrote:
> Many thanks Duncan for the quick response.
A little too quick, it seems...
>
> A bug is a relief in a way. I've been digging my way deeper into this (and
> learning more as I go) for several days now - but it is a diversion from (a
> diversion from) my main goal :-(
>
> Is there somewhere specific I should report or log the
2014 Nov 27
0
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
On 26/11/2014, 8:29 PM, Geoff Lee wrote:
> Hi Duncan
>
> The difference is that in your call to loadNamespace, the versionCheck list
> has 3 components (name, op and version), whereas the documentation only
> mentions 2 (op and version).
> loadNamespace 'works' for me provided I add a third component to the list
> (even a nonsense one).
>
> What I haven't
2006 Sep 27
2
Samba 3.0.23c panic
Hi,
I've just updated (using yum under fedora 5) to the latest version of
samba and am now encountering a major problem with samba. Whenever I
attempt to access shares (don't have printers or other such non disk
shares) the access fails (after prompting for password, and performing
some level of authentication, it notes if no password is entered that
Anonymous login successful).
2011 May 19
5
identical function names from 2 packages
Hi,
If I load 2 packages that have a function with the same
name, how do I tell R to run one or the other?
(Instead of having R automatically use the first- or
last-loaded one, whichever it is. (Which is it, by the way.))
Cheers!
Nick
--
====================================================
Nicholas J. Matzke
Ph.D. Candidate, Graduate Student Researcher
Huelsenbeck Lab
Center for