Commit Graph

20 Commits

Author SHA1 Message Date
Yury Gribov 01f5295df1 Added Python implementation of mklog.
From-SVN: r250836
2017-08-02 21:01:08 +00:00
Yury Gribov e1df0c9134 Renamed original mklog to mklog.pl.
From-SVN: r250835
2017-08-02 20:58:23 +00:00
Yury Gribov 883b0e467a mklog: Fix extraction of changed file name.
2017-07-17  Yury Gribov  <tetra2005@gmail.com>

	* mklog: Fix extraction of changed file name.

From-SVN: r250314
2017-07-18 18:39:39 +03:00
Trevor Saunders 1f347c50ef teach mklog to look in the current directory for ChangeLog files
when run in repos other than gcc mklog fails to find ChangeLog files
because it looks for $0/../$dir/ChangeLog, but of course if the diff is
for a project other than gcc that might not exist.  It should be fine to
also look for $cwd/$dir/ChangeLog, and use that if we find it.  This
means that for example in binutils-gdb.git you can do git commit,
and then in your editor read git diff HEAD~ | mklog - to generate a
template ChangeLog for that commit.

contrib/ChangeLog:

2016-03-06  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

	* mklog: Look for the ChangeLog file in $cwd.

From-SVN: r234014
2016-03-06 17:36:19 +00:00
Yury Gribov a92a1c274c mklog: Ignore preprocessor directives.
2015-05-12  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Ignore preprocessor directives.

From-SVN: r223081
2015-05-12 15:31:02 +00:00
Tom de Vries fdb424cfea Use .mklog name and email settings, or git settings
2014-11-25  Tom de Vries  <tom@codesourcery.com>
	    Peter Bergner  <bergner@vnet.ibm.com>

	* mklog: Handle .mklog.  Use git setting independent of presence .git
	directory.

Co-Authored-By: Peter Bergner <bergner@vnet.ibm.com>

From-SVN: r218050
2014-11-25 16:45:13 +00:00
Tom de Vries 78d7f09fff Fix patch mangling with --inline option
2014-11-14  Tom de Vries  <tom@codesourcery.com>

	* mklog: Move reading of .diff file up and add comment.  Copy diff_lines
	to orig_diff_lines.  Use orig_diff_lines when appending patch.

From-SVN: r217558
2014-11-14 12:09:45 +00:00
Marat Zakirov 67183c4d78 mklog: Symbol '}' stops search for changes.
contrib/

2014-11-11  Marat Zakirov  <m.zakirov@samsung.com>

	* mklog: Symbol '}' stops search for changes.

From-SVN: r217357
2014-11-11 15:26:03 +00:00
Marat Zakirov a8cfbbdc74 mklog: Always doubt in functions.
contrib/

2014-11-07  Marat Zakirov  <m.zakirov@samsung.com>

	* mklog: Always doubt in functions.  
	Add EOF protection.

From-SVN: r217212
2014-11-07 08:15:19 +00:00
Tom de Vries 38278d8a9c Add --inline option to contrib/mklog
2014-09-22  Tom de Vries  <tom@codesourcery.com>

	* mklog: Add --inline option.

From-SVN: r215462
2014-09-22 12:53:12 +00:00
Yury Gribov 649aa8c183 mklog: Allow running from arbitrary folder.
2014-08-01  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Allow running from arbitrary folder.

From-SVN: r213401
2014-08-01 04:19:59 +00:00
Trevor Saunders 633e5fbb24 mklog: Run mklog as a filter.
contrib/
2014-07-21  Trevor Saunders  <tsaunders@mozilla.com>
	    Yury Gribov  <y.gribov@samsung.com>

	* mklog: Run mklog as a filter.

Co-Authored-By: Yury Gribov <y.gribov@samsung.com>

From-SVN: r212884
2014-07-21 07:45:45 +00:00
Trevor Saunders 863aa163a0 contrib/
2014-07-21  Trevor Saunders  <tsaunders@mozilla.com>

	mklog: Read name and email from git config when available.

From-SVN: r212883
2014-07-21 07:39:40 +00:00
Yury Gribov 69b0996357 mklog: Improve support of context diffs.
2014-01-29  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Improve support of context diffs.

From-SVN: r207265
2014-01-29 16:17:22 +00:00
Jonathan Wakely 6468818948 mklog: Fix description at top of file.
2014-01-27  Jonathan Wakely  <jwakely@redhat.com>

	* mklog: Fix description at top of file.

From-SVN: r207153
2014-01-27 21:43:09 +00:00
Tatiana Udalova e8b37cb6d5 * mklog: Avoid adding falsely changed functions to ChangeLog.
From-SVN: r206875
2014-01-21 16:07:22 +06:00
Yury Gribov b654717c8d mklog: Automatically insert comments in trivial cases.
2013-12-23  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Automatically insert comments in trivial cases.

From-SVN: r206175
2013-12-23 07:17:52 +00:00
Yury Gribov 26b086810a mklog: Split generated message in parts.
2013-12-19  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Split generated message in parts.

From-SVN: r206116
2013-12-19 14:50:05 +00:00
Marek Polacek 9adf6490fc The new mklog script prints three spaces after the date part, which is wrong.
The new mklog script prints three spaces after the date part, which
is wrong.  Thus fixed by adjusting the split pattern.  Tested manually.

2012-05-31  Marek Polacek  <polacek@redhat.com>

       * mklog: Prevent printing three spaces after the date.

From-SVN: r188265
2012-06-06 08:50:55 -04:00
Diego Novillo ba0d684ecd Add new skeleton ChangeLog file generator to contrib/
This script analyzes a .diff file and generates a skeleton ChangeLog
entry for it.  It tries fairly hard to find function names, so it's
important to use the -p switch with diff.

I wrote the initial code a while ago.  Cary added a bunch of smarts to
make it understand C++ and guess the function names better than the
original version.

2012-05-31   Diego Novillo  <dnovillo@google.com>
	     Cary Coutant  <ccoutant@google.com>

	* mklog: New.

Co-Authored-By: Cary Coutant <ccoutant@google.com>

From-SVN: r188072
2012-05-31 14:01:15 -04:00