Add signatures from #837

This commit is contained in:
Ivanq 2021-03-25 21:08:31 +03:00
parent 98a1956dcd
commit 417908130a
29 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,2 @@
name: Domosed
link: https://github.com/Domosed-gamin

View File

@ -0,0 +1,2 @@
name: J.Y.Amihud ( Blender Dumbass )
link: https://odysee.com/@blenderdumbass:f/

View File

@ -0,0 +1,2 @@
name: James Stone
link: mailto:jstone@jnet-it.com

View File

@ -0,0 +1,2 @@
name: vasily boytsov
link: https://repo.or.cz/projlist.cgi?name=e991afe644e3fcbc2b92e01a5f474a3d

View File

@ -0,0 +1,2 @@
name: Tagiev Bayram
link: https://github.com/LLIAJIYH

2
_data/signed/LdBeth.yaml Normal file
View File

@ -0,0 +1,2 @@
name: jair wang
link: https://github.com/LdBeth

View File

@ -0,0 +1,2 @@
name: Adrien Bourmault
link: mailto:neox@os-k.eu

View File

@ -0,0 +1,2 @@
name: Brian Beckman
link: https://github.com/axceron

View File

@ -0,0 +1,2 @@
name: birdboy2000
link: mailto:b1rdboy2000@msn.com

View File

@ -0,0 +1,2 @@
name: Comrade Skeleton
link: https://github.com/comrade-skeleton

View File

@ -0,0 +1,2 @@
name: Daveout
link: https://github.com/daveout

View File

@ -0,0 +1,2 @@
name: your real name
link: https://github.com/demansr/

View File

@ -0,0 +1,2 @@
name: Christian Elsner
link: mailto:elsner@mpe.mpg.de

View File

@ -0,0 +1,2 @@
name: Ken Fyrstenberg
link: https://github.com/epistemex

View File

@ -0,0 +1,2 @@
name: Nikita Manzin
link: https://github.com/i-just-lizard

View File

@ -0,0 +1,2 @@
name: Jed Eckert
link: https://none

2
_data/signed/jimrs.yaml Normal file
View File

@ -0,0 +1,2 @@
name: Jim
link: https://github.com/jimrs

View File

@ -0,0 +1,2 @@
name: Nestor Diaz Valencia
link: https://github.com/n3storm

2
_data/signed/ojoeth.yaml Normal file
View File

@ -0,0 +1,2 @@
name: Joe Hill
link: mailto:joe@joeth.uk

View File

@ -0,0 +1,2 @@
name: Pedro Esteves Pinto
link: https://github.com/pedro-esteves-pinto/

2
_data/signed/pmvd.yaml Normal file
View File

@ -0,0 +1,2 @@
name: Kirill Afonshin
link: https://github.com/pmvd

2
_data/signed/psxxx.yaml Normal file
View File

@ -0,0 +1,2 @@
name: Paul White
link: https://github.com/psxxx

View File

@ -0,0 +1,2 @@
name: Ivan Kuzmenko
link: https://github.com/rndtrash

View File

@ -0,0 +1,2 @@
name: Siduck
link: https://github.com/siduck76

2
_data/signed/sjith7.yaml Normal file
View File

@ -0,0 +1,2 @@
name: Sreejith Subhash
link: https://github.com/sjith7

View File

@ -0,0 +1,2 @@
name: Joshua Jacob
link: https://github.com/sunnyjim5

View File

@ -0,0 +1,2 @@
name: Carlo
link: https://github.com/unbearableDarkness

View File

@ -0,0 +1,2 @@
name: Evgeny Ermakov
link: https://github.com/unspecd

20
add-from-issue.py Normal file
View File

@ -0,0 +1,20 @@
import subprocess
import os
parts = subprocess.run(["gh", "issue", "view", "837", "-c"], capture_output=True).stdout.split(b"\n--\n")
for info, content in zip(parts[::2], parts[1::2]):
info_dict = {}
for line in info.decode().split("\n"):
key, value = line.split(":\t")
info_dict[key] = value
author = info_dict["author"]
content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n")]
for i in range(len(content_lines) - 1):
if content_lines[i].startswith("name:") and content_lines[i + 1].startswith("link:"):
if not os.path.isfile(f"_data/signed/{author}.yaml"):
with open(f"_data/signed/{author}.yaml", "w") as f:
f.write(content_lines[i] + "\n" + content_lines[i + 1] + "\n")