File: changelog

package info (click to toggle)
qtwebkit-opensource-src 5.212.0~alpha4-30
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 126,360 kB
  • sloc: cpp: 1,399,204; javascript: 111,961; ansic: 29,742; perl: 19,510; python: 13,364; ruby: 10,299; xml: 9,342; asm: 5,078; yacc: 2,166; lex: 906; sh: 417; makefile: 34
file content (1084 lines) | stat: -rw-r--r-- 41,221 bytes parent folder | download
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
qtwebkit-opensource-src (5.212.0~alpha4-30) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 13 Jan 2023 12:01:27 +0400

qtwebkit-opensource-src (5.212.0~alpha4-29) experimental; urgency=medium

  * Build against Qt 5.15.8.
  * Bump Standards-Version to 4.6.2, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 06 Jan 2023 16:13:11 +0400

qtwebkit-opensource-src (5.212.0~alpha4-28) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 17 Dec 2022 18:20:04 +0300

qtwebkit-opensource-src (5.212.0~alpha4-27) experimental; urgency=medium

  * Build against Qt 5.15.7.
  * Update debian/libqt5webkit5.symbols for alpha and x32.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 04 Dec 2022 21:15:41 +0300

qtwebkit-opensource-src (5.212.0~alpha4-26) unstable; urgency=medium

  [ Bo YU ]
  * Fix build on riscv64 (closes: #1021548).

  [ Dmitry Shachnev ]
  * Update debian/libqt5webkit5.symbols for hurd-i386 and sh4.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 01 Nov 2022 21:32:28 +0300

qtwebkit-opensource-src (5.212.0~alpha4-25) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 29 Sep 2022 11:55:50 +0300

qtwebkit-opensource-src (5.212.0~alpha4-24) experimental; urgency=medium

  * Build against Qt 5.15.6.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 13 Sep 2022 13:46:15 +0300

qtwebkit-opensource-src (5.212.0~alpha4-23) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols for riscv64.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 07 Aug 2022 16:17:19 +0300

qtwebkit-opensource-src (5.212.0~alpha4-22) experimental; urgency=medium

  * Build against Qt 5.15.5.
  * Update debian/libqt5webkit5.symbols from hppa and s390x logs.
  * Update debian/source/lintian-overrides for Lintian pointed hints.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 27 Jul 2022 11:52:18 +0300

qtwebkit-opensource-src (5.212.0~alpha4-21) unstable; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 26 Jul 2022 11:39:04 +0300

qtwebkit-opensource-src (5.212.0~alpha4-20) unstable; urgency=medium

  * Update debian/libqt5webkit5.symbols for GCC 12 (closes: #1013027).

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 25 Jul 2022 00:02:49 +0300

qtwebkit-opensource-src (5.212.0~alpha4-19) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 13 Jun 2022 21:36:12 +0300

qtwebkit-opensource-src (5.212.0~alpha4-18) experimental; urgency=medium

  * Build against Qt 5.15.4.
  * Bump Standards-Version to 4.6.1, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 14 May 2022 13:12:11 +0300

qtwebkit-opensource-src (5.212.0~alpha4-17) experimental; urgency=medium

  * Re-apply change to build with Qt 5.15.3.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 01 May 2022 14:35:33 +0300

qtwebkit-opensource-src (5.212.0~alpha4-16) unstable; urgency=medium

  * Add a patch from Fedora to fix build with ICU 68 (closes: #1010118).
  * Build against Qt 5.15.2 again, for uploading to unstable.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 25 Apr 2022 14:00:32 +0300

qtwebkit-opensource-src (5.212.0~alpha4-15) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Build against Qt 5.15.3.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 06 Mar 2022 22:38:05 +0300

qtwebkit-opensource-src (5.212.0~alpha4-14) unstable; urgency=medium

  * debian/patches/jscore_big_endian.diff: Fix segmentation fault on s390x
    and potentially other 64-bit big endian systems (LP: #1951470).
    Thanks Andreas Krebbel for the patch and Frank Heimes for the initial
    debdiff!
  * Update debian/source/lintian-overrides for Lintian 2.109.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 24 Nov 2021 22:27:08 +0300

qtwebkit-opensource-src (5.212.0~alpha4-13) unstable; urgency=medium

  * Bump Standards-Version to 4.6.0, no changes needed.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 28 Aug 2021 20:44:39 +0300

qtwebkit-opensource-src (5.212.0~alpha4-12) experimental; urgency=medium

  * Add a patch from openSUSE to fix build with GLib ≥ 2.68.
    Thanks to Fabian Vogt!
  * Update debian/libqt5webkit5.symbols for hppa.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 07 Apr 2021 20:31:19 +0300

qtwebkit-opensource-src (5.212.0~alpha4-11) unstable; urgency=medium

  * Remove unused mesa-common-dev build-dependency.
    Thanks to Helmut Grohne for the suggestion!
  * Update Forwarded status of debian/patches/bison_3.7.diff.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 04 Jan 2021 21:09:41 +0300

qtwebkit-opensource-src (5.212.0~alpha4-10) unstable; urgency=medium

  * Bump Standards-Version to 4.5.1, no changes needed.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 11 Dec 2020 11:32:37 +0300

qtwebkit-opensource-src (5.212.0~alpha4-9) experimental; urgency=medium

  * Backport upstream patch to fix build with Python 3.9.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 23 Nov 2020 21:31:53 +0300

qtwebkit-opensource-src (5.212.0~alpha4-8) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols for riscv64.
  * Build against Qt 5.15.2.
  * Fix Lintian globbing-patterns-out-of-order warning.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 22 Nov 2020 21:09:50 +0300

qtwebkit-opensource-src (5.212.0~alpha4-7) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 28 Oct 2020 21:52:59 +0300

qtwebkit-opensource-src (5.212.0~alpha4-6) experimental; urgency=medium

  * Update to debhelper compat level 13.
    - Drop dh_missing override, --fail-missing is now default behavior.
    - Use ${DEB_HOST_MULTIARCH} substitution.
  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Add upstream patch to not attempt rendering PDF with Qt image plugin.
  * Build against Qt 5.15.1.
  * Add Qt_5.15 tag to debian/libqt5webkit5.symbols.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 14 Sep 2020 10:21:11 +0300

qtwebkit-opensource-src (5.212.0~alpha4-5) unstable; urgency=medium

  * Add a patch to fix build with Bison 3.7 (closes: #966849).
  * Update debian/libqt5webkit5.symbols for GCC 10.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 04 Aug 2020 16:04:24 +0300

qtwebkit-opensource-src (5.212.0~alpha4-4) unstable; urgency=medium

  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 24 Jun 2020 12:10:47 +0300

qtwebkit-opensource-src (5.212.0~alpha4-3) experimental; urgency=medium

  * Bump Qt build-dependencies to 5.14.2.
  * Add support for riscv64, based on a patch by William Grant.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 28 Apr 2020 23:22:16 +0300

qtwebkit-opensource-src (5.212.0~alpha4-2) experimental; urgency=medium

  * Merge 5.212.0~alpha4-1 unstable upload into experimental branch.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 13 Mar 2020 13:25:50 +0300

qtwebkit-opensource-src (5.212.0~alpha4-1) unstable; urgency=medium

  * New upstream alpha release.
  * Drop patches, included in the new release:
    - python3_builtins.diff
    - python3.diff
    - icu_65.1.diff
  * Refresh debian/patches/reduce_exports.diff.
  * Drop files renaming hack from debian/rules, no longer needed.
  * Add one new symbol to debian/libqt5webkit5.symbols.
  * Fix Lintian warnings about debian/copyright.
  * Switch to debhelper-compat as a build-dependency.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 12 Mar 2020 16:11:29 +0300

qtwebkit-opensource-src (5.212.0~alpha3-8) experimental; urgency=medium

  * Build against Qt 5.14.1.
  * Use debhelper-compat instead of debian/compat.
  * Add Qt_5.13 and Qt_5.14 tags to debian/libqt5webkit5.symbols.
  * debian/rules: Update issues links to the new GitHub project.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 27 Feb 2020 13:09:30 +0300

qtwebkit-opensource-src (5.212.0~alpha3-7) unstable; urgency=medium

  * Do not use Python 2 even if it is present (closes: #949488).
  * Backport upstream patch to fix build with ICU 65.1.
  * Bump Standards-Version to 4.5.0, no changes needed.
  * Update debian/libqt5webkit5.symbols from buildds’ logs (hppa).

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 17 Feb 2020 21:55:34 +0300

qtwebkit-opensource-src (5.212.0~alpha3-6) unstable; urgency=medium

  * Port the build tools to Python 3 (closes: #938323).
  * Update debian/libqt5webkit5.symbols from buildds’ logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 14 Jan 2020 18:04:18 +0300

qtwebkit-opensource-src (5.212.0~alpha3-5) unstable; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Bump Standards-Version to 4.4.1, no changes needed.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 21 Oct 2019 10:56:29 +0300

qtwebkit-opensource-src (5.212.0~alpha3-4) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Bump Qt build-dependencies to 5.12.5.
  * Add Build-Depends-Package field to debian/libqt5webkit5.symbols.
  * Bump Standards-Version to 4.4.0, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 22 Sep 2019 18:24:25 +0300

qtwebkit-opensource-src (5.212.0~alpha3-3) experimental; urgency=medium

  * Bump qtbase build-dependency to 5.12.4+dfsg-3, to make sure we build
    with NPAPI plugins support (the needed CMake file was added there).
  * Install QtWebPluginProcess executable in libqt5webkit5 package.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 05 Jul 2019 22:48:44 +0300

qtwebkit-opensource-src (5.212.0~alpha3-2) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 04 Jul 2019 14:32:17 +0300

qtwebkit-opensource-src (5.212.0~alpha3-1) experimental; urgency=medium

  * New upstream alpha release.
  * Update Homepage and debian/watch for GitHub repository rename
    (annulen/webkit → qtwebkit/qtwebkit).
  * Drop all patches except reduce_exports.diff and path_max.diff,
    all have been applied in the new release.
  * Refresh debian/patches/reduce_exports.diff.
  * Bump Qt build-dependencies to 5.12.4.
  * Stop running pngcrush during build, the broken files were fixed
    upstream.
  * Update debian/libqt5webkit5.install to match upstream process name
    change (QtWebDatabaseProcess → QtWebStorageProcess).
  * Add private .pri files to debian/not-installed.
  * Update debian/libqt5webkit5.symbols from the current build log.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 30 Jun 2019 15:57:32 +0300

qtwebkit-opensource-src (5.212.0~alpha2-23) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Bump Qt build-dependencies to 5.12.3.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 29 Apr 2019 11:30:50 +0300

qtwebkit-opensource-src (5.212.0~alpha2-22) experimental; urgency=medium

  * Bump Qt build-dependencies to 5.12.2.
  * Use -g1 instead of -g on all architectures.
  * Update symbols files from buildds’ logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 26 Mar 2019 13:38:39 +0300

qtwebkit-opensource-src (5.212.0~alpha2-21) unstable; urgency=medium

  * Add fastcall attribute to JSImageConstructor::construct method.
    This fixes crash on i386 (closes: #909366, #924402). Thanks Bernhard
    Übelacker for the patch!
  * Remove -fpermissive from build flags. It was wrong and not needed
    with the applied patch.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 22 Mar 2019 11:42:38 +0300

qtwebkit-opensource-src (5.212.0~alpha2-20) unstable; urgency=medium

  * Backport two upstream commits to fix page width in plain text messages
    in Trojitá (fix_trojita_plaintext.diff; closes: #919522).
  * Update to debhelper compat level 12.
  * Use the new cmake+ninja buildsystem.
  * Drop the documentation packages. They cannot be built properly with
    qdoc 5.11. See https://github.com/annulen/webkit/issues/793.
  * Update symbols files from buildds’ logs.
  * Fix libpng warning by running pngcrush during build.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 19 Feb 2019 23:25:35 +0300

qtwebkit-opensource-src (5.212.0~alpha2-19) unstable; urgency=medium

  [ Helmut Grohne ]
  * Fix FTCBFS: Annotate interpreter dependencies with :native. (Closes:
    #916788)

  [ Simon Quigley ]
  * Change my email to tsimonq2@debian.org now that I am a Debian Developer.
  * Bump Standards-version to 4.3.0, no changes needed.

  [ 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:31:35 -0300

qtwebkit-opensource-src (5.212.0~alpha2-18) experimental; urgency=medium

  [ Dmitry Shachnev ]
  * Backport upstream patch to enable doxygen tags file generation
    (LP: #1797040).

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Bump Qt build dependencies to ensure it builds against the right versions.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sat, 08 Dec 2018 12:36:46 -0300

qtwebkit-opensource-src (5.212.0~alpha2-17) unstable; urgency=medium

  * Update symbols files from buildds’ logs.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 16 Oct 2018 17:48:46 +0300

qtwebkit-opensource-src (5.212.0~alpha2-16) experimental; urgency=medium

  * Update debian/libqt5webkit5.symbols from buildds’ logs.
  * Build with -Wno-class-memaccess to avoid tons of warnings about
    memset/memcpy.
  * Bump Qt build-dependencies to 5.11.2.
  * Bump Standards-Version to 4.2.1, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 24 Sep 2018 21:24:52 +0300

qtwebkit-opensource-src (5.212.0~alpha2-15) unstable; urgency=medium

  * Build with -fpermissive to (hopefully) solve the i386 FTBFS.
  * Update symbols from build logs.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Thu, 26 Jul 2018 19:14:49 -0500

qtwebkit-opensource-src (5.212.0~alpha2-14) unstable; urgency=medium

  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 25 Jul 2018 23:33:17 -0300

qtwebkit-opensource-src (5.212.0~alpha2-13) unstable; urgency=medium

  * Upload to Sid.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Wed, 25 Jul 2018 04:49:30 -0500

qtwebkit-opensource-src (5.212.0~alpha2-12) experimental; urgency=medium

  * Remove the dbgsym migration section of debian/rules; it isn't needed
    anymore.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Sat, 23 Jun 2018 20:30:20 -0500

qtwebkit-opensource-src (5.212.0~alpha2-11) experimental; urgency=medium

  * Bump build dependencies to 5.11.1.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Tue, 19 Jun 2018 20:20:58 -0500

qtwebkit-opensource-src (5.212.0~alpha2-10) experimental; urgency=medium

  * Add my name to Uploaders.
  * Bump build dependencies to 5.11.0.
  * Fix insecure-copyright-format-uri.
  * Bump Standards-version to 4.1.4, no changes needed.
  * Bump debhelper compat to 11, no changes needed.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Mon, 18 Jun 2018 23:26:42 -0400

qtwebkit-opensource-src (5.212.0~alpha2-9) unstable; urgency=medium

  * Release to unstable.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sat, 07 Apr 2018 17:23:09 -0300

qtwebkit-opensource-src (5.212.0~alpha2-8) experimental; urgency=medium

  * Build with system WOFF2 library, add a patch for that.
  * Build against Qt 5.10.1 in experimental.
  * Add support for the nodoc build profile.
  * Update Vcs fields for migration to salsa.debian.org.
  * Add a patch to fix include path in pkg-config files (closes: #890413).
  * Update debian/libqt5webkit5.symbols from the current build log.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 24 Feb 2018 15:21:11 +0300

qtwebkit-opensource-src (5.212.0~alpha2-7) unstable; urgency=medium

  * Build with -O1 instead of -O2 on sh3/sh4 (closes: #887462).
  * Update symbols files with buildds’ and sh4 logs (closes: #887463).
  * Fix the rules syntax to make sure we build with -g1 on mips/mipsel.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 18 Jan 2018 11:33:51 +0300

qtwebkit-opensource-src (5.212.0~alpha2-6) unstable; urgency=medium

  [ Dmitry Shachnev ]
  * Fix build on x32 architecture (closes: #881055):
    - Make sure JIT is not enabled on x32.
    - Backport upstream patch to use JSVALUE32_64 on x32.
    - Use gold linker on x32, to avoid undefined reference error.
  * Backport upstream changes to fix build on Alpha (closes: #880640).
  * Backport upstream changes to add descriptions to pkg-config files
    (closes: #884035).
  * Bump Standards-Version to 4.1.3, no changes needed.

  [ Pino Toscano ]
  * Fix build on hurd-i386:
    - workaround a PATH_MAX usage; patch path_max.diff
    - update symbols file

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 09 Jan 2018 18:38:23 +0300

qtwebkit-opensource-src (5.212.0~alpha2-5) unstable; urgency=medium

  * Add a patch from Fedora to fix nullptr dereference in selectedHtml()
    (fix_selectedHtml_segfault.diff, closes: #880064).
  * Update the symbols file from buildds’ logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 30 Oct 2017 20:08:25 +0300

qtwebkit-opensource-src (5.212.0~alpha2-4) unstable; urgency=medium

  * Fix qtbase build-dependencies after wrong bump.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 27 Oct 2017 09:55:23 +0300

qtwebkit-opensource-src (5.212.0~alpha2-3) unstable; urgency=medium

  * Update symbols files from buildds’ logs.
  * Backport upstream patch to fix WTF::StringImpl::copyChars segfault
    (closes: #876999).
  * Bump Standards-Version to 4.1.1, no changes needed.
  * Update Homepage to point to GitHub.
  * Bump Qt build-dependencies to 5.9.2.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 27 Oct 2017 00:26:10 +0300

qtwebkit-opensource-src (5.212.0~alpha2-2) experimental; urgency=medium

  * Add -DNDEBUG to CPPFLAGS to disable debug output.
  * Use -g1 on less powerful architectures instead of no debug at all.
  * Disable JIT on sh4, it is broken and support was removed upstream.
  * Backport upstream patch to add libatomic detection, fixes armel build.
  * Build with -mfp32 on mips/mipsel, as LLInt uses odd float registers.
  * Update symbols files from buildds’ and local build logs.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 16 Sep 2017 22:32:50 +0300

qtwebkit-opensource-src (5.212.0~alpha2-1) experimental; urgency=medium

  * New upstream alpha release (closes: #862452).
  * Update debian/watch to track release tarballs on GitHub.
  * Stop repacking the upstream tarball. Two of three previously excluded
    files no longer exist, and the third one has changed license to Expat.
  * Drop all patches, they no longer apply to the new codebase.
  * Add build-dependencies: cmake, libhyphen-dev, libqt5sensors5-dev,
    libqt5webchannel5-dev and qtpositioning5-dev.
  * Drop unused build-dependency: libleveldb-dev.
  * Migrate to automatic dbgsym packages.
  * Update install files for the new release.
  * Update debian/rules to use CMake build system with ninja backend.
  * Update to debhelper compat level 10.
  * Rewrite debian/copyright. The new file is based on decopy output, with
    lots of manual fixes.
  * Drop unused Lintian overrides.
  * Add a patch to hide WebCore and JSCore symbols from libQt5WebKit.so.5.
  * Update libqt5webkit5.symbols from the current ppc64el build log.
  * Add a patch to properly detect whether OpenGL ES 2 should be used.
  * Disable the use of gold linker (causes problems at least on i386).
  * Remove i386 from gstabs_architectures, add ppc64el.
  * Run upstream tests during build.
  * Bump Standards-Version to 4.1.0, remove Priority: extra lines.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 28 Aug 2017 15:02:13 +0300

qtwebkit-opensource-src (5.9.1+dfsg-5) unstable; urgency=medium

  * Update symbols files from buildds’ logs to fix build on armhf.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 22 Aug 2017 14:35:55 +0300

qtwebkit-opensource-src (5.9.1+dfsg-4) unstable; urgency=medium

  * Update symbols files from buildds’ logs.
  * Build with -Wno-expansion-to-defined to avoid 500MB build logs.
  * Build-depend on qtbase5-dev ≥ 5.9.1+dfsg-9~. We need a qtbase built
    with bfd linker on armel/armhf, otherwise the build fails there.
    Together with the symbols update, this closes: #872542.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 21 Aug 2017 00:49:10 +0300

qtwebkit-opensource-src (5.9.1+dfsg-3) unstable; urgency=medium

  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Thu, 17 Aug 2017 00:32:18 -0300

qtwebkit-opensource-src (5.9.1+dfsg-2) unstable; urgency=medium

  * Release to unstable.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Tue, 15 Aug 2017 22:15:15 -0300

qtwebkit-opensource-src (5.9.1+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Update debian/watch to track official releases again.
  * Manually update symbols files from buildds’ logs.
  * Bump Qt build-dependencies to 5.9.1.
  * Drop qtxmlpatterns and qtscript build-dependencies, they have not been
    used for a long time.
  * Drop obsolete Breaks/Replaces on pre-Jessie Qt packages.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 05 Jul 2017 21:19:54 +0300

qtwebkit-opensource-src (5.9.0+dfsg-1) experimental; urgency=medium

  * Team upload.

  [ Simon Quigley ]
  * New upstream release.

  [ Dmitry Shachnev ]
  * Update debian/watch to find the 5.9.0 release correctly.

 -- Simon Quigley <tsimonq2@ubuntu.com>  Wed, 07 Jun 2017 10:59:02 -0500

qtwebkit-opensource-src (5.7.1+dfsg-1) unstable; urgency=medium

  * New upstream release.
    - Bump only the necessary Qt build dependencies.
  * Update symbols files with buildds' logs.
  * Re mark 5.7.1~* symbols to 5.7.1.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Thu, 15 Dec 2016 17:22:14 -0300

qtwebkit-opensource-src (5.7.1~20161021+dfsg-2) unstable; urgency=medium

  * Update symbols files from buildds’ logs.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 01 Nov 2016 15:04:32 +0300

qtwebkit-opensource-src (5.7.1~20161021+dfsg-1) experimental; urgency=medium

  * New upstream snapshot.
  * Merge 5.6.1+dfsg-5 upload from unstable.
  * Bump Qt build-dependencies to 5.7.1~20161021.
  * Fix a Lintian warning about space in license name.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 25 Oct 2016 15:44:52 +0300

qtwebkit-opensource-src (5.7.0+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Drop debian/patches/fix_pthread_linking.diff, it was applied upstream
    in 5.6.1 and wrongly rebased in 5.6.1+dfsg-1 upload.
  * Refresh no_gc_sections.diff.
  * Bump Qt build-dependencies to 5.7.0.
  * Update the symbols files from 5.6.1 build logs.
  * Drop the syncqt hack, the new tarballs are generated properly.
  * Add Qt_5.7 version tag to debian/libqt5webkit5.symbols.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 07 Jul 2016 21:37:28 +0300

qtwebkit-opensource-src (5.6.1+dfsg-5) unstable; urgency=medium

  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 10 Aug 2016 22:13:17 -0300

qtwebkit-opensource-src (5.6.1+dfsg-4) unstable; urgency=medium

  * Update symbols files with buildd's logs (Closes: 827783).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Thu, 23 Jun 2016 00:02:14 -0300

qtwebkit-opensource-src (5.6.1+dfsg-3) unstable; urgency=medium

  * Update symbols files with buildds' logs.
  * Upload to unstable.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Mon, 13 Jun 2016 10:12:19 -0300

qtwebkit-opensource-src (5.6.1+dfsg-2) experimental; urgency=medium

  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 12 Jun 2016 20:33:02 -0300

qtwebkit-opensource-src (5.6.1+dfsg-1) experimental; urgency=medium

  * New upstream release.
    - Bump Qt build dependencies.
  * Refresh fix_pthread_linking.diff.
  * Update Standards-Version to 3.9.8, no changes required.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 10 Jun 2016 15:12:20 -0300

qtwebkit-opensource-src (5.6.0+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Make sure the Makefile needed for building docs is generated.
  * Update debian/watch for new tarballs location.
  * Bump Qt build-dependencies to 5.6.0.
  * Do not hardcode version number in debian/rules.
  * Update Lintian overrides for JS files with long lines.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 20 Mar 2016 21:39:26 +0100

qtwebkit-opensource-src (5.6.0~rc+dfsg-2) experimental; urgency=medium

  * Explicitly specify Makefile for building docs.
  * Backport fix_pthread_linking.diff from upstream.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 06 Mar 2016 22:36:47 +0300

qtwebkit-opensource-src (5.6.0~rc+dfsg-1) experimental; urgency=medium

  * New upstream release candidate.
  * Bump Qt build-dependencies to 5.6.0~rc.
  * Add back qtwebkit5-doc package.
  * Use recommended https URIs for Vcs fields.
  * Do not build-depend on qtxmlpatterns private headers.
  * Update symbols files from the current build log.
  * Call syncqt.pl in configure target.
  * Bump Standards-Version to 3.9.7, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 06 Mar 2016 13:12:22 +0300

qtwebkit-opensource-src (5.5.1+dfsg-2) unstable; urgency=medium

  * Upload to unstable.
  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 21 Oct 2015 16:15:58 -0300

qtwebkit-opensource-src (5.5.1+dfsg-1) experimental; urgency=medium

  * New upstream release.
    - Bump Qt build dependencies.
  * Override lintian false positives for javascript files. Long lines do not
    mean minified javascript.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 16 Oct 2015 23:08:49 -0300

qtwebkit-opensource-src (5.5.0+dfsg-2) experimental; urgency=medium

  * Add empty override_dh_auto_test target to make indep builds work.
  * Remove copyright entries for generated files that are not present in the
    tarball.
  * Explicitly specify Makefile to use for installing docs.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 24 Aug 2015 09:49:40 +0300

qtwebkit-opensource-src (5.5.0+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Bump Qt build-dependencies to 5.5.0.
  * Build with GStreamer 1.0 (closes: #762158).
  * Update and simplify symbols file.
  * Refresh no_gc_sections.diff.
  * Minor debian/copyright updates.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 23 Aug 2015 14:33:40 +0300

qtwebkit-opensource-src (5.4.2+dfsg-3) unstable; urgency=medium

  * Update symbols files with buildds' logs.
  * Update symbols files with the current build log and gcc5 (Closes: #791262).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 09 Aug 2015 14:58:14 -0300

qtwebkit-opensource-src (5.4.2+dfsg-2) unstable; urgency=medium

  * Team upload to unstable.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Update symbols files with buildds' logs.

  [ Felix Geyer ]
  * Update symbols files for amd64.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 23 Jun 2015 19:20:46 +0200

qtwebkit-opensource-src (5.4.2+dfsg-1) experimental; urgency=medium

  [ Dmitry Shachnev ]
  * Sort debian/qml-module-qtwebkit.install.
  * Fix some substitutions in debian/libqt5webkit5.symbols.
  * Remove all obsolete sparc-specific symbols (Closes: #782063).

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * New upstream release (Closes: 778359).
    - Bump Qt build dependencies to 5.4.2.
  * Clear up the list in Uploaders removing people who hasn't committed to the
    repo in more than a year. They can re add themselves whenever they want
    (and we really hope to see you back really soon!).
  * Expose HTML documentation (Closes: #751186).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Tue, 02 Jun 2015 23:00:28 -0300

qtwebkit-opensource-src (5.4.1+dfsg-3) experimental; urgency=medium

  * Comment out libleveldb-dev build-dependency for now, it causes
    linking errors on some architectures.
  * Disable leveldb_memenv_path.diff as well.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 02 Mar 2015 17:03:48 +0300

qtwebkit-opensource-src (5.4.1+dfsg-2) experimental; urgency=medium

  * Update leveldb_memenv_path.diff to make it really work.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 02 Mar 2015 11:28:50 +0300

qtwebkit-opensource-src (5.4.1+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Update debian/watch to use https://download.qt.io/.
  * Bump Qt build-dependencies to 5.4.1.
  * Build-depend on libleveldb-dev so that the system leveldb copy
    is used, and not the private one.
    - Add a patch to use Debian path to memenv.h.
  * Refresh patches for the new release.
  * Minor debian/copyright updates.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 01 Mar 2015 19:43:59 +0300

qtwebkit-opensource-src (5.4.0+dfsg-1) experimental; urgency=medium

  [ Dmitry Shachnev ]
  * New upstream release.
  * Bump Qt build-dependencies to 5.4.0.
  * Add qtbase5-doc-html to Build-Depends-Indep to make sure docs
    are properly linked with qtbase.
  * Drop these patches, applied upstream:
    - do_not_use_jit_on_big_endian_machines.patch
    - fix_cloop_on_big_endian_machines.patch
    - fix_crash_when_a_network_request_is_aborted_while_forwarding_data.patch
    - blacklist_libkpartsplugin.patch
  * Bump Standards-Version to 3.9.6, no changes needed.
  * Update symbols files.
  * Add myself to Uploaders.

  [ Harald Sitter ]
  * Disable precompiled headers on amd64, powerpc and s390x.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 20 Dec 2014 19:30:06 +0300

qtwebkit-opensource-src (5.3.2+dfsg-4) unstable; urgency=medium

  [ Dmitry Shachnev ]
  * Backport upstream fix that adds missing checks for HTMLUnknownElement.
    Closes: #781194.

  [ Felix Geyer ]
  * Backport upstream fix that prevents recording visited URLs to its favicon
    database while using private browsing mode.
    Closes: #780748.

 -- Felix Geyer <fgeyer@debian.org>  Wed, 01 Apr 2015 19:44:29 +0200

qtwebkit-opensource-src (5.3.2+dfsg-3) unstable; urgency=medium

  * Backport three patches to fix crashes:
    - do_not_use_jit_on_big_endian_machines.patch
    - fix_cloop_on_big_endian_machines.patch
    - fix_crash_when_a_network_request_is_aborted_while_forwarding_data.patch
  * Backport blacklist_libkpartsplugin.patch to prevent a crash due to a plugin
    built against Qt4 (Closes: #744006).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 17 Oct 2014 02:04:39 -0300

qtwebkit-opensource-src (5.3.2+dfsg-2) unstable; urgency=medium

  * Upload to unstable.
  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Mon, 22 Sep 2014 00:21:56 -0300

qtwebkit-opensource-src (5.3.2+dfsg-1) experimental; urgency=medium

  [ Dmitry Shachnev ]
  * Remove unused code from debian/rules.
  * Update Vcs-Browser field to point to cgit interface.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * New upstream release.
  * Bump Qt build dependencies.
  * Refresh patches.
  * Remove hppa_wtf-dtoa-utils.diff, applied upstream.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 17 Sep 2014 00:23:05 -0300

qtwebkit-opensource-src (5.3.1+dfsg-3) unstable; urgency=medium

  [ Julián Moreno Patiño ]
  * Team upload.

  [ Sune Vuorela ]
  * Link with -rt on hurd and kfreebsd (Closes: #757161).

 -- Julián Moreno Patiño <julian@debian.org>  Mon, 11 Aug 2014 16:01:41 -0500

qtwebkit-opensource-src (5.3.1+dfsg-2) unstable; urgency=medium

  * Add hppa_wtf-dtoa-utils.diff to solve a FTBFS in HPPA (Closes: #753409).
  * Update symbols files with buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 02 Jul 2014 17:36:35 -0300

qtwebkit-opensource-src (5.3.1+dfsg-1) unstable; urgency=medium

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * New upstream release.
  * Bump Qt build dependencies, using qtbase-private-dev >= 5.3.1 to get
    qtbase-abi-5-3-1.
  * Update symbols files with buildds' logs.
  * Switch amd64's debugging symbols to stabs again. I can't build dwarf
    symbols anymore due to lack of RAM, and I doubt our buildds could too.

  [ Alf Gaida ]
  * Fix QML module's install file.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 29 Jun 2014 15:59:39 -0300

qtwebkit-opensource-src (5.3.0+dfsg-2) unstable; urgency=medium

  * Upload to unstable.
  * Update symbols files with buildds' logs.
  * Switch back to build full debugging symbols on amd64.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 06 Jun 2014 00:31:56 -0300

qtwebkit-opensource-src (5.3.0+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Do not build qtwebkit5-doc from this source anymore. It will now be built
    from qttools. In this way we allow qttools to build depend upon
    libqt5webkit5-dev without creating a circular dependency.
  * Do not force dh_builddeb to use xz compression: it's now the default.
  * Bump Qt build dependencies.
  * Remove fix_ftbfs_in_archs_without_jit_support.patch and
    dont_pollute_pri_and_pc_with_private_deps.patch, applied upstream.
  * Refresh no_gc_sections.diff.
  * Install headers in their new multi-arch qualified path. Mark the
    development package as Multi-Arch: same.
  * Take into account the new multi-arch path for removing the private
    headers.
  * Update symbols files with current log. The missing symbols are private
    stuff not present in any static method.
  * Remove the transitional package libqt5webkit5-qmlwebkitplugin.
  * Switch debugging symbols for amd64 to gstabs until we are able to build
    normal symbols again.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 23 May 2014 21:53:24 -0300

qtwebkit-opensource-src (5.2.1+dfsg1-1) unstable; urgency=medium

  * Rename libqt5webkit5-qmlwebkitplugin to qml-module-qtwebkit, adding proper
    Break and Replaces.
  * Add qtdeclarative5-dev as a dependency of libqt5webkit5-dev as it seems
    to be a requirement for stuff building with webkit.
  * Update symbols files with buildd's logs.
  * Remove prune-nonfree from debian/rules and instead use Files-Excluded in
    debian/copyright.
  * Remove dygraph-combined.js from the original tarball: minified javascript
    without source.
  * Increase dfsg revision to 1 due to the new source tarball.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 27 Apr 2014 22:23:04 -0300

qtwebkit-opensource-src (5.2.1+dfsg-5) unstable; urgency=medium

  * Upload to unstable.
  * Update symbols files with buildd's logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Mon, 24 Mar 2014 22:54:34 -0300

qtwebkit-opensource-src (5.2.1+dfsg-4) experimental; urgency=medium

  * Backport dont_pollute_pri_and_pc_with_private_deps.patch to avoid
    propagating wrong linker flags (Closes: #711307).
  * Create reduce_memory_usage.patch forcing ld to not cache the symbol tables
    of input files in memory to avoid memory exhaustion during the linking
    phase.
  * Disable JIT on armel, mips and mipsel.
  * Update symbols files with buildd's logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 16 Mar 2014 11:27:03 -0300

qtwebkit-opensource-src (5.2.1+dfsg-3) experimental; urgency=medium

  * Update symbols files with buildd's and current logs.
  * Only generate debugging symbols on selected archs.
    - Use gstabs on i386, powerpc and s390x.
    - Use full debugging only on amd64.
    - Set libqt5webkit5-dbg's Architecture list accordingly.
    - Remove stabs_format_debug_info.diff, no longer needed.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Tue, 25 Feb 2014 21:51:37 -0300

qtwebkit-opensource-src (5.2.1+dfsg-2) experimental; urgency=medium

  * Backport fix_ftbfs_in_archs_without_jit_support.patch to fix FTBFSs in
    archs without JIT support.
  * Remove code in debian/rules that tried to fix the above unsuccessfully.
  * Also remove disable_jit_llint.diff with the same purpose.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 21 Feb 2014 13:29:40 -0300

qtwebkit-opensource-src (5.2.1+dfsg-1) experimental; urgency=medium

  * New upstream release.
  * Update symbols files with buildd's logs.
  * Bump Qt build dependencies to 5.2.1.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Thu, 20 Feb 2014 20:42:53 -0300

qtwebkit-opensource-src (5.2.0+dfsg1-1) unstable; urgency=medium

  [ Pino Toscano ]
  * rules: fix typo in DEB_CPPFLAGS_MAINT_APPEND, and properly export it.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Repack source tarball to remove minified javascript without source
    Source/WebInspectorUI/Tools/PrettyPrinting/populate/jquery.min.js.
    The file was not shipped by any package (Closes: #737462).
    - Switch to version dfsg1-1.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 02 Feb 2014 23:02:51 -0300

qtwebkit-opensource-src (5.2.0+dfsg-3) unstable; urgency=medium

  [ Dmitry Shachnev ]
  * Add a patch (disable_jit_llint.diff) to disable JIT and llint on ia64, s390
    and sparc.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Upload to unstable.
  * Remove glslang_bison3.diff, applied upstream.
  * Move mkspec files to their new location.
    - B-D on qtbase5-private-dev 5.2.0+dfsg-7 which changed the location.
  * Update Standards-Version to 3.9.5, no changes required.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 31 Jan 2014 21:50:23 -0300

qtwebkit-opensource-src (5.2.0+dfsg-2) experimental; urgency=medium

  * Update symbols files with buildd's logs.
  * Workaround FTBFS in 64 bits big endian archs.
    See https://bugs.webkit.org/show_bug.cgi?id=113638

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 20 Dec 2013 08:57:57 -0300

qtwebkit-opensource-src (5.2.0+dfsg-1) experimental; urgency=low

  * New upstream release.
  * Bump Qt build dependencies.
  * Refresh 05_sparc_unaligned_access.diff, no_gc_sections.diff and hurd.diff.
  * Remove new private stuff we are not shipping.
  * Update symbols files.
  * Remove jsmin.py from the original tarball because it is not
    DFSG-compatible.
    - Create a dfsg version.
    - Add a rule to prune non-free stuff in debian/rules.
    - Mangle the dfsg version in debian/watch.
  * Fix wrong name and path of the GPL-2 license in debian/copyright.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 18 Dec 2013 20:56:37 -0300

qtwebkit-opensource-src (5.1.1-2) unstable; urgency=medium

  [ Dmitry Shachnev ]
  * Backport upstream patch (glslang_bison3.diff) to fix build failure
    with bison 3 (closes: #731979).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 22 Dec 2013 16:35:23 -0300

qtwebkit-opensource-src (5.1.1-1) unstable; urgency=low

  * New upstream release.
  * Tighten Qt 5 build dependencies.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 01 Sep 2013 14:22:55 -0300

qtwebkit-opensource-src (5.1.0-2) unstable; urgency=low

  * Upload to unstable.
  * Make m68k build with -gstabs instead of -g (Closes: #717686).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Mon, 12 Aug 2013 01:00:32 -0300

qtwebkit-opensource-src (5.1.0-1) experimental; urgency=low

  * New upstream release.
  * Fix watch file.
  * Bump Qt build depends to 5.1.0~.
  * Refresh pacthes.
  * Update symbols file.
  * Update install files.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Mon, 15 Jul 2013 12:16:00 -0300

qtwebkit-opensource-src (5.0.2-3) experimental; urgency=low

  * Update symbols file.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 26 Jun 2013 22:10:41 -0300

qtwebkit-opensource-src (5.0.2-2) experimental; urgency=low

  [ Timo Jyrinki ]
  * Drop save_memory.diff, not useful in its current form.
  * Set DEB_HOST_MULTIARCH in rules.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Update symbols files.
  * Build the documentation shipped with this submodule as a build-indep task:
    - Add the necessary indep build dependencies:
      * qttools5-dev-tools to use qhelpgenerator.
      * libqt5sql5-sqlite to generate qch doc.
    - Build and create packages for qch and HTML doc formats.
  * Make the debug package also Multi-Arch: same.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 16 Jun 2013 23:46:10 -0300

qtwebkit-opensource-src (5.0.2-1) experimental; urgency=low

  * Initial release. (Closes: #697509)

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Sun, 19 May 2013 15:37:43 -0300