Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trio/
Date: Thu, 07 Apr 2022 08:45:20
Message-Id: 1649321107.8d9031e6a05957689353feafa3d5cc2f311d91cb.mgorny@gentoo
1 commit: 8d9031e6a05957689353feafa3d5cc2f311d91cb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 08:42:06 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 08:45:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d9031e6
7
8 dev-python/trio: Add python@ as co-maint.
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/trio/metadata.xml | 4 ++++
13 1 file changed, 4 insertions(+)
14
15 diff --git a/dev-python/trio/metadata.xml b/dev-python/trio/metadata.xml
16 index 3cfd749824db..9a0a7c3b54c5 100644
17 --- a/dev-python/trio/metadata.xml
18 +++ b/dev-python/trio/metadata.xml
19 @@ -6,6 +6,10 @@
20 <email>andrewammerlaan@g.o</email>
21 <name>Andrew Ammerlaan</name>
22 </maintainer>
23 + <maintainer type="project">
24 + <email>python@g.o</email>
25 + <name>Python</name>
26 + </maintainer>
27 <stabilize-allarches/>
28 <longdescription lang="en">
29 The Trio project's goal is to produce a production-quality, permissively licensed, async/await-native I/O library for Python. Like all async libraries, its main purpose is to help you write programs that do multiple things at the same time with parallelized I/O. A web spider that wants to fetch lots of pages in parallel, a web server that needs to juggle lots of downloads and websocket connections at the same time, a process supervisor monitoring multiple subprocesses... that sort of thing. Compared to other libraries, Trio attempts to distinguish itself with an obsessive focus on usability and correctness. Concurrency is complicated; we try to make it easy to get things right.