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 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
|
Source: boost1.83
Homepage: https://www.boost.org/
Section: libs
Priority: optional
Maintainer: Debian Boost Team <team+boost@tracker.debian.org>
Uploaders:
Giovanni Mascellani <gio@debian.org>,
Anton Gladky <gladk@debian.org>
Build-Depends: dpkg-dev (>= 1.22.5), debhelper-compat (= 12), dpkg-dev (>= 1.16.1~), dctrl-tools, chrpath,
zlib1g-dev, libbz2-dev, liblzma-dev, libzstd-dev, libicu-dev (>= 63.1), mpi-default-dev,
bison, flex, docbook-to-man, help2man, xsltproc, doxygen,
docbook-xsl, docbook-xml, texlive-latex-base, ghostscript,
dh-python,
g++ (>= 4:5-0),
python3, python3-all-dev (>= 3.1), python3-numpy
Build-Depends-Indep: graphviz
Build-Conflicts: libopenmpi-dev (= 1.3.2-2)
Vcs-Browser: https://salsa.debian.org/debian/boost
Vcs-Git: https://salsa.debian.org/debian/boost.git
Standards-Version: 4.6.2
Package: libboost1.83-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}, libstdc++-${gxx:major}-dev
Suggests: libboost1.83-doc,
libboost-atomic1.83-dev,
libboost-chrono1.83-dev,
libboost-container1.83-dev,
libboost-context1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-contract1.83-dev,
libboost-coroutine1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-date-time1.83-dev,
libboost-exception1.83-dev,
libboost-fiber1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-filesystem1.83-dev,
libboost-graph-parallel1.83-dev,
libboost-graph1.83-dev,
libboost-iostreams1.83-dev,
libboost-json1.83-dev,
libboost-locale1.83-dev,
libboost-log1.83-dev,
libboost-math1.83-dev,
libboost-mpi-python1.83-dev,
libboost-mpi1.83-dev,
libboost-nowide1.83-dev,
libboost-numpy1.83-dev,
libboost-program-options1.83-dev,
libboost-python1.83-dev,
libboost-random1.83-dev,
libboost-regex1.83-dev,
libboost-serialization1.83-dev,
libboost-stacktrace1.83-dev,
libboost-system1.83-dev,
libboost-test1.83-dev,
libboost-thread1.83-dev,
libboost-timer1.83-dev,
libboost-type-erasure1.83-dev,
libboost-url1.83-dev,
libboost-wave1.83-dev,
libboost1.83-tools-dev,
libmpfrc++-dev,
libntl-dev
Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev, libboost1.49-dev, libboost1.50-dev, libboost1.52-dev, libboost1.53-dev, libboost1.54-dev, libboost1.55-dev, libboost1.57-dev, libboost1.58-dev, libboost1.60-dev, libboost1.61-dev, libboost1.62-dev, libboost1.63-dev, libboost1.65-dev, libboost1.67-dev, libboost1.70-dev, libboost1.71-dev, libboost1.74-dev, libboost1.80-dev, libboost1.81-dev
Breaks: libleatherman-dev (<< 1.12.1+dfsg-1.1~)
Replaces: libleatherman-dev (<< 1.12.1+dfsg-1.1~)
Description: Boost C++ Libraries development files
The Boost web site provides free, peer-reviewed, portable C++ source
libraries. The emphasis is on libraries which work well with the C++
Standard Library. One goal is to establish "existing practice" and
provide reference implementations so that the Boost libraries are
suitable for eventual standardization. Some of the libraries have
already been proposed for inclusion in the C++ Standards Committee's
upcoming C++ Standard Library Technical Report.
.
This package provides headers for all Boost libraries.
.
Extended precision arithmetic package libmpfrc++-dev or libntl-dev is
required to use the Boost.Multiprecision wrapping of the respective
library.
Package: libboost1.83-tools-dev
Architecture: any
Multi-Arch: foreign
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}
Suggests: xsltproc,
doxygen,
docbook-xml (>= 4.2),
docbook-xsl (>= 1.73.2),
default-jdk (>= 1.4),
fop (>= 0.94)
Conflicts: bjam, boost-build, libboost1.49-dev, libboost1.53-tools-dev, libboost1.54-tools-dev, libboost1.55-tools-dev, libboost1.57-tools-dev, libboost1.58-tools-dev, libboost1.60-tools-dev, libboost1.61-tools-dev, libboost1.62-tools-dev, libboost1.63-tools-dev, libboost1.65-tools-dev, libboost1.67-tools-dev, libboost1.70-tools-dev, libboost1.71-tools-dev, libboost1.74-tools-dev, libboost1.80-tools-dev, libboost1.81-tools-dev
Replaces: bjam, boost-build, libboost1.49-dev, libboost1.53-dev, libboost1.53-tools-dev
Description: Boost C++ Libraries development tools
The Boost web site provides free, peer-reviewed, portable C++ source
libraries. The emphasis is on libraries which work well with the C++
Standard Library. One goal is to establish "existing practice" and
provide reference implementations so that the Boost libraries are
suitable for eventual standardization. Some of the libraries have
already been proposed for inclusion in the C++ Standards Committee's
upcoming C++ Standard Library Technical Report.
.
This package provides the auxiliary tools bjam, Boost.Build, bcp,
inspect, boostbook and quickbook.
Package: libboost1.83-all-dev
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev,
libboost1.83-tools-dev,
libboost-atomic1.83-dev,
libboost-chrono1.83-dev,
libboost-container1.83-dev,
libboost-context1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-coroutine1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-date-time1.83-dev,
libboost-exception1.83-dev,
libboost-fiber1.83-dev [i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x],
libboost-filesystem1.83-dev,
libboost-graph-parallel1.83-dev,
libboost-graph1.83-dev,
libboost-iostreams1.83-dev,
libboost-json1.83-dev,
libboost-locale1.83-dev,
libboost-log1.83-dev,
libboost-math1.83-dev,
libboost-mpi-python1.83-dev,
libboost-mpi1.83-dev,
libboost-nowide1.83-dev,
libboost-numpy1.83-dev,
libboost-program-options1.83-dev,
libboost-python1.83-dev,
libboost-random1.83-dev,
libboost-regex1.83-dev,
libboost-serialization1.83-dev,
libboost-stacktrace1.83-dev,
libboost-system1.83-dev,
libboost-test1.83-dev,
libboost-thread1.83-dev,
libboost-timer1.83-dev,
libboost-type-erasure1.83-dev,
libboost-url1.83-dev,
libboost-wave1.83-dev
Description: Boost C++ Libraries development files (ALL)
The Boost web site provides free, peer-reviewed, portable C++ source
libraries. The emphasis is on libraries which work well with the C++
Standard Library. One goal is to establish "existing practice" and
provide reference implementations so that the Boost libraries are
suitable for eventual standardization. Some of the libraries have
already been proposed for inclusion in the C++ Standards Committee's
upcoming C++ Standard Library Technical Report.
.
This metapackage provides the complete Boost development environment,
including all separately-packaged libraries.
Package: libboost1.83-doc
Homepage: http://www.boost.org/libs/
Architecture: all
Section: doc
Depends: ${misc:Depends}, libjs-mathjax
Suggests: libboost1.83-dev (>= ${source:Version})
Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc, libboost1.54-doc, libboost1.55-doc, libboost1.57-doc, libboost1.58-doc, libboost1.60-doc, libboost1.61-doc, libboost1.62-doc, libboost1.63-doc, libboost1.65-doc, libboost1.67-doc, libboost1.70-doc, libboost1.71-doc, libboost1.74-doc, libboost1.80-doc, libboost1.81-doc
Description: Boost.org libraries documentation placeholder
This package originally provided documentation, but has since fallen
into disrepair and presently provides no documentation. Please
use documentation at www.boost.org.
Package: libboost-atomic1.83.0
Homepage: http://www.boost.org/libs/atomic/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: atomic data types, operations, and memory ordering constraints
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
Package: libboost-atomic1.83-dev
Homepage: http://www.boost.org/libs/atomic/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-atomic1.83.0 (= ${binary:Version})
Description: atomic data types, operations, and memory ordering constraints
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
Conflicts: libboost-atomic1.53-dev, libboost-atomic1.54-dev, libboost-atomic1.55-dev, libboost-atomic1.57-dev, libboost-atomic1.58-dev, libboost-atomic1.60-dev, libboost-atomic1.61-dev, libboost-atomic1.62-dev, libboost-atomic1.63-dev, libboost-atomic1.65-dev, libboost-atomic1.67-dev, libboost-atomic1.70-dev, libboost-atomic1.71-dev, libboost-atomic1.74-dev, libboost-atomic1.80-dev, libboost-atomic1.81-dev
Package: libboost-chrono1.83.0t64
Provides: ${t64:Provides}
Replaces: libboost-chrono1.83.0
Breaks: libboost-chrono1.83.0 (<< ${source:Version})
Homepage: http://www.boost.org/libs/chrono/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ representation of time duration, time point, and clocks
This package forms part of the Boost C++ Libraries collection.
.
The Boost.Chrono library provides:
.
* A means to represent time durations: managed by the generic duration
class.Examples of time durations include days, minutes, seconds and
nanoseconds, which can be represented with a fixed number of clock
ticks per unit. All of these units of time duration are united with
a generic interface by the duration facility.
* A type for representing points in time: time_point. A time_point
represents an epoch plus or minus a duration. The library leaves
epochs unspecified. A time_point is associated with a clock.
* Several clocks, some of which may not be available on a particular
platform: system_clock, steady_clock and high_resolution_clock. A
clock is a pairing of a time_point and duration, and a function
which returns a time_point representing now.
.
To make the timing facilities more generally useful, Boost.Chrono
provides a number of clocks that are thin wrappers around the
operating system's time APIs, thereby allowing the extraction of wall
clock time, user CPU time, system CPU time spent by the process:
.
* process_real_cpu_clock, captures wall clock CPU time spent by the
current process.
* process_user_cpu_clock, captures user-CPU time spent by the current
process.
* process_system_cpu_clock, captures system-CPU time spent by the
current process.
* a tuple-like class process_cpu_clock, that captures real, user-CPU,
and system-CPU process times together.
* a thread_clock thread steady clock giving the time spent by the
current thread (when supported by a platform).
.
Lastly, Boost.Chrono includes typeof registration for duration and
time_point to permit using emulated auto with C++03 compilers.
Package: libboost-chrono1.83-dev
Homepage: http://www.boost.org/libs/chrono/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-chrono1.83.0t64 (= ${binary:Version})
Conflicts: libboost-chrono1.48-dev, libboost-chrono1.49-dev, libboost-chrono1.50-dev, libboost-chrono1.52-dev, libboost-chrono1.53-dev, libboost-chrono1.54-dev, libboost-chrono1.55-dev, libboost-chrono1.57-dev, libboost-chrono1.58-dev, libboost-chrono1.60-dev, libboost-chrono1.61-dev, libboost-chrono1.62-dev, libboost-chrono1.63-dev, libboost-chrono1.65-dev, libboost-chrono1.67-dev, libboost-chrono1.70-dev, libboost-chrono1.71-dev, libboost-chrono1.74-dev, libboost-chrono1.80-dev, libboost-chrono1.81-dev
Description: C++ representation of time duration, time point, and clocks
This package forms part of the Boost C++ Libraries collection.
.
The Boost.Chrono library provides:
.
* A means to represent time durations: managed by the generic
duration class . Examples of time durations include days, minutes,
seconds and nanoseconds, which can be represented with a fixed number
of clock ticks per unit. All of these units of time duration are
united with a generic interface by the duration facility.
* A type for representing points in time: time_point. A time_point
represents an epoch plus or minus a duration. The library leaves
epochs unspecified. A time_point is associated with a clock.
* Several clocks, some of which may not be available on a
particular platform: system_clock, steady_clock and
high_resolution_clock. A clock is a pairing of a time_point and
duration, and a function which returns a time_point representing now.
.
To make the timing facilities more generally useful, Boost.Chrono
provides a number of clocks that are thin wrappers around the
operating system's time APIs, thereby allowing the extraction of wall
clock time, user CPU time, system CPU time spent by the process:
.
* process_real_cpu_clock, captures wall clock CPU time spent by the
current process.
* process_user_cpu_clock, captures user-CPU time
spent by the current process.
* process_system_cpu_clock, captures
system-CPU time spent by the current process.
* A tuple-like class
process_cpu_clock, that captures real, user-CPU, and system-CPU
process times together.
* A thread_clock thread steady clock giving
the time spent by the current thread (when supported by a platform).
.
Lastly, Boost.Chrono includes typeof registration for duration and
time_point to permit using emulated auto with C++03 compilers.
Package: libboost-container1.83.0
Homepage: http://boost.org/libs/container/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ library that implements several well-known containers
This package forms part of the Boost C++ Libraries collection.
.
Boost.Container library implements several well-known containers,
including STL containers. The aim of the library is to offers
advanced features not present in standard containers or to offer the
latest standard draft features for compilers that don't comply with
the latest C++ standard.
.
In short, what does Boost.Container offer?
.
* Move semantics are implemented, including move emulation
for pre-C++11 compilers.
* New advanced features (e.g. placement insertion,
recursive containers) are present.
* Containers support stateful allocators and are compatible with
Boost.Interprocess (they can be safely placed in shared memory).
* The library offers new useful containers:
* flat_map, flat_set, flat_multimap and flat_multiset: drop-in
replacements for standard associative containers but more
memory friendly and with faster searches.
* stable_vector: a std::list and std::vector hybrid container:
vector-like random-access iterators and list-like iterator
stability in insertions and erasures.
* slist: the classic pre-standard singly linked list implementation
offering constant-time size(). Note that C++11 forward_list has no size().
Package: libboost-container1.83-dev
Homepage: http://boost.org/libs/container/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-container1.83.0 (= ${binary:Version})
Description: C++ library that implements several well-known containers - dev files
This package forms part of the Boost C++ Libraries collection.
.
Boost.Container library implements several well-known containers,
including STL containers. The aim of the library is to offers
advanced features not present in standard containers or to offer the
latest standard draft features for compilers that don't comply with
the latest C++ standard.
.
In short, what does Boost.Container offer?
.
* Move semantics are implemented, including move emulation
for pre-C++11 compilers.
* New advanced features (e.g. placement insertion,
recursive containers) are present.
* Containers support stateful allocators and are compatible with
Boost.Interprocess (they can be safely placed in shared memory).
* The library offers new useful containers:
* flat_map, flat_set, flat_multimap and flat_multiset: drop-in
replacements for standard associative containers but more
memory friendly and with faster searches.
* stable_vector: a std::list and std::vector hybrid container:
vector-like random-access iterators and list-like iterator
stability in insertions and erasures.
* slist: the classic pre-standard singly linked list implementation
offering constant-time size(). Note that C++11 forward_list has no size().
Conflicts: libboost-container1.65-dev, libboost-container1.67-dev, libboost-container1.70-dev, libboost-container1.71-dev, libboost-container1.74-dev, libboost-container1.80-dev, libboost-container1.81-dev
Package: libboost-context1.83.0
Homepage: http://www.boost.org/libs/context/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64 ppc64el riscv64 s390x
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
Package: libboost-context1.83-dev
Homepage: http://www.boost.org/libs/context/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-thread1.83-dev (= ${binary:Version}),
libboost-context1.83.0 (= ${binary:Version})
Description: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
Conflicts: libboost-context1.53-dev, libboost-context1.54-dev, libboost-context1.55-dev, libboost-context1.57-dev, libboost-context1.58-dev, libboost-context1.60-dev, libboost-context1.61-dev, libboost-context1.62-dev, libboost-context1.63-dev, libboost-context1.65-dev, libboost-context1.67-dev, libboost-context1.70-dev, libboost-context1.71-dev, libboost-context1.74-dev, libboost-context1.80-dev, libboost-context1.81-dev
Package: libboost-contract1.83.0
Homepage: http://boost.org/libs/contract/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: Contract library for C++
This package forms part of the Boost C++ Libraries collection.
.
All contract programming features are supported: Subcontracting,
class invariants, postconditions (with old and return values),
preconditions, customizable actions on assertion failure (e.g.,
terminate or throw), optional compilation and checking of assertions,
etc.
Package: libboost-contract1.83-dev
Homepage: http://boost.org/libs/contract/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-contract1.83.0 (= ${binary:Version})
Description: Contract library for C++ - dev files
This package forms part of the Boost C++ Libraries collection.
.
All contract programming features are supported: Subcontracting,
class invariants, postconditions (with old and return values),
preconditions, customizable actions on assertion failure (e.g.,
terminate or throw), optional compilation and checking of assertions,
etc.
Conflicts: libboost-contract1.67-dev, libboost-contract1.70-dev, libboost-contract1.71-dev, libboost-contract1.74-dev, libboost-contract1.80-dev, libboost-contract1.81-dev
Package: libboost-coroutine1.83.0
Homepage: http://www.boost.org/libs/coroutine/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Coroutine provides templates for generalized subroutines which
allow multiple entry points for suspending and resuming execution at
certain locations. It preserves the local state of execution and
allows re-entering subroutines more than once (useful if state must
be kept across function calls).
.
Coroutines can be viewed as a language-level construct providing a
special kind of control flow.
.
In contrast to threads, which are pre-emptive, coroutine switches are
cooperative (programmer controls when a switch will happen). The
kernel is not involved in the coroutine switches.
.
The implementation uses Boost.Context for context switching.
Package: libboost-coroutine1.83-dev
Homepage: http://www.boost.org/libs/coroutine/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-context1.83-dev (= ${binary:Version}),
libboost-coroutine1.83.0 (= ${binary:Version})
Description: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Coroutine provides templates for generalized subroutines which
allow multiple entry points for suspending and resuming execution at
certain locations. It preserves the local state of execution and
allows re-entering subroutines more than once (useful if state must
be kept across function calls).
.
Coroutines can be viewed as a language-level construct providing a
special kind of control flow.
.
In contrast to threads, which are pre-emptive, coroutine switches are
cooperative (programmer controls when a switch will happen). The
kernel is not involved in the coroutine switches.
.
The implementation uses Boost.Context for context switching.
Conflicts: libboost-coroutine1.54-dev, libboost-coroutine1.55-dev, libboost-coroutine1.57-dev, libboost-coroutine1.58-dev, libboost-coroutine1.60-dev, libboost-coroutine1.61-dev, libboost-coroutine1.62-dev, libboost-coroutine1.63-dev, libboost-coroutine1.65-dev, libboost-coroutine1.67-dev, libboost-coroutine1.70-dev, libboost-coroutine1.71-dev, libboost-coroutine1.74-dev, libboost-coroutine1.80-dev, libboost-coroutine1.81-dev
Package: libboost-date-time1.83.0
Homepage: http://www.boost.org/libs/date_time/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: set of date-time libraries based on generic programming concepts
This package forms part of the Boost C++ Libraries collection.
.
These libraries are intended to make programming with dates and times
almost as simple and natural as programming with strings and integers.
Package: libboost-date-time1.83-dev
Homepage: http://www.boost.org/libs/date_time/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-date-time1.83.0 (= ${binary:Version}),
libboost-serialization1.83-dev (= ${binary:Version})
Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev, libboost-date-time1.49-dev, libboost-date-time1.50-dev, libboost-date-time1.52-dev, libboost-date-time1.53-dev, libboost-date-time1.54-dev, libboost-date-time1.55-dev, libboost-date-time1.57-dev, libboost-date-time1.58-dev, libboost-date-time1.60-dev, libboost-date-time1.61-dev, libboost-date-time1.62-dev, libboost-date-time1.63-dev, libboost-date-time1.65-dev, libboost-date-time1.67-dev, libboost-date-time1.70-dev, libboost-date-time1.71-dev, libboost-date-time1.74-dev, libboost-date-time1.80-dev, libboost-date-time1.81-dev
Description: set of date-time libraries based on generic programming concepts
This package forms part of the Boost C++ Libraries collection.
.
These libraries are intended to make programming with dates and times
almost as simple and natural as programming with strings and integers.
Package: libboost-exception1.83-dev
Homepage: http://www.boost.org/libs/exception/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version})
Description: library to help write exceptions and handlers
This package forms part of the Boost C++ Libraries collection.
.
The purpose of Boost Exception is to ease the design of exception
class hierarchies and to help write exception handling and error
reporting code.
Conflicts: libboost-exception1.50-dev, libboost-exception1.52-dev, libboost-exception1.53-dev, libboost-exception1.54-dev, libboost-exception1.55-dev, libboost-exception1.57-dev, libboost-exception1.58-dev, libboost-exception1.60-dev, libboost-exception1.61-dev, libboost-exception1.62-dev, libboost-exception1.63-dev, libboost-exception1.65-dev, libboost-exception1.67-dev, libboost-exception1.70-dev, libboost-exception1.71-dev, libboost-exception1.74-dev, libboost-exception1.80-dev, libboost-exception1.81-dev
Package: libboost-fiber1.83.0
Homepage: http://www.boost.org/libs/fiber/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: cooperatively-scheduled micro-/userland-threads
This package forms part of the Boost C++ Libraries collection.
.
Boost.Fiber provides a framework for micro-/userland-threads (fibers)
scheduled cooperatively. The API contains classes and functions to
manage and synchronize fibers similarly to standard thread support
library.
.
Each fiber has its own stack.
.
A fiber can save the current execution state, including all registers
and CPU flags, the instruction pointer, and the stack pointer and
later restore this state. The idea is to have multiple execution
paths running on a single thread using cooperative scheduling (versus
threads, which are preemptively scheduled). The running fiber decides
explicitly when it should yield to allow another fiber to run
(context switching). Boost.Fiber internally uses execution_context
from Boost.Context; the classes in this library manage, schedule and,
when needed, synchronize those execution contexts. A context switch
between threads usually costs thousands of CPU cycles on x86,
compared to a fiber switch with less than a hundred cycles. A fiber
runs on a single thread at any point in time.
Package: libboost-fiber1.83-dev
Homepage: http://www.boost.org/libs/fiber/
Architecture: i386 hurd-i386 kfreebsd-i386 amd64 hurd-amd64 kfreebsd-amd64 armel armhf arm64 loong64 mips mipsel mips64el powerpc ppc64el riscv64 s390x
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-context1.83-dev (= ${binary:Version}),
libboost-filesystem1.83-dev (= ${binary:Version}),
libboost-fiber1.83.0 (= ${binary:Version})
Description: cooperatively-scheduled micro-/userland-threads
This package forms part of the Boost C++ Libraries collection.
.
Boost.Fiber provides a framework for micro-/userland-threads (fibers)
scheduled cooperatively. The API contains classes and functions to
manage and synchronize fibers similarly to standard thread support
library.
.
Each fiber has its own stack.
.
A fiber can save the current execution state, including all registers
and CPU flags, the instruction pointer, and the stack pointer and
later restore this state. The idea is to have multiple execution
paths running on a single thread using cooperative scheduling (versus
threads, which are preemptively scheduled). The running fiber decides
explicitly when it should yield to allow another fiber to run
(context switching). Boost.Fiber internally uses execution_context
from Boost.Context; the classes in this library manage, schedule and,
when needed, synchronize those execution contexts. A context switch
between threads usually costs thousands of CPU cycles on x86,
compared to a fiber switch with less than a hundred cycles. A fiber
runs on a single thread at any point in time.
Conflicts: libboost-fiber1.62-dev, libboost-fiber1.63-dev, libboost-fiber1.65-dev, libboost-fiber1.67-dev, libboost-fiber1.70-dev, libboost-fiber1.71-dev, libboost-fiber1.74-dev, libboost-fiber1.80-dev, libboost-fiber1.81-dev
Package: libboost-filesystem1.83.0
Homepage: http://boost.org/libs/filesystem/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: filesystem operations (portable paths, iteration over directories, etc) in C++
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
Package: libboost-filesystem1.83-dev
Homepage: http://boost.org/libs/filesystem/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-atomic1.83-dev (= ${binary:Version}),
libboost-filesystem1.83.0 (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version})
Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev, libboost-filesystem1.49-dev, libboost-filesystem1.50-dev, libboost-filesystem1.52-dev, libboost-filesystem1.53-dev, libboost-filesystem1.54-dev, libboost-filesystem1.55-dev, libboost-filesystem1.57-dev, libboost-filesystem1.58-dev, libboost-filesystem1.60-dev, libboost-filesystem1.61-dev, libboost-filesystem1.62-dev, libboost-filesystem1.63-dev, libboost-filesystem1.65-dev, libboost-filesystem1.67-dev, libboost-filesystem1.70-dev, libboost-filesystem1.71-dev, libboost-filesystem1.74-dev, libboost-filesystem1.80-dev, libboost-filesystem1.81-dev
Description: filesystem operations (portable paths, iteration over directories, etc) in C++
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
Package: libboost-graph1.83.0
Homepage: http://www.boost.org/libs/graph/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Suggests: graphviz
Description: generic graph components and algorithms in C++
This package forms part of the Boost C++ Libraries collection.
.
Graphs are mathematical abstractions that are useful for solving
many types of problems in computer science. Consequently, these
abstractions must also be represented in computer programs. A
standardized generic interface for traversing graphs is of utmost
importance to encourage reuse of graph algorithms and data structures.
Package: libboost-graph1.83-dev
Homepage: http://www.boost.org/libs/graph/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-graph1.83.0 (= ${binary:Version}),
libboost-regex1.83-dev (= ${binary:Version}),
libboost-serialization1.83-dev (= ${binary:Version}),
libboost-test1.83-dev (= ${binary:Version})
Conflicts: libboost-graph1.42-dev, libboost-graph1.46-dev, libboost-graph1.48-dev, libboost-graph1.49-dev, libboost-graph1.50-dev, libboost-graph1.52-dev, libboost-graph1.53-dev, libboost-graph1.54-dev, libboost-graph1.55-dev, libboost-graph1.57-dev, libboost-graph1.58-dev, libboost-graph1.60-dev, libboost-graph1.61-dev, libboost-graph1.62-dev, libboost-graph1.63-dev, libboost-graph1.65-dev, libboost-graph1.67-dev, libboost-graph1.70-dev, libboost-graph1.71-dev, libboost-graph1.74-dev, libboost-graph1.80-dev, libboost-graph1.81-dev
Description: generic graph components and algorithms in C++
This package forms part of the Boost C++ Libraries collection.
.
Graphs are mathematical abstractions that are useful for solving
many types of problems in computer science. Consequently, these
abstractions must also be represented in computer programs. A
standardized generic interface for traversing graphs is of utmost
importance to encourage reuse of graph algorithms and data structures.
Package: libboost-graph-parallel1.83.0
Homepage: http://www.boost.org/libs/graph_parallel/
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Suggests: graphviz
Description: generic graph components and algorithms in C++
This package forms part of the Boost C++ Libraries collection.
.
The Parallel Boost Graph Library is an extension to the Boost Graph Library
(BGL) for parallel and distributed computing. It offers distributed graphs
and graph algorithms to exploit coarse-grained parallelism along with
parallel algorithms that exploit fine-grained parallelism, while retaining
the same interfaces as the (sequential) BGL. Code written using the sequential
BGL should be easy to parallelize with the parallel BGL.
Package: libboost-graph-parallel1.83-dev
Homepage: http://www.boost.org/libs/graph_parallel/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-graph-parallel1.83.0 (= ${binary:Version}),
libboost-serialization1.83-dev (= ${binary:Version}),
libboost-test1.83-dev (= ${binary:Version})
Conflicts: libboost-graph-parallel1.42-dev, libboost-graph-parallel1.46-dev, libboost-graph-parallel1.48-dev, libboost-graph-parallel1.49-dev, libboost-graph-parallel1.50-dev, libboost-graph-parallel1.52-dev, libboost-graph-parallel1.53-dev, libboost-graph-parallel1.54-dev, libboost-graph-parallel1.55-dev, libboost-graph-parallel1.57-dev, libboost-graph-parallel1.58-dev, libboost-graph-parallel1.60-dev, libboost-graph-parallel1.61-dev, libboost-graph-parallel1.62-dev, libboost-graph-parallel1.63-dev, libboost-graph-parallel1.65-dev, libboost-graph-parallel1.67-dev, libboost-graph-parallel1.70-dev, libboost-graph-parallel1.71-dev, libboost-graph-parallel1.74-dev, libboost-graph-parallel1.80-dev, libboost-graph-parallel1.81-dev
Description: generic graph components and algorithms in C++
This package forms part of the Boost C++ Libraries collection.
.
The Parallel Boost Graph Library is an extension to the Boost Graph Library
(BGL) for parallel and distributed computing. It offers distributed graphs
and graph algorithms to exploit coarse-grained parallelism along with
parallel algorithms that exploit fine-grained parallelism, while retaining
the same interfaces as the (sequential) BGL. Code written using the sequential
BGL should be easy to parallelize with the parallel BGL.
Package: libboost-iostreams1.83.0
Homepage: http://www.boost.org/libs/iostreams/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: Boost.Iostreams Library
This package forms part of the Boost C++ Libraries collection.
.
Boost.Iostreams are a collection of concepts and a set of templates
which turn models of these concepts into C++ standard library streams
and stream buffers.
Package: libboost-iostreams1.83-dev
Homepage: http://www.boost.org/libs/iostreams/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-regex1.83-dev (= ${binary:Version}),
libboost-iostreams1.83.0 (= ${binary:Version})
Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev, libboost-iostreams1.49-dev, libboost-iostreams1.50-dev, libboost-iostreams1.52-dev, libboost-iostreams1.53-dev, libboost-iostreams1.54-dev, libboost-iostreams1.55-dev, libboost-iostreams1.57-dev, libboost-iostreams1.58-dev, libboost-iostreams1.60-dev, libboost-iostreams1.61-dev, libboost-iostreams1.62-dev, libboost-iostreams1.63-dev, libboost-iostreams1.65-dev, libboost-iostreams1.67-dev, libboost-iostreams1.70-dev, libboost-iostreams1.71-dev, libboost-iostreams1.74-dev, libboost-iostreams1.80-dev, libboost-iostreams1.81-dev
Description: Boost.Iostreams Library development files
This package forms part of the Boost C++ Libraries collection.
.
Boost.Iostreams are a collection of concepts and a set of templates
which turn models of these concepts into C++ standard library streams
and stream buffers.
Package: libboost-locale1.83.0
Homepage: http://www.boost.org/libs/locale/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ facilities for localization
This package forms part of the Boost C++ Libraries collection.
.
Boost.Locale gives powerful tools for development of cross platform
localized software - the software that talks to user in its language.
.
* Correct case conversion, case folding and normalization.
* Collation (sorting), including support for 4 Unicode collation
levels.
* Date, time, timezone and calendar manipulations, formatting
and parsing, including transparent support for calendars other than
Gregorian.
* Boundary analysis for characters, words, sentences and
line-breaks.
* Number formatting, spelling and parsing.
* Monetary formatting and parsing.
* Powerful message formatting (string translation) including
support for plural forms, using GNU catalogs.
* Character set conversion.
* Transparent support for 8-bit character sets like Latin1
* Support for char and wchar_t
* Experimental support for C++0x char16_t and char32_t strings and streams.
Package: libboost-locale1.83-dev
Homepage: http://www.boost.org/libs/math/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-thread1.83-dev (= ${binary:Version}),
libboost-locale1.83.0 (= ${binary:Version})
Conflicts: libboost-locale1.48-dev, libboost-locale1.49-dev, libboost-locale1.50-dev, libboost-locale1.52-dev, libboost-locale1.53-dev, libboost-locale1.54-dev, libboost-locale1.55-dev, libboost-locale1.57-dev, libboost-locale1.58-dev, libboost-locale1.60-dev, libboost-locale1.61-dev, libboost-locale1.62-dev, libboost-locale1.63-dev, libboost-locale1.65-dev, libboost-locale1.67-dev, libboost-locale1.70-dev, libboost-locale1.71-dev, libboost-locale1.74-dev, libboost-locale1.80-dev, libboost-locale1.81-dev
Description: C++ facilities for localization
This package forms part of the Boost C++ Libraries collection.
.
Boost.Locale gives powerful tools for development of cross platform
localized software - the software that talks to user in its language.
.
* Correct case conversion, case folding and normalization.
* Collation (sorting), including support for 4 Unicode collation
levels.
* Date, time, timezone and calendar manipulations, formatting
and parsing, including transparent support for calendars other than
Gregorian.
* Boundary analysis for characters, words, sentences and
line-breaks.
* Number formatting, spelling and parsing.
* Monetary formatting and parsing.
* Powerful message formatting (string translation) including
support for plural forms, using GNU catalogs.
* Character set conversion.
* Transparent support for 8-bit character sets like Latin1
* Support for char and wchar_t
* Experimental support for C++0x char16_t and char32_t strings and streams.
Package: libboost-log1.83.0
Homepage: http://www.boost.org/libs/log/
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C++ logging library
This package forms part of the Boost C++ Libraries collection.
.
This library aims to make logging significantly easier for the
application developer. It provides a wide range of out-of-the-box
tools along with public interfaces for extending the library. The
main goals of the library are:
.
* Simplicity. A small example code snippet should be enough to get
the feel of the library and be ready to use its basic features.
* Extensibility. A user should be able to extend functionality of the
library for collecting and storing information into logs.
* Performance. The library should have as little performance impact on
the user's application as possible.
Package: libboost-log1.83-dev
Homepage: http://www.boost.org/libs/log/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost-log1.83.0 (= ${binary:Version}),
libboost1.83-dev (= ${binary:Version}),
libboost-atomic1.83-dev (= ${binary:Version}),
libboost-date-time1.83-dev (= ${binary:Version}),
libboost-filesystem1.83-dev (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version}),
libboost-regex1.83-dev (= ${binary:Version}),
libboost-thread1.83-dev (= ${binary:Version})
Description: C++ logging library
This package forms part of the Boost C++ Libraries collection.
.
This library aims to make logging significantly easier for the
application developer. It provides a wide range of out-of-the-box
tools along with public interfaces for extending the library. The
main goals of the library are:
.
* Simplicity. A small example code snippet should be enough to get
the feel of the library and be ready to use its basic features.
* Extensibility. A user should be able to extend functionality of the
library for collecting and storing information into logs.
* Performance. The library should have as little performance impact on
the user's application as possible.
Conflicts: libboost-log1.54-dev, libboost-log1.55-dev, libboost-log1.57-dev, libboost-log1.58-dev, libboost-log1.60-dev, libboost-log1.61-dev, libboost-log1.62-dev, libboost-log1.63-dev, libboost-log1.65-dev, libboost-log1.67-dev, libboost-log1.70-dev, libboost-log1.71-dev, libboost-log1.74-dev, libboost-log1.80-dev, libboost-log1.81-dev
Package: libboost-math1.83.0
Homepage: http://www.boost.org/libs/math/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: Boost.Math Library
This package forms part of the Boost C++ Libraries collection.
.
This library is divided into three interconnected parts:
* Statistical Distributions: Provides a reasonably comprehensive set of
statistical distributions, upon which higher level statistical tests
can be built.
* Mathematical Special Functions: Provides a small number of high quality
special functions, initially these were concentrated on functions used in
statistical applications along with those in the Technical Report on
C++ Library Extensions.
* Implementation Toolkit: Provides many of the tools required to implement
mathematical special functions.
Package: libboost-math1.83-dev
Homepage: http://www.boost.org/libs/math/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-math1.83.0 (= ${binary:Version})
Conflicts: libboost-math1.42-dev, libboost-math1.46-dev, libboost-math1.48-dev, libboost-math1.49-dev, libboost-math1.50-dev, libboost-math1.52-dev, libboost-math1.53-dev, libboost-math1.54-dev, libboost-math1.55-dev, libboost-math1.57-dev, libboost-math1.58-dev, libboost-math1.60-dev, libboost-math1.61-dev, libboost-math1.62-dev, libboost-math1.63-dev, libboost-math1.65-dev, libboost-math1.67-dev, libboost-math1.70-dev, libboost-math1.71-dev, libboost-math1.74-dev, libboost-math1.80-dev, libboost-math1.81-dev
Description: Boost.Math Library development files
This package forms part of the Boost C++ Libraries collection.
.
This library is divided into three interconnected parts:
* Statistical Distributions: Provides a reasonably comprehensive set of
statistical distributions, upon which higher level statistical tests
can be built.
* Mathematical Special Functions: Provides a small number of high quality
special functions, initially these were concentrated on functions used in
statistical applications along with those in the Technical Report on
C++ Library Extensions.
* Implementation Toolkit: Provides many of the tools required to implement
mathematical special functions.
Package: libboost-mpi1.83.0
Homepage: http://www.boost.org/doc/html/mpi.html
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ interface to the Message Passing Interface (MPI)
This package forms part of the Boost C++ Libraries collection.
.
The Boost.MPI library provides a C++ interface to MPI that
supports modern C++ development styles, including complete support for
user-defined data types and C++ Standard Library types, arbitrary function
objects for collective algorithms, and the use of modern C++ library
techniques to maintain maximal efficiency.
Package: libboost-mpi1.83-dev
Homepage: http://www.boost.org/doc/html/mpi.html
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-serialization1.83-dev (= ${binary:Version}),
libboost-mpi1.83.0 (= ${binary:Version}),
mpi-default-dev
Suggests: libboost-graph1.83-dev
Conflicts: libboost-mpi1.42-dev, libboost-mpi1.46-dev, libboost-mpi1.48-dev, libboost-mpi1.49-dev, libboost-mpi1.50-dev, libboost-mpi1.52-dev, libboost-mpi1.53-dev, libboost-mpi1.54-dev, libboost-mpi1.55-dev, libboost-mpi1.57-dev, libboost-mpi1.58-dev, libboost-mpi1.60-dev, libboost-mpi1.61-dev, libboost-mpi1.62-dev, libboost-mpi1.63-dev, libboost-mpi1.65-dev, libboost-mpi1.67-dev, libboost-mpi1.70-dev, libboost-mpi1.71-dev, libboost-mpi1.74-dev, libboost-mpi1.80-dev, libboost-mpi1.81-dev
Description: C++ interface to the Message Passing Interface (MPI)
This package forms part of the Boost C++ Libraries collection.
.
The Boost.MPI library provides a C++ interface to MPI that
supports modern C++ development styles, including complete support for
user-defined data types and C++ Standard Library types, arbitrary function
objects for collective algorithms, and the use of modern C++ library
techniques to maintain maximal efficiency.
Package: libboost-mpi-python1.83.0
Homepage: http://www.boost.org/doc/html/mpi/python.html
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends}, mpi-default-bin
Pre-Depends: ${misc:Pre-Depends}
Suggests: python3
Conflicts: libboost-mpi-python1.40.0,
libboost-mpi-python1.41.0,
libboost-mpi-python1.42.0,
libboost-mpi-python1.46.0, libboost-mpi-python1.46.1, libboost-mpi-python1.48.0, libboost-mpi-python1.49.0, libboost-mpi-python1.50.0, libboost-mpi-python1.52.0, libboost-mpi-python1.53.0, libboost-mpi-python1.54.0, libboost-mpi-python1.55.0, libboost-mpi-python1.57.0, libboost-mpi-python1.58.0, libboost-mpi-python1.60.0, libboost-mpi-python1.61.0, libboost-mpi-python1.62.0, libboost-mpi-python1.63.0, libboost-mpi-python1.65.1, libboost-mpi-python1.67.0, libboost-mpi-python1.70.0, libboost-mpi-python1.71.0, libboost-mpi-python1.74.0, libboost-mpi-python1.80.0, libboost-mpi-python1.81.0
Provides: ${boost:Provides}
Description: C++ interface to the Message Passing Interface (MPI), Python Bindings
This package forms part of the Boost C++ Libraries collection.
.
The Boost.MPI library provides a C++ interface to MPI that
supports modern C++ development styles, including complete support for
user-defined data types and C++ Standard Library types, arbitrary function
objects for collective algorithms, and the use of modern C++ library
techniques to maintain maximal efficiency.
.
This package provides Python Bindings to the C++ interface.
.
One of the python interpreter packages is required to use the bindings.
Package: libboost-mpi-python1.83-dev
Homepage: http://www.boost.org/doc/html/mpi/python.html
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost-mpi1.83-dev (= ${binary:Version}),
libboost-mpi-python1.83.0 (= ${binary:Version})
Conflicts: libboost-mpi-python1.42-dev, libboost-mpi-python1.46-dev, libboost-mpi-python1.48-dev, libboost-mpi-python1.49-dev, libboost-mpi-python1.50-dev, libboost-mpi-python1.52-dev, libboost-mpi-python1.53-dev, libboost-mpi-python1.54-dev, libboost-mpi-python1.55-dev, libboost-mpi-python1.57-dev, libboost-mpi-python1.58-dev, libboost-mpi-python1.60-dev, libboost-mpi-python1.61-dev, libboost-mpi-python1.62-dev, libboost-mpi-python1.63-dev, libboost-mpi-python1.65-dev, libboost-mpi-python1.67-dev, libboost-mpi-python1.70-dev, libboost-mpi-python1.71-dev, libboost-mpi-python1.74-dev, libboost-mpi-python1.80-dev, libboost-mpi-python1.81-dev
Description: C++ interface to the Message Passing Interface (MPI), Python Bindings
This package forms part of the Boost C++ Libraries collection.
.
The Boost.MPI library provides a C++ interface to MPI that
supports modern C++ development styles, including complete support for
user-defined data types and C++ Standard Library types, arbitrary function
objects for collective algorithms, and the use of modern C++ library
techniques to maintain maximal efficiency.
.
This package provides Python Bindings to the C++ interface.
Package: libboost-nowide1.83.0
Homepage: http://www.boost.org/libs/python/
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Suggests: python3
Provides: ${boost:Provides}
Description: Standard library functions with UTF-8 API on Windows
This package forms part of the Boost C++ Libraries collection.
.
The library provides an implementation of standard C and C++
library functions which are UTF-8 aware on Windows without
requiring to use the Wipe API.
.
On POSIX platforms, where UTF-8 is already commonly used, the
calls in Nowide just alias to their standard counterparts.
Package: libboost-nowide1.83-dev
Homepage: http://www.boost.org/libs/python/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost-nowide1.83.0 (= ${binary:Version})
Suggests: libboost1.83-doc
Description: Standard library functions with UTF-8 API on Windows development files
This package forms part of the Boost C++ Libraries collection.
.
The library provides an implementation of standard C and C++
library functions which are UTF-8 aware on Windows without
requiring to use the Wipe API.
.
On POSIX platforms, where UTF-8 is already commonly used, the
calls in Nowide just alias to their standard counterparts.
Conflicts: libboost-numpy1.65-dev, libboost-numpy1.67-dev, libboost-numpy1.70-dev, libboost-numpy1.71-dev, libboost-nowide1.74-dev, libboost-nowide1.80-dev, libboost-nowide1.81-dev
Package: libboost-numpy1.83.0
Homepage: http://www.boost.org/libs/python/
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Suggests: python3
Provides: ${boost:Provides}
Description: Boost.Python NumPy extensions
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python library enables exporting a C++ library to Python.
The NumPy extensions lets the C++ code interact with NumPy types.
.
One of the python interpreter packages is required to use the
created extensions.
Package: libboost-numpy1.83-dev
Homepage: http://www.boost.org/libs/python/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost-numpy1.83.0 (= ${binary:Version})
Suggests: libboost1.83-doc
Description: Boost.Python NumPy extensions development files
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python library enables exporting a C++ library to Python.
The NumPy extensions lets the C++ code interact with NumPy types.
.
This package allows development of a Python interface for all current
versions of Python in Debian. Code using this library will need also
one of the Python development packages.
Conflicts: libboost-numpy1.65-dev, libboost-numpy1.67-dev, libboost-numpy1.70-dev, libboost-numpy1.71-dev, libboost-numpy1.74-dev, libboost-numpy1.80-dev, libboost-numpy1.81-dev
Package: libboost-program-options1.83.0
Homepage: http://www.boost.org/libs/program_options/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: program options library for C++
This package forms part of the Boost C++ Libraries collection.
.
Library to let program developers obtain program options, that is
(name, value) pairs from the user, via conventional methods such as
command line and config file.
Package: libboost-program-options1.83-dev
Homepage: http://www.boost.org/libs/program_options/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-program-options1.83.0 (= ${binary:Version})
Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev, libboost-program-options1.49-dev, libboost-program-options1.50-dev, libboost-program-options1.52-dev, libboost-program-options1.53-dev, libboost-program-options1.54-dev, libboost-program-options1.55-dev, libboost-program-options1.57-dev, libboost-program-options1.58-dev, libboost-program-options1.60-dev, libboost-program-options1.61-dev, libboost-program-options1.62-dev, libboost-program-options1.63-dev, libboost-program-options1.65-dev, libboost-program-options1.67-dev, libboost-program-options1.70-dev, libboost-program-options1.71-dev, libboost-program-options1.74-dev, libboost-program-options1.80-dev, libboost-program-options1.81-dev
Description: program options library for C++
This package forms part of the Boost C++ Libraries collection.
.
Library to let program developers obtain program options, that is
(name, value) pairs from the user, via conventional methods such as
command line and config file.
Package: libboost-python1.83.0
Homepage: http://www.boost.org/libs/python/
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends}
Pre-Depends: ${misc:Pre-Depends}
Suggests: python3
Breaks: ${python3:Breaks}
Provides: ${boost:Provides}
Description: Boost.Python Library
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python Library is used to quickly and easily export a C++
library to Python such that the Python interface is very similar to
the C++ interface. It is designed to be minimally intrusive on your
C++ design. In most cases, you should not have to alter your C++
classes in any way in order to use them with Boost.Python. The
system should simply "reflect" your C++ classes and functions into
Python. The major features of Boost.Python include support for:
Subclassing extension types in Python, Overriding virtual functions
in Python, Member function Overloading, Automatic wrapping of
numeric operators among others.
.
One of the python interpreter packages is required to use the
created extensions.
Package: libboost-python1.83-dev
Homepage: http://www.boost.org/libs/python/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-python1.83.0 (= ${binary:Version}),
libpython3-dev, python3-dev:any, ${python3:Depends},
Suggests: libboost1.83-doc, gccxml
Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev, libboost-python1.49-dev, libboost-python1.50-dev, libboost-python1.52-dev, libboost-python1.53-dev, libboost-python1.54-dev, libboost-python1.55-dev, libboost-python1.57-dev, libboost-python1.58-dev, libboost-python1.60-dev, libboost-python1.61-dev, libboost-python1.62-dev, libboost-python1.63-dev, libboost-python1.65-dev, libboost-python1.67-dev, libboost-python1.70-dev, libboost-python1.71-dev, libboost-python1.74-dev, libboost-python1.80-dev, libboost-python1.81-dev
Description: Boost.Python Library development files
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python Library is used to quickly and easily export a C++
library to Python such that the Python interface is very similar to
the C++ interface. It is designed to be minimally intrusive on your
C++ design. In most cases, you should not have to alter your C++
classes in any way in order to use them with Boost.Python. The
system should simply "reflect" your C++ classes and functions into
Python. The major features of Boost.Python include support for:
Subclassing extension types in Python, Overriding virtual functions
in Python, Member function Overloading, Automatic wrapping of
numeric operators among others.
.
This package allows development of a Python interface for all current
versions of Python in Debian. Code using this library will need also
one of the Python development packages.
Package: libboost-random1.83.0
Homepage: http://www.boost.org/libs/random/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: Boost Random Number Library
This package forms part of the Boost C++ Libraries collection.
.
The Boost Random Number Library (Boost.Random for short) provides a
variety of generators and distributions to produce random numbers
having useful properties, such as uniform distribution.
Package: libboost-random1.83-dev
Homepage: http://www.boost.org/libs/random/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version}),
libboost-random1.83.0 (= ${binary:Version})
Conflicts: libboost-random1.42-dev, libboost-random1.46-dev, libboost-random1.48-dev, libboost-random1.49-dev, libboost-random1.50-dev, libboost-random1.52-dev, libboost-random1.53-dev, libboost-random1.54-dev, libboost-random1.55-dev, libboost-random1.57-dev, libboost-random1.58-dev, libboost-random1.60-dev, libboost-random1.61-dev, libboost-random1.62-dev, libboost-random1.63-dev, libboost-random1.65-dev, libboost-random1.67-dev, libboost-random1.70-dev, libboost-random1.71-dev, libboost-random1.74-dev, libboost-random1.80-dev, libboost-random1.81-dev
Description: Boost Random Number Library
This package forms part of the Boost C++ Libraries collection.
.
The Boost Random Number Library (Boost.Random for short) provides a
variety of generators and distributions to produce random numbers
having useful properties, such as uniform distribution.
Package: libboost-regex1.83.0
Homepage: http://www.boost.org/libs/regex/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Provides: ${boost:Provides}
Description: regular expression library for C++
This package forms part of the Boost C++ Libraries collection.
.
Regular expressions are a form of pattern-matching that are often
used in text processing; many users will be familiar with the Unix
utilities grep, sed and awk, and the programming language perl, each
of which make extensive use of regular expressions. Traditionally C++
users have been limited to the POSIX C APIs for manipulating regular
expressions, and while regex does provide these APIs, they do not
represent the best way to use the library. For example regex can cope
with wide character strings, or search and replace operations (in a
manner analogous to either sed or perl), something that traditional C
libraries can not do.
Package: libboost-regex1.83-dev
Homepage: http://www.boost.org/libs/regex/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-regex1.83.0 (= ${binary:Version}),
libicu-dev
Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev, libboost-regex1.49-dev, libboost-regex1.50-dev, libboost-regex1.52-dev, libboost-regex1.53-dev, libboost-regex1.54-dev, libboost-regex1.55-dev, libboost-regex1.57-dev, libboost-regex1.58-dev, libboost-regex1.60-dev, libboost-regex1.61-dev, libboost-regex1.62-dev, libboost-regex1.63-dev, libboost-regex1.65-dev, libboost-regex1.67-dev, libboost-regex1.70-dev, libboost-regex1.71-dev, libboost-regex1.74-dev, libboost-regex1.80-dev, libboost-regex1.81-dev
Description: regular expression library for C++
This package forms part of the Boost C++ Libraries collection.
.
Regular expressions are a form of pattern-matching that are often
used in text processing; many users will be familiar with the Unix
utilities grep, sed and awk, and the programming language perl, each
of which make extensive use of regular expressions. Traditionally C++
users have been limited to the POSIX C APIs for manipulating regular
expressions, and while regex does provide these APIs, they do not
represent the best way to use the library. For example regex can cope
with wide character strings, or search and replace operations (in a
manner analogous to either sed or perl), something that traditional C
libraries can not do.
Package: libboost-serialization1.83.0
Homepage: http://www.boost.org/libs/serialization/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: serialization library for C++
This package forms part of the Boost C++ Libraries collection,
containing the following functionalities:
.
* proper restoration of pointers to shared data
* serialization of STL containers and other commonly used templates
* data portability - streams of bytes created on one platform should
be readable on any other
* archive interface must be rich enough to permit the creation of an
archive that presents serialized data as XML in a useful manner
.
Here, "serialization" means the reversible deconstruction of an
arbitrary set of C++ data structures to a sequence of bytes.
archive: to refer to a specific rendering of this stream of bytes.
Package: libboost-serialization1.83-dev
Homepage: http://www.boost.org/libs/serialization/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-serialization1.83.0 (= ${binary:Version})
Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev, libboost-serialization1.49-dev, libboost-serialization1.50-dev, libboost-serialization1.52-dev, libboost-serialization1.53-dev, libboost-serialization1.54-dev, libboost-serialization1.55-dev, libboost-serialization1.57-dev, libboost-serialization1.58-dev, libboost-serialization1.60-dev, libboost-serialization1.61-dev, libboost-serialization1.62-dev, libboost-serialization1.63-dev, libboost-serialization1.65-dev, libboost-serialization1.67-dev, libboost-serialization1.70-dev, libboost-serialization1.71-dev, libboost-serialization1.74-dev, libboost-serialization1.80-dev, libboost-serialization1.81-dev
Description: serialization library for C++
This package forms part of the Boost C++ Libraries collection,
containing the following functionalities:
.
* proper restoration of pointers to shared data
* serialization of STL containers and other commonly used templates
* data portability - streams of bytes created on one platform should
be readable on any other
* archive interface must be rich enough to permit the creation of an
archive that presents serialized data as XML in a useful manner
.
Here, "serialization" means the reversible deconstruction of an
arbitrary set of C++ data structures to a sequence of bytes.
archive: to refer to a specific rendering of this stream of bytes.
Package: libboost-stacktrace1.83.0
Homepage: http://boost.org/libs/stacktrace/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: library to capture and print stack traces
This package forms part of the Boost C++ Libraries collection.
.
Boost.Stacktrace library is a simple C++03 library that provides
information about call sequence in a human-readable form.
Package: libboost-stacktrace1.83-dev
Homepage: http://boost.org/libs/stacktrace/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-stacktrace1.83.0 (= ${binary:Version})
Description: library to capture and print stack traces - development files
This package forms part of the Boost C++ Libraries collection.
.
Boost.Stacktrace library is a simple C++03 library that provides
information about call sequence in a human-readable form.
Conflicts: libboost-stacktrace1.65-dev, libboost-stacktrace1.67-dev, libboost-stacktrace1.70-dev, libboost-stacktrace1.71-dev, libboost-stacktrace1.74-dev, libboost-stacktrace1.80-dev, libboost-stacktrace1.81-dev
Package: libboost-system1.83.0
Homepage: http://www.boost.org/libs/system/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: Operating system (e.g. diagnostics support) library
This package forms part of the Boost C++ Libraries collection.
.
The Boost System library provides simple, light-weight error_code
objects that encapsulate system-specific error code values, yet also
provide access to more abstract and portable error conditions via
error_condition objects. Because error_code objects can represent
errors from sources other than the operating system, including
user-defined sources, each error_code and error_condition has an
associated error_category.
Package: libboost-system1.83-dev
Homepage: http://www.boost.org/libs/system/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-system1.83.0 (= ${binary:Version})
Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev, libboost-system1.49-dev, libboost-system1.50-dev, libboost-system1.52-dev, libboost-system1.53-dev, libboost-system1.54-dev, libboost-system1.55-dev, libboost-system1.57-dev, libboost-system1.58-dev, libboost-system1.60-dev, libboost-system1.61-dev, libboost-system1.62-dev, libboost-system1.63-dev, libboost-system1.65-dev, libboost-system1.67-dev, libboost-system1.70-dev, libboost-system1.71-dev, libboost-system1.74-dev, libboost-system1.80-dev, libboost-system1.81-dev
Description: Operating system (e.g. diagnostics support) library
This package forms part of the Boost C++ Libraries collection.
.
The Boost System library provides simple, light-weight error_code
objects that encapsulate system-specific error code values, yet also
provide access to more abstract and portable error conditions via
error_condition objects. Because error_code objects can represent
errors from sources other than the operating system, including
user-defined sources, each error_code and error_condition has an
associated error_category.
Package: libboost-test1.83.0
Homepage: http://www.boost.org/libs/test/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: components for writing and executing test suites
This package forms part of the Boost C++ Libraries collection. The
library contains several components.
.
* Basic execution, error detection, and reporting facility.
* Facilities to monitor program execution and produce error reports.
* Unit test framework to simplify writing test cases.
Package: libboost-test1.83-dev
Homepage: http://www.boost.org/libs/test/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-test1.83.0 (= ${binary:Version})
Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev, libboost-test1.49-dev, libboost-test1.50-dev, libboost-test1.52-dev, libboost-test1.53-dev, libboost-test1.54-dev, libboost-test1.55-dev, libboost-test1.57-dev, libboost-test1.58-dev, libboost-test1.60-dev, libboost-test1.61-dev, libboost-test1.62-dev, libboost-test1.63-dev, libboost-test1.65-dev, libboost-test1.67-dev, libboost-test1.70-dev, libboost-test1.71-dev, libboost-test1.74-dev, libboost-test1.80-dev, libboost-test1.81-dev
Description: components for writing and executing test suites
This package forms part of the Boost C++ Libraries collection. The
library contains several components.
.
* Basic execution, error detection, and reporting facility.
* Facilities to monitor program execution and produce error reports.
* Unit test framework to simplify writing test cases.
Package: libboost-thread1.83.0
Homepage: http://www.boost.org/libs/thread/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: portable C++ multi-threading
This package forms part of the Boost C++ Libraries collection.
.
Toolkit for writing C++ programs that execute as multiple,
asynchronous, independent, threads-of-execution. Each thread has its
own machine state including program instruction counter and
registers.
Package: libboost-thread1.83-dev
Homepage: http://www.boost.org/libs/thread/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-atomic1.83-dev (= ${binary:Version}),
libboost-chrono1.83-dev (= ${binary:Version}),
libboost-date-time1.83-dev (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version}),
libboost-thread1.83.0 (= ${binary:Version})
Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev, libboost-thread1.49-dev, libboost-thread1.50-dev, libboost-thread1.52-dev, libboost-thread1.53-dev, libboost-thread1.54-dev, libboost-thread1.55-dev, libboost-thread1.57-dev, libboost-thread1.58-dev, libboost-thread1.60-dev, libboost-thread1.61-dev, libboost-thread1.62-dev, libboost-thread1.63-dev, libboost-thread1.65-dev, libboost-thread1.67-dev, libboost-thread1.70-dev, libboost-thread1.71-dev, libboost-thread1.74-dev, libboost-thread1.80-dev, libboost-thread1.81-dev
Description: portable C++ multi-threading
This package forms part of the Boost C++ Libraries collection.
.
Toolkit for writing C++ programs that execute as multiple,
asynchronous, independent, threads-of-execution. Each thread has its
own machine state including program instruction counter and
registers.
Package: libboost-timer1.83.0
Homepage: http://www.boost.org/libs/timer/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ wall clock and CPU process timers
This package forms part of the Boost C++ Libraries collection.
.
Portable C++ timer classes that answer the question "How long does my
C++ code take to run?" with as little as one #include and one
additional line of code.
.
Class cpu_timer measures wall clock time, user CPU process time, and
system CPU process time. Class auto_cpu_timer is a refinement of
cpu_timer that automatically reports the elapsed times when an
auto_cpu_timer object is destroyed.
Package: libboost-timer1.83-dev
Homepage: http://www.boost.org/libs/timer/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-chrono1.83-dev (= ${binary:Version}),
libboost-timer1.83.0 (= ${binary:Version})
Conflicts: libboost-timer1.42-dev, libboost-timer1.46-dev, libboost-timer1.48-dev, libboost-timer1.49-dev, libboost-timer1.50-dev, libboost-timer1.52-dev, libboost-timer1.53-dev, libboost-timer1.54-dev, libboost-timer1.55-dev, libboost-timer1.57-dev, libboost-timer1.58-dev, libboost-timer1.60-dev, libboost-timer1.61-dev, libboost-timer1.62-dev, libboost-timer1.63-dev, libboost-timer1.65-dev, libboost-timer1.67-dev, libboost-timer1.70-dev, libboost-timer1.71-dev, libboost-timer1.74-dev, libboost-timer1.80-dev, libboost-timer1.81-dev
Description: C++ wall clock and CPU process timers
This package forms part of the Boost C++ Libraries collection.
.
Portable C++ timer classes that answer the question "How long does my
C++ code take to run?" with as little as one #include and one
additional line of code.
.
Class cpu_timer measures wall clock time, user CPU process time, and
system CPU process time. Class auto_cpu_timer is a refinement of
cpu_timer that automatically reports the elapsed times when an
auto_cpu_timer object is destroyed.
Package: libboost-type-erasure1.83.0
Homepage: http://www.boost.org/doc/libs/1_60_0/doc/html/boost_typeerasure.html
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ runtime polymorphism based on concepts
This package forms part of the Boost C++ Libraries collection.
.
C++ has two distinct kinds of polymorphism, virtual functions and templates,
each of which has its own advantages and disadvantages. The Boost.TypeErasure
library combines the superior abstraction capabilities of templates, with the
runtime flexibility of virtual functions.
Package: libboost-type-erasure1.83-dev
Homepage: http://www.boost.org/doc/libs/1_60_0/doc/html/boost_typeerasure.html
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version}),
libboost-thread1.83-dev (= ${binary:Version}),
libboost-type-erasure1.83.0 (= ${binary:Version})
Description: C++ runtime polymorphism based on concepts
This package forms part of the Boost C++ Libraries collection.
.
C++ has two distinct kinds of polymorphism, virtual functions and templates,
each of which has its own advantages and disadvantages. The Boost.TypeErasure
library combines the superior abstraction capabilities of templates, with the
runtime flexibility of virtual functions.
Conflicts: libboost-type-erasure1.60-dev, libboost-type-erasure1.61-dev, libboost-type-erasure1.62-dev, libboost-type-erasure1.63-dev, libboost-type-erasure1.65-dev, libboost-type-erasure1.67-dev, libboost-type-erasure1.70-dev, libboost-type-erasure1.71-dev, libboost-type-erasure1.74-dev, libboost-type-erasure1.80-dev, libboost-type-erasure1.81-dev
Package: libboost-wave1.83.0
Homepage: http://www.boost.org/libs/wave/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C99/C++ preprocessor library
This package forms part of the Boost C++ Libraries collection.
.
The Wave C++ preprocessor library is a Standards conformant
implementation of the mandated C99/C++ preprocessor functionality
packed behind a simple to use interface, which integrates well with
the well known idioms of the Standard Template Library (STL).
Package: libboost-wave1.83-dev
Homepage: http://www.boost.org/libs/wave/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-serialization1.83-dev (= ${binary:Version}),
libboost-wave1.83.0 (= ${binary:Version}),
libboost-filesystem1.83-dev (= ${binary:Version})
Conflicts: libboost-wave1.42-dev, libboost-wave1.46-dev, libboost-wave1.48-dev, libboost-wave1.49-dev, libboost-wave1.50-dev, libboost-wave1.52-dev, libboost-wave1.53-dev, libboost-wave1.54-dev, libboost-wave1.55-dev, libboost-wave1.57-dev, libboost-wave1.58-dev, libboost-wave1.60-dev, libboolibboost1.6-dev, libboost-wave1.62-dev, libboost-wave1.63-dev, libboost-wave1.65-dev, libboost-wave1.67-dev, libboost-wave1.70-dev, libboost-wave1.71-dev, libboost-wave1.74-dev, libboost-wave1.80-dev, libboost-wave1.81-dev
Description: C99/C++ preprocessor library
This package forms part of the Boost C++ Libraries collection.
.
The Wave C++ preprocessor library is a Standards conformant
implementation of the mandated C99/C++ preprocessor functionality
packed behind a simple to use interface, which integrates well with
the well known idioms of the Standard Template Library (STL).
Package: libboost-json1.83.0
Homepage: https://www.boost.org/doc/libs/release/libs/json/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ containers and algorithms that implement JSON
This library focuses on a common and popular use-case: parsing
and serializing to and from a container called value which holds
JSON types.
.
Any value which you build can be serialized and then deserialized,
guaranteeing that the result will be equal to the original value.
Whatever JSON output you produce with this library will be readable
by most common JSON implementations in any language.
Package: libboost-json1.83-dev
Homepage: https://www.boost.org/doc/libs/release/libs/json/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-container1.83-dev (= ${binary:Version}),
libboost-json1.83.0 (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version})
Conflicts: libboost-json1.80-dev, libboost-json1.81-dev
Description: C++ containers and algorithms that implement JSON
This library focuses on a common and popular use-case: parsing
and serializing to and from a container called value which holds
JSON types.
.
Any value which you build can be serialized and then deserialized,
guaranteeing that the result will be equal to the original value.
Whatever JSON output you produce with this library will be readable
by most common JSON implementations in any language.
Package: libboost-url1.83.0
Homepage: https://www.boost.org/doc/libs/release/libs/url/
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Pre-Depends: ${misc:Pre-Depends}
Description: C++ library that implements "URL"
C++ library which provides containers and algorithms which model a "URL,"
the Uniform Resource Identifier (URI) specification (henceforth referred to
as rfc3986).
.
A URL is a compact sequence of characters that identifies an abstract or
physical resource.
.
This library understands the grammars related to URLs and provides
functionality to validate, parse, examine, and modify urls, and apply
normalization or resolution algorithms.
Package: libboost-url1.83-dev
Homepage: https://www.boost.org/doc/libs/release/libs/url/
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libboost1.83-dev (= ${binary:Version}),
libboost-system1.83-dev (= ${binary:Version}),
libboost-url1.83.0 (= ${binary:Version})
Conflicts: libboost-json1.80-dev, libboost-url1.81-dev
Description: C++ library that implements "URL"
C++ library which provides containers and algorithms which model a "URL,"
the Uniform Resource Identifier (URI) specification (henceforth referred to
as rfc3986).
.
A URL is a compact sequence of characters that identifies an abstract or
physical resource.
.
This library understands the grammars related to URLs and provides
functionality to validate, parse, examine, and modify urls, and apply
normalization or resolution algorithms.
|