Hi,
mentioned a few days ago I try to register "Wine" for participating at the Linuxtag 2007. They want some information that I can only guess. Maybe someone can provide me a better estimation for:
Developers in 1. Germany 2. Europe (incl. Germany) 3. Worldwide (incl. Europe)
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
On Mon, Feb 12, 2007 at 04:18:00PM +0100, Stefan Munz wrote:
Developers in
- Germany
- Europe (incl. Germany)
- Worldwide (incl. Europe)
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
isn't finding this number hard for OSS? what makes contributor a devloper?
for worldwide then the 873 lines from the AUTHORS file would be start.
Am Montag, 12. Februar 2007 16:32 schrieb Christoph Frick:
On Mon, Feb 12, 2007 at 04:18:00PM +0100, Stefan Munz wrote:
Developers in
- Germany
- Europe (incl. Germany)
- Worldwide (incl. Europe)
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
isn't finding this number hard for OSS? what makes contributor a devloper?
this isn't specified, though I think a rough estimate is ok.
for worldwide then the 873 lines from the AUTHORS file would be start.
I think they mean active developers in, so the authors file seems a bit too much.
Markus approach using the changelog file is ok, I think.
thanks && cu,
Stefan
On Mon, Feb 12, 2007 at 04:18:00PM +0100, Stefan Munz wrote:
Hi,
mentioned a few days ago I try to register "Wine" for participating at the Linuxtag 2007. They want some information that I can only guess. Maybe someone can provide me a better estimation for:
Developers in
- Germany
I briefly reviewed the Changelog for the last 9 months and found around 10 active developers.
- Europe (incl. Germany)
More difficult to find out, but lets just say 20 active developers.
- Worldwide (incl. Europe)
I guess around 35-40 active developers.
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
$ grep codeweavers.com ChangeLog |sort -t"<" +1 -u|wc -l 15
Ciao, Marcus
Hi Markus,
thanks for the detailed answer :-)
cu,
Stefan
Am Montag, 12. Februar 2007 16:37 schrieben Sie:
On Mon, Feb 12, 2007 at 04:18:00PM +0100, Stefan Munz wrote:
Hi,
mentioned a few days ago I try to register "Wine" for participating at the Linuxtag 2007. They want some information that I can only guess. Maybe someone can provide me a better estimation for:
Developers in
- Germany
I briefly reviewed the Changelog for the last 9 months and found around 10 active developers.
- Europe (incl. Germany)
More difficult to find out, but lets just say 20 active developers.
- Worldwide (incl. Europe)
I guess around 35-40 active developers.
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
$ grep codeweavers.com ChangeLog |sort -t"<" +1 -u|wc -l 15
Ciao, Marcus
On Mo, 2007-02-12 at 16:37 +0100, Marcus Meissner wrote:
Whith your help, what can be done, I found 54 contributors for 2007 in the changelog .
$ grep "^2007.*>" ChangeLog | sort -t "<" +1 -u | wc -l 56 (Stefan and Francois are twice in the list)
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
$ grep codeweavers.com ChangeLog |sort -t"<" +1 -u|wc -l 15
Alexandre is missing here, as he use @winehq.org
On Mo, 2007-02-12 at 17:58 +0100, Detlef Riekenberg wrote:
On Mo, 2007-02-12 at 16:37 +0100, Marcus Meissner wrote:
Whith your help, what can be done, I found 54 contributors for 2007 in the changelog .
$ grep "^2007.*>" ChangeLog | sort -t "<" +1 -u | wc -l 56 (Stefan and Francois are twice in the list)
"+1" works with "sort (GNU coreutils) 5.93" here, but is not documented in "man sort" and did not work on newer versions: "sort (GNU coreutils) 6.4" as example: file "+1" not found.
"-k 2" works on 5.93 and is documented:
$ grep "^2007.*>" ChangeLog | sort -t "<" -k 2 -u | wc -l 56
How does one unsubscribe from this list?
-m ============
Marcus Meissner wrote:
On Mon, Feb 12, 2007 at 04:18:00PM +0100, Stefan Munz wrote:
Hi,
mentioned a few days ago I try to register "Wine" for participating at the Linuxtag 2007. They want some information that I can only guess. Maybe someone can provide me a better estimation for:
Developers in
- Germany
I briefly reviewed the Changelog for the last 9 months and found around 10 active developers.
- Europe (incl. Germany)
More difficult to find out, but lets just say 20 active developers.
- Worldwide (incl. Europe)
I guess around 35-40 active developers.
How many developers work for Codeweavers (as they are for sure the biggest contributor)?
$ grep codeweavers.com ChangeLog |sort -t"<" +1 -u|wc -l 15
Ciao, Marcus
On Monday 12 February 2007 21:34, Mike wrote:
How does one unsubscribe from this list?
http://www.winehq.org/mailman/options/wine-devel
Cheers, Kevin