-
Notifications
You must be signed in to change notification settings - Fork 11
/
repositories.yml
1638 lines (1638 loc) · 41.7 KB
/
repositories.yml
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
orgs:
inveniosoftware:
teams:
architects:
permission: admin
repositories: "*"
members:
- jbenito3
- lnielsen
- ntarocco
- slint
core-maintainers:
permission: maintain
repositories: "*"
members:
- alejandromumo
- kpsherva
- max-moser
- ptamarit
- utnapischtim
- zzacharo
translation-maintainers:
permission: maintain
repositories: "*"
members:
- mb-wali
inveniordm:
permission: push
repositories:
- "product-rdm"
- "letters-of-support"
members:
- 0einstein0
- acaland
- ahoyi
- andrewbattista
- baldemir
- carsonicator
- carlinmack
- cfgamboa
- chokribr
- chriz-uniba
- dfdan
- duanoc
- effervescent-shot
- ekate
- fenekku
- florianfranz
- fmarco76
- gqueiroz
- hbaeyens
- hbayindir
- herrner
- ines-cruz
- j-bauer
- jennur
- karkraeg
- kbg
- knodel
- kpsherva
- kristiholmes
- lhenze
- M3nin0
- mat-gro
- max-moser
- mb-wali
- mfenner
- mitsosf
- mteknos
- pdesalvo
- Pineirin
- ppanero
- rekt-hard
- richard-jones
- RosaLo
- rrotondo
- saragon02
- SarahW91
- schuermannh
- Steven-Eardley
- tmorrell
- ugswork
- utnapischtim
- wgresshoff
- wuschLOR
- yashlamba
- zzacharo
inveniordm-maintainers:
permission: maintain
repositories:
- alertabot
- cookiecutter-invenio-rdm
- demo-inveniordm
- docker-invenio
- docs-invenio-rdm
- flask-resources
- helm-invenio
- invenio-administration
- invenio-app-rdm
- invenio-cli
- invenio-communities
- invenio-drafts-resources
- invenio-exporter
- invenio-ocfl
- invenio-rdm-migrator
- invenio-rdm-records
- invenio-records-permissions
- invenio-records-resources
- invenio-requests
- invenio-s3
- invenio-saml
- invenio-sitemap
- invenio-users-resources
- invenio-vocabularies
- marshmallow-utils
- react-invenio-deposit
- react-invenio-forms
members:
- fenekku
- jrcastro2
- kpsherva
- max-moser
- ppanero
- Samk13
- zzacharo
- utnapischtim
developers:
permission: push
repositories: "*"
members:
- 0einstein0
- aaccomazzi
- acaland
- adrianp
- alejandromumo
- alexdutton
- alexgu2008
- alizeepace
- amccollo
- anastass
- andrewbattista
- andrewm89
- anikachurilova
- annatrz
- antonis-manaras
- apirogov
- audrium
- audub
- avivace
- aw-bib
- BadrAly
- baldemir
- bittirousku
- blankoworld
- blixhavn
- bouzlibop
- bruno314
- carantunes
- carlinmack
- carsonicator
- cbacchi
- cfgamboa
- CharlotteIrisC
- ChiaraBi
- chokribr
- costaflavio
- ctrl-alt-soneca
- danmichaelo
- david-caro
- ddaze
- dfdan
- diegodelemos
- dinosk
- DorsivalG
- drjova
- duanoc
- Dziolas
- effervescent-shot
- egabancho
- ekate
- epsallida
- equadon
- etzemis
- fatiherikli
- fenekku
- FionaDmello
- fjorba
- FlorianCassayre
- fmarco76
- fpoli
- frankois
- frecar
- Garfield-fr
- gfavre
- giokokos
- GiorgosPa
- Glignos
- greut
- gszpura
- hachreak
- harunurhan
- hbayindir
- helix84
- Herrner
- hjhsalo
- ines-cruz
- invenio-developers
- inveniobot
- ioannistsanaktsidis
- ioanungurean
- j-bauer
- jacenkow
- JakeCowton
- jalavik
- jan44
- JavierDelgadoFernandez
- jbenito3
- jeanyvesCERN
- jennur
- jeromecaffaro
- jgarcial
- jirikuncar
- jlebonzec
- jma
- jmartinm
- jochenklein
- jrbl
- jrcastro2
- jsvgoncalves
- kaplun
- kasioumis
- kbg
- Kennethhole
- Kjili
- kneczaj
- KonstantinaStoikou
- konstantinoskostis
- kpsherva
- krzysztof
- ksachs
- Leats
- Letreguilly
- lhenze
- lnielsen
- ludmilamarian
- makistsantekidis
- marioskogias
- mat-gro
- max-moser
- mb-wali
- mfenner
- mhucka
- michamos
- mihaibivol
- miltalex
- MinnSoe
- mitsosf
- mkloeppe
- monaawi
- MSusik
- mteknos
- mustafasoylu
- mvesper
- mvidalgarcia
- natsheh
- nharraud
- nkalodimas
- NRodriguezcuellar
- ntarocco
- okraskaj
- omelkonian
- Osso
- otron
- pamfilos
- Panos512
- ParthS007
- PaulinaLach
- pazembrz
- pbroz
- pedrogaudencio
- philippgualdi
- Pineirin
- pombredanne
- ppanero
- ppiotr
- pronguen
- psaiz
- ptamarit
- PXke
- RaoOfPhysics
- raqueljimenez
- rekt-hard
- remileduc
- richard-jones
- robertwinchell
- robk5uj
- romanchyla
- RosaLo
- rrotondo
- rsripada
- sakshamarora1
- SamiHiltunen
- Samk13
- SarahW91
- sbujam
- sefeg
- shesselbach
- schokine
- slint
- sourabhlal
- spirosdelviniotis
- Sporeal
- Steven-Eardley
- switowski
- Theer108
- tiborsimko
- TLGINO
- tmorrell
- topless
- traviscb
- tsgit
- ugswork
- utnapischtim
- vladbmihaescu
- WohthaN
- xiaom
- yashlamba
- zazasa
- zubeydecivelek
- zzacharo
repositories:
.github:
description: Default community health files.
maintainers:
- lnielsen
- ntarocco
- ppanero
- slint
state: stable
type: independent
alertabot:
description: Notifications bot for Invenio maintainers.
maintainers:
- ntarocco
- avivace
branches:
- main
default_branch: main
state: alpha
type: independent
autobot:
description: Bot-assistant for Invenio maintainers.
maintainers:
- slint
state: alpha
type: independent
automation-tools:
description: Automation tools for Invenio.
maintainers:
- slint
state: alpha
type: independent
awesome-invenio:
description: A curated list of awesome InvenioRDM and Invenio extensions, overlays and resources.
state: alpha
maintainers:
- egabancho
- Herrner
type: management
babel-edtf:
description: Localization for EDTF (Extended Date Time Format) date strings.
maintainers:
- lnielsen
state: stable
type: independent
base32-lib:
description: Library to generate, encode and decode random base32 strings.
maintainers:
- fenekku
- ppanero
state: alpha
type: independent
cernservicexml:
description: Small library to generate a CERN XSLS Service XML.
maintainers:
- lnielsen
- egabancho
state: stable
type: independent
citeproc-py-styles:
description: CSL styles for citeproc-py.
maintainers:
- lnielsen
- slint
state: alpha
type: independent
# claimstore: ARCHIVED!
# description: ClaimStore
# maintainers:
# - jbenito3
# - tiborsimko
# state: alpha
# pypi: false
# type: service
cookiecutter-invenio-datamodel:
description: Cookiecutter template for an Invenio data model.
maintainers:
- egabancho
- lnielsen
state: beta
pypi: false
type: core
url: ''
cookiecutter-invenio-instance:
description: Cookiecutter template for an Invenio instance.
maintainers:
- ntarocco
- lnielsen
branches:
- master
- v3.0
- v3.1
state: beta
pypi: false
type: core
url: ''
cookiecutter-invenio-module:
description: Cookiecutter template for an Invenio module.
maintainers:
- egabancho
- lnielsen
- tiborsimko
state: alpha
pypi: false
type: core
url: ''
cookiecutter-invenio-rdm:
description: Cookiecutter template for a new InvenioRDM instance.
state: alpha
maintainers:
- lnielsen
- fenekku
- ppanero
- zzacharo
pypi: false
type: rdm
url: ''
cookiecutter-invenio-ils:
description: Cookiecutter template for a new InvenioILS instance.
state: alpha
maintainers:
- jrcastro2
- kpsherva
- ntarocco
- zzacharo
branches:
- main
default_branch: main
pypi: false
type: ils
url: ''
counter-robots:
description: Library for COUNTER-compliant detection of machines and robots.
maintainers:
- slint
- ChiaraBi
state: stable
type: independent
datacite:
description: Python API wrapper for the DataCite Metadata Store API.
maintainers:
- lnielsen
- tmorrell
state: stable
type: independent
dcxml:
description: Dublin Core XML generation from Python dictionaries.
maintainers:
- lnielsen
state: stable
type: independent
demo-invenioils:
description: Demosite for InvenioILS.
maintainers:
- jrcastro2
- kpsherva
- ntarocco
- zzacharo
branches:
- main
default_branch: main
state: stable
type: independent
url: https://invenioils.web.cern.ch
pypi: false
demo-inveniordm:
description: Demosite for InvenioRDM.
maintainers:
- lnielsen
- ppanero
- zzacharo
state: stable
type: independent
url: https://inveniordm.web.cern.ch
pypi: false
dictdiffer:
description: 'Dictdiffer is a module that helps you to diff and patch dictionaries. '
maintainers:
- jirikuncar
- tiborsimko
state: stable
type: independent
docker-invenio:
description: Docker base images for Invenio.
maintainers:
- inveniobot
state: stable
type: independent
docker-services-cli:
description: Infrastructure services for local and CI tests.
state: stable
maintainers:
- ppanero
docs-invenio-rdm:
description: InvenioRDM docs
maintainers:
- fenekku
- lnielsen
- ppanero
- zzacharo
type: docs
docs-invenio-ils:
description: InvenioILS docs
maintainers:
- kpsherva
- zzacharo
type: docs
dojson:
description: Simple pythonic JSON to JSON converter.
maintainers:
- tiborsimko
state: stable
type: independent
domapping:
description: Package generating elasticsearch mapping from jsonschemas
maintainers:
- dinosk
state: alpha
type: independent
doschema:
description: Utilities to work with JSON Schemas.
maintainers:
- dinosk
state: alpha
type: independent
flask-breadcrumbs:
description: Flask-Breadcrumbs is a Flask extension that adds support for generating
site breadcrumb navigation.
maintainers:
- slint
- drjova
state: stable
type: independent
eslint-config-invenio:
description: ESLint config/preset for Invenio modules.
maintainers:
- ntarocco
- zzacharo
- kpsherva
- jrcastro2
state: alpha
pypi: false
type: independent
i18n: false
flask-celeryext:
description: Simple integration layer between Celery and Flask.
maintainers:
- lnielsen
state: stable
type: independent
flask-cli:
description: Flask-CLI is a backport of Flask 1.0's new click integration to Flask 0.10.
maintainers:
- lnielsen
state: stable
type: independent
flask-collect-invenio:
description: Drop-in replacement of Flask-Collect with support for Flask 2.x.
maintainers:
- max-moser
state: stable
type: independent
flask-iiif:
description: Flask-IIIF is permitting easy integration with the International
Image Interoperability Framework (IIIF) API standards.
maintainers:
- slint
- ChiaraBi
state: alpha
type: independent
flask-kvsession:
description: A drop-in replacement for Flask's session handling using server-side sessions.
maintainers:
- slint
url: http://pythonhosted.org/Flask-KVSession/
flask-menu:
description: Flask-Menu is a Flask extension that adds support for generating
menus.
maintainers:
- slint
state: stable
type: independent
flask-resources:
description: REST APIs for Flask
maintainers:
- ppanero
- lnielsen
branches:
- master
- maint-0.7
state: alpha
type: independent
flask-security-fork:
description: 'Fork of Flask-Security: quick and simple security for Flask applications.'
maintainers:
- jirikuncar
- lnielsen
state: stable
type: independent
flask-sitemap:
description: Flask-Sitemap is a Flask extension helping with sitemap generation.
maintainers:
- jirikuncar
- tiborsimko
state: stable
type: independent
flask-sso:
description: Flask Single-Sign-On Extension
maintainers:
- egabancho
state: alpha
type: independent
flask-webpackext:
description: "Webpack integration for Flask."
maintainers:
- ntarocco
- lnielsen
- pferreir
state: stable
type: independent
i18n: false
helm-invenio:
description: Helm charts for deploying an Invenio instance
maintainers:
- diegodelemos
- fenekku
- Glignos
- jlebonzec
- lnielsen
- ppanero
- zzacharo
branches:
- master
state: alpha
type: independent
idutils:
description: Small Python library to validate persistent identifiers used in scholarly
communication.
maintainers:
- lnielsen
state: stable
type: independent
intbitset:
description: Python C-based extension implementing fast integer bit sets
maintainers:
- tiborsimko
- pombredanne
state: stable
type: independent
invenio:
description: Invenio digital library framework
branches:
- master
- legacy
- maint-3.1
- maint-3.0
- maint-2.1
- maint-2.0
- maint-1.2
- maint-1.1
- maint-1.0
- maint-0.99
maintainers:
- egabancho
- lnielsen
- tiborsimko
state: beta
type: core
has_wiki: true
invenio-access:
description: Invenio module for common role based access control.
branches:
- master
- maint-1.0
maintainers:
- egabancho
- tiborsimko
state: stable
type: auth
invenio-accessrequests:
description: Access requests for Invenio.
branches:
- master
state: stable
type: auth
invenio-accounts:
description: Invenio module for managing user accounts.
branches:
- master
- maint-v1.1
- maint-v1.2
maintainers:
- lnielsen
state: stable
type: auth
invenio-accounts-rest:
description: Invenio modules that adds accounts REST API.
maintainers:
- dinosk
state: alpha
type: addon
invenio-admin:
description: Invenio admin module.
maintainers:
- lnielsen
branches:
- master
- maint-1.0
state: stable
type: base
invenio-administration:
description: Invenio administration module.
maintainers:
- jrcastro2
- kpsherva
branches:
- main
default_branch: main
state: alpha
type: base
invenio-app:
description: WSGI, Celery and CLI applications for Invenio flavours.
maintainers:
- lnielsen
- egabancho
state: stable
type: base
invenio-app-rdm:
description: Turn-key research data management platform.
maintainers:
- fenekku
- lnielsen
- ntarocco
- ppanero
- slint
- yashlamba
- zzacharo
branches:
- master
- maint-4.0
- maint-6.0
- maint-6.x
- maint-7.0
- maint-9.x
state: alpha
type: service
url: https://inveniordm.docs.cern.ch
invenio-app-ils:
description: Integrated Library System (ILS) flavour of Invenio.
maintainers:
- jrcastro2
- kpsherva
- zzacharo
state: alpha
type: service
invenio-archivematica:
description: "*** WORK IN PROGRESS *** "
maintainers:
- egabancho
- ntarocco
- Leats
state: planning
type: addon
invenio-assets:
description: Invenio media assets management module.
maintainers:
- lnielsen
branches:
- master
- maint-1.0
state: stable
type: base
invenio-base:
description: Base package for building the Invenio application.
maintainers:
- lnielsen
- tiborsimko
state: stable
type: base
invenio-banners:
description: Create and show banners with useful messages to users.
maintainers:
- ntarocco
state: alpha
type: addon
invenio-cache:
description: Cache module for Invenio
maintainers:
- lnielsen
state: stable
type: base
invenio-cli:
description: CLI module for Invenio
maintainers:
- ppanero
- fenekku
- zzacharo
state: alpha
type: base
invenio-circulation:
description: Library circulation module for Invenio.
maintainers:
- jrcastro2
- jma
- kpsherva
- ntarocco
- zzacharo
state: alpha
type: addon
has_wiki: true
invenio-iiif:
description: IIIF API for Invenio.
maintainers:
- lnielsen
- chiarabi
state: alpha
type: addon
i18n: false
invenio-charts-js:
description: Invenio-Charts-JS is a library for integrating charts into modern web apps (built on D3.js).
maintainers:
- ntarocco
- drjova
state: alpha
pypi: false
type: addon
invenio-celery:
description: Integration layer between Celery and Invenio.
maintainers:
- lnielsen
state: stable
type: base
invenio-collections:
description: Invenio module for organizing metadata into collections.
maintainers:
- tiborsimko
state: alpha
type: addon
invenio-communities:
description: Invenio communities module.
maintainers:
- lnielsen
branches:
- master
- maint-2.5
state: alpha
type: addon
invenio-config:
description: Invenio configuration loading module.
maintainers:
- lnielsen
- tiborsimko
state: stable
type: base
invenio-csl-js:
description: ''
maintainers:
- lnielsen
- slint
state: alpha
pypi: false
type: addon
invenio-csl-rest:
description: REST API for Citation Style Language styles.
maintainers:
- lnielsen
- slint
state: alpha
type: addon
invenio-db:
description: Database management for Invenio.
maintainers:
- lnielsen
- egabancho
state: stable
type: base
invenio-deposit:
description: Invenio module for depositing metadata using workflows.
maintainers:
- lnielsen
- egabancho
state: alpha
type: deposit
invenio-drafts-resources:
description: Submission/deposit module for Invenio
maintainers:
- fenekku
- lnielsen
- ppanero
- zzacharo
branches:
- master
- maint-0.13
state: alpha
type: deposit
invenio-exporter:
description: Exporter to make downloadable dumps.
maintainers:
- fenekku
- ppanero
state: alpha
type: addon
invenio-files-js:
description: Invenio-Files-JS
maintainers:
- drjova
state: alpha
pypi: false
type: files
invenio-files-processor:
description: Invenio module for file processing tasks.
maintainers:
- carantunes
- lnielsen
- ppanero
state: alpha
type: addon
invenio-files-rest:
description: REST API for uploading/downloading files for Invenio.
maintainers:
- lnielsen
state: alpha
type: files
invenio-formatter:
description: Invenio module for formatting the bibliographic records.
maintainers:
- lnielsen
state: stable
type: base
invenio-github:
description: GitHub integration for Invenio.
maintainers:
- slint
state: alpha
type: addon
invenio-i18n:
description: Invenio internationalization module.
maintainers:
- lnielsen
- tiborsimko
branches:
- master
- maint-1.0
state: stable
type: base
invenio-indexer:
description: Record indexer for Invenio.
maintainers:
- lnielsen
state: stable
type: metadata
invenio-index-migrator:
description: Elasticsearch index migrator for Invenio.
maintainers:
- slint
state: beta
type: metadata
invenio-jsonschemas:
description: Invenio Schema Registry
maintainers:
- slint
state: stable
type: metadata
invenio-logging:
description: Invenio logging module.
maintainers:
- lnielsen
branches:
- master
- maint-1.0