This is a discussion on Re: Patch Count? within the pgsql Hackers forums, part of the PostgreSQL category; --> yOn Fri, 4 Feb 2005, Bruce Momjian wrote: > Josh Berkus wrote: >> Marc, >> >>> How do you ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| yOn Fri, 4 Feb 2005, Bruce Momjian wrote: > Josh Berkus wrote: >> Marc, >> >>> How do you get the count? CVS names at the tail of the commit? >> >> I don't know; Marc and you did it. I'm looking for the number of *people*, >> not the number of patches. So part of it would come from your mailbox. > > I didn't do it, but it might have been a guess of mine. Ya, I don't recall doing it either But let me see if I can come up with some *very* rought #s ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: scrappy@hub.org Yahoo!: yscrappy ICQ: 7615664 ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) |
| |||
| Using the same search for 7.4 shows only 48 patch submitters, based on posts to pgsql-patches ... Aizaz Ahmed Alvaro Herrera Andreas Pflug Andrew Dunstan Barry Lind Bertrand Petit Bruce Momjian Bruno Wolff Christopher Browne Christopher Kings-Lynne Dave Cramer Dennis Björklund Fernando Nasser Gavin Sherry Hal Snyder Heikki Linnakangas Ivar Jan Wieck Jason Tishler Jeroen T. Joe Conway Jonathan Bartlett Josh Berkus Josh Wilmes Karel Zak Kevin Brown Kim Ho Kris Jurka Kurt Roeckx Larry Rosenman Lee Kindness Manfred Koizar Manfred Spraul Michael Graff Michael Meskes Neil Conway Nic Ferrier Nigel J. Nigel Kukard Patrick Welche Peter Eisentraut Robert Treat Roberto Mello Rod Taylor Ron Mayer Sean Chittenden Tom Lane Troels Arvin ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org |
| |||
| -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >> I didn't do it, but it might have been a guess of mine. > > Ya, I don't recall doing it either I did it last time. It's been a while now, but I think what I did was basically look at all the commit messages from the previous release to the current one, and then used a perl script to extract everything that looked like a name or an email address. Then I manually went through and cleaned things up by verifying names, removing duplicates, etc. This relies on the actual commiter giving credit to the patcher, but everyone here is really good about doing that. the script around, but I can dig it up if it's needed. - -- Greg Sabino Mullane greg@turnstep.com PGP Key: 0x14964AC8 200502050103 http://biglumber.com/x/web?pk=2529DF...9B906714964AC8 -----BEGIN PGP SIGNATURE----- iD8DBQFCBGHvvJuQZxSWSsgRAlZTAJ9tyRvXsqoHx25ZF5cDQ7 vnV9hiNQCgh+oS 7Bq7h4IKPzfIS5P1vVB+B/g= =jEwx -----END PGP SIGNATURE----- ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org |
| ||||
| On Sat, 5 Feb 2005, Greg Sabino Mullane wrote: > I did it last time. It's been a while now, but I think what I > did was basically look at all the commit messages from the > previous release to the current one, and then used a perl script > to extract everything that looked like a name or an email > address. Then I manually went through and cleaned things up by > verifying names, removing duplicates, etc. This relies on the > actual commiter giving credit to the patcher, but everyone > here is really good about doing that. > the script around, but I can dig it up if it's needed. I'm trying the following on the archives: grep From: `find 2004-* 2003-1[12] -type f -name "msg*" -exec grep --silent "^diff " {} \; -print` | \ awk -F: '{print $3}' | \ sed 's/<\/em>//g' | \ sed 's/</ /' | \ awk '{printf"%s %s\n", $1, $2}' | \ sort -u The problem with commit logs is that a good portion are just 'reports from' vs patches ... neither method will necessarily be particularly accurate ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: scrappy@hub.org Yahoo!: yscrappy ICQ: 7615664 ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings |