diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-01-18 18:18:23 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-02-03 01:02:38 +0100 |
commit | 0e002d195a18a3c1ee57605cc0783298106fe060 (patch) | |
tree | 38dcd4c676b7c459846cb6836e7dd6a10ffbafab /appendices | |
parent | devbook.xsl: Add simple navigation in offline mode. (diff) | |
download | devmanual-0e002d195a18a3c1ee57605cc0783298106fe060.tar.gz devmanual-0e002d195a18a3c1ee57605cc0783298106fe060.tar.bz2 devmanual-0e002d195a18a3c1ee57605cc0783298106fe060.zip |
appendices/contributors: Update list of contributors.
- Add contributors when they have added at least 40 lines (yes, this
is quite arbitrary) to a file, based on the script below. This was
followed by some manual sanity checks, e.g., whether the line count
doesn't originate only from paragraph reformatting.
for i in $(find . -name .git -prune -o -type f -print); do
echo $i
git blame -e -w $i
done \
| awk '
/^\./ { file=$1; next }
{ lines[gensub(/.*\(<([^@]*)@.*/, "\\1", 1, $0), file]++ }
END {
for (x in lines) {
split(x, y, SUBSEP)
if (lines[x] >= 40)
printf "%-15s %-50s %4d\n", y[1], y[2], lines[x]
}
}' \
| sort
Where contributions to more than three (or to all) subdocuments of any
document would have been listed, only the parent document is listed
instead.
- Remove zhen as contributor for appendices/devbook-guide, because all
nontrivial lines written by him have been removed (or moved elsewhere),
most of them already in 2003:
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo/xml/htdocs/doc/en/xml-guide.xml?r1=1.19&r2=1.20
- Change description of halcy0n from "current maintainer" to "previous
maintainer", because his last commit was in 2010.
Closes: https://bugs.gentoo.org/705744
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'appendices')
-rw-r--r-- | appendices/contributors/text.xml | 53 |
1 files changed, 45 insertions, 8 deletions
diff --git a/appendices/contributors/text.xml b/appendices/contributors/text.xml index bf0a12d..628346d 100644 --- a/appendices/contributors/text.xml +++ b/appendices/contributors/text.xml @@ -45,6 +45,8 @@ This page lists the contributions to the Gentoo Development Guide: <author name="Alin Dobre" email="alin@gentoo.org"> <uri link="::tools-reference/echo"/> </author> +<!-- Contributions above this line were to the original (reStructuredText) + version, so they won't appear in the commit history --> <author name="Joseph Jezak" email="josejx@gentoo.org"> <uri link="::archs/ppc"/> </author> @@ -52,7 +54,7 @@ This page lists the contributions to the Gentoo Development Guide: Previous maintainer (XSL Stylesheets, legacy Developer Handbook content) </author> <author name="Mark Loeser" email="halcy0n@gentoo.org"> - XSL Stylesheets, current maintainer + XSL Stylesheets, previous maintainer </author> <author name="Petteri Räty" email="betelgeuse@gentoo.org"> <uri link="::ebuild-writing"/>, @@ -61,11 +63,13 @@ This page lists the contributions to the Gentoo Development Guide: Misc </author> <author name="Ulrich Müller" email="ulm@gentoo.org"> - <uri link="::ebuild-writing"/>, - <uri link="::appendices/editor-configuration/emacs"/>, - <uri link="::general-concepts/licenses/"/>, + <uri link="::quickstart/"/>, <uri link="::general-concepts/virtuals/"/>, - <uri link="::ebuild-writing/eapi/"/> + <uri link="::ebuild-writing/"/>, + <uri link="::ebuild-maintenance/"/>, + <uri link="::appendices/editor-configuration/emacs/"/>, + <uri link="::appendices/devbook-guide/"/>, + DTD, XSL stylesheet, eclass conversion </author> <author name="Mike Pagano" email="mpagano@gentoo.org"> <uri link="::general-concepts/news"/> @@ -82,10 +86,43 @@ Misc <author name="Daniel Robbins" email="drobbins@gentoo.org"> <uri link="::appendices/devbook-guide/">GuideXML guide</uri> </author> -<author name="John P. Davis" email="zhen@gentoo.org"> - <uri link="::appendices/devbook-guide/">GuideXML guide</uri> +<author name="Jeremy Olexa" email="darkside@gentoo.org"> + <uri link="::general-concepts/use-flags/"/> +</author> +<author name="Julian Ospald" email="hasufell@gentoo.org"> + <uri link="::ebuild-writing/common-mistakes/"/>, + <uri link="::tools-reference/find/"/> +</author> +<author name="Alexandre Rostovtsev" email="tetromino@gentoo.org"> + <uri link="::general-concepts/slotting/"/> +</author> +<author name="Göktürk Yüksek" email="gokturk@gentoo.org"> + <uri link="::general-concepts/projects/"/>, + <uri link="::ebuild-writing/variables/"/>, + <uri link="::ebuild-writing/misc-files/metadata/"/>, + <uri link="::eclass-writing/"/>, + <uri link="::appendices/devbook-guide/"/>, + search functionality +</author> +<author name="Michael Orlitzky" email="mjo@gentoo.org"> + <uri link="::ebuild-writing/users-and-groups/"/>, + <uri link="::eclass-writing/"/> +</author> +<author name="Michał Górny" email="mgorny@gentoo.org"> + <uri link="::general-concepts/"/>, + <uri link="::ebuild-writing/users-and-groups/"/>, + <uri link="::ebuild-writing/variables/"/>, + <uri link="::ebuild-writing/functions/src_test/"/>, + <uri link="::ebuild-maintenance/"/> +</author> +<author name="Brian Evans" email="grknight@gentoo.org"> + <uri link="::ebuild-writing/eapi/"/>, + <uri link="::ebuild-writing/variables/"/>, + <uri link="::ebuild-writing/functions/src_prepare/epatch/"/> +</author> +<author name="Lucas Ramage" email="ramage.lucas@protonmail.com"> + Search functionality </author> - </authors> </body> |