unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Jambunathan K <kjambunathan@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: mhuber@linux-magazin.de, emacs-devel@gnu.org,
	Tassilo Horn <tsdh@gnu.org>
Subject: Re: How many GNU Emacs committers?
Date: Sat, 27 Jul 2013 00:20:46 +0530	[thread overview]
Message-ID: <87d2q59mux.fsf@gmail.com> (raw)
In-Reply-To: <83vc3xz7vu.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 26 Jul 2013 17:57:25 +0300")

[-- Attachment #1: Type: text/plain, Size: 3820 bytes --]


Here is ChangeLog based stats.  Authors include `tiny change' authors.
Once Org-8.0 is merge the stats for 2013 will show a marked bump.

* Summary 

** Year 2012

Total commits	: 4895
Unique Authors	: 316

| commits | directory               | no. of authors |
|---------+-------------------------+----------------|
|    1454 | lisp/ChangeLog.16       |            151 |
|    1085 | src/ChangeLog.12        |             58 |
|     736 | lisp/org/ChangeLog      |             92 |
|     244 | doc/lispref/ChangeLog   |             24 |
|     230 | lisp/gnus/ChangeLog     |             44 |
|     224 | ChangeLog               |             24 |
|     192 | doc/misc/ChangeLog      |             49 |
|     135 | doc/emacs/ChangeLog     |             16 |
|     108 | nt/ChangeLog            |              9 |
|      84 | lib-src/ChangeLog       |             14 |
|      78 | etc/ChangeLog           |             33 |
|      71 | admin/ChangeLog         |             11 |
|      46 | lisp/url/ChangeLog      |             17 |
|      40 | test/ChangeLog          |             11 |
|      37 | lisp/cedet/ChangeLog    |             19 |
|      34 | lisp/erc/ChangeLog      |             12 |
|      25 | msdos/ChangeLog         |              4 |
|      21 | leim/ChangeLog          |              9 |
|      18 | doc/lispintro/ChangeLog |              5 |
|      11 | lwlib/ChangeLog         |              4 |
|      10 | lisp/mh-e/ChangeLog     |              5 |
|       5 | oldXMenu/ChangeLog      |              3 |
|       4 | nextstep/ChangeLog      |              1 |
|       3 | doc/man/ChangeLog       |              2 |


* Year 2013

Total commits	: 1887
Unique Authors	: 157

| commits | directory                | no. of authors |
|---------+--------------------------+----------------|
|     567 | /lisp/ChangeLog          |             73 |
|     280 | /lisp/ChangeLog.16       |             61 |
|     238 | /src/ChangeLog           |             29 |
|     145 | /src/ChangeLog.12        |             18 |
|     130 | /lisp/gnus/ChangeLog     |             34 |
|      93 | /ChangeLog               |             17 |
|      67 | /doc/misc/ChangeLog      |             23 |
|      59 | /doc/lispref/ChangeLog   |             15 |
|      50 | /etc/ChangeLog           |             23 |
|      47 | /test/ChangeLog          |             16 |
|      36 | /nt/ChangeLog            |              6 |
|      34 | /doc/emacs/ChangeLog     |              8 |
|      33 | /admin/ChangeLog         |              6 |
|      23 | /lisp/org/ChangeLog      |             17 |
|      20 | /lisp/cedet/ChangeLog    |              9 |
|      15 | /lib-src/ChangeLog       |              5 |
|       9 | /leim/ChangeLog          |              4 |
|       9 | /doc/lispintro/ChangeLog |              3 |
|       9 | /lisp/url/ChangeLog      |              3 |
|       9 | /lisp/erc/ChangeLog      |              4 |
|       8 | /lisp/mh-e/ChangeLog     |              6 |
|       2 | /msdos/ChangeLog         |              2 |
|       2 | /nextstep/ChangeLog      |              1 |
|       1 | /doc/man/ChangeLog       |              1 |
|       1 | /lwlib/ChangeLog         |              1 |


Here is the rough recipe.

1. M-x find-name-dired for ChangeLog files
2. % g for ^2012-
3. t k
4. RET all the ChangeLog files
5. M-x multi-occur-in-matching-buffers  on all ChangeLog buffers for  ^2012-
6. In occur buffer, keep only committer name i.e., delete lines nos, email etc
7. delete-duplicate-lines
8. There is also a org-sort-entries and some table magic thrown in.

I had to make some little modification to replace.el, so that it dumps
filenames instead of the buffer names.  I can send in the name of the
authors in each of the above directories that is ChangeLog-ged, if
there is some interest.


[-- Attachment #2: replace.el.diff --]
[-- Type: text/plain, Size: 427 bytes --]

=== modified file 'lisp/replace.el'
--- lisp/replace.el	2013-06-13 22:08:45 +0000
+++ lisp/replace.el	2013-07-26 15:45:21 +0000
@@ -1538,7 +1538,7 @@ See also `multi-occur'."
 				   (if (> (length buffers) 1)
 				       "" (format " for \"%s\""
 						  (query-replace-descr regexp)))
-				   (buffer-name buf))
+				   (buffer-file-name buf))
 			   'read-only t))
 		  (setq end (point))
 		  (add-text-properties beg end


[-- Attachment #3: Type: text/plain, Size: 854 bytes --]


Eli Zaretskii <eliz@gnu.org> writes:

>> From: Tassilo Horn <tsdh@gnu.org>
>> Date: Fri, 26 Jul 2013 16:36:52 +0200
>> Cc: emacs-devel@gnu.org
>> 
>> Back when emacs used CVS, only the actual committers were logged,
>> though they probably committed tons of changes others sent them per
>> mail but couldn't commit themselves.
>
> The names of the actual authors of the changes are always stated in
> the ChangeLog entries, and always have been.
>
> So I think the ChangeLog files are a much more accurate source of this
> kind of information that the VCS logs, including for this reason:
>
>> And there are many emacs packages that have their own repositories
>> (Org, Gnus, ERC, etc.), and not all of them are synched on a
>> per-commit basis with emacs' repository, so parts of their
>> contributors are probably not included in the statistics, too.

  parent reply	other threads:[~2013-07-26 18:50 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-26 13:55 How many GNU Emacs committers? Mathias Huber
2013-07-26 14:21 ` Juanma Barranquero
2013-07-26 14:28   ` Bastien
2013-07-26 15:46   ` Stefan Monnier
2013-07-26 14:30 ` Tassilo Horn
2013-07-26 14:36   ` Tassilo Horn
2013-07-26 14:57     ` Eli Zaretskii
2013-07-26 15:18       ` Tassilo Horn
2013-07-26 15:21         ` Mathias Huber
2013-07-26 15:50         ` Glenn Morris
2013-07-26 16:21           ` Eli Zaretskii
2013-07-26 16:23             ` Eli Zaretskii
2013-07-26 16:52               ` Tassilo Horn
2013-07-26 16:59                 ` Glenn Morris
2013-07-26 17:18                   ` Tassilo Horn
2013-07-26 17:21                     ` Glenn Morris
2013-07-27  8:39                       ` Tassilo Horn
2013-07-26 18:50       ` Jambunathan K [this message]
2013-08-01 11:02         ` Mathias Huber
2013-08-02  1:59           ` Xue Fuqiao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d2q59mux.fsf@gmail.com \
    --to=kjambunathan@gmail.com \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=mhuber@linux-magazin.de \
    --cc=tsdh@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).