Skip to content

Commit d66b498

Browse files
authored
Merge pull request #687 from emacs-php/update/authors-apply-formar-contributors
Properly list the credits of all previous contributors
2 parents 76d6917 + 11d3c39 commit d66b498

File tree

4 files changed

+48
-5
lines changed

4 files changed

+48
-5
lines changed

AUTHORS.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ Names Sorted Alphabetically:
4949
- Engelke Eschner
5050
- Eric James Michael Ritz
5151
- Eric Mc Sween
52-
- Fred Yankowski
5352
- François-Xavier Bois
53+
- Fred Yankowski
5454
- Gerrit Riessen
5555
- Giacomo Tesio
5656
- Gregory Stark
5757
- Gu Weigang
58-
- Ian Eure
5958
- Herbert Jones
6059
- Hernawan Fa'iz Abdillah
60+
- Ian Eure
6161
- Jacek Wysocki
6262
- Jakub Jankiewicz
6363
- James Laver
@@ -91,12 +91,12 @@ Names Sorted Alphabetically:
9191
- Sean Champ
9292
- Sebastian Wiesner
9393
- Serghei Iakovlev
94-
- Syohei YOSHIDA
9594
- Stefan Monnier
9695
- Stig Bakken
97-
- Torsten Martinsen
96+
- Syohei YOSHIDA
9897
- Tim Landscheidt
9998
- Tom Willemsen
99+
- Torsten Martinsen
100100
- U-CPT\deb
101101
- USAMI Kenta
102102
- Valentin Funk
@@ -114,3 +114,7 @@ Names Sorted Alphabetically:
114114
- tijsmallaerts
115115
- zapad
116116
- 顾伟刚
117+
118+
A chronological list of pre-2019 contributors can be found at [wiki/Authors](https://github.com/emacs-php/php-mode/wiki/Authors).
119+
120+
Contributors since 2011, where this project was hosted, can also be found at [graphs/contributors](https://github.com/emacs-php/php-mode/graphs/contributors), except for accounts that have been withdrawn from GitHub.

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ AUTHORS.md: etc/git/AUTHORS.md.in .mailmap
1616
@printf "Generating AUTHORS.md file..."
1717
@test -d .git \
1818
&& (cat $< > $@ \
19-
&& git log --pretty=format:'- %aN' | LANG=C sort -u >> $@ \
19+
&& git log --pretty=format:'- %aN' | \
20+
cat etc/git/former-contributors - | LANG=C sort -u >> $@ \
21+
&& cat etc/git/AUTHORS2.md.in >> $@ \
2022
&& printf "FINISHED\n" ; ) \
2123
|| printf "FAILED (non-fatal)\n"
2224

etc/git/AUTHORS2.md.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
A chronological list of pre-2019 contributors can be found at [wiki/Authors](https://github.com/emacs-php/php-mode/wiki/Authors).
3+
4+
Contributors since 2011, where this project was hosted, can also be found at [graphs/contributors](https://github.com/emacs-php/php-mode/graphs/contributors), except for accounts that have been withdrawn from GitHub.

etc/git/former-contributors

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
- Aaron S. Hawley
2+
- Bill Lovett
3+
- Boris Folgmann
4+
- Chris Morris
5+
- Craig Andrews
6+
- David House
7+
- Dias Badekas
8+
- Doug Marcey
9+
- Eric Mc Sween
10+
- Fred Yankowski
11+
- Gerrit Riessen
12+
- Giacomo Tesio
13+
- Gregory Stark
14+
- Ian Eure
15+
- John Keller
16+
- Juanjo
17+
- Kevin Blake
18+
- Lennart Borgman
19+
- Mathias Meyer
20+
- Nils Rennebarth
21+
- Rex McMaster
22+
- Roland
23+
- Rosenfeld
24+
- Ryan
25+
- Sammartino
26+
- Sean Champ
27+
- Stefan Monnier
28+
- Stig Bakken
29+
- Torsten Martinsen
30+
- Valentin Funk
31+
- Ville Skytta
32+
- Vinai Kopp
33+
- ppercot

0 commit comments

Comments
 (0)