-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
436 lines (420 loc) · 13.1 KB
/
index.html
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Chaotic-AUR - an automated building repo for AUR packages</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="Helping you, so you don't have to worry about building AUR packages each update!"
/>
<meta
property="og:title"
content="Chaotic-AUR - automated binary repo 👨🏻💻"
/>
<meta property="og:url" content="https://aur.chaotic.cx" />
<meta
property="og:description"
content="Helping you, so you don't have to worry about building AUR packages each update!"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Chaotic-AUR</h1>
<p>
Automated building repo for
<a target="_blank" rel="noopener" href="https://aur.archlinux.org">AUR</a>
packages 👨🏻💻
</p>
<!-- <p>For news, check the telegram channel <a target="_blank" rel="noopener" href="https://t.me/s/chaotic_aur">@chaotic_aur</a>. --><br />
<div class="list">
<h2 id="howto">How to use it?</h2>
<p>
First, install the primary key - it can then be used to install our
keyring and mirrorlist.
</p>
<code class="command">
pacman-key --recv-key 3056513887B78AEB --keyserver
keyserver.ubuntu.com</code
><br />
<code class="command"> pacman-key --lsign-key 3056513887B78AEB</code
><br />
<code class="command">
pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst'
</code>
<br />
<code class="command"> pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' </code>
<p>
Append (adding to the <strong>end</strong> of the file) to
<code>/etc/pacman.conf</code>:
</p>
<code
>[chaotic-aur]<br />
Include = /etc/pacman.d/chaotic-mirrorlist
</code>
</div>
<div class="list">
<h2>Recommendations:</h2>
<ul>
<li id="note-powerpill">
You may want to use
<a
target="_blank"
rel="noopener"
href="https://wiki.archlinux.org/index.php/Powerpill"
>powerpill</a
>
to download from all mirrors simultaneously. We recommend doing
updates this way:
<code>
sudo pacman -Sy && sudo powerpill -Su && paru
-Su</code
>.<br />
Make sure to insert all mirrors in your <code>pacman.conf</code> or
use <code>chaotic-mirrorlist</code> with all of them active if using
powerpill.
</li>
<li id="note-repossorting">
If you are using other third party repositories, we recommend putting
Chaotic-AUR <strong>prior to them </strong> in
<code>/etc/pacman.conf</code>. Since we update most packages hourly
and follow AUR PKGBUILDs, this repository is more suitable as first
option when downloading packages.
</li>
<li id="note-ignorepkg">
If you need to omit a package update to use locally built ones (e.g:
with native optimizations),
<a
href="https://www.archlinux.org/pacman/pacman.conf.5.html"
target="_blank"
rel="noopener"
>you can</a
>
add '<code>IgnorePkg = ...</code>' to repo's section in
<code>/etc/pacman.conf</code>
</li>
<li>
You can pick the repository which to download a package from like
this:
<code class="command"> pacman -S chaotic-aur/dxvk-mingw-git</code>.
Some AUR helpers support it too, e.g:
<code> paru -S aur/firefox-hg</code>
</li>
<li>
There is also a mirror for IPFS users by the
<a
target="_blank"
rel="noopener"
href="https://github.com/RubenKelevra/pacman.store"
>pacman.store project</a
>. It can be found in the mirrorlist and is commented out by default.
</li>
<li>You must have the multilib repository enabled.</li>
</ul>
</div>
<div class="list">
<h2>Mirror map:</h2>
<iframe
src="https://status.chaotic.cx/map"
frameborder="0"
height="500rem"
width="100%"
></iframe>
</div>
<div class="list">
<h2>About:</h2>
<ul>
<li>
Most packages available in this repo are automatically built from
their respective
<a target="_blank" rel="noopener" href="https://aur.archlinux.org"
>AUR</a
>
source package. However there are a few exceptions, check
<a href="https://github.com/chaotic-aur/packages"
>github.com/chaotic-aur/packages</a
>
to find out which ones.
</li>
<li>
The primary building cluster is a node in
<a target="_blank" rel="noopener" href="https://www2.ufscar.br/"
>UFSCar</a
>s datacenter which is hosted in São Carlos, São Paulo, Brazil.
</li>
</ul>
<br />
<p>
Feel free to create issues to suggest enhancements, flag database
corruptions and all other requests:
<a
target="_blank"
rel="noopener"
href="https://github.com/chaotic-aur/packages/issues"
>Issues</a
><br />
Please report build bugs to the AUR package maintainers.
</p>
</div>
<div class="list">
<h2>Links:</h2>
<ul>
<li>
Telegram channel with news and updates:
<a target="_blank" rel="noopener" href="https://t.me/s/chaotic_aur"
>@chaotic_aur</a
>
</li>
<li>
Our community group for on- and offtopics:
<a
target="_blank"
rel="noopener"
href="https://t.me/s/chaotic_aur_sac"
>@chaotic_aur_sac</a
>
- feel free to come by! 😊 (<a
target="_blank"
rel="noopener"
href="https://matrix.to/#/%23chaotic-aur:mozilla.org"
>Matrix-bridge</a
>)
</li>
<li>
Package list:
<a
target="_blank"
rel="noopener"
href="https://archlinux.pkgs.org/rolling/chaotic-aur-x86_64/"
>Pkgs.org</a
>
</li>
<li>
Package directory (for manual downloads):
<a
target="_blank"
rel="noopener"
href="https://builds.garudalinux.org/repos/chaotic-aur/x86_64/"
>Manual downloads</a
>
</li>
<li>
Infra / toolbox source code:
<a
target="_blank"
rel="noopener"
href="https://github.com/chaotic-aur/toolbox"
>GitHub</a
>
</li>
<li>
Status page:
<a target="_blank" rel="noopener" href="https://uptimes.chaotic.cx"
>Status monitoring</a
>
</li>
<li>
Latest logs:
<a
target="_blank"
rel="noopener"
href="https://builds.garudalinux.org/repos/chaotic-aur/logs/"
>Logfiles</a
>
</li>
<li>
Chaotic keys:
<a
target="_blank"
rel="noopener"
href="https://aur.chaotic.cx/chaotic.gpg"
>Keyring</a
>
</li>
</ul>
</div>
<div class="list">
<h2>Lead Maintainer:</h2>
<p>
dr460nf1r3 (Nico) 🐉
<a target="_blank" rel="noopener" href="https://github.com/dr460nf1r3"
><github.com/dr460nf1r3></a
>
</p>
<br />
<h2>Co-maintainers and contributors:</h2>
<ul>
<li>
Pedro H. Lara Campos
<a target="_blank" rel="noopener" href="https://github.com/PedroHLC"
><github.com/PedroHLC></a
>
-- Founder
</li>
<li>
Thotypous (Paulo Matias)
<a target="_blank" rel="noopener" href="https://github.com/thotypous"
><github.com/thotypous></a
>
--
<a
target="_blank"
rel="noopener"
href="https://archlinux.org/people/trusted-user-fellows/#pmatias"
>Past Trusted User</a
>, co-founder
</li>
<li>
Naman (web designer)
<a target="_blank" rel="noopener" href="https://github.com/namanlp"
><github.com/namanlp></a
>
</li>
<li>
João Figueiredo (KDE's -git packages)
<a
target="_blank"
rel="noopener"
href="https://github.com/IslandC0der"
><github.com/IslandC0der></a
>
</li>
<li>
TNE (sysadmin)
<a target="_blank" rel="noopener" href="https://github.com/JustTNE"
><github.com/JustTNE></a
>
</li>
<li>
Alexjp (KDE's -git packages)
<a target="_blank" rel="noopener" href="https://github.com/alexjp"
><github.com/alexjp></a
>
</li>
<li>
Technetium1 (general package maintenance)
<a
target="_blank"
rel="noopener"
href="https://github.com/technetium1"
><github.com/technetium1></a
>
</li>
<li>
xiota (General package maintenance)
<a
target="_blank"
rel="noopener"
href="https://github.com/xiota"
><github.com/xiota></a
>
</li>
<li>
SolarAquarion (S. Choina)
<a
target="_blank"
rel="noopener"
href="https://github.com/SolarAquarion"
><github.com/SolarAquarion></a
>
</li>
<li>
Eduard Tolosa (former builder of TKG kernels)
<a target="_blank" rel="noopener" href="https://github.com/Edu4rdSHL"
><github.com/Edu4rdSHL></a
>
</li>
<li>
LordKitsuna (and his retired Threadripper)
<a
target="_blank"
rel="noopener"
href="https://github.com/lordkitsuna"
><github.com/lordkitsuna></a
>
</li>
<li>
Rustem B.
<a target="_blank" rel="noopener" href="https://github.com/RustemB"
><github.com/RustemB></a
>
</li>
</ul>
<h2>Special thanks:</h2>
<ul>
<li>All our current and past mirror providers;</li>
<li>
Librewish (Shrinivas Kumbhar)
<a target="_blank" rel="noopener" href="https://github.com/librewish"
><github.com/librewish></a
>
-- Ex-co-maintainer, Garuda Linux founder
</li>
<li>Garuda Linux staffers;</li>
<li>
<a target="_blank" rel="noopener" href="https://github.com/Tk-Glitch"
>Tk-Glitch (TkG)</a
>;
<a target="_blank" rel="noopener" href="https://github.com/Kodehawa"
>Kodehawa</a
>;
<a
target="_blank"
rel="noopener"
href="https://aur.archlinux.org/account/figue"
>Figue</a
>;
<a
target="_blank"
rel="noopener"
href="https://github.com/benjamimgois"
>Benjamim Gois</a
>;
</li>
<li>Frogging Family and Linux Gaming Dev Discord servers;</li>
<li>
André,
<a target="_blank" rel="noopener" href="https://github.com/olivatooo"
>Gabriel Olivato</a
>
and Maiser;
</li>
<li>AUR package maintainers; ArchLinux TUs and staffers;</li>
<li>
And everybody who somehow helped all the projects we prebuild! 🤗
</li>
</ul>
</div>
<div class="list">
<h2>Disclaimer:</h2>
<p>
This repo is generated on-demand from packages we use on our personal
computers. If there are any package license infringements please notify
us through <a href="mailto:[email protected]">email</a>. The package
will then be removed and blacklisted.
</p>
</div>
<div class="list">
<p>In memory of our colleague, Rustem Bakirov.</p>
<p>A proactive co-maintainer who in Dec/2021 left us at the age of 20.</p>
</div>
<footer>
<span
><h3>Last modified:</h3>
<code>2023-05-17 07:40 (GMT+1)</code></span
>
<span
><h3>Online since:</h3>
<code>2018-10-19</code></span
>
</footer>
</body>
</html>