File: changelog

package info (click to toggle)
harfbuzz 10.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 103,596 kB
  • sloc: ansic: 74,957; cpp: 58,059; xml: 4,655; python: 4,565; sh: 141; makefile: 105
file content (870 lines) | stat: -rw-r--r-- 29,947 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
harfbuzz (10.2.0-1) unstable; urgency=medium

  * New upstream version 10.2.0
  * d/libharfbuzz-subset0.symbols: Update symbols
  * Dropped cairo-Guard-hb_cairo_glyphs_from_buffer-against-bad-UTF-8.patch,
    applied upstream
  * Update copyright years

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Tue, 14 Jan 2025 22:20:38 +0100

harfbuzz (10.1.0-2) unstable; urgency=high

  * Team upload
  * SECURITY UPDATE: Heap-based buffer overflow (Closes: #1091529)
    - Cherry-pick upstream fix for the hb_cairo_glyphs_from_buffer function
    - CVE-2024-56732
  * debian/upstream/metadata: Add security contact

 -- Jeremy Bícha <jbicha@ubuntu.com>  Sat, 28 Dec 2024 12:53:25 -0500

harfbuzz (10.1.0-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 10.1.0
  * debian/libharfbuzz0b.symbols: Add new symbols
  * Update Homepage

 -- Jeremy Bícha <jbicha@ubuntu.com>  Fri, 06 Dec 2024 23:20:19 -0500

harfbuzz (10.0.1-1) unstable; urgency=medium

  * Team upload
  * New upstream version 10.0.1
  * debian/libharfbuzz0b.symbols: Add new symbols
  * Bump Standards Version to 4.7.0

 -- Jeremy Bícha <jbicha@ubuntu.com>  Thu, 17 Oct 2024 14:26:03 -0400

harfbuzz (9.0.0-1) unstable; urgency=medium

  * Team upload
  * New upstream version 9.0.0
  * debian/*.symbols: Add new symbols

 -- Jeremy Bícha <jbicha@ubuntu.com>  Wed, 14 Aug 2024 11:51:31 -0400

harfbuzz (8.3.0-2) unstable; urgency=medium

  * Team upload
  * Release to unstable

 -- Jeremy Bícha <jbicha@ubuntu.com>  Sat, 20 Jan 2024 10:33:21 -0500

harfbuzz (8.3.0-1) experimental; urgency=medium

  * Team upload
  * New upstream version 8.3.0 (Closes: #1057964)
  * debian/libharfbuzz0b.symbols: Add new symbols
  * Add ${gir:Depends}, ${gir:Provides} to -dev package (Closes: #1061082)
  * d/control: Build-depend on GIR XML that is explicitly included

 -- Jeremy Bícha <jbicha@ubuntu.com>  Fri, 19 Jan 2024 21:14:42 -0500

harfbuzz (8.0.1-1) unstable; urgency=medium

  * New upstream version 8.0.1
  * Drop subset-Fix-cast-align-issue.patch, applied upstream
  * Update copyright holders

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 12 Jul 2023 22:45:57 +0200

harfbuzz (8.0.0-3) unstable; urgency=medium

  * Add subset-Fix-cast-align-issue.patch to fix cast-align issue.
    Fixes build on 32-bit ARM archs

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 12 Jul 2023 05:27:57 +0200

harfbuzz (8.0.0-2) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Drop obsolete Files-Excluded.
    As was pointed out in the below commit, the 2 files
    are no longer provided in the latest releases of HarfBuzz
    Revert "Fill in d/copyright, and also bump version string w/ +dfsg"
    This partially reverts commit 040799cd82759f57a0cfcbf40e4cc7a1d77a5a0a.

  [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
  * Drop invalid-language-zero.patch as it resulted in an API change causing
    other (C++) packages to FTBFS (Closes: #1040872)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 12 Jul 2023 02:47:25 +0200

harfbuzz (8.0.0-1) unstable; urgency=medium

  * New upstream version 8.0.0
    - Fixes FTBFS with GCC-13 (Closes: #1037687)
    - Includes fix for CVE-2023-25193 (Closes: #1030612)
    - Pass libharfbuzz as positional parameter for GIR generation
      (Closes: #1039498)
  * Update copyright years
  * Drop fix-tests.patch, applied upstream
  * Add libharfbuzz-cairo0 package
  * Update symbols' files
  * Add invalid-language-zero.patch to remove typecast from
    HB_LANGUAGE_INVALID definition.
    Thanks to James Addison <jay@jp-hosting.net> (Closes: #1035669)
  * d/libharfbuzz0b.symbols: update symbols

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Mon, 10 Jul 2023 04:00:02 +0200

harfbuzz (6.0.0+dfsg-3) unstable; urgency=medium

  * Team upload
  * Update standards version to 4.6.2, no changes needed
  * Release to unstable

 -- Jeremy Bicha <jbicha@ubuntu.com>  Wed, 01 Feb 2023 16:47:11 -0500

harfbuzz (6.0.0+dfsg-2) experimental; urgency=medium

  * Team upload

  * Add a libharfbuzz-subset0 package (closes: #988781).

 -- Andres Salomon <dilinger@debian.org>  Mon, 30 Jan 2023 12:28:44 -0500

harfbuzz (6.0.0+dfsg-1) unstable; urgency=medium

  [ Andres Salomon ]
  * Use Files-Excluded to exclude non-free test fonts
    and generate a new tarball
  * Update debian/copyright for numerous font licenses and copyright holders

 -- Jeremy Bicha <jbicha@ubuntu.com>  Mon, 30 Jan 2023 11:44:28 -0500

harfbuzz (6.0.0-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * Drop patch applied in new release

 -- Jeremy Bicha <jbicha@ubuntu.com>  Wed, 28 Dec 2022 07:34:07 -0900

harfbuzz (5.3.1-2) unstable; urgency=medium

  * Cherry-pick patch to fix build test when built with LTO

 -- Jeremy Bicha <jbicha@ubuntu.com>  Thu, 15 Dec 2022 08:20:37 -0500

harfbuzz (5.3.1-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * debian/libharfbuzz0b.symbols: Add new symbols

 -- Jeremy Bicha <jbicha@ubuntu.com>  Tue, 13 Dec 2022 08:55:50 -0500

harfbuzz (5.2.0-2) unstable; urgency=medium

  * Team upload
  * Release to unstable

 -- Jeremy Bicha <jbicha@ubuntu.com>  Thu, 22 Sep 2022 06:28:46 -0400

harfbuzz (5.2.0-1) experimental; urgency=medium

  * Team upload
  * New upstream release

 -- Jeremy Bicha <jbicha@ubuntu.com>  Sat, 17 Sep 2022 09:13:45 -0400

harfbuzz (5.1.0-1) experimental; urgency=medium

  * Team upload

  [ Jeremy Bicha ]
  * New upstream release (Closes: #1010435)
    - Includes fix for CVE-2022-33068 (Closes: #1013673)
  * Build with meson
  * Build-Depend on dh-sequence-gir
  * Build-Depend on libchafa-dev
  * debian/*.symbols: Add new symbols
  * debian/libharfbuzz0b.docs: TODO is no longer provided
  * Add debian/gbp.conf
  * Enable all hardening flags
  * Bump Standards-Version to 4.6.1

  [ Laurent Bigonville ]
  * debian/control.in: Switch dependencies from libfreetype6-dev to
    libfreetype-dev

  [ Simon McVittie ]
  * Update upstream metadata to point to repository on Github

  [ Steve Langasek ]
  * debian/tests/build: Make cross-test-friendly

 -- Jeremy Bicha <jbicha@ubuntu.com>  Thu, 15 Sep 2022 17:14:37 -0400

harfbuzz (2.7.4-1) unstable; urgency=medium

  * New upstream version.
  * Update symbols.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Mon, 18 Jan 2021 16:43:29 +0100

harfbuzz (2.6.7-1) unstable; urgency=medium

  [ Debian Janitor ]
  * Use correct machine-readable copyright file URI.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository.
  * Update standards version to 4.5.0, no changes needed.

  [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
  * New upstream version 2.6.7
  * Dropped py3.diff patch, applied upstream
  * Update symbols
  * Bumped compat level to 13
  * Add libfreetype2-dev to deps of libharfbuzz-dev

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 13 Jun 2020 15:28:02 +0200

harfbuzz (2.6.4-1) unstable; urgency=medium

  * Imported Upstream version 2.6.4
  * Add Rules-Requires-Root: no
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 03 Nov 2019 03:37:28 +0100

harfbuzz (2.6.2-1) unstable; urgency=medium

  * Imstall cmake file in libharfbuzz-dev
  * Revert "Add separate dh_makeshlibs call for the udeb"
    This reverts commit a4bbcc06c858fb5f1e07dca96fc2eee32819036d.
  * Add d/not-installed to list deliberately non-installed files
  * Imported Upstream version 2.6.2
  * Update standards version to 4.4.1

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 03 Oct 2019 06:06:33 +0200

harfbuzz (2.6.1-3) unstable; urgency=medium

  * Added py3.diff patch to change shebang of python scripts to python3
  * Added python3:any to build deps (Closes: #939938)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 11 Sep 2019 05:59:47 +0200

harfbuzz (2.6.1-2) unstable; urgency=medium

  * Add separate dh_makeshlibs call for the udeb

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Tue, 27 Aug 2019 05:42:57 +0200

harfbuzz (2.6.1-1) unstable; urgency=medium

  * New upstream version 2.6.1
  * Tag build autopkgtest as superficial

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Mon, 26 Aug 2019 02:52:15 +0200

harfbuzz (2.6.0-1) unstable; urgency=medium

  * New upstream version 2.6.0
  * Update symbols' files

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 16 Aug 2019 04:06:52 +0200

harfbuzz (2.5.3-1) unstable; urgency=medium

  * New upstream version 2.5.3
  * d/watch: add xz & gz extensions
  * Update standards version to 4.4.0
  * Update symbols
  * Remove doc-base file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 19 Jul 2019 04:59:10 +0200

harfbuzz (2.4.0-2) unstable; urgency=medium

  * Upload to unstable
  * Remove gbp.conf

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 04 Jul 2019 03:39:33 +0200

harfbuzz (2.4.0-1) experimental; urgency=medium

  * New upstream release
  * Add gbp.conf

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 03 Apr 2019 03:51:41 +0200

harfbuzz (2.3.1-1) unstable; urgency=medium

  * New upstream release
  * Update to standards version 4.3.0
  * Update copyright years
  * Bumped compat level to 12

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 02 Feb 2019 05:22:09 +0100

harfbuzz (2.3.0-1) unstable; urgency=medium

  * New upstream release
    + Fix regression on big-endian architectures. (Closes: #916782)
  * Update upstream bug tracker URLs
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 21 Dec 2018 05:03:51 +0100

harfbuzz (2.2.0-1) unstable; urgency=medium

  * New upstream release
  * Update standards version to 4.2.1, no changes needed
  * Update symbols files

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 16 Dec 2018 05:54:26 +0100

harfbuzz (2.1.1-1) unstable; urgency=medium

  * New upstream release
  * Update symbols file
  * debian/libharfbuzz-gobject0.symbols: added Build-Depends-Package field

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Mon, 12 Nov 2018 13:14:46 +0100

harfbuzz (1.9.0-1) unstable; urgency=medium

  * New upstream release
  * Add pkg-config to build autopkgtest dependencies
  * Update symbols

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 23 Sep 2018 08:06:44 +0200

harfbuzz (1.8.8-2) unstable; urgency=medium

  * Fix autopkgtest dependency

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 18 Aug 2018 16:19:03 +0200

harfbuzz (1.8.8-1) unstable; urgency=medium

  * New upstream release
  * Add autopkgtest test suite

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 16 Aug 2018 08:34:16 +0200

harfbuzz (1.8.7-1) unstable; urgency=medium

  * New upstream release
  * Remove no-op testsuite

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 12 Aug 2018 07:19:35 +0200

harfbuzz (1.8.6-1) unstable; urgency=medium

  * New upstream release
  * Update symbols

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Wed, 08 Aug 2018 04:05:56 +0200

harfbuzz (1.8.5-1) unstable; urgency=medium

  * New upstream release
  * Updated standards version to 4.2.0
  * Update symbols

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 04 Aug 2018 08:29:33 +0200

harfbuzz (1.8.4-2) unstable; urgency=medium

  * Do not install any file related to hb-subset (Closes: #904507, #896075)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 27 Jul 2018 00:55:38 +0200

harfbuzz (1.8.4-1) unstable; urgency=medium

  * New upstream release

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 22 Jul 2018 02:37:28 +0200

harfbuzz (1.8.3-1) unstable; urgency=medium

  * New upstream release

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 15 Jul 2018 02:31:29 +0200

harfbuzz (1.8.2-2) unstable; urgency=medium

  * Add autopkgtest (Closes: #896710)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 07 Jul 2018 01:25:28 +0200

harfbuzz (1.8.2-1) unstable; urgency=medium

  * New upstream release
  * Bumped compat level to 11
  * Updated standards version to 4.1.5

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 06 Jul 2018 17:54:45 +0200

harfbuzz (1.8.1-1) unstable; urgency=medium

  * New upstream release.
  * Update standards version
  * Update copyright years
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 24 Jun 2018 17:37:17 +0200

harfbuzz (1.7.6-1) unstable; urgency=medium

  * New upstream release.
  * debian/patches/unbreak_abi.diff: dropped, nothing uses that and it has
    caused problems in the past.
  * Update Vcs for move to salsa.debian.org.
  * Add new symbols.
  * Don't package hb-subset or libharfbuzz-subset yet.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 13 Apr 2018 20:20:13 +0200

harfbuzz (1.7.2-1) unstable; urgency=medium

  * New upstream release
  * Bump standards version to 4.1.2
  * Set gir1.2-harfbuzz-0.0 to multiarch same
  * Install typelib file in multiarch dir

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 07 Dec 2017 04:44:42 +0100

harfbuzz (1.7.1-1) unstable; urgency=medium

  * New upstream release
  * Refresh unbreak-abi.diff patch

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 19 Nov 2017 01:14:34 +0100

harfbuzz (1.6.3-1) unstable; urgency=medium

  * New upstream release
  * Remove duplicate priority field
  * Strictly version typelib dependency

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Mon, 06 Nov 2017 04:00:20 +0100

harfbuzz (1.6.2-1) unstable; urgency=medium

  [ ﺄﺤﻣﺩ ﺎﻠﻤﺤﻣﻭﺪﻳ (Ahmed El-Mahmoudy) ]
  * New upstream release.
  * Add new symbols.
  * Bump Standards-Version to 4.1.1.
  * Set udeb priority to optional.

  [ Emilio Pozuelo Monfort ]
  * debian/patches/unbreak_abi.diff:
    + Add missing HB_EXTERN to hb_version_check, fixes a test failure
      that is checking that all public symbols are HB_EXTERN.
  * debian/control:
    + Let libharfbuzz-dev depend on gir1.2-harfbuzz-0.0, per the gobject
      introspection mini-policy.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 26 Oct 2017 08:58:36 +0200

harfbuzz (1.5.1-1) unstable; urgency=medium

  * New upstream release.
  * debian/rules: set locale to C.UTF-8, otherwise glib-mkenums chokes on
    UTF-8 input, such as src/hb-gobject-enums.cc.tmpl. Closes: #870689.
  * debian/libharfbuzz*.symbols: Add new symbols.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 03 Oct 2017 20:01:26 +0200

harfbuzz (1.4.2-1) unstable; urgency=medium

  * New upstream release.
  * debian/control: Bump glib requirement.
  * debian/rules: Pass -c4 to dpkg-gensymbols.
  * debian/libharfbuzz*.symbols: Add new symbols.
  * debian/rules: Don't export VERBOSE, debhelper does that now.
  * debian/rules: Don't disable silent rules, debhelper does it.
  * debian/compat, debian/control: Bump debhelper compat to 10.
  * debian/rules, debian/control: Let debhelper enable autoreconf for us.
  * debian/control, debian/copyright, debian/watch: Switch URLs to https.
  * debian/patches/unbreak_abi.diff: Refresh.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 25 Jan 2017 00:59:54 +0100

harfbuzz (1.2.7-1) unstable; urgency=medium

  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Mon, 18 Jul 2016 18:26:29 +0200

harfbuzz (1.2.6-2) unstable; urgency=medium

  * debian/control: Add missing dependencies to libharfbuzz-dev.
    Closes: #822432.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 24 Apr 2016 22:26:59 +0200

harfbuzz (1.2.6-1) unstable; urgency=medium

  * New upstream release. Closes: #820596.
  * debian/patches/unbreak_abi.diff: Refresh.
  * debian/libharfbuzz0b.symbols: Add new symbols.
  * debian/control: Make libharfbuzz-dev M-A: same. Closes: #801669.
  * debian/control: Bump gobject-introspection b-d. Closes: #734389.
  * debian/control, debian/rules: Drop -dbg package, we now have dbgsyms.
  * debian/control: Bump Standards-Version to 3.9.8; no changes needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 24 Apr 2016 10:14:57 +0200

harfbuzz (1.0.1-1) unstable; urgency=medium

  * New upstream release.
  * Make failing tests fatal again.
    See comment in #737473
    Thanks to Pino Toscano <pino@debian.org>
  * debian/copyright: Update upstream copyright years.
  * debian/libharfbuzz0b.symbols, debian/libharfbuzz-gobject0.symbols: update
    symbols files.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Tue, 28 Jul 2015 14:29:08 +0200

harfbuzz (0.9.41-1) unstable; urgency=medium

  * New upstream release.
  * debian/libharfbuzz0b.symbols: update symbols file.
  * debian/libharfbuzz-gobject0.symbols: remove symbol that was introduced by
    mistake by upstream. SO bump is not required since no other package
    depends on that package yet.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Mon, 29 Jun 2015 15:29:27 +0200

harfbuzz (0.9.40-3) unstable; urgency=medium

  * Provide debug symbols package for libharfbuzz0b (Closes: #744989)
  * debian/copyright: Update copyright years.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sat, 09 May 2015 10:13:11 +0200

harfbuzz (0.9.40-2) unstable; urgency=medium

  * Upload to unstable.
  * Remove debian/gbp.conf, not needed in master branch.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Sun, 26 Apr 2015 19:52:42 +0200

harfbuzz (0.9.40-1) experimental; urgency=medium

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Tue, 24 Mar 2015 13:19:09 +0200

harfbuzz (0.9.39-1) experimental; urgency=medium

  * New upstream release.
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 05 Mar 2015 11:52:42 +0200

harfbuzz (0.9.38-1) experimental; urgency=medium

  * New upstream release.
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 05 Feb 2015 20:01:51 +0200

harfbuzz (0.9.37-1) experimental; urgency=medium

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 25 Dec 2014 14:19:35 +0200

harfbuzz (0.9.36-1) experimental; urgency=medium

  * New upstream release.
  * Add debian/gbp.conf to set debian branch to experimental.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Fri, 28 Nov 2014 08:32:35 +0200

harfbuzz (0.9.35-2) unstable; urgency=medium

  * debain/clean: Remove test/shaping/*.pyc during clean
  * debian/rules: Build static libraries.
  * debian/libharfbuzz-dev.install:
    + Install static libraries (LP: #1385616)
    + Simplify file
  * debian/control: Bumped Standards-Version to 3.9.6
  * Update my email.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>  Thu, 30 Oct 2014 12:43:28 +0200

harfbuzz (0.9.35-1) unstable; urgency=medium

  * New upstream release.
  * Remove hb-xetex.patch, it is included upstream.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Thu, 14 Aug 2014 11:47:30 +0300

harfbuzz (0.9.34-2) unstable; urgency=medium

  * Added hb-xetex.patch patch from upstream to fix shape-plan caching with
    more than one requested shaper
    (Closes: #750785)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 13 Aug 2014 17:01:09 +0300

harfbuzz (0.9.34-1) unstable; urgency=medium

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sat, 09 Aug 2014 10:17:03 +0300

harfbuzz (0.9.33-1) unstable; urgency=medium

  * New upstream release.
  * Upload to unstable.
  * Added unbreak_abi.diff patch to Re-add hb_version_check to unbreak API/ABI.
    This patch should be removed on the next API/ABI break by upstream.
    See: #755094
  * Revert last SO bump, libharfbuzz0c back to libharfbuzz0b.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 30 Jul 2014 11:38:44 +0200

harfbuzz (0.9.32-1) experimental; urgency=medium

  * New upstream release.
  * Update symbols file

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sun, 20 Jul 2014 10:23:40 +0200

harfbuzz (0.9.30-1) experimental; urgency=medium

  * New upstream release.
  * SO bumped libharfbuzz0b to libharfbuzz0c.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Tue, 15 Jul 2014 10:33:48 +0200

harfbuzz (0.9.29-1) unstable; urgency=medium

  * New upstream release.
  * debian/upstream/metadata: Add upstream metadata information.
  * debian/rules: Get failing tests' stdout and stderr so we have some
    information when a build fails.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Thu, 05 Jun 2014 11:05:24 +0300

harfbuzz (0.9.28-2) unstable; urgency=medium

  * Build-Dep on gobject-introspection >= 1.34.0 (Closes: #749305)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Mon, 26 May 2014 11:54:26 +0300

harfbuzz (0.9.28-1) unstable; urgency=medium

  * New upstream release.
  * Update copyright years

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Thu, 08 May 2014 10:00:19 +0200

harfbuzz (0.9.27-1) unstable; urgency=medium

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sat, 22 Mar 2014 09:22:46 +0200

harfbuzz (0.9.26-4) unstable; urgency=low

  * Don't bail out on failed tests, the failed tests are not a problem in
    HarfBuzz itself.
    Thanks to Emilio Pozuelo Monfort <pochu@debian.org>

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Tue, 04 Feb 2014 15:48:03 +0200

harfbuzz (0.9.26-3) unstable; urgency=low

  * Re-enable the test suite.
    Since HarfBuzz has two builds, dh_auto_test needs to be overridden as
    with the other dh_auto_*.
    Thanks to Pino Toscano <pino@debian.org> (Closes: #737473)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Mon, 03 Feb 2014 04:33:36 +0200

harfbuzz (0.9.26-2) unstable; urgency=low

  [ Iain Lane ]
  * Use Conflicts instead of Breaks for old library packages with same SONAME
    to ensure they are fully removed (thanks to Steve Langasek in Ubuntu).

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sun, 02 Feb 2014 23:26:21 +0200

harfbuzz (0.9.26-1) unstable; urgency=low

  * New upstream release.
  * debian/copyright: Update copyright years.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sun, 02 Feb 2014 22:07:55 +0200

harfbuzz (0.9.25-1) unstable; urgency=medium

  [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
  * New upstream release.

  [ Iain Lane ]
  * Build with dh-autoreconf; thanks to Matthias Klose for the original change
    in Ubuntu.
  * Build without silent rules.

  [ Emilio Pozuelo Monfort ]
  * Wrap build depends.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 18 Dec 2013 13:29:08 +0200

harfbuzz (0.9.24-2) unstable; urgency=low

  * debian/control:
    + Add missing breaks/replaces on libharfbuzz0a.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 04 Dec 2013 17:49:59 +0100

harfbuzz (0.9.24-1) unstable; urgency=low

  * New upstream release.
  * debian/control: Bumped Standards-Version to 3.9.5.
  * SO bumped libharfbuzz0a to libharfbuzz0b
  * Added libharfbuzz-gobject0 for GObject bindings library and
    gir1.2-harfbuzz-0.0 for GObject introspection data
  * Added documentation package: libharfbuzz-doc
  * debian/libharfbuzz0b.symbols: Updated symbols file.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 20 Nov 2013 09:49:08 +0200

harfbuzz (0.9.19-1) unstable; urgency=low

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Tue, 23 Jul 2013 22:37:34 +0200

harfbuzz (0.9.18-3) unstable; urgency=low

  * debian/patches/0001-Fix-build-without-graphite2.patch:
    + Removed, graphite2 is now available on armel and sparc so we can
      build with graphite2 support everywhere.
  * debian/control,
    debian/rules:
    + Build with graphite2 support everywhere in the normal build.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 02 Jun 2013 15:23:10 +0200

harfbuzz (0.9.18-2) unstable; urgency=low

  * Add myself to Uploaders.
  * debian/patches/0001-Fix-build-without-graphite2.patch:
    + Fix build when graphite2 is not installed. Fixes FTBFS on armel
      and sparc.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 02 Jun 2013 11:16:48 +0200

harfbuzz (0.9.18-1) unstable; urgency=low

  * New upstream release.
  * Removed icu.patch & graphite2.diff patches, as they got applied upstream.
  * Removed autoreconf
  * Add Graphite2 support (except for armel & sparc archs)
  * debian/libharfbuzz-dev.install: Install harfbuzz-icu.* development files.
  * Do not disable ICU in udeb, it is not needed anymore and it causes FTBFS.
  * Added libharfbuzz-icu0 package in which ICU support library is installed.
  * Renamed libharfbuzz0 to libharfbuzz0a.
  * debian/control:
    + Added libharfbuzz-icu0 to -dev package Depends.
    + Added Breaks/Replaces: libharfbuzz0 for libharfbuzz0a
  * debian/*.symbols: fixed package names.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Fri, 31 May 2013 17:02:53 +0200

harfbuzz (0.9.17-4) unstable; urgency=low

  * Added icu.patch patch to add configure option to enable/disable ICU
    support.
    Thanks to Emilio Pozuelo Monfort <pochu@debian.org>
  * Added graphite2.diff patch to add configure option to enable/disable
    Graphite2 support.
  * Use autoreconf
  * Re-enable ICU support
  * Disable ICU support only for the udeb target. (Closes: #709926)
    (LP: #1184340)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Mon, 27 May 2013 22:47:30 +0200

harfbuzz (0.9.17-3) unstable; urgency=low

  * Disable ICU support, as it pulls libicu & libstdc++, for which no udebs
    exist.
    Thanks to Michael Biebl <biebl@debian.org> (Closes: #709796)

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sat, 25 May 2013 22:35:22 +0200

harfbuzz (0.9.17-2) unstable; urgency=low

  * Added udeb package

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Thu, 23 May 2013 13:00:29 +0200

harfbuzz (0.9.17-1) unstable; urgency=low

  * New upstream release.
  * Upload to unstable.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 22 May 2013 17:00:26 +0200

harfbuzz (0.9.16-1) experimental; urgency=low

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sat, 20 Apr 2013 19:28:43 +0200

harfbuzz (0.9.15-1) experimental; urgency=low

  * New upstream release.
    + src/check-symbols.sh: Removed T marker (Closes: #704665)
  * Fixed libharfbuzz-dev description: FriBidi -> HarfBuzz
  * debian/libharfbuzz0.symbols: Added Build-Depends-Package field

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Tue, 02 Apr 2013 09:01:01 +0200

harfbuzz (0.9.14-1) experimental; urgency=low

  * New upstream release.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sat, 30 Mar 2013 22:17:31 +0200

harfbuzz (0.9.13-1) experimental; urgency=low

  * New upstream release.
  * Disable Graphite2 backend, since it is unbuildable on some archs.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Thu, 28 Feb 2013 09:29:37 +0200

harfbuzz (0.9.12-1) experimental; urgency=low

  * New upstream release.
  * debian/copyright: Update copyright years.
  * debian/libharfbuzz0.symbols: Update symbols.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Sun, 20 Jan 2013 12:44:54 +0200

harfbuzz (0.9.10-1) experimental; urgency=low

  * New upstream release.
  * debian/control:
    + Bumped Standards-Version to 3.9.4
    + Use canonical URIs in VCS-* fields
    + Added libgraphite2-dev to Build-Deps to enable Graphite2 backend
  * Update symbols file
  * Use autotools_dev to update outdated autotools helper files.

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Wed, 09 Jan 2013 01:00:54 +0200

harfbuzz (0.9.9-1) experimental; urgency=low

  * Initial Release. (Closes: #687161)

  [ Andreas Henriksson ]
  * Imported Upstream version 0.9.9
  * Update symbols file for 0.9.9

 -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>  Fri, 07 Dec 2012 10:31:26 +0200