blob: d0ca744e91fecff4675bcdf5858ab3422432e562 (
plain) (
blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
|
# $FreeBSD$
#
COMMENT = Databases and related software
SUBDIR += R-cran-DBI
SUBDIR += R-cran-RMySQL
SUBDIR += R-cran-RPostgreSQL
SUBDIR += R-cran-RSQLite
SUBDIR += R-cran-RSQLite.extfuns
SUBDIR += R-cran-cachem
SUBDIR += R-cran-fastmap
SUBDIR += R-cran-sqldf
SUBDIR += WWWdb
SUBDIR += adabase
SUBDIR += adminer
SUBDIR += adodb
SUBDIR += adodb5
SUBDIR += akonadi
SUBDIR += apache-commons-dbutils
SUBDIR += apq
SUBDIR += apq-mysql
SUBDIR += apq-odbc
SUBDIR += apq-pgsql
SUBDIR += arrow
SUBDIR += ateam_mysql57_ldap_auth
SUBDIR += ateam_mysql_ldap_auth
SUBDIR += autobackupmysql
SUBDIR += automysqlbackup
SUBDIR += bbdb
SUBDIR += beansdb
SUBDIR += buzhug
SUBDIR += c3p0
SUBDIR += cassandra-cpp-driver
SUBDIR += cassandra3
SUBDIR += cassandra4
SUBDIR += casstcl
SUBDIR += cayley
SUBDIR += cdb
SUBDIR += cego
SUBDIR += cegobridge
SUBDIR += clickhouse
SUBDIR += cockroach
SUBDIR += couchdb2
SUBDIR += couchdb3
SUBDIR += courier-authlib-mysql
SUBDIR += courier-authlib-pgsql
SUBDIR += courier-authlib-sqlite
SUBDIR += courier-authlib-userdb
SUBDIR += courier-authlib-usergdbm
SUBDIR += cppdb
SUBDIR += credis
SUBDIR += cutelyst-asql
SUBDIR += dalmp
SUBDIR += db
SUBDIR += db18
SUBDIR += db5
SUBDIR += dbf
SUBDIR += dbh
SUBDIR += dbixx
SUBDIR += dbow
SUBDIR += dbtool
SUBDIR += dbview
SUBDIR += elixir-calecto
SUBDIR += elixir-db_connection
SUBDIR += elixir-ecto
SUBDIR += elixir-geo
SUBDIR += elixir-mariaex
SUBDIR += elixir-mongo
SUBDIR += elixir-postgrex
SUBDIR += elixir-timex_ecto
SUBDIR += erlang-couchbeam
SUBDIR += erlang-epgsql
SUBDIR += erlang-eredis
SUBDIR += erlfdb
SUBDIR += evolution-data-server
SUBDIR += fastdb
SUBDIR += firebird25-client
SUBDIR += firebird25-server
SUBDIR += fortytwo-bdb
SUBDIR += foundationdb
SUBDIR += foundationdb-devel
SUBDIR += fpc-dblib
SUBDIR += fpc-fpindexer
SUBDIR += fpc-gdbm
SUBDIR += fpc-ibase
SUBDIR += fpc-mysql
SUBDIR += fpc-odbc
SUBDIR += fpc-oracle
SUBDIR += fpc-postgres
SUBDIR += fpc-pxlib
SUBDIR += fpc-sqlite
SUBDIR += freetds
SUBDIR += freetds-devel
SUBDIR += frontbase-jdbc
SUBDIR += galera
SUBDIR += galera26
SUBDIR += gdbm
SUBDIR += geoserver-mysql-plugin
SUBDIR += gigabase
SUBDIR += gnats4
SUBDIR += gnatsweb4
SUBDIR += go-carbon
SUBDIR += go-pgweb
SUBDIR += gom
SUBDIR += gqlplus
SUBDIR += grass7
SUBDIR += hashtypes
SUBDIR += hbase
SUBDIR += hiredis
SUBDIR += hsqldb
SUBDIR += influxdb
SUBDIR += innotop
SUBDIR += iowow
SUBDIR += ip4r
SUBDIR += ipa_sdb
SUBDIR += iplike
SUBDIR += isql-viewer
SUBDIR += jasperreports
SUBDIR += jdb
SUBDIR += jdbc-oracle11g
SUBDIR += jlog
SUBDIR += jrobin
SUBDIR += jrrd
SUBDIR += kbibtex
SUBDIR += kdb
SUBDIR += kexi
SUBDIR += kyotocabinet
SUBDIR += kyototycoon
SUBDIR += ldb15
SUBDIR += ldb20
SUBDIR += ldb21
SUBDIR += ldb22
SUBDIR += leo_center
SUBDIR += leofs
SUBDIR += leveldb
SUBDIR += libcouchbase
SUBDIR += libdbi
SUBDIR += libdbi-drivers
SUBDIR += libdrizzle
SUBDIR += libdrizzle-redux
SUBDIR += libgda5
SUBDIR += libgda5-bdb
SUBDIR += libgda5-jdbc
SUBDIR += libgda5-ldap
SUBDIR += libgda5-mdb
SUBDIR += libgda5-mysql
SUBDIR += libgda5-postgresql
SUBDIR += libgda5-ui
SUBDIR += libgdamm5
SUBDIR += libhsclient
SUBDIR += libiodbc
SUBDIR += libmemcache
SUBDIR += libmemcached
SUBDIR += libmongo-client
SUBDIR += libmswstr
SUBDIR += libnvpair
SUBDIR += libodbc++
SUBDIR += libpbl
SUBDIR += libpg_query
SUBDIR += libpqtypes
SUBDIR += libsdb
SUBDIR += libzdb
SUBDIR += linux-c7-sqlite3
SUBDIR += linux-oracle-instantclient-basic
SUBDIR += linux-oracle-instantclient-sdk
SUBDIR += liquibase
SUBDIR += litestream
SUBDIR += lmdb
SUBDIR += lua-lsqlite3
SUBDIR += lua-pgsql
SUBDIR += lua-resty-redis
SUBDIR += lua-xapian
SUBDIR += luadbi
SUBDIR += luasql-firebird
SUBDIR += luasql-mysql
SUBDIR += luasql-odbc
SUBDIR += luasql-postgres
SUBDIR += luasql-sqlite3
SUBDIR += mantis
SUBDIR += mariadb-connector-c
SUBDIR += mariadb-connector-odbc
SUBDIR += mariadb103-client
SUBDIR += mariadb103-server
SUBDIR += mariadb104-client
SUBDIR += mariadb104-server
SUBDIR += mariadb105-client
SUBDIR += mariadb105-server
SUBDIR += mdbtools
SUBDIR += mdbx
SUBDIR += mdcached
SUBDIR += memcached
SUBDIR += mongodb-tools
SUBDIR += mongodb36
SUBDIR += mongodb36-tools
SUBDIR += mongodb40
SUBDIR += mongodb40-tools
SUBDIR += mongodb42
SUBDIR += mongodb42-tools
SUBDIR += mongodb44
SUBDIR += mroonga
SUBDIR += mtop
SUBDIR += mydumper
SUBDIR += mysac
SUBDIR += mysql-connector-c
SUBDIR += mysql-connector-c++
SUBDIR += mysql-connector-java
SUBDIR += mysql-connector-java51
SUBDIR += mysql-connector-odbc
SUBDIR += mysql-q4m
SUBDIR += mysql-udf
SUBDIR += mysql2pgsql
SUBDIR += mysql55-client
SUBDIR += mysql55-server
SUBDIR += mysql56-client
SUBDIR += mysql56-server
SUBDIR += mysql57-client
SUBDIR += mysql57-server
SUBDIR += mysql80-client
SUBDIR += mysql80-server
SUBDIR += mysqlbackup
SUBDIR += mysqlbigram
SUBDIR += mysqldump-secure
SUBDIR += mysqlreport
SUBDIR += mysqlsla
SUBDIR += mysqlsniffer
SUBDIR += mysqltcl
SUBDIR += mysqltuner
SUBDIR += mysqlwsrep56-server
SUBDIR += mysqlwsrep57-server
SUBDIR += mytop
SUBDIR += nagios-check_mongodb
SUBDIR += nagios-check_postgres_replication
SUBDIR += nagios-check_redis
SUBDIR += namazu2
SUBDIR += neo4j
SUBDIR += ocaml-dbm
SUBDIR += ocaml-mysql
SUBDIR += ocaml-sqlite3
SUBDIR += ods2sql
SUBDIR += opendbviewer
SUBDIR += opendbx
SUBDIR += opentsdb
SUBDIR += ora2pg
SUBDIR += oracle8-client
SUBDIR += p5-Amazon-SimpleDB
SUBDIR += p5-Amon2-DBI
SUBDIR += p5-AnyEvent-BDB
SUBDIR += p5-AnyEvent-CouchDB
SUBDIR += p5-AnyEvent-DBD-Pg
SUBDIR += p5-AnyEvent-Memcached
SUBDIR += p5-AnyEvent-Redis
SUBDIR += p5-App-Sqitch
SUBDIR += p5-AsciiDB-TagFile
SUBDIR += p5-BDB
SUBDIR += p5-BSON
SUBDIR += p5-BSON-XS
SUBDIR += p5-BerkeleyDB
SUBDIR += p5-Bucardo
SUBDIR += p5-CDB_File
SUBDIR += p5-CDB_File-Generator
SUBDIR += p5-CGI-Session-Driver-memcached
SUBDIR += p5-CHI-Driver-Memcached
SUBDIR += p5-CHI-Driver-Redis
SUBDIR += p5-CHI-Driver-TokyoTyrant
SUBDIR += p5-Cache-BDB
SUBDIR += p5-Cache-Memcached
SUBDIR += p5-Cache-Memcached-Fast
SUBDIR += p5-Cache-Memcached-Managed
SUBDIR += p5-Cache-Memcached-XS
SUBDIR += p5-Cache-Memcached-libmemcached
SUBDIR += p5-Class-DBI
SUBDIR += p5-Class-DBI-AbstractSearch
SUBDIR += p5-Class-DBI-AsForm
SUBDIR += p5-Class-DBI-AutoLoader
SUBDIR += p5-Class-DBI-BaseDSN
SUBDIR += p5-Class-DBI-DATA-Schema
SUBDIR += p5-Class-DBI-DDL
SUBDIR += p5-Class-DBI-FromCGI
SUBDIR += p5-Class-DBI-LazyInflate
SUBDIR += p5-Class-DBI-Loader
SUBDIR += p5-Class-DBI-Loader-Relationship
SUBDIR += p5-Class-DBI-Oracle
SUBDIR += p5-Class-DBI-Pager
SUBDIR += p5-Class-DBI-Pg
SUBDIR += p5-Class-DBI-Plugin
SUBDIR += p5-Class-DBI-Plugin-AbstractCount
SUBDIR += p5-Class-DBI-Plugin-DeepAbstractSearch
SUBDIR += p5-Class-DBI-Plugin-Iterator
SUBDIR += p5-Class-DBI-Plugin-Pager
SUBDIR += p5-Class-DBI-Plugin-RetrieveAll
SUBDIR += p5-Class-DBI-Plugin-Senna
SUBDIR += p5-Class-DBI-Plugin-Type
SUBDIR += p5-Class-DBI-Replication
SUBDIR += p5-Class-DBI-SAK
SUBDIR += p5-Class-DBI-SQLite
SUBDIR += p5-Class-DBI-Sweet
SUBDIR += p5-Class-DBI-ToSax
SUBDIR += p5-Class-DBI-Untaint
SUBDIR += p5-Class-DBI-mysql
SUBDIR += p5-Class-Inflate
SUBDIR += p5-CouchDB-View
SUBDIR += p5-DBD-AnyData
SUBDIR += p5-DBD-CSV
SUBDIR += p5-DBD-Excel
SUBDIR += p5-DBD-Google
SUBDIR += p5-DBD-InterBase
SUBDIR += p5-DBD-LDAP
SUBDIR += p5-DBD-MariaDB
SUBDIR += p5-DBD-Mock
SUBDIR += p5-DBD-Multi
SUBDIR += p5-DBD-ODBC
SUBDIR += p5-DBD-Oracle
SUBDIR += p5-DBD-Pg
SUBDIR += p5-DBD-PgLite
SUBDIR += p5-DBD-PgPP
SUBDIR += p5-DBD-SQLite
SUBDIR += p5-DBD-SQLite2
SUBDIR += p5-DBD-Sybase
SUBDIR += p5-DBD-XBase
SUBDIR += p5-DBD-cego
SUBDIR += p5-DBD-mysql
SUBDIR += p5-DBI
SUBDIR += p5-DBI-Shell
SUBDIR += p5-DBICx-Deploy
SUBDIR += p5-DBICx-MapMaker
SUBDIR += p5-DBICx-Sugar
SUBDIR += p5-DBICx-TestDatabase
SUBDIR += p5-DBICx-TxnInsert
SUBDIR += p5-DBIWrapper
SUBDIR += p5-DBIx-Abstract
SUBDIR += p5-DBIx-Admin-CreateTable
SUBDIR += p5-DBIx-Admin-DSNManager
SUBDIR += p5-DBIx-Admin-TableInfo
SUBDIR += p5-DBIx-AnyDBD
SUBDIR += p5-DBIx-Browse
SUBDIR += p5-DBIx-Class
SUBDIR += p5-DBIx-Class-AsFdat
SUBDIR += p5-DBIx-Class-AuditLog
SUBDIR += p5-DBIx-Class-BitField
SUBDIR += p5-DBIx-Class-Candy
SUBDIR += p5-DBIx-Class-Cursor-Cached
SUBDIR += p5-DBIx-Class-CustomPrefetch
SUBDIR += p5-DBIx-Class-DateTime-Epoch
SUBDIR += p5-DBIx-Class-DeploymentHandler
SUBDIR += p5-DBIx-Class-DigestColumns
SUBDIR += p5-DBIx-Class-DynamicDefault
SUBDIR += p5-DBIx-Class-DynamicSubclass
SUBDIR += p5-DBIx-Class-EncodeColumns
SUBDIR += p5-DBIx-Class-EncodedColumn
SUBDIR += p5-DBIx-Class-Fixtures
SUBDIR += p5-DBIx-Class-FrozenColumns
SUBDIR += p5-DBIx-Class-Helpers
SUBDIR += p5-DBIx-Class-InflateColumn-Authen-Passphrase
SUBDIR += p5-DBIx-Class-InflateColumn-FS
SUBDIR += p5-DBIx-Class-InflateColumn-IP
SUBDIR += p5-DBIx-Class-InflateColumn-Serializer
SUBDIR += p5-DBIx-Class-IntrospectableM2M
SUBDIR += p5-DBIx-Class-Loader
SUBDIR += p5-DBIx-Class-Migration
SUBDIR += p5-DBIx-Class-MooseColumns
SUBDIR += p5-DBIx-Class-PassphraseColumn
SUBDIR += p5-DBIx-Class-QueryLog
SUBDIR += p5-DBIx-Class-QueryProfiler
SUBDIR += p5-DBIx-Class-ResultSet-HashRef
SUBDIR += p5-DBIx-Class-ResultSet-RecursiveUpdate
SUBDIR += p5-DBIx-Class-Schema-Config
SUBDIR += p5-DBIx-Class-Schema-Loader
SUBDIR += p5-DBIx-Class-Schema-PopulateMore
SUBDIR += p5-DBIx-Class-Storage-TxnEndHook
SUBDIR += p5-DBIx-Class-TimeStamp
SUBDIR += p5-DBIx-Class-Tree
SUBDIR += p5-DBIx-Class-Tree-NestedSet
SUBDIR += p5-DBIx-Class-UUIDColumns
SUBDIR += p5-DBIx-Class-VirtualColumns
SUBDIR += p5-DBIx-Class-WebForm
SUBDIR += p5-DBIx-Connector
SUBDIR += p5-DBIx-ContextualFetch
SUBDIR += p5-DBIx-Custom
SUBDIR += p5-DBIx-DBHResolver
SUBDIR += p5-DBIx-DBSchema
SUBDIR += p5-DBIx-DataSource
SUBDIR += p5-DBIx-Dump
SUBDIR += p5-DBIx-HA
SUBDIR += p5-DBIx-Handler
SUBDIR += p5-DBIx-Inspector
SUBDIR += p5-DBIx-Introspector
SUBDIR += p5-DBIx-Lite
SUBDIR += p5-DBIx-Log4perl
SUBDIR += p5-DBIx-MySQLSequence
SUBDIR += p5-DBIx-NoSQL
SUBDIR += p5-DBIx-Password
SUBDIR += p5-DBIx-Perlish
SUBDIR += p5-DBIx-QueryLog
SUBDIR += p5-DBIx-Recordset
SUBDIR += p5-DBIx-RetryOverDisconnects
SUBDIR += p5-DBIx-SQLEngine
SUBDIR += p5-DBIx-SQLite-Simple
SUBDIR += p5-DBIx-Safe
SUBDIR += p5-DBIx-SearchBuilder
SUBDIR += p5-DBIx-Sequence
SUBDIR += p5-DBIx-Simple
SUBDIR += p5-DBIx-Skinny
SUBDIR += p5-DBIx-Skinny-InflateColumn-DateTime
SUBDIR += p5-DBIx-Skinny-Mixin-DBHResolver
SUBDIR += p5-DBIx-Skinny-Pager
SUBDIR += p5-DBIx-Skinny-Schema-Loader
SUBDIR += p5-DBIx-Sunny
SUBDIR += p5-DBIx-TableHash
SUBDIR += p5-DBIx-TransactionManager
SUBDIR += p5-DBIx-Tree
SUBDIR += p5-DBIx-VersionedDDL
SUBDIR += p5-DBIx-Wrapper
SUBDIR += p5-DBIx-XHTML_Table
SUBDIR += p5-DBIx-XML_RDB
SUBDIR += p5-DBM-Deep
SUBDIR += p5-DR-Tarantool
SUBDIR += p5-DWH_File
SUBDIR += p5-Dancer-Plugin-DBIC
SUBDIR += p5-Dancer-Plugin-Database
SUBDIR += p5-Dancer-Plugin-Database-Core
SUBDIR += p5-Dancer-Plugin-Redis
SUBDIR += p5-Dancer-Session-Memcached
SUBDIR += p5-Dancer2-Plugin-DBIC
SUBDIR += p5-Dancer2-Plugin-Database
SUBDIR += p5-Dancer2-Session-DBIC
SUBDIR += p5-Data-Page
SUBDIR += p5-Data-Pageset
SUBDIR += p5-Exception-Class-DBI
SUBDIR += p5-File-Locate
SUBDIR += p5-GDBM
SUBDIR += p5-Genezzo
SUBDIR += p5-GitDDL
SUBDIR += p5-GitDDL-Migrator
SUBDIR += p5-GraphViz-DBI
SUBDIR += p5-HTML-FormHandler-Model-DBIC
SUBDIR += p5-Ima-DBI
SUBDIR += p5-Interchange6-Schema
SUBDIR += p5-Iterator-DBI
SUBDIR += p5-Jifty-DBI
SUBDIR += p5-KyotoCabinet
SUBDIR += p5-LMDB_File
SUBDIR += p5-MLDBM
SUBDIR += p5-MLDBM-Sync
SUBDIR += p5-MR-Tarantool
SUBDIR += p5-Mango
SUBDIR += p5-Memcached-libmemcached
SUBDIR += p5-Metadata
SUBDIR += p5-Mojo-Pg
SUBDIR += p5-MongoDB
SUBDIR += p5-Mongoose
SUBDIR += p5-MySQL-Diff
SUBDIR += p5-Net-Async-CassandraCQL
SUBDIR += p5-ORLite
SUBDIR += p5-ORLite-Migrate
SUBDIR += p5-Oryx
SUBDIR += p5-POE-Component-DBIAgent
SUBDIR += p5-POE-Component-EasyDBI
SUBDIR += p5-POE-Component-LaDBI
SUBDIR += p5-POE-Component-RRDTool
SUBDIR += p5-Pg
SUBDIR += p5-PostgreSQL-PLPerl-Call
SUBDIR += p5-PostgreSQL-PLPerl-Trace
SUBDIR += p5-Prophet
SUBDIR += p5-Protocol-CassandraCQL
SUBDIR += p5-RRD-Simple
SUBDIR += p5-Redis
SUBDIR += p5-Redis-Fast
SUBDIR += p5-Redis-JobQueue
SUBDIR += p5-Redis-RateLimit
SUBDIR += p5-Redis-hiredis
SUBDIR += p5-RedisDB
SUBDIR += p5-RedisDB-Parser
SUBDIR += p5-Relations
SUBDIR += p5-Relations-Query
SUBDIR += p5-ResourcePool-Resource-DBI
SUBDIR += p5-Rose-DB
SUBDIR += p5-Rose-DB-Object
SUBDIR += p5-Rose-DBx-Object-MoreHelpers
SUBDIR += p5-Rose-DBx-Object-Renderer
SUBDIR += p5-SQL-Abstract
SUBDIR += p5-SQL-Abstract-Classic
SUBDIR += p5-SQL-Abstract-Limit
SUBDIR += p5-SQL-Abstract-More
SUBDIR += p5-SQL-Abstract-Pg
SUBDIR += p5-SQL-Abstract-Plugin-InsertMulti
SUBDIR += p5-SQL-Interp
SUBDIR += p5-SQL-Maker
SUBDIR += p5-SQL-NamedPlaceholder
SUBDIR += p5-SQL-ReservedWords
SUBDIR += p5-SQL-Statement
SUBDIR += p5-SQL-Translator
SUBDIR += p5-SQLite-Work
SUBDIR += p5-Scope-Container-DBI
SUBDIR += p5-Search-InvertedIndex
SUBDIR += p5-Search-Namazu
SUBDIR += p5-Search-Xapian
SUBDIR += p5-Search-Xapian12
SUBDIR += p5-Store-CouchDB
SUBDIR += p5-T2
SUBDIR += p5-Tangram
SUBDIR += p5-Template-DBI
SUBDIR += p5-Teng
SUBDIR += p5-Test-Cukes
SUBDIR += p5-Test-Database
SUBDIR += p5-Test-DatabaseRow
SUBDIR += p5-Test-Fixture-DBI
SUBDIR += p5-Test-mysqld
SUBDIR += p5-Test-postgresql
SUBDIR += p5-Text-Query-SQL
SUBDIR += p5-Text-xSV
SUBDIR += p5-Tie-DBI
SUBDIR += p5-Tie-LevelDB
SUBDIR += p5-Time-Piece-MySQL
SUBDIR += p5-TokyoCabinet
SUBDIR += p5-Xapian
SUBDIR += p5-mysql-genocide
SUBDIR += p5-tokyotyrant
SUBDIR += pear-DB
SUBDIR += pear-DBA
SUBDIR += pear-DBA_Relational
SUBDIR += pear-DB_DataObject
SUBDIR += pear-DB_DataObject_FormBuilder
SUBDIR += pear-DB_Pager
SUBDIR += pear-DB_QueryTool
SUBDIR += pear-DB_Sqlite_Tools
SUBDIR += pear-DB_Table
SUBDIR += pear-DB_ldap
SUBDIR += pear-DB_ldap2
SUBDIR += pear-DoctrineCommon
SUBDIR += pear-DoctrineDBAL
SUBDIR += pear-Horde_Db
SUBDIR += pear-Horde_HashTable
SUBDIR += pear-Horde_Imsp
SUBDIR += pear-Horde_Memcache
SUBDIR += pear-Horde_Mongo
SUBDIR += pear-MDB
SUBDIR += pear-MDB2
SUBDIR += pear-MDB2_Driver_mysqli
SUBDIR += pear-MDB2_Driver_pgsql
SUBDIR += pear-MDB2_Schema
SUBDIR += pear-MDB_QueryTool
SUBDIR += pear-Structures_DataGrid_DataSource_Array
SUBDIR += pear-Structures_DataGrid_DataSource_CSV
SUBDIR += pear-Structures_DataGrid_DataSource_DB
SUBDIR += pear-Structures_DataGrid_DataSource_PDO
SUBDIR += pear-XML_Query2XML
SUBDIR += pecl-cassandra
SUBDIR += pecl-couchbase
SUBDIR += pecl-leveldb
SUBDIR += pecl-memcache
SUBDIR += pecl-memcached
SUBDIR += pecl-mongodb
SUBDIR += pecl-redis
SUBDIR += pecl-rrd
SUBDIR += percona-pam-for-mysql
SUBDIR += percona-toolkit
SUBDIR += percona55-client
SUBDIR += percona55-server
SUBDIR += percona56-client
SUBDIR += percona56-server
SUBDIR += percona57-client
SUBDIR += percona57-pam-for-mysql
SUBDIR += percona57-server
SUBDIR += pgFormatter
SUBDIR += pg_activity
SUBDIR += pg_citus
SUBDIR += pg_dirtyread
SUBDIR += pg_ed25519
SUBDIR += pg_hashids
SUBDIR += pg_partman
SUBDIR += pg_qualstats
SUBDIR += pg_reorg
SUBDIR += pg_repack
SUBDIR += pg_similarity
SUBDIR += pg_stat_kcache
SUBDIR += pgaccess
SUBDIR += pgadmin3
SUBDIR += pgbadger
SUBDIR += pgbarman
SUBDIR += pgbouncer
SUBDIR += pgdbf
SUBDIR += pgespresso
SUBDIR += pgfouine
SUBDIR += pgloader3
SUBDIR += pglogical
SUBDIR += pgmetrics
SUBDIR += pgmodeler
SUBDIR += pgpool-II-35
SUBDIR += pgpool-II-36
SUBDIR += pgpool-II-37
SUBDIR += pgpool-II-40
SUBDIR += pgpool-II-41
SUBDIR += pgreplay
SUBDIR += pgroonga
SUBDIR += pgrouting
SUBDIR += pgsanity
SUBDIR += pgsphere
SUBDIR += pgtcl
SUBDIR += pgtop
SUBDIR += pguri
SUBDIR += php-tarantool
SUBDIR += php-xapian
SUBDIR += php73-dba
SUBDIR += php73-interbase
SUBDIR += php73-mysqli
SUBDIR += php73-odbc
SUBDIR += php73-pdo
SUBDIR += php73-pdo_dblib
SUBDIR += php73-pdo_firebird
SUBDIR += php73-pdo_mysql
SUBDIR += php73-pdo_odbc
SUBDIR += php73-pdo_pgsql
SUBDIR += php73-pdo_sqlite
SUBDIR += php73-pgsql
SUBDIR += php73-sqlite3
SUBDIR += php74-dba
SUBDIR += php74-mysqli
SUBDIR += php74-odbc
SUBDIR += php74-pdo
SUBDIR += php74-pdo_dblib
SUBDIR += php74-pdo_firebird
SUBDIR += php74-pdo_mysql
SUBDIR += php74-pdo_odbc
SUBDIR += php74-pdo_pgsql
SUBDIR += php74-pdo_sqlite
SUBDIR += php74-pgsql
SUBDIR += php74-sqlite3
SUBDIR += php80-dba
SUBDIR += php80-mysqli
SUBDIR += php80-odbc
SUBDIR += php80-pdo
SUBDIR += php80-pdo_dblib
SUBDIR += php80-pdo_firebird
SUBDIR += php80-pdo_mysql
SUBDIR += php80-pdo_odbc
SUBDIR += php80-pdo_pgsql
SUBDIR += php80-pdo_sqlite
SUBDIR += php80-pgsql
SUBDIR += php80-sqlite3
SUBDIR += phpliteadmin
SUBDIR += phpminiadmin
SUBDIR += phpmyadmin
SUBDIR += phpmyadmin5
SUBDIR += phppgadmin
SUBDIR += pldebugger
SUBDIR += plpgsql_check
SUBDIR += pointcloud
SUBDIR += postgis-jdbc
SUBDIR += postgis24
SUBDIR += postgis25
SUBDIR += postgis30
SUBDIR += postgis31
SUBDIR += postgresql-cstore_fdw
SUBDIR += postgresql-jdbc
SUBDIR += postgresql-libpgeasy
SUBDIR += postgresql-libpqxx
SUBDIR += postgresql-mysql_fdw
SUBDIR += postgresql-odbc
SUBDIR += postgresql-ogr_fdw
SUBDIR += postgresql-orafce
SUBDIR += postgresql-plproxy
SUBDIR += postgresql-plv8js
SUBDIR += postgresql-prefix
SUBDIR += postgresql-relay
SUBDIR += postgresql-repmgr
SUBDIR += postgresql-rum
SUBDIR += postgresql-tds_fdw
SUBDIR += postgresql-zhparser
SUBDIR += postgresql10-client
SUBDIR += postgresql10-contrib
SUBDIR += postgresql10-docs
SUBDIR += postgresql10-pgtcl
SUBDIR += postgresql10-plperl
SUBDIR += postgresql10-plpython
SUBDIR += postgresql10-pltcl
SUBDIR += postgresql10-server
SUBDIR += postgresql11-client
SUBDIR += postgresql11-contrib
SUBDIR += postgresql11-docs
SUBDIR += postgresql11-pgtcl
SUBDIR += postgresql11-plperl
SUBDIR += postgresql11-plpython
SUBDIR += postgresql11-pltcl
SUBDIR += postgresql11-server
SUBDIR += postgresql12-client
SUBDIR += postgresql12-contrib
SUBDIR += postgresql12-docs
SUBDIR += postgresql12-pgtcl
SUBDIR += postgresql12-plperl
SUBDIR += postgresql12-plpython
SUBDIR += postgresql12-pltcl
SUBDIR += postgresql12-server
SUBDIR += postgresql13-client
SUBDIR += postgresql13-contrib
SUBDIR += postgresql13-docs
SUBDIR += postgresql13-pgtcl
SUBDIR += postgresql13-plperl
SUBDIR += postgresql13-plpython
SUBDIR += postgresql13-pltcl
SUBDIR += postgresql13-server
SUBDIR += postgresql95-client
SUBDIR += postgresql95-contrib
SUBDIR += postgresql95-docs
SUBDIR += postgresql95-pgtcl
SUBDIR += postgresql95-plperl
SUBDIR += postgresql95-plpython
SUBDIR += postgresql95-pltcl
SUBDIR += postgresql95-server
SUBDIR += postgresql96-client
SUBDIR += postgresql96-contrib
SUBDIR += postgresql96-docs
SUBDIR += postgresql96-pgtcl
SUBDIR += postgresql96-plperl
SUBDIR += postgresql96-plpython
SUBDIR += postgresql96-pltcl
SUBDIR += postgresql96-server
SUBDIR += powa-archivist
SUBDIR += powa-web
SUBDIR += powerarchitect
SUBDIR += proftpd-mod_sql_mysql
SUBDIR += proftpd-mod_sql_odbc
SUBDIR += proftpd-mod_sql_postgres
SUBDIR += proftpd-mod_sql_sqlite
SUBDIR += proftpd-mod_sql_tds
SUBDIR += prometheus-postgresql-adapter
SUBDIR += pspg
SUBDIR += puppetdb-terminus5
SUBDIR += puppetdb-terminus6
SUBDIR += puppetdb-terminus7
SUBDIR += puppetdb5
SUBDIR += puppetdb6
SUBDIR += puppetdb7
SUBDIR += puredb
SUBDIR += pxlib
SUBDIR += pxtools
SUBDIR += py-Elixir
SUBDIR += py-PyGreSQL
SUBDIR += py-Pyrseas
SUBDIR += py-aesqlapius
SUBDIR += py-agate-sql
SUBDIR += py-aiomysql
SUBDIR += py-aiopg
SUBDIR += py-aioredis
SUBDIR += py-aiosqlite
SUBDIR += py-alembic
SUBDIR += py-apsw
SUBDIR += py-asyncpg
SUBDIR += py-berkeleydb
SUBDIR += py-bsddb3
SUBDIR += py-carbon
SUBDIR += py-cassandra-driver
SUBDIR += py-couchdb
SUBDIR += py-dbf
SUBDIR += py-dbutils
SUBDIR += py-fakeredis
SUBDIR += py-fdb
SUBDIR += py-firebirdsql
SUBDIR += py-flask-sqlalchemy
SUBDIR += py-gdbm
SUBDIR += py-geoalchemy2
SUBDIR += py-hiredis
SUBDIR += py-influxdb
SUBDIR += py-kyotocabinet
SUBDIR += py-leveldb
SUBDIR += py-litecli
SUBDIR += py-lmdb
SUBDIR += py-marshmallow-sqlalchemy
SUBDIR += py-minidb
SUBDIR += py-mongoengine
SUBDIR += py-motor
SUBDIR += py-mycli
SUBDIR += py-mysql-connector-python
SUBDIR += py-mysqlclient
SUBDIR += py-partd
SUBDIR += py-peewee
SUBDIR += py-peewee_migrate
SUBDIR += py-pg8000
SUBDIR += py-pg8000-112
SUBDIR += py-pgcli
SUBDIR += py-pgdbconn
SUBDIR += py-pglast
SUBDIR += py-pglite
SUBDIR += py-pgspecial
SUBDIR += py-pgxnclient
SUBDIR += py-pickledb
SUBDIR += py-pickleshare
SUBDIR += py-pony
SUBDIR += py-postgresql
SUBDIR += py-psycogreen
SUBDIR += py-psycopg2
SUBDIR += py-psycopg2cffi
SUBDIR += py-pum
SUBDIR += py-pycql
SUBDIR += py-pylibmc
SUBDIR += py-pymemcache
SUBDIR += py-pymssql
SUBDIR += py-pymysql
SUBDIR += py-pyodbc
SUBDIR += py-pypuppetdb
SUBDIR += py-python-arango
SUBDIR += py-python-binary-memcached
SUBDIR += py-python-memcached
SUBDIR += py-python-sql
SUBDIR += py-python-swiftclient
SUBDIR += py-qt5-sql
SUBDIR += py-queries
SUBDIR += py-rb
SUBDIR += py-redis
SUBDIR += py-redis2
SUBDIR += py-rrdtool
SUBDIR += py-sispy
SUBDIR += py-south
SUBDIR += py-sqlalchemy-json
SUBDIR += py-sqlalchemy-migrate
SUBDIR += py-sqlalchemy-utils
SUBDIR += py-sqlalchemy10
SUBDIR += py-sqlalchemy11
SUBDIR += py-sqlalchemy12
SUBDIR += py-sqlalchemy13
SUBDIR += py-sqlalchemy14
SUBDIR += py-sqlite3
SUBDIR += py-sqlobject
SUBDIR += py-sqlparse
SUBDIR += py-sqlrelay
SUBDIR += py-tableschema
SUBDIR += py-tarantool
SUBDIR += py-tiledb
SUBDIR += py-txredisapi
SUBDIR += py-unqlite
SUBDIR += py-varstack
SUBDIR += py-whisper
SUBDIR += py-xapian
SUBDIR += py-zodbpickle
SUBDIR += pymongo
SUBDIR += pypy-gdbm
SUBDIR += pypy-sqlite3
SUBDIR += qdbm
SUBDIR += qdbm-plus
SUBDIR += qof
SUBDIR += qt5-sql
SUBDIR += qt5-sqldrivers-ibase
SUBDIR += qt5-sqldrivers-mysql
SUBDIR += qt5-sqldrivers-odbc
SUBDIR += qt5-sqldrivers-pgsql
SUBDIR += qt5-sqldrivers-sqlite2
SUBDIR += qt5-sqldrivers-sqlite3
SUBDIR += qt5-sqldrivers-tds
SUBDIR += recutils
SUBDIR += redis
SUBDIR += redis-devel
SUBDIR += redis4
SUBDIR += redis5
SUBDIR += redis_exporter
SUBDIR += redisdesktopmanager
SUBDIR += retcl
SUBDIR += rocksdb
SUBDIR += rocksdb-lite
SUBDIR += rrdman
SUBDIR += rrdmerge
SUBDIR += rrdtool
SUBDIR += rrdtool12
SUBDIR += ruby-bdb
SUBDIR += ruby-qdbm
SUBDIR += ruby-tokyocabinet
SUBDIR += ruby-xapian
SUBDIR += rubygem-active_model_serializers
SUBDIR += rubygem-active_record_query_trace
SUBDIR += rubygem-activemodel-serializers-xml
SUBDIR += rubygem-activemodel4
SUBDIR += rubygem-activemodel5
SUBDIR += rubygem-activemodel50
SUBDIR += rubygem-activemodel52
SUBDIR += rubygem-activemodel60
SUBDIR += rubygem-activemodel61
SUBDIR += rubygem-activerecord-explain-analyze
SUBDIR += rubygem-activerecord-import
SUBDIR += rubygem-activerecord-jdbc-adapter
SUBDIR += rubygem-activerecord-jdbcmysql-adapter
SUBDIR += rubygem-activerecord-session_store
SUBDIR += rubygem-activerecord4
SUBDIR += rubygem-activerecord5
SUBDIR += rubygem-activerecord50
SUBDIR += rubygem-activerecord52
SUBDIR += rubygem-activerecord60
SUBDIR += rubygem-activerecord61
SUBDIR += rubygem-after_commit_queue
SUBDIR += rubygem-amalgalite
SUBDIR += rubygem-arel
SUBDIR += rubygem-arel-helpers
SUBDIR += rubygem-arel6
SUBDIR += rubygem-arel7
SUBDIR += rubygem-arel8
SUBDIR += rubygem-awesome_nested_set
SUBDIR += rubygem-bdb1
SUBDIR += rubygem-bigrecord
SUBDIR += rubygem-brpoplpush-redis_script
SUBDIR += rubygem-couchrest
SUBDIR += rubygem-dalli
SUBDIR += rubygem-data_objects
SUBDIR += rubygem-datamapper
SUBDIR += rubygem-dbd-mysql
SUBDIR += rubygem-dbd-pg
SUBDIR += rubygem-dbd-sqlite3
SUBDIR += rubygem-dbf
SUBDIR += rubygem-dbi
SUBDIR += rubygem-dbm
SUBDIR += rubygem-dm-aggregates
SUBDIR += rubygem-dm-chunked_query
SUBDIR += rubygem-dm-constraints
SUBDIR += rubygem-dm-core
SUBDIR += rubygem-dm-do-adapter
SUBDIR += rubygem-dm-migrations
SUBDIR += rubygem-dm-mysql-adapter
SUBDIR += rubygem-dm-observer
SUBDIR += rubygem-dm-pager
SUBDIR += rubygem-dm-paperclip
SUBDIR += rubygem-dm-postgres-adapter
SUBDIR += rubygem-dm-serializer
SUBDIR += rubygem-dm-timestamps
SUBDIR += rubygem-dm-transactions
SUBDIR += rubygem-dm-types
SUBDIR += rubygem-dm-validations
SUBDIR += rubygem-do_mysql
SUBDIR += rubygem-do_postgres
SUBDIR += rubygem-do_sqlite3
SUBDIR += rubygem-em-redis-unified
SUBDIR += rubygem-familia
SUBDIR += rubygem-flipper-active_record
SUBDIR += rubygem-flipper-active_record017
SUBDIR += rubygem-gdbm
SUBDIR += rubygem-gitlab-pg_query
SUBDIR += rubygem-globalid
SUBDIR += rubygem-globalid-rails5
SUBDIR += rubygem-globalid-rails50
SUBDIR += rubygem-globalid-rails52
SUBDIR += rubygem-globalid-rails60
SUBDIR += rubygem-globalid-rails61
SUBDIR += rubygem-her
SUBDIR += rubygem-hiredis
SUBDIR += rubygem-influxdb
SUBDIR += rubygem-jdbc-mysql
SUBDIR += rubygem-leo_manager_client
SUBDIR += rubygem-marginalia
SUBDIR += rubygem-mario-redis-lock
SUBDIR += rubygem-memcache
SUBDIR += rubygem-memcache-client
SUBDIR += rubygem-mysql
SUBDIR += rubygem-mysql2
SUBDIR += rubygem-mysql204
SUBDIR += rubygem-openid-redis-store
SUBDIR += rubygem-paranoia
SUBDIR += rubygem-pg
SUBDIR += rubygem-pg0
SUBDIR += rubygem-pg018
SUBDIR += rubygem-pg_array_parser
SUBDIR += rubygem-pg_query
SUBDIR += rubygem-pghero
SUBDIR += rubygem-pghero-rails5
SUBDIR += rubygem-pghero-rails50
SUBDIR += rubygem-pl-puppetdb-ruby
SUBDIR += rubygem-postgres_ext
SUBDIR += rubygem-puppetdb_cli
SUBDIR += rubygem-rbase
SUBDIR += rubygem-redis
SUBDIR += rubygem-redis-actionpack
SUBDIR += rubygem-redis-actionpack-rails5
SUBDIR += rubygem-redis-actionpack-rails50
SUBDIR += rubygem-redis-actionpack-rails52
SUBDIR += rubygem-redis-actionpack-rails60
SUBDIR += rubygem-redis-namespace
SUBDIR += rubygem-redis-namespace16
SUBDIR += rubygem-redis-namespace17
SUBDIR += rubygem-sdbm
SUBDIR += rubygem-seed-fu
SUBDIR += rubygem-sqlite3
SUBDIR += rubygem-sqlite3-ruby
SUBDIR += rubygem-state_machines-activemodel
SUBDIR += rubygem-state_machines-activerecord
SUBDIR += rubygem-tarantool
SUBDIR += sequeler
SUBDIR += sfcgal
SUBDIR += sharedance
SUBDIR += slony1v2
SUBDIR += soci
SUBDIR += spatialite
SUBDIR += spatialite-tools
SUBDIR += spatialite_gui
SUBDIR += speedtables
SUBDIR += sql-workbench
SUBDIR += sqlcached
SUBDIR += sqlcipher
SUBDIR += sqlclient
SUBDIR += sqldeveloper
SUBDIR += sqlite-ext-miscfuncs
SUBDIR += sqlite-ext-pcre
SUBDIR += sqlite-ext-regexp
SUBDIR += sqlite-ext-spellfix
SUBDIR += sqlite2
SUBDIR += sqlite3
SUBDIR += sqlitebrowser
SUBDIR += sqliteconvert
SUBDIR += sqlitemanager
SUBDIR += sqliteodbc
SUBDIR += sqlitestudio
SUBDIR += sqlrelay
SUBDIR += sqsh
SUBDIR += squirrel-sql
SUBDIR += tarantool
SUBDIR += tarantool-c
SUBDIR += tcl-Mysql
SUBDIR += tcl-lmdb
SUBDIR += tcl-sqlite3
SUBDIR += tdb
SUBDIR += tdbc
SUBDIR += tile38
SUBDIR += tiledb
SUBDIR += timescaledb
SUBDIR += tinycdb
SUBDIR += tokyocabinet
SUBDIR += tokyotyrant
SUBDIR += tsearch_extras
SUBDIR += tuning-primer
SUBDIR += twemproxy
SUBDIR += unixODBC
SUBDIR += usql
SUBDIR += vfront
SUBDIR += virtualpg
SUBDIR += virtuoso
SUBDIR += vsqlite
SUBDIR += wfb2sql
SUBDIR += xapian-bindings
SUBDIR += xapian-bindings12
SUBDIR += xapian-core
SUBDIR += xapian-core12
SUBDIR += xls2txt
SUBDIR += xrootd
SUBDIR += xtrabackup
SUBDIR += xtrabackup8
SUBDIR += zabbix3-libzbxpgsql
.include <bsd.port.subdir.mk>
|