Problem running CVS via Ant

2004-08-05 Thread NullBock
I'm trying to do a simple checkout from CVS via ant; my target looks like this: target name=func cvs command=-Q checkout -P MyProject/ /target Running this returns an authorization failed error, with CVS saying I need to login. The following works from the command line, however: cvs -Q

log cmd for deleted files

2004-08-05 Thread Euan Guttridge
Help appreciated for: - log command to show filenames only for files deleted on a branch between 2 dates. Many thanks ___ Info-cvs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/info-cvs

Re: group permissions on parts of a module

2004-08-05 Thread Frederic Brehm
At 12:34 AM 8/5/2004, Mark D. Baushke wrote: Failing that, have a crontab job run thru the tree every so often and change the group for you. I suppose another way around it would be to run the cvs executable on your server as a set-gid process. I don't recommend it unless you know what you are

Re: group permissions on parts of a module

2004-08-05 Thread Joseph Shraibman
Todd Denniston wrote: directories should be drwxrwsr-x or drwxr-sr-x and should be owned by the correct user and group. That fixed my problem, thank you. ___ Info-cvs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/info-cvs

RE: Problem running CVS via Ant

2004-08-05 Thread Jim.Hyslop
[EMAIL PROTECTED] wrote: Run this command in a DOS window: set | find HOME 'set HOME' is easier - Windows will display all environment variables that begin with 'HOME'. -- Jim Hyslop Senior Software Designer Leitch Technology International Inc. (http://www.leitch.com) Columnist, C/C++ Users

Re: Problem running CVS via Ant

2004-08-05 Thread Greg Larkin
[EMAIL PROTECTED] (NullBock) wrote in message news:[EMAIL PROTECTED]... I'm trying to do a simple checkout from CVS via ant; my target looks like this: target name=func cvs command=-Q checkout -P MyProject/ /target Running this returns an authorization failed error, with CVS

Re: group permissions on parts of a module

2004-08-05 Thread Larry Jones
Joseph Shraibman writes [quoting me]: https://www.cvshome.org/docs/manual/cvs-1.11.17/cvs_2.html#SEC13 Setting LockDir helps, but that url is wrong. No, it's not. The entire section is relevant to what you're trying to do and the third paragraph explicitly talks about the need for

Re: group permissions on parts of a module

2004-08-05 Thread Mark D. Baushke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joseph Shraibman [EMAIL PROTECTED] writes: Joseph Shraibman [EMAIL PROTECTED] writes: ... Now the problem is that checkouts of certain files are failing because Permission denied. These files are owned by a group that the user is a member

Re: group permissions on parts of a module

2004-08-05 Thread Todd Denniston
Joseph Shraibman wrote: SNIP OK I have the checkout problem solved. Now the problem is that checkouts of certain files are failing because Permission denied. These files are owned by a group that the user is a member of, but not ^ is the _directory_ readable by his group and/or

RE: log cmd for deleted files

2004-08-05 Thread Jim.Hyslop
Euan Guttridge wrote: - log command to show filenames only for files deleted on a branch between 2 dates. Well, the first thing I usually do is look at the command-line options. % cvs --help log Usage: cvs log [-lRhtNb] [-r[revisions]] [-d dates] [-s states] [-w[logins]] [files...]

commitinfo file question

2004-08-05 Thread Tennis Smith
Hi I have a question concerning commitinfo and project standards. Is it possible to run an app (called by commitinfo) against a particular file in a specific sandbox at commit time? I'm trying to prototype a stylechecker and don't want anyone but myself affected initially. If this is possible,

Re: commitinfo file question

2004-08-05 Thread Frederic Brehm
At 12:41 PM 8/5/2004, Tennis Smith wrote: I have a question concerning commitinfo and project standards. Is it possible to run an app (called by commitinfo) against a particular file in a specific sandbox at commit time? I'm trying to prototype a stylechecker and don't want anyone but myself

Re: commitinfo file question

2004-08-05 Thread Frederic Brehm
At 12:53 PM 8/5/2004, Frederic Brehm wrote: It's probably easiest to create a new temporary and test your commitinfo script in there. That should be a new temporary REPOSITORY Sorry, Fred ___ Frederic W. Brehm, Sarnoff Corporation,

Re: commitinfo file question

2004-08-05 Thread Tennis Smith
Frederic Brehm [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] At 12:41 PM 8/5/2004, Tennis Smith wrote: I have a question concerning commitinfo and project standards. Is it possible to run an app (called by commitinfo) against a particular file in a specific sandbox at commit time?

Update Question

2004-08-05 Thread Tennis Smith
Hi, I have a single file that's pivital to a project. Any time that file is updated, we need to do a re-compile of the components dependent on it. Is there any way to automatically drive the recompilation when the user does a cvs update on that central file? Any examples are welcome too. ;-)

Re: Update Question

2004-08-05 Thread [EMAIL PROTECTED]
The most obvious suggestion to me is add a dependency rule to your makefile for this file that executes a cvs update important_file.c command. That way any time you do a make on the project, the critical file will be updated and recompiled if it has changed. For this to be useful, you must be

commitinfo questions

2004-08-05 Thread Tennis Smith \(tennis\)
Hi I have a question concerning commitinfo and project standards. Is it possible to run an app (called by commitinfo) against a particular file in a specific sandbox at commit time? I'm trying to prototype a stylechecker and don't want anyone but myself affected initially. If this is possible,