Re: generated ChangeLog

2007-03-14 Thread Russ Allbery
Stepan Kasal <[EMAIL PROTECTED]> writes: > if a projects wants to generate ChangeLog dynamicly, from a > versioning system, by a make rule, how it can be done? I use cvs2cl or svn2cl depending on which version control system I'm using. -- Russ Allbery ([EMAIL PROTECTED])

Re: generated ChangeLog

2007-03-13 Thread Bob Proulx
perhaps this is the best solution, after all... If the choice is a generated ChangeLog or using 'foreign' then a third choice would be to use ChangeLog as a small pointer describing how to get the change log information from version control. I do that on some work projects that have not

Re: generated ChangeLog

2007-03-13 Thread Harlan Stenn
I've had similar problems with the NTP release. I ended up using 'foreign' for that and other reasons. I have also since decided to have 3 files in the top-level directory. The NEWS file is now high-level release notes. The ChangeLog file is now a human-edited list of short changes (one liners

Re: generated ChangeLog

2007-03-13 Thread Stepan Kasal
Hello, On Tue, Mar 13, 2007 at 09:25:14PM +0100, Andreas Schwab wrote: > If you use AUTOMAKE_OPTIONS = foreign then automake should not complain. yes, this is good note, thanks. I wanted to keep the gnu strictness, since I hoped Automake would also check other things for me. But perhaps this is

Re: generated ChangeLog

2007-03-13 Thread Stepan Kasal
g" is found. But I think the right name for the target is "$(srcdir)/ChangeLog", since it is a distributed file. Does this mean this is a bug in Automake? And if yes, then current implementations cannot rely on the feature, so how can one handle generated ChangeLog with current Automake? Thanks, Stepan

Re: generated ChangeLog

2007-03-13 Thread Andreas Schwab
Stepan Kasal <[EMAIL PROTECTED]> writes: > if a projects wants to generate ChangeLog dynamicly, from a > versioning system, by a make rule, how it can be done? > If you write the rule for ChangeLog to Makefile.am, then Automake > complains that the file does not exist at the time Automake is run

generated ChangeLog

2007-03-13 Thread Stepan Kasal
Hi, if a projects wants to generate ChangeLog dynamicly, from a versioning system, by a make rule, how it can be done? If you write the rule for ChangeLog to Makefile.am, then Automake complains that the file does not exist at the time Automake is run. Does any of the members have a bright idea