diff options
author | Brian Harring <ferringb@gmail.com> | 2024-01-24 19:25:58 -0800 |
---|---|---|
committer | Brian Harring <ferringb@gmail.com> | 2024-01-24 19:48:34 -0800 |
commit | eb9aa88762a3df192fe2c9fd96c5442d5463ea7d (patch) | |
tree | 53bc00337ffc511ea3946d72d00f61dfe2589bf4 | |
parent | history: Update the git blame revs to ignore. (diff) | |
download | pkgcore-eb9aa88762a3df192fe2c9fd96c5442d5463ea7d.tar.gz pkgcore-eb9aa88762a3df192fe2c9fd96c5442d5463ea7d.tar.bz2 pkgcore-eb9aa88762a3df192fe2c9fd96c5442d5463ea7d.zip |
authors: Add Marien Zwart
Same as the commit to pkgcheck, history obscures it- including
VCS history not allowing author vs committer prior to git (cvs->svn->bzr->git),
but Marien Zwart (marienz) wrote most of the initial tests and surrounding
CLI UI code (which eventually moved to snakeoil).
While pkgcore 'started' as a fork of portage, I've left out
the portage authors since my past copyright analysis for the GPL-2 -> BSD-2 change
didn't flag anything from them. I explicitly wrote all subsystems
from scratch, even if I had shims to test against portage as I was
building anew. While some subsystems/code are shared between portage/pkgcore-
the cache subsystem for example, or fetch (iirc)- all of that came from pkgcore
thus copyright's on this side.
As per norms, the authors is limited to folks who made significant
impact- either core origination or straight up LOC, and with an
eye on if it still lives in the codebase (including if syntactic
changes have obscured that work).
I've left out the following folks who were authors/maintainers from
the 'before time'; they're left out due to how long it's been and
scale of contributions in parallel to my rough understanding of what has
been rewritten (new works) or just plain dropped.
* Charlie Shepherd; VCS obscures a fair amount, but binpkg + formatting work,
and general "fix what brian broke".
* Jason Stubbs; maintainer + resolver work, critical/contributor to architectural
design discussions in moving away from the mistakes of portage.
* Markus Ullman. Worked on internals and devex- hard to state exactly
how much he commited, but my recollection is he was a core maintainer.
Apologies for anyone I overlooked or left out- it's accident
+ >15y timespan. Human memory has it's limits and the primary intention
here is to give credit, but more importantly to track copyright ownership
should this project every need to undergo another licensing change.
Signed-off-by: Brian Harring <ferringb@gmail.com>
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 51e6a21ed..4ed54aa06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,10 +12,12 @@ description = "package managing framework" readme = "README.rst" license = {file = "LICENSE"} requires-python = "~=3.10" +# alphabetical order. authors = [ {name = "Tim Harder", email = "radhermit@gmail.com"}, - {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"}, {name = "Brian Harring", email = "ferringb@gmail.com"}, + {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"}, + {name = "Marien Zwart"}, ] maintainers = [ {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"}, |