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
|
qtwebengine-opensource-src (5.15.18+dfsg-2) unstable; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 07 Feb 2025 16:19:52 +0300
qtwebengine-opensource-src (5.15.18+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Refresh disable-catapult.patch.
* Update debian/*.symbols from buildds’ and the current build logs.
* Bump ABI version to qtwebengine-abi-5-15-18.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 04 Feb 2025 11:19:00 +0300
qtwebengine-opensource-src (5.15.17+dfsg2-3) unstable; urgency=medium
* Add hunspell-bdic.patch and remove 90qtwebengine-dictionaries-path.conf (see
#1092726).
* Update copyright year for myself in debian/copyright.
-- Soren Stoutner <soren@debian.org> Wed, 22 Jan 2025 16:39:55 -0700
qtwebengine-opensource-src (5.15.17+dfsg2-2) unstable; urgency=medium
* Backport upstream patch to replace pipes module (removed in Python 3.13)
with shlex (closes: #1084535).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 09 Jan 2025 10:38:16 +0300
qtwebengine-opensource-src (5.15.17+dfsg2-1) unstable; urgency=medium
* debian/copyright: Exclude
src/3rdparty/chromium/third_party/blink/manual_tests/WebKitSite.webarchive
(Closes: #1091433).
-- Soren Stoutner <soren@debian.org> Thu, 26 Dec 2024 12:34:36 -0700
qtwebengine-opensource-src (5.15.17+dfsg-5) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 25 Oct 2024 12:50:17 +0300
qtwebengine-opensource-src (5.15.17+dfsg-4) experimental; urgency=medium
[ Soren Stoutner ]
* Add lintian overrides for:
- false positive usage of deprecated distutils.
- various missing-sources.
- false positive detection of documentation outside of /usr/share/doc.
* Add Polymer and HTML-Imports to debian/missing-sources.
* Update debian/copyright to include information about missing-sources.
* Fix forwarded field in some patches.
[ Dmitry Shachnev ]
* Build against Qt 5.15.15.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 07 Sep 2024 20:14:20 +0300
qtwebengine-opensource-src (5.15.17+dfsg-3) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 09 Jul 2024 14:43:34 +0300
qtwebengine-opensource-src (5.15.17+dfsg-2) experimental; urgency=medium
* Backport v8 patch to port the latest RegExpMacroAssembler changes to
mips64el.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 07 Jul 2024 11:44:46 +0300
qtwebengine-opensource-src (5.15.17+dfsg-1) experimental; urgency=medium
* New upstream release.
- Fixes build with libxml2 2.12 (closes: #1074671).
* Update SUBMODULE_COMMIT for the new release.
* Drop patches, included in the new release:
- python3.patch
- chromium-python3.patch
- python3.11.patch
- ffmpeg-x86-optimization.patch
- icu74.patch
* Also drop part of python3.12-imp.patch which was applied upstream.
* Refresh debian/patches/system-openjpeg2.patch.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Bump ABI version to qtwebengine-abi-5-15-17.
* Pass QMAKE_PYTHON2=python3 to qmake, to get the docs built.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 02 Jul 2024 22:53:32 +0300
qtwebengine-opensource-src (5.15.16+dfsg-5) unstable; urgency=medium
* Add a patch from Arch Linux to build using C++17, which is required by ICU
75.
* Cherry-pick upstream patches to build with Ninja 1.12.
* Mark applicable patches as "Forwarded: not-needed" to fix lintian errors.
* Update symbols files from local build log.
-- Soren Stoutner <soren@debian.org> Wed, 22 May 2024 12:37:00 -0700
qtwebengine-opensource-src (5.15.16+dfsg-4) unstable; urgency=medium
* Upload to unstable.
[ Soren Stoutner ]
* Merge 5.15.15+dfsg2-1 upload from unstable.
* Update symbols files from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 21 May 2024 23:07:25 +0300
qtwebengine-opensource-src (5.15.16+dfsg-3) experimental; urgency=medium
* Merge 5.15.15+dfsg-3 upload from unstable.
* Add upstream patches to stop using imp Python module (LP: #2058066).
Thanks Zixing Liu!
* Update bundled six module for Python 3.12 compatibility (LP: #2058117).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 29 Mar 2024 16:12:37 +0300
qtwebengine-opensource-src (5.15.16+dfsg-2) experimental; urgency=medium
* Replace pkg-config build-dependency with pkgconf.
* Build against Qt 5.15.13.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 12 Mar 2024 18:00:47 +0300
qtwebengine-opensource-src (5.15.16+dfsg-1) experimental; urgency=medium
[ Soren Stoutner ]
* New upstream release.
* Bump ABI version to qtwebengine-abi-5-15-16.
* Refresh python3.patch and system-openjpeg2.patch.
* Update symbols files.
[ Dmitry Shachnev ]
* Build against Qt 5.15.12.
* Add a patch from Gentoo to fix build with ICU 74.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 25 Dec 2023 00:14:27 +0300
qtwebengine-opensource-src (5.15.15+dfsg2-1) unstable; urgency=medium
[ Soren Stoutner ]
* Drop the build depend on libre2-dev, which forces building with the bundled
RE2 (closes: #1053409).
* Bump standards version to 4.7.0 (no changes needed).
* Fix debian/rules to handle dfsg repack counts.
* Change my email address from soren@stoutner.com to soren@debian.org in the
following locations:
- debian/changelog
- debian/control
- debian/copyright
- debian/patches/fix-example-pro-files.patch
- debian/patches/system-openjpeg2.patch
* Add 2024 to debian/copyright entries.
* Update debian/libqt5webenginecore5.symbols from local build log.
[ Dmitry Shachnev ]
* Add a patch from Gentoo to fix build with ICU 74.
* Replace pkg-config build-dependency with pkgconf.
* Add upstream patches to stop using imp Python module (LP: #2058066).
Thanks Zixing Liu!
* Update bundled six module for Python 3.12 compatibility (LP: #2058117).
-- Soren Stoutner <soren@debian.org> Thu, 09 May 2024 10:01:42 -0700
qtwebengine-opensource-src (5.15.15+dfsg-3) unstable; urgency=medium
[ Soren Stoutner ]
* Remove unused build-depends on rollup (Closes: #1023334).
* Add Lintian overrides for source-is-missing false positives.
* Add Lintian override for missing-notice-file-for-apache-license false
positive.
* Correct BSD license text in debian/copyright.
* Build with the system version of dagre-layout.
[ Dmitry Shachnev ]
* Update debian/libqt5webenginecore5.symbols for armhf (closes: #1067906).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 29 Mar 2024 15:08:36 +0300
qtwebengine-opensource-src (5.15.15+dfsg-2) unstable; urgency=medium
* Update symbols files from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 12 Sep 2023 09:36:14 +0300
qtwebengine-opensource-src (5.15.15+dfsg-1) experimental; urgency=medium
[ Soren Stoutner ]
* Add needed dependencies to qtwebengine5-examples (closes: #934130).
* Add patch to fix .pro files in qtwebengine5-examples.
* Add qtwebengine5-examples.README.Debian to explain how to build the examples
from scratch.
[ Dmitry Shachnev ]
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Drop gcc-13.patch, included in the new release.
* Replace ffmpeg-remove-x86-optimization.patch with a patch that was
applied in upstream ffmpeg.
* Drop support for mipsel, which was removed from unstable.
- Drop five patches which are no longer needed.
- Rename patches which are still needed for mips64el to mips64el-*.patch.
* Bump ABI version to qtwebengine-abi-5-15-15.
* Update symbols files from the current build logs.
* Delete all build artifacts in the clean target (closes: #1048922).
* Don’t change .qmake.conf, instead pass options to qmake via command line.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 08 Sep 2023 11:22:10 +0300
qtwebengine-opensource-src (5.15.14+dfsg-6) unstable; urgency=medium
* Don’t enable use_icf with gold on mipsel. Thanks to Adrian Bunk!
-- Dmitry Shachnev <mitya57@debian.org> Thu, 13 Jul 2023 19:59:54 +0300
qtwebengine-opensource-src (5.15.14+dfsg-5) unstable; urgency=medium
* Update optimize-size.patch to add -Os in two more places. Thanks to
Adrian Bunk again!
-- Dmitry Shachnev <mitya57@debian.org> Sun, 09 Jul 2023 22:41:05 +0300
qtwebengine-opensource-src (5.15.14+dfsg-4) unstable; urgency=medium
* Merge 5.15.13+dfsg-6 upload from unstable.
* Revert "mipsel: Add -Os to CFLAGS and CXXFLAGS explicitly".
* Instead, add a patch which sets -Os on mipsel even for modules that
have "optimize_max" config. Thanks Adrian Bunk!
* Remove more unused code from debian/rules.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 08 Jul 2023 18:27:27 +0300
qtwebengine-opensource-src (5.15.14+dfsg-3) experimental; urgency=medium
* Merge 5.15.13+dfsg-3 upload from unstable.
* Add a patch to fix build with GCC 13 (closes: #1037832).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 19 Jun 2023 23:44:11 +0300
qtwebengine-opensource-src (5.15.14+dfsg-2) experimental; urgency=medium
* Build against Qt 5.15.10.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 13 Jun 2023 21:21:24 +0300
qtwebengine-opensource-src (5.15.14+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Bump ABI version to qtwebengine-abi-5-15-14.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 27 May 2023 18:36:45 +0300
qtwebengine-opensource-src (5.15.13+dfsg-6) unstable; urgency=medium
* mipsel: Add -Os to CFLAGS and CXXFLAGS explicitly, so it applies to skia,
third_party/ffmpeg and third_party/libyuv.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 07 Jul 2023 11:34:36 +0300
qtwebengine-opensource-src (5.15.13+dfsg-5) unstable; urgency=medium
* Remove unused code in debian/rules.
* Build with gold and -Os on mipsel, thanks Adrian Bunk!
-- Dmitry Shachnev <mitya57@debian.org> Thu, 06 Jul 2023 13:33:36 +0300
qtwebengine-opensource-src (5.15.13+dfsg-4) unstable; urgency=medium
* Pass --reduce-memory-overheads to ld on mipsel as an attempt to fix OOM.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 26 Jun 2023 12:06:04 +0300
qtwebengine-opensource-src (5.15.13+dfsg-3) unstable; urgency=medium
* Revert "Build against Qt 5.15.9", for unstable upload.
* Remove ffmpeg code for shift optimization on x86 (closes: #1038132).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 19 Jun 2023 09:36:10 +0300
qtwebengine-opensource-src (5.15.13+dfsg-2) experimental; urgency=medium
* Build against Qt 5.15.9.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Fix obsolete build-dependency: libfontconfig1-dev => libfontconfig-dev.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 23 Apr 2023 23:11:58 +0300
qtwebengine-opensource-src (5.15.13+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Remove copyright section for debian/missing-sources/jszip-2.4.0.
* Build with pipewire support (closes: #1005824).
- Backport upstream patch to improve screen sharing with PipeWire
on Wayland and to add support for PipeWire 0.3.
- Thanks Pirate Praveen and Cédric Hannotier!
- Add four new symbols to debian/libqt5webenginecore5.symbols.
* Bump ABI version to qtwebengine-abi-5-15-13.
* Drop gcc-12.patch, included in the new release.
* Refresh debian/patches/python3.patch.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 19 Mar 2023 21:40:17 +0300
qtwebengine-opensource-src (5.15.12+dfsg-3) unstable; urgency=medium
* Add debian/90qtwebengine-dictionaries-path.conf.
* debian/copyright:
- Add myself to copyright file.
- Update copyright dates for other contributors.
* debian/control: Add build-depends on libopenjp2-7-dev to remove
embedded openjpeg library.
* debian/libqt5webengine-data.install: Install
90qtwebengine-dictionaries-path.conf to /etc/environment.d/.
* debian/libqt5webengine-data.links: Remove the hunspell-bdic symlink.
* debian/patches: Add system-libopenjpeg2.patch.
* Update Lintian override format to use pointed hints.
* Bump Standards-Version to 4.6.2, no changes needed.
* Add myself to uploaders.
-- Soren Stoutner <soren@debian.org> Wed, 01 Feb 2023 06:57:05 -0700
qtwebengine-opensource-src (5.15.12+dfsg-2) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 13 Jan 2023 12:02:22 +0400
qtwebengine-opensource-src (5.15.12+dfsg-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Bump ABI version to qtwebengine-abi-5-15-12.
* Update debian/copyright using debian/scripts/update-copyright.
* Add /usr/share/qt5/qtwebengine_dictionaries → /usr/share/hunspell-bdic
symlink (see #1020387).
* Build against Qt 5.15.8.
* Add a patch to fix build with Python 3.11.
[ Soren Stoutner ]
* Update watch file.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 09 Jan 2023 12:09:05 +0400
qtwebengine-opensource-src (5.15.11+dfsg-5) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 17 Dec 2022 18:20:43 +0300
qtwebengine-opensource-src (5.15.11+dfsg-4) experimental; urgency=medium
* Build against Qt 5.15.7.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 06 Dec 2022 14:54:51 +0300
qtwebengine-opensource-src (5.15.11+dfsg-3) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 04 Dec 2022 11:56:05 +0300
qtwebengine-opensource-src (5.15.11+dfsg-2) experimental; urgency=medium
* Replace python2 with python3 in one more place, to fix docs build.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 27 Nov 2022 20:25:20 +0300
qtwebengine-opensource-src (5.15.11+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Bump ABI version to qtwebengine-abi-5-15-11.
* Remove __NR_statx part from sandbox-time64-syscalls.patch.
A similar change was applied upstream in commit a7a23ccc69e6756e.
* Disable Catapult to simplify porting to Python 3.
- Add disable-catapult.patch (copied from Chromium packaging).
- Exclude catapult directory from the tarball.
- Drop remove-benchmark-from-inputs.patch and python2.patch.
- Drop debian/missing-sources/jszip-2.4.0.
- Stop copying pako.min.js and d3.min.js in debian/rules.
- Drop libjs-d3 and node-pako build-dependencies.
* Use Python 3 instead of Python 2 for building (closes: #938322).
- Update build-dependency.
- Add python3.patch, inspired by Arch Linux but using versioned python3.
- Add chromium-python3.patch, copied from Arch Linux.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 27 Nov 2022 12:06:13 +0300
qtwebengine-opensource-src (5.15.10+dfsg-7) unstable; urgency=medium
* Update symbols files from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 29 Sep 2022 11:39:27 +0300
qtwebengine-opensource-src (5.15.10+dfsg-6) experimental; urgency=medium
* Update symbols files from buildds’ logs.
* Build against Qt 5.15.6.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 14 Sep 2022 10:51:34 +0300
qtwebengine-opensource-src (5.15.10+dfsg-5) experimental; urgency=medium
* Update symbols files from buildds’ logs.
* Build against Qt 5.15.5.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 28 Jul 2022 23:21:40 +0300
qtwebengine-opensource-src (5.15.10+dfsg-4) unstable; urgency=medium
* Add a patch to fix build with GCC 12 (closes: #1013025).
* Update symbols files from amd64 build log with GCC 12.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 27 Jul 2022 11:45:31 +0300
qtwebengine-opensource-src (5.15.10+dfsg-3) unstable; urgency=medium
* Disable CONFIG_THUMB to fix build on armhf.
* Pass -z notext to linker to fix build on i386.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 28 Jun 2022 12:48:02 +0300
qtwebengine-opensource-src (5.15.10+dfsg-2) unstable; urgency=medium
* Build with bundled ffmpeg for now (closes: #1004594).
* Bump Standards-Version to 4.6.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 25 Jun 2022 23:59:39 +0300
qtwebengine-opensource-src (5.15.10+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Bump ABI version to qtwebengine-abi-5-15-10.
* Use symver directive to catch all private symbols at once.
* Refresh debian/patches/verbose-gn-bootstrap.patch.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 13 Jun 2022 21:37:05 +0300
qtwebengine-opensource-src (5.15.9+dfsg-2) experimental; urgency=medium
* Bump nodejs build-dependency to 16.14. With the previous version (14.19),
the build hangs on mips64el and mipsel.
* Build against Qt 5.15.4.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 14 May 2022 19:51:49 +0300
qtwebengine-opensource-src (5.15.9+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Bump ABI version to qtwebengine-abi-5-15-9.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Remove copyright for win_build_output, it is in Files-Excluded.
* Add one new symbol to debian/libqt5webenginecore5.symbols.
* Update debian/source/lintian-overrides for Lintian 2.109.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 08 Apr 2022 19:19:50 +0300
qtwebengine-opensource-src (5.15.8+dfsg-2) experimental; urgency=medium
* Build against Qt 5.15.3.
* Bump ABI version to qtwebengine-abi-5-15-8.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 08 Mar 2022 22:44:37 +0300
qtwebengine-opensource-src (5.15.8+dfsg-1) unstable; urgency=medium
[ Alexander Volkov ]
* Enable Kerberos support.
[ Dmitry Shachnev ]
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Depend on sse2-support for i386 (closes: #1003249).
* Add more files to Files-Excluded (closes: #1000620).
* Drop glibc-2.34-SIGSTKSZ.patch, applied upstream.
* Refresh system-icu-utf.patch.
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 17 Jan 2022 17:54:14 +0300
qtwebengine-opensource-src (5.15.7+dfsg-2) unstable; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Add a patch to make sure kernel_stat64 is defined on mips64el.
* Update debian/watch to track only 5.15.x releases.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 26 Nov 2021 00:20:58 +0300
qtwebengine-opensource-src (5.15.7+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Drop patches, included in the new release:
- sandbox-fstatat-syscalls.patch
- glibc-2.34-clone3.patch
- half of sandbox-time64-syscalls.patch
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 23 Nov 2021 13:38:46 +0300
qtwebengine-opensource-src (5.15.6+dfsg-2) unstable; urgency=medium
* Replace mipsel-linux-5.patch with new mipsel-syscall-ranges.patch to
fix mips* build with new kernel (closes: #995187). Thanks YunQiang Su!
* Update debian/libqt5webenginecore5.symbols for armhf.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 29 Sep 2021 20:12:07 +0300
qtwebengine-opensource-src (5.15.6+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update SUBMODULE_COMMIT for the new release.
* Update debian/libqt5webenginecore5.symbols from the current build log.
* Bump Standards-Version to 4.6.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 20 Sep 2021 14:10:57 +0300
qtwebengine-opensource-src (5.15.5+dfsg-2) unstable; urgency=medium
* Add a patch to fix build with glibc ≥ 2.34 where SIGSTKSZ is no longer
a compile time constant.
* Backport Chromium patch to make Linux sandbox return ENOSYS for clone3
syscall (LP: #1939993).
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 17 Aug 2021 12:15:30 +0300
qtwebengine-opensource-src (5.15.5+dfsg-1) experimental; urgency=medium
* New upstream release.
- Includes a fix for building with GCC 11 (closes: #984315).
* Update get-orig-source target for the new release.
* Drop two patches that are included in the new release:
- fix-locales-normalization.patch
- CVE-2021-21193.patch
* Bump ABI version to qtwebengine-abi-5-15-5.
* Remove polymer_bundled.min.js from Files-Excluded (LP: #1926089).
- There is non-minified polymer_bundled.js in the source.
* Forward DEB_BUILD_OPTIONS=parallel=N setting to ninja (closes: #986684).
* Make sure $NINJAJOBS is also used when bootstrapping gn.
* Add libxkbfile-dev build-dependency (required since 5.15.5).
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 19 Jun 2021 11:58:16 +0300
qtwebengine-opensource-src (5.15.3+dfsg-5) experimental; urgency=medium
* Add support for mips64el architecture:
- Make mipsel-no-dav1d.patch apply to mips64el too.
- Add a patch from Ma Aiguo to make crashpad build on mips64el.
- Backport upstream patch to fix bad define in linux_syscall_support.h.
- Add mips64el to supported architectures in debian/control.
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 06 Apr 2021 13:47:37 +0300
qtwebengine-opensource-src (5.15.3+dfsg-4) experimental; urgency=medium
* Disable jumbo builds to reduce memory consumption.
* Add a patch to further reduce memory consumption on mipsel.
* Remove non-working and/or obsolete code from debian/rules.
* For Ubuntu, build with -j2 on amd64 like on arm64.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 01 Apr 2021 16:02:12 +0300
qtwebengine-opensource-src (5.15.3+dfsg-3) experimental; urgency=medium
* Add a patch to make breakpad use system getcontext instead of its own,
to fix build on mipsel.
* Make Chromium sandbox code compatible with glibc 2.33:
- Extend sandbox-time64-syscalls.patch to handle statx and time64
(patch by Fabian Vogt from openSUSE).
- Add new patch sandbox-fstatat-syscalls.patch to handle newfstatat
and fstatat64 syscalls (by Kevin Kofler from Fedora).
* Update symbols files from buildds’ and the current build logs.
* Use $NINJAJOBS instead of $NINJAFLAGS for passing the -j flag.
* Clean up unused variables in debian/rules.
* Actually add CVE-2021-21193.patch to debian/patches/series.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 22 Mar 2021 21:29:23 +0300
qtwebengine-opensource-src (5.15.3+dfsg-2) experimental; urgency=medium
* Fix the command to change CMake dependencies versions.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 16 Mar 2021 12:20:42 +0300
qtwebengine-opensource-src (5.15.3+dfsg-1) experimental; urgency=medium
* New upstream release.
* Add get-orig-source target (as upstream no longer publishes tarballs).
* Update Files-Excluded and touch_files for the new release.
* Refresh and rebase patches for the new release.
* Add new overrides/ignores to debian/scripts/update-copyright.
* Update debian/copyright using the script and manually.
* Bump ABI version to qtwebengine-abi-5-15-3.
* Build-depend on nodejs, required by Chromium 87.
* Stop using closure-compiler, Debian has an ancient version that doesn't
support template literals.
* Remove yasm build-dependency, Chromium no longer uses it.
- Also remove run-unbundling-script.patch which was used to unbundle it.
* Remove a non-DFSG benchmark file (jsmin.py) from build inputs.
* Copy system d3.min.js and pako.min.js to replace the excluded files.
* Stop excluding jszip.min.js, add its source code to missing-sources.
* Add a patch to use python2 instead of unversioned python.
* Build-depend on node-yargs, required by generate_html_entrypoint.js.
* Do not exclude some parts of node_modules that are used during build.
* Build-depend on rollup and node-rollup-plugins-terser.
* Run syncqt.pl before build, to get the header files generated.
* Backport upstream patch to fix normalization of app locales.
* Update mocha in missing-sources to the actually used version.
* Update symbols files from the current build log.
* Fix/override some new Lintian source-is-missing errors.
* Do not require matching versions of Qt dependencies in CMake files.
* Do not hardcode x86_64-linux-gnu in lintian-overrides.
* Backport fix for CVE-2021-21193 from upstream Chromium.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 15 Mar 2021 21:45:48 +0300
qtwebengine-opensource-src (5.15.2+dfsg-3) unstable; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Bump Standards-Version to 4.5.1, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 11 Dec 2020 11:32:35 +0300
qtwebengine-opensource-src (5.15.2+dfsg-2) experimental; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 26 Nov 2020 20:27:35 +0300
qtwebengine-opensource-src (5.15.2+dfsg-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Bump Qt build-dependencies to 5.15.2.
* Bump ABI version to qtwebengine-abi-5-15-2.
* Drop patches that are included in the new release:
- webrtc-crash.patch
- compile-pdf-examples.patch
* Refresh and rebase other patches.
* Stop adding -Wl,--as-needed to LDFLAGS, it is default in Bullseye.
* Update Files-Excluded and touch_files for upstream path changes.
* Build-depend only on the needed documentation tools, not on the
large qttools5-dev-tools package.
* Add more license variations to debian/scripts/update-copyright.
* Update debian/copyright using the script and manually.
* Update symbols files from the current build log.
[ Alexander Volkov ]
* Build-depend on libxcb-dri3-dev, which is required by chromium.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 25 Nov 2020 20:23:28 +0300
qtwebengine-opensource-src (5.15.1+dfsg-5) unstable; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 28 Oct 2020 21:54:24 +0300
qtwebengine-opensource-src (5.15.1+dfsg-4) experimental; urgency=medium
[ Dmitry Shachnev ]
* Backport upstream fix for nullptr dereference in RTCPeerConnectionHandler
(see QTBUG-86752).
* Update symbols files from buildds’ logs.
[ Alexander Volkov ]
* Add a patch to compile pdf examples.
* Also add a build dependency on libqt5svg5-dev that they require.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 06 Oct 2020 20:04:40 +0300
qtwebengine-opensource-src (5.15.1+dfsg-3) experimental; urgency=medium
* Add a patch to reduce code range size on mipsel from 2048 to 1024 MB.
- Remove old mipsel-no-v8-embedded-builtins.patch, no longer needed.
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 28 Sep 2020 14:51:31 +0300
qtwebengine-opensource-src (5.15.1+dfsg-2) experimental; urgency=medium
* Build with system opus/ffmpeg again.
- Bump opus required version to 1.3.1.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 26 Sep 2020 20:53:33 +0300
qtwebengine-opensource-src (5.15.1+dfsg-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.15.1.
* Drop patches, included in the new release:
- icu-67.patch
- openh264-picasm.patch
- gcc-10.patch
* Also drop bison-3.7.patch, fixed differently upstream.
* Rebase other patches.
* Comment out mipsel-no-v8-embedded-builtins.patch. V8 no longer supports
build without embedded builtins, so we need to find another way to fix
the OOM error.
* Update to debhelper compat level 13.
- Build-depend on debhelper-compat (= 13), remove debian/compat file.
- Remove override_dh_install-arch target, no longer needed.
- Adapt to debhelper exporting its own $HOME for tests.
- Use ${DEB_HOST_MULTIARCH} substitution in the install files.
* Update Files-Excluded and touch_files for the new release.
* Bump ABI version to qtwebengine-abi-5-15-1.
* Add new packages for the Qt PDF libraries, QML module, examples,
documentation and development files.
* Update symbols files from the current build log.
* Temporarily build without system opus/ffmpeg until opus is updated to
version 1.3.1 (see #934809).
* Update debian/source/lintian-overrides for path changes.
* Add a script to update debian/copyright file based on upstream
qt_attribution.json and README.chromium files.
* Update debian/copyright manually and using the new script.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 22 Sep 2020 21:16:21 +0300
qtwebengine-opensource-src (5.14.2+dfsg1-5) unstable; urgency=medium
* Add a patch to fix seccomp-bpf failure in clock_gettime64 and
clock_nanosleep_time64 syscalls on 32-bit platforms (closes: #967011).
* Update symbols files from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 02 Sep 2020 16:25:33 +0300
qtwebengine-opensource-src (5.14.2+dfsg1-4) unstable; urgency=medium
* Add a patch to fix build errors with GCC 10 (closes: #957734).
* Add a patch to fix header file name with Bison 3.7.
* Update debian/libqt5webenginecore5.symbols for GCC 10.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 28 Jul 2020 22:15:39 +0300
qtwebengine-opensource-src (5.14.2+dfsg1-3) unstable; urgency=medium
* Add a patch to build openh264 with -DX86_32_PICASM on i386, to fix errors
from new linker (closes: #965328).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 20 Jul 2020 18:08:34 +0300
qtwebengine-opensource-src (5.14.2+dfsg1-2) unstable; urgency=medium
[ Dmitry Shachnev ]
* Add a patch to fix V8 build with ICU 67.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 24 Jun 2020 18:49:13 -0300
qtwebengine-opensource-src (5.14.2+dfsg1-1) unstable; urgency=medium
* Re-add polymer/v1_0 to the tarball, to unbreak PDF viewer.
* Build with system ICU again.
* Remove some disappeared symbols.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 24 Jun 2020 13:17:22 +0300
qtwebengine-opensource-src (5.14.2+dfsg-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.14.2.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Drop system-ninja.patch, similar fix was applied upstream.
* Update debian/libqt5webenginecore5.symbols from the current build log.
* Bump ABI version to qtwebengine-abi-5-14-2.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 05 May 2020 20:41:23 +0300
qtwebengine-opensource-src (5.14.1+dfsg-3) experimental; urgency=medium
* Disable v8 embedded builtins on mipsel, to fix OOM error.
* Add -latomic to dependencies of base component on mipsel.
* Update symbols files from buildds’ and the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 20 Mar 2020 11:08:47 +0300
qtwebengine-opensource-src (5.14.1+dfsg-2) experimental; urgency=medium
* Include asm/ptrace.h instead of asm/ptrace-abi.h on mipsel.
* Disable dav1d support on mipsel.
* Update symbols files from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 17 Mar 2020 23:24:35 +0300
qtwebengine-opensource-src (5.14.1+dfsg-1) experimental; urgency=medium
* New upstream release.
* Remove/update some obsolete paths from Files-Excluded.
- Also update touch_files in debian/rules in a similar way.
* Drop patches:
- CVE-2019-5870.patch (applied upstream)
- CVE-2019-13720.patch (applied upstream)
- icu-65.patch (applied upstream)
- pulseaudio-13.patch (applied upstream)
- restore-jstemplate.patch (no longer needed)
* Also drop no-icudtl-dat.patch. Starting with commit 395e61ff2e51dc7c
Qt WebEngine uses the common resources location for icudtl.dat file.
That location should exist, and the warnings should be no longer printed,
so no need to silence them.
* Rebase and refresh other patches.
* Bump Qt build-dependencies to 5.14.1.
* Do not treat ninja 1.10 as too old.
* Temporarily build with bundled ICU. Upstream now requires ICU 64, but
libqt5core5a is built against ICU 63.
- Install icudtl.dat in libqt5webenginecore5.
* Pass QMAKE_PYTHON2=python2 to qmake.
* Update symbols files from the current build log.
* Bump ABI version to qtwebengine-abi-5-14-1.
* Exclude more non-free files.
- Exclude the whole devtools-node-modules directory, it does not seem to
be used.
* Update Lintian overrides files.
* Remove no longer existing paths from debian/copyright.
* Remove debian/missing-sources/marked-v0.3.6.tar.gz. Upstream now contains
non-minified version (see QTBUG-69273).
* Fix license-file-listed-in-debian-copyright Lintian warnings.
* Bump Standards-Version to 4.5.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 09 Mar 2020 11:02:55 +0300
qtwebengine-opensource-src (5.12.5+dfsg-7) unstable; urgency=medium
[ Dmitry Shachnev ]
* Limit Ubuntu arm64 builds to -j2.
* Update debian/libqt5webenginecore5.symbols (closes: #951905).
[ Gianfranco Costamagna ]
* Depend on python2 instead of python, also tweak the patch to change the
calls to python binary.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 24 Feb 2020 18:10:27 +0300
qtwebengine-opensource-src (5.12.5+dfsg-6) unstable; urgency=medium
* Remove one i386 symbol that is not present in build with system libvpx.
* Make libgl-dev build-dependency versioned, the virtual package provided
by older mesa is no longer enough and causes build failure on mipsel.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 21 Dec 2019 18:52:30 +0300
qtwebengine-opensource-src (5.12.5+dfsg-5) unstable; urgency=medium
* Build-depend on libx11-xcb-dev and libxdamage-dev, to fix build with
the latest mesa and libglvnd.
* Build with system libvpx again.
* Stop build-depending on transitional packages from mesa.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 20 Dec 2019 22:23:56 +0300
qtwebengine-opensource-src (5.12.5+dfsg-4) unstable; urgency=medium
[ Alexander Volkov ]
* Do not build the documentation packages when nodoc profile is enabled.
[ Dmitry Shachnev ]
* Backport upstream patches to fix CVE-2019-13720 and CVE-2019-5870.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Use ui/webui/resources/js/jstemplate_compiled.js provided by upstream
instead of the empty file (closes: #882805).
* Backport upstream patch to fix build with ICU 65.1.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 19 Dec 2019 12:42:13 +0300
qtwebengine-opensource-src (5.12.5+dfsg-3) unstable; urgency=medium
* Bump Standards-Version to 4.4.1, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 21 Oct 2019 18:12:06 +0300
qtwebengine-opensource-src (5.12.5+dfsg-2) experimental; urgency=medium
* Add a patch to fix mipsel build with Linux ≥ 5.0.
* Update libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 15 Oct 2019 14:31:27 +0300
qtwebengine-opensource-src (5.12.5+dfsg-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.12.5.
* Backport upstream patch to fix build with Pulseaudio 13.
* Update symbols files from the current build log.
* Bump ABI version to qtwebengine-abi-5-12-5.
* Override Lintian warnings about symbols dependencies on -abi- packages.
* Do not hardcode minor version number in the Lintian overrides file.
* Bump Standards-Version to 4.4.0.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 24 Sep 2019 18:44:14 +0300
qtwebengine-opensource-src (5.12.4+dfsg-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Build-depend on binutils ≥ 2.32-8 to fix link failure on amd64.
* Add a virtual ABI package that the private symbols will depend on.
* Add Build-Depends-Package field to all symbols files.
* New upstream release.
* Drop mips-link-atomic.patch, applied upstream.
* Refresh run-unbundling-script.patch.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Bump Qt build-dependencies to 5.12.4.
* Bump Standards-Version to 4.3.0.
[ Scarlett Moore ]
* Update my name/email.
* Update packaging to use doc-base as per policy 9.10.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 29 Jun 2019 20:48:15 +0300
qtwebengine-opensource-src (5.12.3+dfsg-1) experimental; urgency=medium
* New upstream release.
* Link with -latomic on mipsel to fix build failure.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Refresh run-unbundling-script.patch.
* Bump Qt build-dependencies to 5.12.3.
* Update symbols files from the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 01 May 2019 20:31:19 +0300
qtwebengine-opensource-src (5.12.2+dfsg-2) experimental; urgency=medium
* Bump Qt build-dependencies to 5.12.2.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 27 Mar 2019 21:27:39 +0300
qtwebengine-opensource-src (5.12.2+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update Files-Excluded and touch_files for upstream file moves.
* Drop patches, applied upstream:
- disable-last_commit_position.patch
- fix-gcc-8-i386.patch
* Refresh and rebase the remaining patches.
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
* Temporarily build without system VPX. WebRTC requires a newer,
unreleased, version of libvpx.
* Update symbols files from the current build logs.
* Remove ${shlibs:Depends} from libqt5webengine-data.
* Update Lintian overrides, and remove some unused ones.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 26 Mar 2019 22:47:50 +0300
qtwebengine-opensource-src (5.11.3+dfsg-2) unstable; urgency=medium
[ Dmitry Shachnev ]
* Drop libsrtp-dev build-dependency (closes: #910300). The code uses a
private copy of SRTP2 because it needs its private headers.
[ Simon Quigley ]
* Change my email to tsimonq2@debian.org now that I am a Debian Developer.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 26 Dec 2018 16:37:02 -0300
qtwebengine-opensource-src (5.11.3+dfsg-1) experimental; urgency=medium
* New upstream release.
- Security fixes from Chromium up to version 70.0.3538.102, including:
- CVE-2018-16066
- CVE-2018-16067
- CVE-2018-16068
- CVE-2018-16070
- CVE-2018-16071
- CVE-2018-16072
- CVE-2018-16073
- CVE-2018-16074
- CVE-2018-16076
- CVE-2018-16077
- CVE-2018-16083
- CVE-2018-16085
- CVE-2018-17462
- CVE-2018-17466
- CVE-2018-17468
- CVE-2018-17468
- CVE-2018-17469
- CVE-2018-17470
- CVE-2018-17471
- CVE-2018-17473
- CVE-2018-17474
- CVE-2018-17476
- CVE-2018-17478
* Bump Qt build dependencies.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 23 Dec 2018 20:39:47 -0300
qtwebengine-opensource-src (5.11.2+dfsg-2) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 16 Oct 2018 18:52:08 +0300
qtwebengine-opensource-src (5.11.2+dfsg-1) experimental; urgency=medium
[ Lisandro Damián Nicanor Pérez Meyer ]
* Depend upon:
- libicu-dev >= 59~ (Closes: #905596).
- libvpx >= 1.7.0~ (Closes: #905658).
This matches reality and allows easier backporting.
Thanks Andreas Ferber for the bug reports.
* Add ~ to various build dependencies versions in order to let the package be
backported.
[ Dmitry Shachnev ]
* Update libqt5webenginecore5.symbols from buildds’ logs.
* Set QTWEBENGINEPROCESS_PATH when running the tests.
* New upstream release.
* Drop patches, applied upstream:
- system-libvpx.patch
- increase_decoderbuffer_kpaddingsize.patch
* Bump Qt build-dependencies to 5.11.2.
* Update libqt5webenginecore5.symbols from the current build log.
* Bump FFmpeg build-dependencies to >= 7:4.0 (closes: #905595).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 29 Sep 2018 10:54:33 +0300
qtwebengine-opensource-src (5.11.1+dfsg-5) unstable; urgency=medium
* Team upload.
* Add fix-gcc-8-i386.patch to solve an alignment issue on i386.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 27 Jul 2018 10:28:56 -0300
qtwebengine-opensource-src (5.11.1+dfsg-4) unstable; urgency=medium
* Add increase_decoderbuffer_kpaddingsize.patch to fix FTBFS with new FFmpeg
(Closes: #888366). Thanks *a lot* Sebastian Ramacher for the pointer.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 26 Jul 2018 10:41:58 -0300
qtwebengine-opensource-src (5.11.1+dfsg-3) unstable; urgency=medium
[ Dmitry Shachnev ]
* Exclude both non-free rx.lite.min.js and rx.lite.js from the tarball.
[ Simon Quigley ]
* Upload to Sid.
-- Simon Quigley <tsimonq2@ubuntu.com> Wed, 25 Jul 2018 04:53:30 -0500
qtwebengine-opensource-src (5.11.1+dfsg-2) experimental; urgency=medium
[ Dmitry Shachnev ]
* Update symbols files from buildds’ logs.
* Replace no-xterm-build.patch with more generic touch_files approach.
* Do not use rm -rf for removing files.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 12 Jul 2018 17:03:13 +0300
qtwebengine-opensource-src (5.11.1+dfsg-1) experimental; urgency=medium
[ Simon Quigley ]
* New upstream release.
* Update debhelper compat to 11, no changes needed.
* Update build dependencies to 5.11.1.
* Update symbols from amd64 build logs.
* Bump Standards-version to 4.1.5, no changes needed.
[ Dmitry Shachnev ]
* Drop patches, applied in the new release:
- icu60-no-aspirational-scripts.patch
- icu60-uchar.patch
- separate-argv.patch
* Rebase and refresh other patches.
* Drop three paths from Files-Excluded that have been removed upstream.
* Add icu:icuuc to dependencies of jumbo_component("base").
* Update symbols files from the current amd64 build log.
* Fix or override the remaining source-is-missing warnings.
- Add a patch to exclude xterm.{css,js} from the build process.
* Make sure that system libvpx library is used (closes: #903126).
Thanks to Jonas Smedegaard for the patch.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 11 Jul 2018 14:12:09 +0300
qtwebengine-opensource-src (5.10.1+dfsg-4) unstable; urgency=medium
* Backport two upstream patches to fix build with system ICU 60:
- icu60-no-aspirational-scripts.patch to disallow aspirational scripts.
- icu60-uchar.patch to fix build when UChar is signed char16_t.
* Backport upstream patch to fix QtWebEngineProcess resources loading
(separate-argv.patch, see upstream QTBUG-66346).
* Update Vcs fields for migration to salsa.debian.org.
* Update symbols files from buildds’ logs.
* Bump Standards-Version to 4.1.4, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 13 May 2018 11:50:52 +0300
qtwebengine-opensource-src (5.10.1+dfsg-3) unstable; urgency=medium
* Update symbols files with buildds' logs.
* Release to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 07 Apr 2018 20:43:19 -0300
qtwebengine-opensource-src (5.10.1+dfsg-2) experimental; urgency=medium
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 17 Mar 2018 16:07:29 +0300
qtwebengine-opensource-src (5.10.1+dfsg-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Backport upstream patch to fix build with ICU 60.
* Update debian/watch for the new upstream tarball names.
* Remove items from Files-Excluded which are no longer in the tarball.
* Refresh other patches.
* Bump Qt build-dependencies to 5.10.1.
* Update symbols files from the current build log.
* Stop using WEBENGINE_CONFIG, it has been removed in 5.10.
* Remove undefined linux_link_libpci option.
* Remove undefined use_system_yasm option, we unbundle it using the
replace_gn_files.py script anyway.
* Sort Files-Excluded field in debian/copyright.
* Fix or override some Lintian source-is-missing warnings.
[ Alexander Volkov ]
* Drop system-re2.patch and remove re2 changes from linux-pri.patch.
System re2 is auto-detected out of the box.
* Update system-icu-utf.patch to fix linking with icuuc.
* Update system-nspr-prtime.patch.
* Update verbose-gn-bootstrap.patch.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 12 Mar 2018 00:57:13 +0300
qtwebengine-opensource-src (5.9.2+dfsg-3) unstable; urgency=medium
* Backport upstream patch to fix build with ICU 60.
* Forcefully disable make output synchronization introduced in debhelper
11.1.5~alpha1. Ninja is a single process, and with synchronized output
the buildds do not see any activity and think that the build is hung.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 10 Mar 2018 16:01:36 +0300
qtwebengine-opensource-src (5.9.2+dfsg-2) unstable; urgency=medium
* Update for Qt binaries location change in qtbase 5.9.2+dfsg-3.
- Install qwebengine_convert_dict tool into the new location.
- Provide a compatibility symlink for the old location.
- Bump qtbase5-private-dev and qttools5-dev-tools build-dependencies.
* Update libqt5webenginecore5.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 27 Oct 2017 21:39:36 +0300
qtwebengine-opensource-src (5.9.2+dfsg-1) experimental; urgency=medium
* New upstream release.
* Remove upstream applied patch: armhf-options.patch
* Update patch hunks.
* Update copyright for 5.9.2.
* Add new Build-Dependency: qtquickcontrols2-5-dev
* Bump Qt build-dependencies to 5.9.2.
* Update symbols for libqt5webenginecore5 for 5.9.2 for amd64.
* Synchronize missing-sources for 5.9.2.
* Update lintian-overrides for source.
* Update lintian-overrides for libqt5webenginecore5
-- Sandro Knauß <hefee@debian.org> Thu, 19 Oct 2017 14:33:00 +0200
qtwebengine-opensource-src (5.9.1+dfsg-5) unstable; urgency=medium
* Drop add_mips_support.patch. Chromium cannot be built for big endian
anyway, because of skia.
* Limit Architecture field to architectures supported by upstream
(closes: #864323, #864324, #864325, #864326).
* Fix package name in dh_link command (closes: #876860).
* Bump Standards-Version to 4.1.1, stop using deprecated Priority: extra.
* Drop autotools-dev and dh-autoreconf build-dependencies, they are
unnecessary with debhelper 10.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 30 Sep 2017 20:25:06 +0300
qtwebengine-opensource-src (5.9.1+dfsg-4) unstable; urgency=medium
* Disable gold on arm64, to workaround bug #869768.
* Add the needed QML dependencies to qtwebengine5-examples package
(closes: #857859).
* Update debian/libqt5webenginecore5.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 23 Aug 2017 21:29:52 +0300
qtwebengine-opensource-src (5.9.1+dfsg-3) unstable; urgency=medium
* Team upload.
* Release to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 16 Aug 2017 15:27:58 -0300
qtwebengine-opensource-src (5.9.1+dfsg-2) experimental; urgency=medium
* Make qtwebengine5-dev depend on qtpositioning5-dev, as the built CMake
files now include it as dependency.
* Add a patch to print compiler commands when bootstrapping gn. This helps
us discover wrong compiler flags, such as using -mfpu=neon on armhf.
* Add a patch to apply ARM compiler options even on host builds, to make
sure NEON is not used for gn bootstrap.
* Update symbols files from buildds’ logs.
* Add myself to Uploaders.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 21 Jul 2017 00:05:59 +0300
qtwebengine-opensource-src (5.9.1+dfsg-1) experimental; urgency=medium
[ Sandro Knauß ]
* New upstream release.
* Update copyright file.
* Update patch hunks
* Update sysmbols for amd64.
* Remove version dependency from libre2-dev, because with the new stable all
releases have the new enough version.
* Add version dependency to libav*-dev packages, otherwise it fails on
ubuntu xenial.
* Bump Qt build-dependencies to 5.9.1.
[ Dmitry Shachnev ]
* Change qtlocation5-dev build-dependency to qtpositioning5-dev, this
is what qtwebengine really uses for positioning support.
* Drop unused libqt5xmlpatterns5-dev and qtscript5-private-dev
build-dependencies.
* Update libqt5webenginecore5.symbols from the arm64 build log.
[ Jonathan Riddell ]
* Build-dep on qttools5-dev to build Qt Designer plugin
-- Sandro Knauß <hefee@debian.org> Sun, 16 Jul 2017 19:49:50 +0200
qtwebengine-opensource-src (5.9.0+dfsg-1) experimental; urgency=medium
[ Sandro Knauß ]
* do not use gold linker for small archs
* Bump Standards-Version:
- add Recommends to doc package for dev package
- MPL-1.0 and MPL-2.0 are now in common-licenses
* replace mocha.js with a missing-source tarball
* Check missing-source tarballs (one new occurrence found)
* Update short desciption of packages to make them unique.
* Update lintian-overrides
* Update Excluded-File list
* Clean qmake caches in clean step
* Update copyright file.
* Add patch system-lcms2.patch - use system lcms2
* Add liblcms2-dev to Build-Deps
[ Simon Quigley ]
* New upstream release. (Closes: #865273)
* Fix debian/watch so it isn't hardcoded to 5.7.1.
* Refresh add_mips_support.patch.
* Add patch disabling last_commit_position as our tarballs are not Git
repositories.
[ Jonathan Riddell ]
* New package qtwebengine5-private-dev for private headers used by
QtWebView
[ Alexander Volkov ]
* Add yasm to Build-Depends
* New package qtwebengine5-dev-tools for tools used by examples
[ Dmitry Shachnev ]
* Temporarily drop libv8-dev build-dependency. It is currently unused,
and cannot be used as long as our packaged v8 is ancient (see #785696).
* Update symbols files from the current armhf and i386 build logs.
-- Sandro Knauß <hefee@debian.org> Sat, 01 Jul 2017 21:10:12 +0200
qtwebengine-opensource-src (5.7.1+dfsg-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Build with -g1 instead of -g on 32bit architectures.
(Closes: #863927)
-- Adrian Bunk <bunk@debian.org> Mon, 05 Jun 2017 16:16:54 +0300
qtwebengine-opensource-src (5.7.1+dfsg-6) unstable; urgency=medium
[ Sandro Knauß ]
* Make it buildable on small archs again.
-- Sandro Knauß <hefee@debian.org> Wed, 18 Jan 2017 19:08:01 +0100
qtwebengine-opensource-src (5.7.1+dfsg-5) unstable; urgency=medium
[ Sandro Knauß ]
* Fix "h.264 video does not seem to work" (Closes: #851170)
- Add use_proprietary_codecs to defines, to be able to use ffmpeg and h264
* Add -Wl,-z,now to LFAGS, to make build full hardened
* Add Build-Deps ninja-build
* make build be less ram consuming on armhf and mipsel
-- Sandro Knauß <hefee@debian.org> Wed, 18 Jan 2017 13:04:01 +0100
qtwebengine-opensource-src (5.7.1+dfsg-4) unstable; urgency=medium
[ Sandro Knauß ]
* Move QtWebEngineProcess to libqt5webenginecore5
* Make arch+indep build sucessfull too.
* Mark gold compiler symbols as optional
-- Sandro Knauß <hefee@debian.org> Wed, 11 Jan 2017 13:16:55 +0100
qtwebengine-opensource-src (5.7.1+dfsg-3) unstable; urgency=medium
* Make arch=all build successfully (Closes: #849794)
* Release to unstable, to get bugs fixed.
-- Sandro Knauß <hefee@debian.org> Sun, 08 Jan 2017 20:53:35 +0100
qtwebengine-opensource-src (5.7.1+dfsg-2) experimental; urgency=medium
* Fix "bad VCS links in debian/control" (Closes: #849301)
* Fix "References to QtWebEngineWidgets is missing in dev package" (Closes: #849993)
* Add patch to get mips support.
* Do not build no debug symbols for any arch, because they use too much RAM on
porterboxes.
* Make ld not cache the symbol tables of input files in memory to
avoid memory exhaustion during the linking phase.
* Disable debug symbols build and push this info to gyp.
* Bump symbols from pre 5.7.1 to 5.7.1.
* Add symbols from i386.
-- Sandro Knauß <hefee@debian.org> Wed, 04 Jan 2017 15:36:09 +0100
qtwebengine-opensource-src (5.7.1+dfsg-1) unstable; urgency=medium
[ Sandro Knauß ]
* New upstream release.
* Release to unstable, because all other Qt modules are now in unstable.
* Change depends of qtwebengine5-dev to correct name of
libqtwebchannel2-dev
* Add patch to use current system re2 package.
* Remove minified javascript files and replace them with self constucted
files.
* Update source/linitian-overrides
* Update copyright file.
-- Sandro Knauß <hefee@debian.org> Sat, 24 Dec 2016 03:15:08 +0100
qtwebengine-opensource-src (5.7.1~20161021+dfsg-1) experimental; urgency=medium
* Initial package (Closes: #832420)
* Team upload.
-- Sandro Knauß <hefee@debian.org> Mon, 31 Oct 2016 16:35:20 +0100
|