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 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
|
Source: gambas3
Section: devel
Priority: optional
Homepage: http://gambas.sourceforge.net
Vcs-Git: https://salsa.debian.org/gambas-team/gambas3.git
Vcs-Browser: https://salsa.debian.org/gambas-team/gambas3
Maintainer: Debian Gambas Team <team+debian-gambas@tracker.debian.org>
Uploaders: José L. Redrejo RodrÃguez <jredrejo@debian.org>
Build-Depends: debhelper-compat (= 12),
gettext,
libalure-dev,
libbz2-dev,
libcrypt-dev,
libcurl4-gnutls-dev | libcurl-ssl-dev,
libdbus-1-dev,
libffi-dev,
libglew-dev,
libgmime-3.0-dev,
libgmp-dev,
libgsl-dev,
libgstreamer-plugins-base1.0-dev,
libgstreamer1.0-dev,
libgtk-3-dev,
libwebkit2gtk-4.1-dev [linux-any],
libimlib2-dev,
libjpeg-dev,
libltdl-dev,
default-libmysqlclient-dev,
libncurses-dev,
libopenal-dev,
libpcre2-dev,
libpng-dev,
libpoppler-cpp-dev,
libpoppler-glib-dev,
libpoppler-private-dev,
libpq-dev,
librsvg2-dev,
libsdl-ttf2.0-dev,
libsdl2-dev,
libsdl2-image-dev,
libsdl2-mixer-dev,
libsdl2-ttf-dev,
libsqlite3-dev,
libssl-dev,
libv4l-dev [linux-any],
libxml2-dev,
libxslt1-dev,
libxt-dev,
libxtst-dev,
libzstd-dev,
linux-libc-dev [linux-any],
mesa-common-dev,
pkgconf,
qt6-base-dev,
qt6-svg-dev,
qt6-webengine-dev [amd64 arm64 armhf i386],
unixodbc-dev,
xdg-utils,
zlib1g-dev
Standards-Version: 4.5.0
Rules-Requires-Root: no
Package: gambas3
Architecture: all
Depends: gambas3-examples (>= ${binary:Version}),
gambas3-gb-args (>= ${binary:Version}),
gambas3-gb-cairo (>= ${binary:Version}),
gambas3-gb-chart (>= ${binary:Version}),
gambas3-gb-clipper2 (>= ${binary:Version}),
gambas3-gb-complex (>= ${binary:Version}),
gambas3-gb-compress-bzlib2 (>= ${binary:Version}),
gambas3-gb-compress-zlib (>= ${binary:Version}),
gambas3-gb-compress-zstd (>= ${binary:Version}),
gambas3-gb-crypt (>= ${binary:Version}),
gambas3-gb-data (>= ${binary:Version}),
gambas3-gb-db2-mysql (>= ${binary:Version}),
gambas3-gb-db2-odbc (>= ${binary:Version}),
gambas3-gb-db2-postgresql (>= ${binary:Version}),
gambas3-gb-db2-sqlite3 (>= ${binary:Version}),
gambas3-gb-dbus (>= ${binary:Version}),
gambas3-gb-dbus-trayicon (>= ${binary:Version}),
gambas3-gb-gmp (>= ${binary:Version}),
gambas3-gb-gsl (>= ${binary:Version}),
gambas3-gb-httpd (>= ${binary:Version}),
gambas3-gb-image-effect (>= ${binary:Version}),
gambas3-gb-image-imlib (>= ${binary:Version}),
gambas3-gb-image-io (>= ${binary:Version}),
gambas3-gb-logging (>= ${binary:Version}),
gambas3-gb-map (>= ${binary:Version}),
gambas3-gb-media-form (>= ${binary:Version}),
gambas3-gb-memcached (>= ${binary:Version}),
gambas3-gb-mime (>= ${binary:Version}),
gambas3-gb-mysql (>= ${binary:Version}),
gambas3-gb-ncurses (>= ${binary:Version}),
gambas3-gb-net-pop3 (>= ${binary:Version}),
gambas3-gb-net-smtp (>= ${binary:Version}),
gambas3-gb-openal (>= ${binary:Version}),
gambas3-gb-opengl-glsl (>= ${binary:Version}),
gambas3-gb-opengl-glu (>= ${binary:Version}),
gambas3-gb-opengl-sge (>= ${binary:Version}),
gambas3-gb-openssl (>= ${binary:Version}),
gambas3-gb-poppler (>= ${binary:Version}),
gambas3-gb-report2 (>= ${binary:Version}),
gambas3-gb-scanner (>= ${binary:Version}),
gambas3-gb-sdl2 (>= ${binary:Version}),
gambas3-gb-sdl2-audio (>= ${binary:Version}),
gambas3-gb-term-form (>= ${binary:Version}),
gambas3-gb-vb (>= ${binary:Version}),
gambas3-gb-web (>= ${binary:Version}),
gambas3-gb-web-feed (>= ${binary:Version}),
gambas3-gb-web-gui (>= ${binary:Version}),
gambas3-gb-xml-html (>= ${binary:Version}),
gambas3-gb-xml-rpc (>= ${binary:Version}),
gambas3-gb-xml-xslt (>= ${binary:Version}),
gambas3-ide (>= ${binary:Version}),
gambas3-scripter (>= ${binary:Version}),
${misc:Depends}
Description: Complete visual development environment for Gambas
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
With Gambas, you can quickly design your program GUI, access MySQL or
PostgreSQL databases, pilot KDE applications with DCOP, translate your
program into many languages, and so on...
.
This package doesn't include anything: it is a metapackage to install the
IDE and all the available Gambas components except deprecated ones,
as well as components that are not available on every platform.
Package: gambas3-devel
Architecture: any
Depends: ${misc:Depends},
${shlibs:Depends},
gambas3-runtime (>= ${binary:Version})
Breaks: gambas3-dev (<< 3.15.0), gambas3-runtime (<< 3.15.0)
Replaces: gambas3-dev (<< 3.15.0)
Provides: gambas3-dev
Description: Gambas compilation tools
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the Gambas compiler, archiver and informer.
Package: gambas3-examples
Architecture: all
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas examples
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides the examples.
Package: gambas3-gb-cairo
Architecture: any
Depends: gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas bindings for cairo
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes Gambas bindings for cairo.
Package: gambas3-gb-clipper
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas Clipper component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes a component based on the Clipper library,
http://www.angusj.com/delphi/clipper.php
Package: gambas3-gb-clipper2
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas Clipper2 polygon component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes a component based on the Clipper2 library.
Package: gambas3-gb-dbus
Architecture: any
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas bindings for DBUS
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes Gambas bindings for the DBUS system.
Package: gambas3-gb-form-stock
Architecture: all
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas form stock icons
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes support for stock form icons.
Package: gambas3-gb-gmp
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas GMP component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides an interface to the GNU Multiple Precision Arithmetic
Library.
Package: gambas3-gb-hash
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas hash component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides standard hashing functions.
Package: gambas3-gb-chart
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas charting component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native Gambas component to draw charts.
Package: gambas3-gb-compress
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas compression component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package has the needed base libraries for the other compression
components.
Package: gambas3-gb-compress-bzlib2
Architecture: any
Section: libdevel
Depends: gambas3-gb-compress (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas bzlib2 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to compress/uncompress data or files with
the bzip2 algorithm.
Package: gambas3-gb-compress-zlib
Architecture: any
Section: libdevel
Depends: gambas3-gb-compress (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas zlib compression component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to compress/uncompress data or files with
the gzip and PKZIP algorithm.
Package: gambas3-gb-compress-zstd
Architecture: any
Section: libdevel
Depends: gambas3-gb-compress (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas zstd compression component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to compress/uncompress data or files with
the ZSTD algorithm.
Package: gambas3-gb-crypt
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas crypt encryption component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows one to use the crypt() glib function in gambas.
Package: gambas3-gb-db
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas database access common libraries
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides the needed common libraries for data access.
Package: gambas3-gb-db-form
Architecture: all
Section: libdevel
Depends: gambas3-gb-db (>= ${binary:Version}),
gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas database bound controls
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native Gambas component that implements data bound controls.
It provides the following new controls: DataSource, DataBrowser,
DataView, DataControl and DataCombo.
Package: gambas3-gb-db-mysql
Architecture: any
Section: libdevel
Depends: gambas3-gb-db (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: MySQL driver for the Gambas database
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access MySQL databases.
Package: gambas3-gb-db-odbc
Architecture: any
Section: libdevel
Depends: gambas3-gb-db (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: ODBC driver for the Gambas database
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access to databases via unixODBC drivers
from Gambas code.
Package: gambas3-gb-db-postgresql
Architecture: any
Section: libdevel
Depends: gambas3-gb-db (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: PostgreSQL driver for the Gambas database
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access PostgreSQL databases.
Package: gambas3-gb-db-sqlite3
Architecture: any
Section: libdevel
Depends: gambas3-gb-db (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas sqlite3 driver database
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access to sqlite3 databases from Gambas code.
Package: gambas3-gb-db2
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas database 2 access common libraries
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides the needed common libraries for data access.
Package: gambas3-gb-db2-form
Architecture: all
Section: libdevel
Depends: gambas3-gb-db2 (>= ${binary:Version}),
gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas database 2 bound controls
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native Gambas component that implements data bound controls.
It provides the following new controls: DataSource, DataBrowser,
DataView, DataControl and DataCombo.
Package: gambas3-gb-db2-mysql
Architecture: any
Section: libdevel
Depends: gambas3-gb-db2 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: MySQL driver for the Gambas database 2
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access MySQL databases.
Package: gambas3-gb-db2-odbc
Architecture: any
Section: libdevel
Depends: gambas3-gb-db2 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: ODBC driver for the Gambas database 2
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access to databases via unixODBC drivers
from Gambas code.
Package: gambas3-gb-db2-postgresql
Architecture: any
Section: libdevel
Depends: gambas3-gb-db2 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: PostgreSQL driver for the Gambas database 2
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access PostgreSQL databases.
Package: gambas3-gb-db2-sqlite3
Architecture: any
Section: libdevel
Depends: gambas3-gb-db2 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas sqlite3 driver database 2
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to access to sqlite3 databases from Gambas code.
Package: gambas3-gb-desktop
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${source:Version}),
gambas3-gb-desktop-x11 (>= ${source:Version}),
gambas3-runtime (>= ${binary:Version}),
xdg-utils,
${misc:Depends}
Description: Gambas Portland project compatibility component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides access to the xdg utilities.
Package: gambas3-gb-desktop-x11
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${source:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Portland project compatibility component for X11
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides access to the xdg X11 utilities.
Package: gambas3-gb-form
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas native form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native gambas component to serve as base for graphic components.
Package: gambas3-gb-form-dialog
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas native dialog form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native gambas component that implements the Workspace dialog
control.
Package: gambas3-gb-form-editor
Architecture: all
Section: libdevel
Depends: gambas3-gb-highlight (>= ${binary:Version}),
gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas native editor form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component provides the TextEditor control, which is a text editor
with syntax highlighting support.
Package: gambas3-gb-form-htmlview
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas lightweight HTML component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component provides a HTML component that is based on litehtml.
Package: gambas3-gb-form-mdi
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-gb-settings (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas native mdi form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a native gambas component that implements the Workspace mdi control.
Package: gambas3-gb-form-print
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas print form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a gambas component that provides a generic print preview and a print
dialog.
Package: gambas3-gb-gtk3
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Recommends: gambas3-gb-gtk3-opengl (>= ${binary:Version})
Description: Gambas GTK+3 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
These are the GTK+3 components for Gambas.
Package: gambas3-gb-gtk3-wayland
Architecture: linux-any
Section: libdevel
Depends: gambas3-gb-gtk3 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas GTK+3 Wayland component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows the GTK+3 component to access Wayland.
Package: gambas3-gb-gtk3-x11
Architecture: any
Section: libdevel
Depends: gambas3-gb-gtk3 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas GTK+3 X11 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows the GTK+3 component to access X11.
Package: gambas3-gb-gtk3-webview
Architecture: linux-any
Section: libdevel
Depends: gambas3-gb-gtk3 (>= ${binary:Version}),
gambas3-gb-gtk3-x11 (>= ${binary:Version}), gambas3-gb-gtk3-wayland (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas GTK+3 Webview component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use a WebKitGTK based browser component from GTK+3.
Package: gambas3-gb-gtk3-opengl
Architecture: any
Section: libdevel
Depends: gambas3-gb-gtk3 (>= ${binary:Version}),
gambas3-gb-opengl (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OpenGL component with GTK+3 toolkit
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to integrate OpenGL in GTK+3 applications.
Package: gambas3-gb-gui
Architecture: any
Section: libdevel
Depends: gambas3-gb-gtk3 (>= ${binary:Version}) | gambas3-gb-qt6 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas graphical toolkit selector
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package just loads gb.gtk3 or gb.qt6.
It will make your application more desktop-friendly!
If the GB_GUI environment variable is set, then gb.gui will load the
component specified by its contents.
Package: gambas3-gb-poppler
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas poppler component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
PDF renderer component based on poppler-glib library.
Package: gambas3-gb-pdf
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas pdf component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
PDF renderer component based on poppler library.
Package: gambas3-gb-image
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas image effects
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a new component for applying many various effects on images.
The effects source code was ported from the KDE libkdefx library, which
includes itself some ImageMagick algorithms, and from the KolourPaint
program.
Package: gambas3-gb-image-io
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas image effects: I/O
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
Subcomponent for the image component: image I/O.
Package: gambas3-gb-image-imlib
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas image effects: IMLIB bindings
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
Subcomponent for the image component: bings to IMLIB.
Package: gambas3-gb-image-effect
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas image effects: effects
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
Subcomponent for the image component: image effects.
Package: gambas3-gb-inotify
Architecture: linux-any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas filesystem events monitoring component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to monitor filesystem events.
Package: gambas3-gb-markdown
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas markdown convert component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to convert gambas markdown syntax to HTML.
Package: gambas3-gb-net
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas networking component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use TCP/IP and UDP sockets, and to access
any serial ports.
Package: gambas3-gb-scanner
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas scanner component
The Gambas scanner management library is a frontend of the ScanImage
program provided by the sane toolkit. It allows one to easily manage scanner
devices in Gambas code.
.
This package allows you to use and manage scanner devices in Gambas code.
Package: gambas3-gb-util
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: This component provides many useful utility methods or classes
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use many useful utilities methods or classes, such
as: CSV file read and decode, date and time functions, file utility functions,
shell methods, string utility functions.
Package: gambas3-gb-util-web
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: This component provides many utilities useful for web applications
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use many utilities useful for web applications, such
as: decode and encode the JSON format and dealing with URL strings.
Package: gambas3-gb-net-curl
Architecture: any
Section: libdevel
Depends: gambas3-gb-net (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas advanced networking component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows your programs to easily become FTP or HTTP clients.
Package: gambas3-gb-net-smtp
Architecture: any
Section: libdevel
Depends: gambas3-gb-net (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas smtp protocol component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows sending emails using smtp protocol.
It contains one control, SmtpClient, that is used for defining the SMTP
server, the SMTP port, the recipients, the sender, the subject, the mail
contents, some attachments, and for finally sending the mail.
Package: gambas3-gb-net-pop3
Architecture: any
Section: libdevel
Depends: gambas3-gb-net (>= ${binary:Version}),
gambas3-gb-mime (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas POP3 client implementation
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package retrieves mails using the POP3 protocol.
Package: gambas3-gb-openal
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas OpenAL component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes an interface to the OpenAL 3D Audio library.
Package: gambas3-gb-opengl
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OpenGL component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you 3D programming with OpenGL in gambas.
Package: gambas3-gb-opengl-glsl
Architecture: any
Section: libdevel
Depends: gambas3-gb-opengl (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OpenGL component: GL Shading Language subcomponent
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package accesses the OPenGL Shading Language.
Package: gambas3-gb-opengl-glu
Architecture: any
Section: libdevel
Depends: gambas3-gb-opengl (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OpenGL utility
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use the Mesa libraries to do 3D operations.
Package: gambas3-gb-opengl-sge
Architecture: any
Section: libdevel
Depends: gambas3-gb-opengl (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas SDL Game Engine
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides a simple OpenGL game engine based on the MD2 format.
Package: gambas3-gb-openssl
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gambas OpenSSL component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides the cryptographic functions available in OpenSSL.
Package: gambas3-gb-pcre
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas regexp component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This experimental component allows you to use Perl compatible regular
expressions within gambas code.
Package: gambas3-gb-qt6
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Recommends: gambas3-gb-qt6-ext (>= ${binary:Version}),
gambas3-gb-qt6-opengl (>= ${binary:Version})
Description: Gambas Qt5 GUI component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the Gambas QT5 GUI component.
Package: gambas3-gb-qt6-ext
Architecture: any
Section: libdevel
Depends: gambas3-gb-qt6 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas extended Qt GUI component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
Extension widgets for Qt5: currently only a rich text editor widget.
Package: gambas3-gb-dbus-trayicon
Architecture: any
Depends: gambas3-gb-dbus (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: System tray icon management for Gambas
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component allows one to display a tray icon inside the system tray.
Package: gambas3-gb-qt6-wayland
Architecture: linux-any
Section: kde
Depends: gambas3-gb-qt6 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Qt5 Wayland component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows the QT5 component to access Wayland.
Package: gambas3-gb-qt6-x11
Architecture: any
Section: kde
Depends: gambas3-gb-qt6 (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Qt5 X11 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows the QT5 component to access X11.
Package: gambas3-gb-qt6-webview
Architecture: amd64 arm64 armhf i386
Section: kde
Depends: gambas3-gb-qt6 (>= ${binary:Version}),
gambas3-gb-qt6-x11 (>= ${binary:Version}), gambas3-gb-qt6-wayland (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Qt5 Webview component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to use a QtWebEngine based browser component from Qt5.
Package: gambas3-gb-qt6-opengl
Architecture: any
Section: libdevel
Depends: gambas3-gb-qt6 (>= ${binary:Version}),
gambas3-gb-opengl (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OpenGL component with QT5 toolkit
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows you to integrate OpenGL in qt6 applications.
Package: gambas3-gb-report
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas report component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package gives the tools and methods to create reports using Gambas.
Package: gambas3-gb-report2
Architecture: all
Section: libdevel
Depends: gambas3-gb-form (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas report2 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package gives the tools and methods to create reports using Gambas
report 2 package.
Package: gambas3-gb-sdl2
Architecture: any
Section: libdevel
Depends: fonts-dejavu-core,
gambas3-gb-image (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas SDL2 component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package use the ttf fonts parts of the SDL2 library.
If opengl drivers are installed it uses it to accelerate 2D and 3D drawing.
Package: gambas3-gb-sdl2-audio
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
${shlibs:Depends}
Description: Gambas SDL2 audio component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package use the audio image parts of the SDL2 library.
It allows you to simultaneously play many sounds and a music stored in a file.
Package: gambas3-gb-settings
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas utilities class
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a component made in Gambas providing several utilities.
Package: gambas3-gb-v4l
Architecture: linux-any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas video for Linux component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a component to use v4l with gambas.
Package: gambas3-gb-vb
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Visual Basic(tm) compatibility component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a component to give compatibility with some MS Visual Basic
functions.
Package: gambas3-gb-web
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas CGI for web applications
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This is a component for making CGI web applications using gambas,
with an ASP-like interface.
Package: gambas3-gb-web-feed
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-xml (>= ${binary:Version}), ${misc:Depends}
Description: Gambas web feed parser and generator
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component allows one to parse and generate a web feed.
Package: gambas3-gb-web-form
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-web (>= ${binary:Version}),
gambas3-gb-util-web (>= ${binary:Version}),
gambas3-gb-util (>= ${binary:Version}), ${misc:Depends}
Description: Gambas web application component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component allows one to make the GUI of a web application with the
IDE form editor.
Package: gambas3-gb-web-gui
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-web (>= ${binary:Version}),
gambas3-gb-util-web (>= ${binary:Version}),
gambas3-gb-util (>= ${binary:Version}),
gambas3-gb-signal (>= ${binary:Version}), ${misc:Depends}
Description: Gambas web application GUI component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component allows one to develop a web application by following a
model similar to classic GUI applications.
.
This is preferred over the gambas3-gb-web-form component.
Package: gambas3-gb-xml
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas XML component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package brings the power of the xml libraries to Gambas.
Package: gambas3-gb-xml-rpc
Architecture: all
Section: libdevel
Depends: gambas3-gb-xml (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas RPC component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows using RPC from a Gambas application.
Package: gambas3-gb-xml-xslt
Architecture: any
Section: libdevel
Depends: gambas3-gb-xml (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas XSLT component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
This package brings the power of the libxslt libraries to Gambas.
Package: gambas3-gb-xml-html
Architecture: any
Section: libdevel
Depends: gambas3-gb-xml (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas HTML component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allows using HTML generator.
Package: gambas3-gb-libxml
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
${shlibs:Depends}
Description: Gambas libxml component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package brings the power of the libxml libraries to Gambas.
Package: gambas3-ide
Architecture: all
Recommends: gambas3-examples, debhelper, rpm
Depends: fakeroot,
gambas3-devel (>= ${binary:Version}),
gambas3-gb-clipper (>= ${binary:Version}),
gambas3-gb-db2 (>= ${binary:Version}),
gambas3-gb-db2-form (>= ${binary:Version}),
gambas3-gb-desktop (>= ${binary:Version}),
gambas3-gb-desktop-x11 (>= ${binary:Version}),
gambas3-gb-highlight (>= ${binary:Version}),
gambas3-gb-form (>= ${binary:Version}),
gambas3-gb-form-dialog (>= ${binary:Version}),
gambas3-gb-form-editor (>= ${binary:Version}),
gambas3-gb-form-htmlview (>= ${binary:Version}),
gambas3-gb-form-mdi (>= ${binary:Version}),
gambas3-gb-form-print (>= ${binary:Version}),
gambas3-gb-form-stock (>= ${binary:Version}),
gambas3-gb-form-terminal (>= ${binary:Version}),
gambas3-gb-hash (>= ${binary:Version}),
gambas3-gb-image (>= ${binary:Version}),
gambas3-gb-jit (>= ${binary:Version}),
gambas3-gb-markdown (>= ${binary:Version}),
gambas3-gb-net (>= ${binary:Version}),
gambas3-gb-net-curl (>= ${binary:Version}),
gambas3-gb-gtk3-webview (>= ${binary:Version}) | gambas3-gb-qt6-webview (>= ${binary:Version}),
gambas3-gb-pcre (>= ${binary:Version}),
gambas3-gb-settings (>= ${binary:Version}),
gambas3-gb-signal (>= ${binary:Version}),
gambas3-gb-term (>= ${binary:Version}),
gambas3-gb-util (>= ${binary:Version}),
gambas3-gb-util-web (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Visual development environment for the Gambas programming language
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the Gambas Development Environment.
Package: gambas3-runtime
Architecture: any
Depends: xdg-utils, ${misc:Depends}, ${shlibs:Depends},
gambas3-gb-gui (>= ${binary:Version}),
Provides: gambas3-gb-gui-opengl,
gambas3-gb-gui-qt,
gambas3-gb-gui-trayicon,
Description: Gambas runtime interpreter
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the Gambas interpreter needed to run Gambas applications.
Package: gambas3-scripter
Architecture: all
Section: libdevel
Depends: gambas3-devel (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
gambas3-gb-pcre (>= ${binary:Version}),
${misc:Depends}
Breaks: gambas3-script (<< 3.15.0)
Replaces: gambas3-script (<< 3.15.0)
Provides: gambas3-script
Description: Gambas scripter
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the needed files to use Gambas as a scripting language.
Package: gambas3-gb-option
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas option component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the component for option parsing.
Package: gambas3-gb-eval-highlight
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas syntax highlighting component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the component for syntax highlighting.
Package: gambas3-gb-highlight
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas syntax highlighting component based on definition files
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the component for syntax highlighting.
Package: gambas3-gb-signal
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas OS signal library
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package includes the component for access to OS signals.
Package: gambas3-gb-mysql
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-db (>= ${binary:Version}),
gambas3-gb-db-mysql (>= ${binary:Version}),
${misc:Depends}
Description: Gambas MySQL component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package creates MySQL statements and executes them.
Package: gambas3-gb-gsl
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas GNU Scientific Library component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package uses the GNU Scientific Library.
Package: gambas3-gb-ncurses
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas NCurses component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package uses the NCurses library.
Package: gambas3-gb-complex
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas Complex component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package brings complex numbers support to the interpreter.
Package: gambas3-gb-data
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas abstract datatypes component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides abstract datatypes implementations for Gambas.
Package: gambas3-gb-mime
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas MIME message management
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package parses a string and converts it to a MIME message
and the reverse.
Package: gambas3-gb-httpd
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas HTTP server
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides an embedded HTTP server for the interpreter.
Package: gambas3-gb-memcached
Architecture: all
Section: libdevel
Depends: gambas3-gb-net (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas memcached client
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides a memcached client.
Package: gambas3-gb-args
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas arguments parser
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides a command-line options analyzer, and automatically
handles the --help option.
Package: gambas3-gb-map
Architecture: all
Section: libdevel
Depends: gambas3-gb-db-form (>= ${binary:Version}),
gambas3-gb-net-curl (>= ${binary:Version}),
gambas3-gb-net (>= ${binary:Version}),
gambas3-gb-xml (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends}
Description: Gambas online map viewer
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package allowing to display maps from many different sources
(Google Maps, OpenStreetMap).
Package: gambas3-gb-jit
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${misc:Depends}, ${shlibs:Depends}
Recommends: gcc
Description: Gambas Just-In-Time compiler component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package provides a Just-In-Time compiler for Gambas.
Package: gambas3-gb-media
Architecture: any
Section: libdevel
Depends: gambas3-gb-image (>= ${binary:Version}),
gambas3-runtime (>= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
Description: Gambas media component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package is a simplified interface to the GStreamer library.
Package: gambas3-gb-media-form
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
gambas3-gb-media (>= ${binary:Version}),
${misc:Depends}
Description: Gambas media player controls
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component provides media player control elements.
Package: gambas3-gb-logging
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends}
Description: Gambas logging system component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This package brings a flexible logging system for Gambas applications.
Package: gambas3-gb-form-terminal
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends},
gambas3-gb-form (>= ${binary:Version}),
gambas3-gb-term (>= ${binary:Version})
Description: Gambas terminal form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
A GUI component that provides a VT100-type terminal emulator widget.
Package: gambas3-gb-term
Architecture: any
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}),
${shlibs:Depends},
${misc:Depends}
Description: Terminal manager for Gambas
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
This component allows one to manage terminals, with an API very close to
the one provided by the operating system.
Package: gambas3-gb-term-form
Architecture: all
Section: libdevel
Depends: gambas3-runtime (>= ${binary:Version}), ${misc:Depends},
gambas3-gb-term (>= ${binary:Version})
Description: Gambas GUI terminal form component
Gambas is a free development environment based on a Basic interpreter
with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
.
A component for making the GUI of terminal applications.
|