forked from smoe/debtag2edam2debtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocabulary
2735 lines (2053 loc) · 63.8 KB
/
vocabulary
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
Facet: accessibility
Status: needing-review
Description: Accessibility Support
Accessibility support provided by the package
Tag: accessibility::input
Description: Input Systems
Applies to input methods for non-latin languages as well as special input
systems.
Tag: accessibility::ocr
Description: Text Recognition (OCR)
The translation of text images into machine-editable text by means of
Optical Character Recognition (OCR).
Tag: accessibility::screen-magnify
Description: Screen Magnification
Displays enlarged screen content.
Tag: accessibility::screen-reader
Description: Screen Reading
Converts text into speech.
Tag: accessibility::speech
Description: Speech Synthesis
The artificial production of human speech.
Tag: accessibility::speech-recognition
Description: Speech Recognition
Converts speech into text.
Tag: accessibility::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: admin
Status: needing-review
Description: System Administration
Which system administration activities the package may perform
Tag: admin::accounting
Description: Accounting
Tag: admin::automation
Description: Automation and Scheduling
Automating the execution of software in the system.
Tag: admin::backup
Description: Backup and Restoration
Tag: admin::benchmarking
Description: Benchmarking
Tag: admin::boot
Description: System Boot
Tag: admin::cluster
Description: Clustering
Tag: admin::configuring
Description: Configuration Tool
Tag: admin::file-distribution
Description: File Distribution
Tag: admin::filesystem
Description: Filesystem Tool
Creation, maintenance, and use of filesystems
Tag: admin::forensics
Description: Forensics and Recovery
Recovering lost or damaged data.
This tag will be split into admin::recovery
and security::forensics.
Tag: admin::hardware
Description: Hardware Support
Tag: admin::install
Description: System Installation
Tag: admin::issuetracker
Description: Issue Tracker
Tag: admin::kernel
Description: Kernel or Modules
Tag: admin::logging
Description: Logging
Tag: admin::login
Description: Login
Logging into the system
Tag: admin::monitoring
Description: Monitoring
Tag: admin::package-management
Description: Package Management
Tag: admin::power-management
Description: Power Management
Tag: admin::recovery
Description: Data Recovery
Tag: admin::user-management
Description: User Management
Tag: admin::virtualization
Description: Virtualization
This is not hardware emulation, but rather those facilities that allow to
create many isolated compartments inside the same system.
Tag: admin::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: biology
Description: Biology
How the package is related to the field of biology
Tag: biology::emboss
Description: EMBOSS
Packages related to the European Molecular Biology Open Software Suite.
Tag: biology::format:aln
Description: Clustal/ALN
Used in multiple alignment of biological sequences.
Tag: biology::format:fasta
Description: Fasta/Pearson
Very popular format for biological sequences.
Tag: biology::format:nexus
Description: Nexus
Popular format for phylogenetic trees.
Tag: biology::nuceleic-acids
Description: Nucleic Acids
Software that works with sequences of nucleic acids:
DNA, RNA but also non-natural nucleic acids such as PNA or LNA.
Tag: biology::peptidic
Description: Proteins
Software that works with sequences of aminoacids: peptides and proteins.
Facet: culture
Status: complete
Description: Culture
The culture for which the package provides special support
Tag: culture::afrikaans
Description: Afrikaans
Tag: culture::arabic
Description: Arabic
Tag: culture::basque
Description: Basque
Tag: culture::bengali
Description: Bengali
Tag: culture::bokmaal
Description: Norwegian Bokmaal
Tag: culture::bosnian
Description: Bosnian
Tag: culture::brazilian
Responsible: [email protected]
Description: Brazilian
Tag: culture::british
Description: British
Tag: culture::bulgarian
Description: Bulgarian
Tag: culture::catalan
Description: Catalan
Tag: culture::chinese
Description: Chinese
Tag: culture::czech
Description: Czech
Tag: culture::croatian
Description: Croatian
Tag: culture::danish
Description: Danish
Tag: culture::dutch
Description: Dutch
Tag: culture::esperanto
Description: Esperanto
Tag: culture::estonian
Description: Estonian
Tag: culture::faroese
Description: Faroese
Tag: culture::farsi
Description: Farsi
Tag: culture::finnish
Description: Finnish
Tag: culture::french
Description: French
Tag: culture::galician
Description: Galician
Tag: culture::german
Description: German
Tag: culture::greek
Description: Greek
Tag: culture::hebrew
Description: Hebrew
Tag: culture::hindi
Description: Hindi
Tag: culture::hungarian
Description: Hungarian
Tag: culture::icelandic
Description: Icelandic
Tag: culture::indonesian
Description: Indonesian
Tag: culture::irish
Description: Irish (Gaeilge)
Tag: culture::italian
Description: Italian
Tag: culture::japanese
Description: Japanese
Tag: culture::kazakh
Description: Kazakh
Tag: culture::korean
Description: Korean
Tag: culture::latvian
Description: Latvian
Tag: culture::lithuanian
Description: Lithuanian
Tag: culture::mongolian
Description: Mongolian
Tag: culture::nynorsk
Description: Norwegian Nynorsk
Tag: culture::norwegian
Description: Norwegian
Tag: culture::polish
Description: Polish
Tag: culture::portuguese
Description: Portuguese
Tag: culture::punjabi
Description: Punjabi
Tag: culture::romanian
Description: Romanian
Tag: culture::russian
Description: Russian
Tag: culture::serbian
Description: Serbian
Tag: culture::slovak
Description: Slovak
Tag: culture::spanish
Description: Spanish
Tag: culture::swedish
Description: Swedish
Tag: culture::taiwanese
Description: Taiwanese
Tag: culture::tajik
Description: Tajik
Tag: culture::tamil
Description: Tamil
Tag: culture::thai
Description: Thai
Tag: culture::turkish
Description: Turkish
Tag: culture::ukrainian
Description: Ukrainian
Tag: culture::uzbek
Description: Uzbek
Tag: culture::welsh
Description: Welsh
Tag: culture::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: devel
Status: needing-review
Description: Software Development
How the package is related to the field of software development
Tag: devel::bugtracker
Description: Bug Tracking
Tag: devel::buildtools
Description: Build Tool
Tag: devel::code-generator
Description: Code Generation
Parser, lexer and other code generators
Tag: devel::compiler
Description: Compiler
Tag: devel::debian
Description: Debian
Tools, documentation, etc. of use primarily to Debian developers.
Tag: devel::debugger
Description: Debugging
Tag: devel::doc
Description: Documentation
Tag: devel::docsystem
Description: Literate Programming
Tools and auto-documenters
Tag: devel::ecma-cli
Description: ECMA CLI
Tools and libraries for development with implementations of
the ECMA CLI (Common Language Infrastructure), like Mono
or DotGNU Portable.NET.
Tag: devel::editor
Description: Source Editor
Tag: devel::examples
Description: Examples
Tag: devel::ide
Description: IDE
Integrated Development Environment
Tag: devel::interpreter
Description: Interpreter
Tag: devel::i18n
Description: Internationalization
Tag: devel::lang:TODO
Description: Need an extra tag
Tag: devel::lang:ada
Description: Ada Development
Tag: devel::lang:c
Description: C Development
Tag: devel::lang:c++
Description: C++ Development
Tag: devel::lang:c-sharp
Description: C# Development
Tag: devel::lang:erlang
Description: Erlang Development
Tag: devel::lang:fortran
Description: Fortran Development
Tag: devel::lang:haskell
Description: Haskell Development
Tag: devel::lang:java
Description: Java Development
Tag: devel::lang:ecmascript
Description: Ecmascript/JavaScript Development
Tag: devel::lang:lisp
Description: Lisp Development
Tag: devel::lang:lua
Description: Lua Development
Tag: devel::lang:ml
Description: ML Development
Tag: devel::lang:objc
Description: Objective-C Development
Tag: devel::lang:ocaml
Responsible: [email protected]
Description: OCaml Development
Tag: devel::lang:octave
Description: GNU Octave Development
Tag: devel::lang:pascal
Description: Pascal Development
Tag: devel::lang:perl
Description: Perl Development
Tag: devel::lang:posix-shell
Description: POSIX shell
Tag: devel::lang:php
Description: PHP Development
Tag: devel::lang:pike
Description: Pike Development
Tag: devel::lang:prolog
Description: Prolog Development
Tag: devel::lang:python
Description: Python Development
Tag: devel::lang:r
Description: GNU R Development
Tag: devel::lang:ruby
Description: Ruby Development
Tag: devel::lang:scheme
Description: Scheme Development
Tag: devel::lang:sql
Description: SQL
Tag: devel::lang:tcl
Description: Tcl Development
Tag: devel::lang:vala
Description: Vala Development
Tag: devel::library
Description: Libraries
Tag: devel::machinecode
Description: Machine Code
Assemblers and other machine-code development tools.
Tag: devel::modelling
Description: Modelling
Programs and libraries that support creation of software models
with modelling languages like UML or OCL.
Tag: devel::packaging
Description: Packaging
Tools for packaging software.
Tag: devel::prettyprint
Description: Prettyprint
Code pretty-printing and indentation/reformatting.
Tag: devel::profiler
Description: Profiling
Profiling and optimization tools.
Tag: devel::rcs
Description: Revision Control
RCS (Revision Control System) and SCM (Software Configuration Manager)
Tag: devel::rpc
Description: RPC
Remote Procedure Call, Network transparent programming
Tag: devel::runtime
Description: Runtime Support
Runtime environments of various languages and systems.
Tag: devel::testing-qa
Description: Testing and QA
Tools for software testing and quality assurance.
Tag: devel::ui-builder
Description: User Interface
Tools for designing user interfaces.
Tag: devel::web
Description: Web
Web-centric frameworks, CGI libraries and other web-specific development
tools.
Tag: devel::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: field
Status: controversial
Comment: how broad is the definition of a "field"?
Description: Field
Which branch of knowledge is the package related to
Tag: field::arts
Description: Arts
Tag: field::astronomy
Description: Astronomy
Tag: field::aviation
Description: Aviation
Tag: field::biology
Description: Biology
Tag: field::biology:bioinformatics
Description: Bioinformatics
Sequence analysis software.
Tag: field::biology:molecular
Description: Molecular Biology
Software useful to molecular cloning and related wet biology.
Tag: field::biology:structural
Description: Structural Biology
Software useful to model tridimentional structures.
Tag: field::chemistry
Description: Chemistry
Tag: field::electronics
Description: Electronics
Circuit editors and other electronics-related software
Tag: field::finance
Description: Financial
Accounting and financial software
Tag: field::genealogy
Description: Genealogy
Tag: field::geography
Description: Geography
Tag: field::geology
Description: Geology
Tag: field::linguistics
Description: Linguistics
Tag: field::mathematics
Description: Mathematics
Tag: field::medicine
Description: Medicine
Tag: field::medicine:imaging
Description: Medical Imaging
Tag: field::meteorology
Description: Meteorology
Tag: field::physics
Description: Physics
Tag: field::religion
Description: Religion
Tag: field::statistics
Description: Statistics
Tag: field::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: game
Status: needing-review
Description: Games and Amusement
Kind of games provided by the package
Tag: game::adventure
Description: Adventure
Tag: game::arcade
Description: Action and Arcade
Tag: game::board
Description: Board
Tag: game::board:chess
Description: Chess
Tag: game::card
Description: Card
Tag: game::demos
Description: Demo
Tag: game::fps
Description: First Person Shooter
Tag: game::mud
Description: Multiplayer RPG
MUDs, MOOs, and other multiplayer RPGs
Tag: game::platform
Description: Platform
Tag: game::puzzle
Description: Puzzle
Tag: game::rpg
Description: Role-playing
Tag: game::rpg:rogue
Description: Rogue-like RPG
Games like Nethack, Angband etc.
Tag: game::simulation
Description: Simulation
Tag: game::sport
Description: Sport Games
Tag: game::sport:racing
Description: Racing
Tag: game::strategy
Description: Strategy
Tag: game::tetris
Description: Tetris-like
Tag: game::toys
Description: Toy or Gimmick
Tag: game::typing
Description: Typing Tutor
Tag: game::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: hardware
Status: draft
Description: Hardware Enablement
How the package is related to hardware enablement
Tag: hardware::bluetooth
Description: Bluetooth
Tag: hardware::camera
Description: Digital Camera
Tag: hardware::detection
Description: Hardware Detection
Tag: hardware::embedded
Description: Embedded
Tag: hardware::emulation
Description: Emulation
Tag: hardware::gps
Description: GPS
Global Positioning System
Tag: hardware::input
Description: Input Devices
Tag: hardware::input:joystick
Description: Joystick
Tag: hardware::input:keyboard
Description: Keyboard
Tag: hardware::input:mouse
Description: Mouse
Tag: hardware::input:touchscreen
Description: Touchscreen
Tag: hardware::joystick
Description: Joystick (legacy)
Tag: hardware::hamradio
Description: Ham Radio
Tag: hardware::hobby:lego
Description: LEGO™
Software useful for LEGO designers and owners of LEGO bricks and hardware
Tag: hardware::laptop
Description: Laptop
Tag: hardware::modem
Description: Modem
Tag: hardware::modem:dsl
Description: xDSL Modem
Tag: hardware::opengl
Description: Requires video hardware acceleration
Tag: hardware::power
Description: Power Management
Tag: hardware::power:ups
Comment: out of place under power:
Description: UPS
Uninterruptible Power Supply
Tag: hardware::power:acpi
Description: ACPI Power Management
Tag: hardware::power:apm
Description: APM Power Management
Tag: hardware::printer
Description: Printer
Tag: hardware::scanner
Description: Image-scanning Hardware
Tag: hardware::storage
Description: Storage
Tag: hardware::storage:cd
Description: CD reader
Compact Disc
Tag: hardware::storage:cd-writer
Description: CD writer
Compact Disc writer
Tag: hardware::storage:dvd
Description: DVD reader
Digital Versatile Disc
Tag: hardware::storage:dvd-writer
Description: DVD writer
Digital Versatile Disc writer
Tag: hardware::storage:floppy
Description: Floppy Disk
Tag: hardware::usb
Description: USB
Universal Serial Bus
Tag: hardware::video
Description: Graphics and Video
Tag: hardware::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: made-of
Status: needing-review
Description: Made Of
The languages or data formats used to make the package
Tag: made-of::audio
Description: Audio
Tag: made-of::dictionary
Description: Dictionary
Tag: made-of::font
Description: Font
Tag: made-of::html
Description: HTML, Hypertext Markup Language
Tag: made-of::icons
Description: Icons
Tag: made-of::info
Description: Documentation in Info Format
Tag: made-of::man
Description: Manuals in Nroff Format
Tag: made-of::pdf
Description: PDF Documents
Tag: made-of::postscript
Description: PostScript
Tag: made-of::sgml
Description: SGML, Standard Generalized Markup Language
Tag: made-of::svg
Description: SVG, Scalable Vector Graphics
Tag: made-of::tex
Description: TeX, LaTeX and DVI
Tag: made-of::vrml
Description: VRML, Virtual Reality Markup Language
Tag: made-of::xml
Description: XML
Tag: made-of::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: interface
Status: needing-review
Description: User Interface
What kind of user interface the package provides
Tag: interface::3d
Description: Three-Dimensional
Tag: interface::commandline
Description: Command Line
Tag: interface::daemon
Description: Daemon
Runs in background, only a control interface is provided, usually on
commandline.
Tag: interface::framebuffer
Description: Framebuffer
Tag: interface::shell
Description: Command Shell
Tag: interface::svga
Description: Console SVGA
Tag: interface::text-mode
Description: Text-based Interactive
Tag: interface::web
Description: World Wide Web
Tag: interface::x11
Description: X Window System
Tag: interface::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.
Facet: implemented-in
Description: Implemented in
What language the software is implemented in
Tag: implemented-in::ada
Description: Ada
Tag: implemented-in::c
Description: C
Tag: implemented-in::c++
Description: C++
Tag: implemented-in::c-sharp
Description: C#
Tag: implemented-in::erlang
Description: Erlang
Tag: implemented-in::fortran
Description: Fortran
Tag: implemented-in::haskell
Description: Haskell
Tag: implemented-in::java
Description: Java
Tag: implemented-in::ecmascript
Description: Ecmascript/Javascript
Tag: implemented-in::lisp
Description: Lisp
Tag: implemented-in::lua
Description: Lua
Tag: implemented-in::ml
Description: ML
Tag: implemented-in::objc
Description: Objective C
Tag: implemented-in::ocaml
Responsible: [email protected]
Description: OCaml
Tag: implemented-in::perl
Description: Perl
Tag: implemented-in::php
Description: PHP
Tag: implemented-in::pike
Description: Pike
Tag: implemented-in::python
Description: Python
Tag: implemented-in::r
Description: GNU R
Tag: implemented-in::ruby
Description: Ruby
Tag: implemented-in::scheme
Description: Scheme
Tag: implemented-in::shell
Description: sh, bash, ksh, tcsh and other shells
Tag: implemented-in::tcl
Description: Tcl, Tool Command Language
Tag: implemented-in::vala
Description: Vala
Tag: implemented-in::TODO
Description: Need an extra tag
The package can be categorised along this facet, but the right tag for it is
missing.
.
Mark a package with this tag to signal the vocabulary maintainers of cases
where the current tag set is lacking.