RE: CVS task failure: cannot rename

2008-01-02 Thread Judy Anderson
ick Genter [mailto:[EMAIL PROTECTED] Sent: Sunday, December 30, 2007 3:09 PM To: Ant Users List Subject: RE: CVS task failure: cannot rename > From: Judy Anderson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 25, 2007 1:51 PM > To: Ant Users List > Subject: RE: CVS task failure: cannot

RE: CVS task failure: cannot rename

2007-12-30 Thread Rick Genter
> From: Judy Anderson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 25, 2007 1:51 PM > To: Ant Users List > Subject: RE: CVS task failure: cannot rename > > I have done some more experimentation with my problem. It > only happens on binary files (flag "-kb"

RE: CVS task failure: cannot rename

2007-12-27 Thread Chuck Holzwarth
Judy, Look at the ant exec task. You may find something by executing an "ls -l" of the directory and then the directory and file string. You also may want to issue a umask command. It is possible that while your ID has write permission, ant has been restricted, this could be the case if the setu

RE: CVS task failure: cannot rename

2007-12-25 Thread Judy Anderson
I have done some more experimentation with my problem. It only happens on binary files (flag "-kb"). CVS is doing a different kind of update that involves delete/rename. I tried using on cvs with no help. It seems that, although I can "del" such a file manually, I cannot use ant's task on

Re: CVS task failure: cannot rename

2007-12-24 Thread David Weintraub
Judy: I can confirm that your CVS Archive does rest on a Unix machine because the CVS Root is in a Unix format. However, that really shouldn't make much difference. I did find this little notice in the task definition: CVSNT Note: CVSNT prefers users to store the passwords inside the registry.

Re: CVS Task

2005-12-05 Thread Antoine Levy-Lambert
Hello Guruprasad, your XML looks strange. . what does this 3D all over the place mean ? > Uhhm, 3D is the hexa for the equal sign. Anyway, I think that the problem is that cvs.exe is not in your path. I am not sure which versions of cvs.exe are OK for the Ant tasks, but I have had good experie

Re: CVS Task

2005-12-05 Thread Mark Eramo
Is it possible that the error is happening because it cannot mount that location (/usr/local/comp)? Make sure the server your running is properly mapped to that point. Have access rights changes on that location? Check that as well. Regards, Mark Guruprasad R <[EMAIL PROTECTED]> 12/05/2

Re: CVS Task

2005-12-05 Thread James Abley
Is cvs on your PATH? On Mon, 2005-12-05 at 12:29, Guruprasad R wrote: > Hi all, > > I have written a build file that does a checkout from the CVS. But, when i > invoke ant command for the written build file, i get an error message as > > *[cvs] Using cvs passfile: C:\Documents and Settings\admi

Re: CVS TASK - login

2005-08-27 Thread Andrew Goktepe
Have you looked at the cvspass task? This still uses the .cvspass file, but it allows you to provide the password so that you can log in for the first time from the Ant script. http://ant.apache.org/manual/CoreTasks/cvspass.html If you're running on Windows, though, there's a known bug that is

RE: CVS Task

2005-08-26 Thread Dominique Devienne
> From: Joe Rice [mailto:[EMAIL PROTECTED] > > I have a CVS Tree with a top directory called source that I want to > ignore. So my tree is: > > source/project1 > source/project2 > > I used eclipse to do the checkout and it ignored the top directory (I > assume with the -d option in the checkout

Re: cvs task with cvs log command

2005-08-05 Thread Steve Loughran
KrustyDerClown wrote: Hello, i have a problem with the task in ANT. Here my cvs target: command="log -d "2005-08-01<2005-08-03" C:/wsad/workspace/deployment_utilities > c:\\new_test.log" failonerror="yes" > But i get this error: [cvs] cvs log: cannot open CVS/Entries for reading: No such

RE: cvs task failing from cron

2005-07-08 Thread S I
t; <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: "Ant Users List" Subject: RE: cvs task failing from cron Date: Fri, 8 Jul 2005 13:57:58 -0500 MIME-Version: 1.0 X-Originating-IP: [205.143.75.32] Received: from mail.apache.org ([209.237.227.199]) by mc9-f2.hotmail.com

RE: cvs task failing from cron

2005-07-08 Thread George Dibi
All, After a build I send an email notification for PASS/FAIL. The problem is that sometimes I get this IO error. Have anyone ran to this problem before? I am using ant version 161 and 162. In either cases I am getting the same error. I would appreciate any help. hmpsuccess: [mail] Sending

RE: cvs task failing from cron

2005-07-07 Thread Anderson, Rob (Global Trade)
[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 7:45 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > Thanks Larry...I'll give it a go. > > Thanks again! > > On 7/7/05, Shatzer, Larry <[EMAIL PROTECTED]> wrote: > > The script t

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
script that sets up the path. I'm sure a few google searches > can help. > > -- Larry > > > -Original Message- > > From: blackwater dev [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 07, 2005 7:09 AM > > To: Ant Users List > > Subject: Re

RE: cvs task failing from cron

2005-07-07 Thread Shatzer, Larry
- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 7:09 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > Sorry Larry to be so dense but I am a linux newbie. > > So in the cron it needs to set the PATH variable as it is

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
age- > > From: blackwater dev [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 07, 2005 6:34 AM > > To: Ant Users List > > Subject: Re: cvs task failing from cron > > > > > > So cvs should be in my path env variable? How do I check that? > > > >

RE: cvs task failing from cron

2005-07-07 Thread Shatzer, Larry
onment you need. -- Larry > -Original Message- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 6:34 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > So cvs should be in my path env variable? How do I chec

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
So cvs should be in my path env variable? How do I check that? echo $PATH? On 7/7/05, Shatzer, Larry <[EMAIL PROTECTED]> wrote: > Make sure your script for cron sets up your path so cvs is in your path. > Cronjobs run in a minimal environment. > > -- Larry > > > -Original Message- > >

RE: cvs task failing from cron

2005-07-07 Thread Shatzer, Larry
Make sure your script for cron sets up your path so cvs is in your path. Cronjobs run in a minimal environment. -- Larry > -Original Message- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 5:48 AM > To: Ant Users List > Subject: cvs task failing from cro

Re: cvs task emailing on merge

2005-02-22 Thread Yves Martin
Yves Martin <[EMAIL PROTECTED]> writes: > blackwater dev <[EMAIL PROTECTED]> writes: > >> How can I have the cvs task email me about merges and not try to do them? > > You should use: > > > And then parse "file.txt" to look for merge or conflict operations. If yes, > send a mail, if no repe

Re: cvs task emailing on merge

2005-02-22 Thread Yves Martin
blackwater dev <[EMAIL PROTECTED]> writes: > How can I have the cvs task email me about merges and not try to do them? You should use: And then parse "file.txt" to look for merge or conflict operations. If yes, send a mail, if no repeat the command with '-n' ! Hope this helps -- Yves M

Re: cvs task behind a firewall

2004-12-21 Thread Peter Reilly
cvsgrab already has an ant task bundled with it: http://cvsgrab.sourceforge.net/ant-usage.html Peter Brian Kuhn wrote: I'm pretty sure you cannot get the cvs command line to use a proxy. I'm sure the Ant cvs task could be reworked to use CvsGrab too though. I'll have to look into that... On Tue,

Re: cvs task behind a firewall

2004-12-20 Thread Brian Kuhn
I'm pretty sure you cannot get the cvs command line to use a proxy. I'm sure the Ant cvs task could be reworked to use CvsGrab too though. I'll have to look into that... On Tue, 21 Dec 2004 10:49:48 +1100, Conor MacNeill <[EMAIL PROTECTED]> wrote: > > Brian Kuhn wrote: > > Does anyone know if

Re: cvs task behind a firewall

2004-12-20 Thread Conor MacNeill
Brian Kuhn wrote: Does anyone know if it's possible to get Ant's cvs task to use a proxy? I'm behind a corporate firewall. I've gotten Maven to use my proxy to download dependencies, but for some reason it doesn't pass the proxy configuration on to Ant's cvs task. I assume this is because it's n