summaryrefslogtreecommitdiffstats
path: root/projects.scm
blob: 51def4487a06cc491a875351c2f6c2129469d4e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
(use-modules (ice-9 match)
             (srfi srfi-9)
             (srfi srfi-69)
             (haunt utils))

(define-record-type <project>
  (project id name url logo members)
  project?
  (id      project-id)
  (name    project-name)
  (url     project-url)
  (logo    project-logo)
  (members project-members set-project-members!))

(define-record-type <person>
  (make-person name url avatar)
  person?
  (name    person-name)
  (url     person-url)
  (avatar  person-avatar))

(define* (person name #:optional url avatar)
  (make-person name url avatar))

(define %projects
  (let ((table (make-hash-table))
        (placeholder-logo "/static/images/logos/placeholder.svg"))
    (for-each
     (match-lambda
       ((id name url logo)
        (hash-table-set! table id
                         (project id name url logo (list))))
       ((id name url)
        (hash-table-set! table id
                         (project id name url placeholder-logo (list)))))
     '((8sync
        "8sync"
        "https://www.gnu.org/software/8sync/"
        "/static/images/logos/8sync.png")
       (adns
        "GNU adns"
        "https://www.gnu.org/software/adns/")
       (archimedes
        "GNU Archimedes"
        "https://www.gnu.org/software/archimedes/")
       (binutils
        "binutils"
        "https://www.gnu.org/software/binutils/")
       (classpath
        "GNU Classpath"
        "https://www.gnu.org/software/classpath/")
       (dominion
        "GNU Dominion"
        "https://savannah.gnu.org/projects/dominion")
       (gcc
        "GNU Compiler Collection (GCC)"
        "https://gcc.gnu.org"
        "/static/images/logos/gcc.png")
       (gdb
        "GDB"
        "https://www.gnu.org/software/gdb/"
        "/static/images/logos/gdb.svg")
       (glibc
        "GNU C Library"
        "https://www.gnu.org/software/libc/"
        "/static/images/logos/glibc.jpg")
       (gneural
        "GNU Gneural Network"
        "https://www.gnu.org/software/gneuralnetwork/"
        "/static/images/logos/gneural_network.png")
       (gnucobol
        "GnuCOBOL"
        "https://gnucobol.sourceforge.io/"
        "/static/images/logos/gnucobol.png")
       (gnupg
        "GnuPG"
        "https://gnupg.org"
        "/static/images/logos/gnupg.png")
       (gsl
        "GNU Scientific Library"
        "https://www.gnu.org/software/gsl/")
       (guile
        "GNU Guile"
        "https://www.gnu.org/software/guile/"
        "/static/images/logos/guile.svg")
       (guile-debbugs
        "Guile-Debbugs"
        "https://savannah.gnu.org/projects/guile-debbugs/"
        "/static/images/logos/guile.svg")
       (guile-gnome
        "Guile-GNOME"
        "https://www.gnu.org/software/guile-gnome/"
        "/static/images/logos/guile.svg")
       (guile-opengl
        "Guile-OpenGL"
        "https://www.gnu.org/software/guile-opengl/"
        "/static/images/logos/guile.svg")
       (guile-rpc
        "GNU Guile-RPC"
        "https://www.gnu.org/software/guile-rpc/"
        "/static/images/logos/guile.svg")
       (guix
        "GNU Guix"
        "https://guix.gnu.org"
        "/static/images/logos/guix.png")
       (gwl
        "Guix Workflow Language"
        "https://guixwl.org"
        "/static/images/logos/gwl.png")
       (hurd
        "GNU Hurd"
        "https://hurd.gnu.org"
        "/static/images/logos/hurd.png")
       (indent
        "GNU indent"
        "https://www.gnu.org/software/indent/")
       (libgcrypt
        "GNU Libgcrypt"
        "https://gnupg.org/related_software/libgcrypt/"
        "/static/images/logos/gnupg.png")
       (libtasn1
        "GNU Libtasn1"
        "https://www.gnu.org/software/libtasn1/")
       (lilypond
        "GNU LilyPond"
        "https://lilypond.org/"
        "/static/images/logos/lilypond.png")
       (liquid-war-6
        "Liquid War 6"
        "https://www.gnu.org/software/liquidwar6/")
       (mcron
        "GNU Mcron"
        "https://www.gnu.org/software/mcron/"
        "/static/images/logos/mcron.png")
       (mcsim
        "GNU MCSim"
        "https://www.gnu.org/software/mcsim/"
        "/static/images/logos/mcsim.png")
       (mediagoblin
        "GNU MediaGoblin"
        "https://mediagoblin.org/"
        "/static/images/logos/mediagoblin.svg")
       (mes
        "GNU Mes"
        "https://www.gnu.org/software/mes/")
       (mpc
        "GNU MPC"
        "http://www.multiprecision.org/mpc/")
       (nano-archimedes
        "GNU Nano-Archimedes"
        "https://www.gnu.org/software/archimedes/")
       (pspp
        "GNU PSPP"
        "https://www.gnu.org/software/pspp/")
       (shepherd
        "GNU Shepherd"
        "https://www.gnu.org/software/shepherd/")
       (source-highlight
        "GNU Source Highlight"
        "https://www.gnu.org/software/src-highlite/")
       (userv
        "GNU userv"
        "https://www.gnu.org/software/userv/")))
    table))

(define-syntax-rule (define-member person projects ...)
  (let ((p person))
    (for-each (lambda (project-id)
                (let ((project
                       (hash-table-ref %projects project-id
                                       (lambda ()
                                         (error (format #false
                                                        "Unknown project ~a for ~a~%"
                                                        project-id name))))))
                  (set-project-members!
                   project (cons p (project-members project)))))
              (quote (projects ...)))))

(define-member (person "Carlos O'Donell")
  glibc gcc)
(define-member (person "Mark J. Wielaard"
                       "https://gnu.wildebeest.org/blog/mjw/")
  classpath gcc glibc)
(define-member (person "Andy Wingo"
                       "https://wingolog.org")
  guile guile-gnome guile-opengl)
(define-member (person "Ludovic Courtès"
                       "https://people.bordeaux.inria.fr/lcourtes/")
  guix guile shepherd guile-rpc)
(define-member (person "Frederic Y. Bois")
  mcsim)
(define-member (person "Andrej Shadura")
  indent)
(define-member (person "Werner Koch")
  gnupg libgcrypt)
(define-member (person "Mark Galassi")
  gsl dominion)
(define-member (person "Jean Michel Sellier")
  archimedes nano-archimedes gneural)
(define-member (person "Christopher Lemmer Webber"
                       "https://dustycloud.org")
  8sync mediagoblin)
(define-member (person "Ian Jackson")
  adns userv)
(define-member (person "Samuel Thibault")
  hurd)
(define-member (person "Jan Nieuwenhuizen")
  mes lilypond)
(define-member (person "Christian Mauduit")
  liquid-war-6)
(define-member (person "Nikos Mavrogiannopoulos")
  libtasn1)
(define-member (person "Andreas Enge"
                       "http://www.multiprecision.org/")
  guix mpc)
(define-member (person "Han-Wen Nienhuys")
  lilypond)
(define-member (person "Tobias Geerinckx-Rice")
  guix)
(define-member (person "Bernard Giroud")
  gnucobol)
(define-member (person "Tom Tromey")
  source-highlight)
(define-member (person "Jeff Law")
  gcc)
(define-member (person "David Malcolm")
  gcc)
(define-member (person "Ricardo Wurmus"
                       "https://elephly.net")
  guix gwl guile-debbugs)
(define-member (person "Marius Bakke")
  guix)
(define-member (person "Jack Hill")
  guix)
(define-member (person "Leo Famulari")
  guix)
(define-member (person "Efraim Flashner")
  guix)
(define-member (person "Mathieu Othacehe"
                       "https://othacehe.org/")
  guix)
(define-member (person "Dale Mellor"
                       "https://rdmp.org/dale-mellor/")
  mcron guix)
(define-member (person "Ben Pfaff"
                       "https://benpfaff.org/")
  pspp)
(define-member (person "Jonathan Wakely")
  gcc)
(define-member (person "Tobias Platen"
                       "https://www.qtau.de/")
  guix lilypond)
(define-member (person "Léo Le Bouter")
  guix)
(define-member (person "Jason Merrill")
  gcc)