summaryrefslogtreecommitdiff
path: root/build-aux/gitlog-to-changelog
Commit message (Collapse)AuthorAgeFilesLines
...
* gitlog-to-changelog: avoid an infloopJim Meyering2011-11-021-2/+5
| | | | | * build-aux/gitlog-to-changelog: Don't infloop for a commit log that ends up being empty.
* gitlog-to-changelog: fix git-log invocationDmitry V. Levin2011-10-311-3/+6
| | | | | | | git-log mishandles date strings before 1970-01-01 UTC, and there is no use to specify --since=1970-01-01 by default anyway. * build-aux/gitlog-to-changelog: By default, when no --since option was given, do not specify explicit --since option to git-log.
* gitlog-to-changelog: new option --append-dotDmitry V. Levin2011-10-311-1/+17
| | | | | * build-aux/gitlog-to-changelog: New option --append-dot, makes the first non-blank line of each commit message terminated with a dot.
* gitlog-to-changelog: treat a message with only blank lines as emptyDmitry V. Levin2011-10-301-4/+4
| | | | | | * build-aux/gitlog-to-changelog: Move the code that removes leading and trailing blank lines before the code that issues a warning about an empty commit message.
* maint: update almost all copyright ranges to include 2011Jim Meyering2011-01-011-1/+1
| | | | Run the new "make update-copyright" rule.
* update nearly all FSF copyright year lists to include 2010Jim Meyering2010-01-011-1/+1
| | | | | Use the same procedure as for 2009, outlined in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
* update nearly all FSF copyright year lists to include 2009Jim Meyering2009-12-291-1/+1
| | | | | | | | | | | | | | | | | | The files named by the following are exempted: grep -v '^#' config/srclist.txt|grep -v '^$' \ | while read src dst; do test -f "$dst" && { echo "$dst"; continue; } test -d "$dst" || continue echo "$dst"/$(basename "$src") done > exempt git ls-files tests/unictype >> exempt In the remaining files, convert to all-interval notation if - there is already at least one year interval like 2000-2003 - the file is maintained by me - the file is in lib/uni*/, where that style already prevails Otherwise, use update-copyright's default.
* perl scripts: remove #!/usr/bin/perl in favor of more portable...Jim Meyering2009-10-301-2/+5
| | | | | | | | | | | | | Rather than putting #!/usr/bin/perl on the first line, start with a variant of what's recommended by "man perlrun" that invokes the first "perl" program from your shell's search path. * build-aux/gitlog-to-changelog: Replace #!... as above. Add a "Local Variables" perl mode setting. Prompted by a patch from Ludovic Courtès. Improved by Eric Blake. * build-aux/useless-if-before-free: Likewise. * build-aux/announce-gen: Likewise. * build-aux/update-copyright: Likewise.
* Minor improvement in gitlog-to-changelogSergey Poznyakoff2009-08-121-2/+7
| | | | | * build-aux/gitlog-to-changelog: New option `--format' makes output format string configurable.
* gitlog-to-changelog: don't infloop on an empty commit logJim Meyering2009-06-041-8/+16
| | | | | * build-aux/gitlog-to-changelog: Warn about an empty log message. Reported by Boris Petersen <transacid@centerim.org>.
* gitlog-to-changelog: pass all command-line arguments to git-logWilliam Pursell2008-12-211-7/+7
| | | | | | | | | | | | | | When producing a ChangeLog, it is sometimes convenient to filter the commits in various ways. gitlog-to-changelog only allows --since to specify a start date, but git-log itself supports many other filtering mechanisms. At the moment, I want to filter by branch name. Rather than adding a --branch option to gitlog-to-changelog, it seems more flexible to simply pass all options directly to git-log and let git do the work. Notice that this effectively makes --since a redundant option for gitlog-to-changelog, but removing it would require current usage to change since calls would then require an additional '--'.
* gitlog-to-changelog: give better diagnostic for failed pipe-openBen Pfaff2008-08-191-2/+3
| | | | | * build-aux/gitlog-to-changelog: Improve error message: suggest that the version of Git may be too old.
* * build-aux/gitlog-to-changelog: Use committer date, not author date.Jim Meyering2008-02-101-2/+2
|
* New script and module: gitlog-to-changelogJim Meyering2008-02-091-0/+174
* MODULES.html.sh (maint+release support): Add gitlog-to-changelog. * modules/gitlog-to-changelog: New file. * build-aux/gitlog-to-changelog: New file.