~benji/vte/fixes

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
vte (1:0.28.0-1ubuntu1) oneiric; urgency=low

  * Drop gir1.2-vte-0.0. We just have two reverse dependencies which will be
    moved to GTK3 and gir1.2-vte-2.90.
  * Drop 91_keep_fds.patch. The vte_terminal_forkpty API is deprecated, was
    closed upstream as "wontfix".
  * Drop lp621927_set_default_term.patch, fixed upstream in a different way.
  * Merge with Debian experimental. Remaining Ubuntu changes:
    - Add 93_add_alt_screen_scroll_toggle.patch: Handle scrolling differently
      when using alternate screen or scrolling is restricted.
    - Add lp246701_scroll_region_updates.patch: Bug fix. (LP #246701)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 17 May 2011 13:08:32 +0200

vte (1:0.28.0-1) experimental; urgency=low

  * Team upload.
  * New upstream release.
  * Add build-depends to libgladeui-dev, the GTK3 version now requires it.
  * Move autoreconf.mk before debhelper.mk to avoid debhelper.log
    leftovers.
  * Drop unneeded Sections fields duplicating the default value.
  * Add lintian overrides for package-name-doesnt-match-sonames and
    setgid-binary.

 -- Raphaël Hertzog <hertzog@debian.org>  Thu, 14 Apr 2011 20:27:53 +0000

vte (1:0.27.90-2) experimental; urgency=low

  * Drop unneeded dependency on libvte-common from gir1.2-vte-2.90.

 -- Jordi Mallach <jordi@debian.org>  Wed, 06 Apr 2011 11:31:01 +0200

vte (1:0.27.90-1) experimental; urgency=low

  * Make the -dev package depend on the gir package.
  * Force the upgrade of libvte-common for the new termcap definitions.
  * New upstream pre-release.
  * Use dh-autoreconf; drop 90_autoreconf.patch.
  * Pass PYTHON= as configure argument instead of environment, so that 
    it doesnt get lost when dh-autoreconf goes mad.
  * Bump shlibs version.
  * Theres no longer gsettings stuff to isntall.
  * Update symbols file.
  * Make the -dev packages recommend the -doc package.

 -- Josselin Mouette <joss@debian.org>  Thu, 31 Mar 2011 10:34:47 +0530

vte (1:0.27.5-1) experimental; urgency=low

  * debian/control.in:
    + Drop obsolete dpkg-dev build dependency.
    + Bump the libgtk2.0-dev dependency on the -dev package.
  * New upstream release.
    + debian/control.in:
      - Update build dependencies.
      - Update for the new gtk+ 3 package names.
    + debian/patches/90_autoreconf.patch:
      - Updated.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 19 Feb 2011 14:23:13 +0000

vte (1:0.27.4-1) experimental; urgency=low

  * Switch to CDBS' flavors system.
  * Bump debhelper compatibility to 8.
  * New upstream release, based on a patch by Michael Terry.
    Closes: #604846.
  * Include check-dist.mk to prevent accidental uploads to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 12 Jan 2011 22:45:34 +0000

vte (1:0.24.3-2) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/patches/12_python_reaper.patch:
    - Removed, upstream said WONTFIX, so remove that API.
  * debian/control.in:
    - Break gdebi (<< 0.6.1) since that's the first version not requiring
      the above patch.

 -- Josselin Mouette <joss@debian.org>  Sat, 06 Nov 2010 12:48:02 +0100

vte (1:0.24.3-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/90_autoreconf.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 15 Jul 2010 20:30:04 +0200

vte (1:0.24.1-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/01_transparent_crash.patch:
      - Dropped, fixed upstream.
    + debian/patches/25_optional-ncurses.patch:
      - Updated to apply cleanly again.
    + debian/patches/90_autoreconf.patch:
      - Regenerated for the new version.
    + debian/control.in:
      - Update build dependencies and dependencies of the -dev package.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 03 May 2010 20:11:29 +0200

vte (1:0.24.0-3) unstable; urgency=low

  * debian/python-vte.install:
    - Also install bindings for python2.6 (don't hardcode site-packages).
  * debian/control.in,
    debian/rules,
    debian/source/format,
    - Switch to source format 3.0 (quilt).
  * debian/patches/25_optional-ncurses.patch:
    - Updated to apply cleanly.
  * debian/control.in:
    - Bump Standards-Version to 3.8.4, no changes needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 21 Apr 2010 14:18:44 +0200

vte (1:0.24.0-2) unstable; urgency=low

  * 01_transparent_crash.patch: patch by Tetralet to fix a crash when 
    the background file is missing, or when the transparent background 
    has no root window. Closes: #576624.

 -- Josselin Mouette <joss@debian.org>  Fri, 09 Apr 2010 18:23:02 +0200

vte (1:0.24.0-1) unstable; urgency=low

  * New upstream stable release:
    + debian/rules:
      - Update shlibs version because of new API.
      - Remove X_DISPLAY_MISSING from udeb CFLAGS.
    + debian/patches/90_autoreconf.patch:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 31 Mar 2010 11:11:22 +0200

vte (1:0.23.5-4) experimental; urgency=low

  [ Cyril Brulebois ]
  * Switch udeb from DirectFB to Xlib to prepare the move to an X11-based
    graphical installer
     - Drop the B-D on libgtk-directfb-2.0-dev.
     - Bump the B-D on libgtk2.0-dev to make sure the udeb gets its
       dependency on the (recently-added) udeb rather than on the library.

  [ Emilio Pozuelo Monfort ]
  * debian/rules:
    - Remove hack that was needed to build the udeb against the DirectFB
      GTK+ library, since the default one was the X11. We build against
      the X11 one now.
  * debian/patches/12_python_reaper.patch:
    - Mention that this is WONTFIX upstream and that we should eventually
      remove it.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 16 Mar 2010 22:20:16 +0100

vte (1:0.23.5-3) experimental; urgency=low

  * debian/rules:
    + Update shlibs version to >= 0.23.5.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 14 Jan 2010 09:02:23 +0100

vte (1:0.23.5-2) experimental; urgency=low

  * New upstream development release:
    + debian/patches/90_autoreconf.patch:
      - Refreshed.
    + debian/rules:
      - Include check-dist.mk to prevent accidental uploads to unstable.
    + debian/control.in:
      - Build depend on GLib >= 2.22.0.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 14 Jan 2010 08:17:53 +0100

vte (1:0.22.5-1) unstable; urgency=low

  * New upstream release.
    - debian/patches/90_autoreconf.patch:
      + Refreshed.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 18 Nov 2009 07:40:57 +0100

vte (1:0.22.4-1) unstable; urgency=low

  * New upstream release.
    - debian/patches/90_autoreconf.patch:
      + Refreshed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 08 Nov 2009 21:44:54 +0100

vte (1:0.22.3-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/70_python_env.patch:
      - Dropped, merged upstream.
    - debian/patches/90_autoreconf.patch:
      + Refreshed.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 27 Oct 2009 09:35:46 +0100

vte (1:0.22.2-2) unstable; urgency=low

  * debian/patches/70_python_env.patch:
    - Fix Python environment passing, GNOME #587894.

 -- Luca Falavigna <dktrkranz@debian.org>  Sat, 10 Oct 2009 13:43:27 +0200

vte (1:0.22.2-1) unstable; urgency=low

  * New upstream bugfix release.
    - debian/patches/01_vte_sequence_handler_cd_crash.patch:
      + Removed, applied upstream.
    - debian/patches/90_autoreconf.patch:
      + Refreshed.
  * debian/watch: Don't uupdate.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 29 Sep 2009 14:06:41 +0200

vte (1:0.22.1-2) unstable; urgency=low

  * debian/patches/01_vte_sequence_handler_cd_crash.patch:
    - Patch from Matijs van Zuijlen to fix a crash. Closes: #548388.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 27 Sep 2009 00:45:48 +0200

vte (1:0.22.1-1) unstable; urgency=low

  * New upstream bugfix release.
    - Fix crash on terminal reset. Closes: #548319.
  * debian/patches/01_background_ncurses.patch:
    - Removed, the fix is in the new version.
  * debian/patches/25_optional-ncurses.patch,
    debian/patches/90_autoreconf.patch:
    - Refreshed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 26 Sep 2009 00:01:19 +0200

vte (1:0.22.0-2) unstable; urgency=low

  * 01_background_ncurses.patch: stolen upstream. Fix background color 
    in ncurses applications. Closes: #548241.

 -- Josselin Mouette <joss@debian.org>  Thu, 24 Sep 2009 22:49:17 +0200

vte (1:0.22.0-1) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/patches/01_bashisms.patch: forwarded, add header.

  [ Sebastian Dröge ]
  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 22 Sep 2009 13:34:21 +0200

vte (1:0.20.5-1) unstable; urgency=low

  * New upstream bugfix release, undoing the unintended
    soname bump (Closes: #532552):
    + debian/control.in,
      debian/*.install:
      - Undo package rename.
    + debian/patches/90_autoreconf.patch:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 10 Jun 2009 07:07:43 +0200

vte (1:0.20.4-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Add libglib2.0-doc, libgtk2.0-doc and libatk1.0-doc to b-d-i to 
    ensure proper xrefs.
  * 01_bashisms.patch: fix bashims in provided scripts. Closes: #530123.

  [ Sebastian Dröge ]
  * New upstream bugfix releases:
    + debian/rules:
      - Update shlibs version to >= 0.20.4 for API additions.
    + debian/control.in,
      debian/*.install:
      - Update for the new soname.
    + debian/patches/90_autoreconf.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 02 Jun 2009 07:01:29 +0200

vte (1:0.20.1-1) unstable; urgency=low

  [ Luca Bruno ]
  * New upstream release.
  * debian/patches/20_make_ft2_optional.patch:
    - Removed as ft2 files have been removed upstream.
  * debian/patches/12_python_reaper.patch,
    debian/patches/25_optional-ncurses.patch,
    debian/patches/90_autoreconf.patch:
    - Updated to apply cleanly.
  * debian/patches/30_fix_build_no_pty_helper.patch,
    debian/patches/04_dsp_non_alias.patch,
    debian/patches/92_full_bold_fonts.patch:
    - Removed as applied upstream.
  * debian/control.in:
    - General dependencies changes:
      + Removed libxt, libxft, libfontconfig1, libxrenderer and libfreetype6
        as they are no more referenced in the upstream code since using
        pangocairo.
      + Bump libglib2.0-dev to 2.18.0.
      + Bump libgtk2.0-dev to 2.14.0.
      + Specify libpango1.0-dev version needed is 1.22.0.
    - Build-Depends:
      + Added libgladeui-1-dev.
    - libvte-dev Depends:
      + Removed libatk1.0-dev, libsm-dev, libice-dev, zlib1g-dev and
        libx11-dev.
    - Update Standards-Version to 3.8.1, no additional changes needed.
  * debian/rules:
    - Removed xft2, ft, pangox, glX and x configure options.
    - Add -DX_DISPLAY_MISSING to udeb CFLAGS.
    - Add --enable-glade-catalogue to DEB_CONFIGURE_EXTRA_FLAGS to install
      gladeui files.
  * debian/libvte-common.install:
    - Install gladeui files under /usr/share/glade3.

  [ Josselin Mouette ]
  * New upstream release.
  * Install the Python development files in libvte-dev and make this 
    package provide python-vte-dev, just in case.
  * Fix dh_pysupport invocation.
  * Bump shlibs to version 1:0.19.4.
  * Remove libvte-dev dependency on ncurses.
  * Remove incorrect Provides: in python-vte.
  * Switch to quilt to manage patches.
  * 90_autoreconf.patch: updated for the new version.

 -- Josselin Mouette <joss@debian.org>  Thu, 23 Apr 2009 00:41:20 +0200

vte (1:0.17.4-2) unstable; urgency=low

  * Upload to unstable.

 -- Josselin Mouette <joss@debian.org>  Wed, 04 Mar 2009 13:55:08 +0100

vte (1:0.17.4-1) experimental; urgency=low

  * New upstream release:
    + debian/control.in:
      - Update build-depends.
      - Update Standards-Version to 3.8.0, no additional changes needed.
    + debian/rules:
      - Update shlibs version to reflect API additions.
    + debian/patches/29_add_am_prog_cc_c_o_for_buffer_c.patch,
      debian/patches/01_anjuta_hang.patch:
      - Dropped, merged upstream.
    + debian/patches/20_make_ft2_optional.patch,
      debian/patches/90_autoreconf.patch:
      - Updated to apply cleanly again.
    + debian/patches/92_full_bold_fonts.patch:
      - Patch from the Ubuntu package to first check if a bold variant
        of a font exists before using "pseudo-bolding".
    + debian/python-vte.examples:
      - Add some more examples, taken from the Ubuntu package.
  * debian/watch:
    + Updated for new versions.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 24 Nov 2008 10:15:11 +0100

vte (1:0.16.14-4) unstable; urgency=low

  [ Josselin Mouette ]
  * libvte-doc.links: add a link in /usr/share/doc to the documentation.
    Closes: #495356.

  [ Loic Minier ]
  * Don't overwrite DEB_FIXPERMS_EXCLUDE and DEB_DH_MAKESHLIBS_ARGS_ALL.

  [ Josselin Mouette ]
  * 01_anjuta_hang.patch: new patch, stolen from upstream. Fix hangs in 
    Geany and Anjuta. Closes: #498295.

 -- Josselin Mouette <joss@debian.org>  Fri, 24 Oct 2008 18:53:48 +0200

vte (1:0.16.14-3) unstable; urgency=low

  * Fix 1:0.16.14-2 changelog entry.
  * Upload to unstable.

 -- Loic Minier <lool@dooz.org>  Mon, 04 Aug 2008 12:21:58 +0200

vte (1:0.16.14-2) experimental; urgency=low

  [ Loic Minier ]
  * Properly anchor libvteN regexp.
  * Misc cleanups of the below changelog and patches.

  [ Jérémy Bobbio ]
  * New patch, 20_make_ft2_optional, make Freetype2 bdep/dep optional;
    GNOME #542560.
  * New patch, 29_add_am_prog_cc_c_o_for_buffer_c, add the AM_PROG_CC_C_O
    macro which automake claim is required and was added in upstream SVN
    already.
  * New patch, 30_fix_build_no_pty_helper, fix missing header issue when
    building without gnome-pty-helper; GNOME #542561.
  * New patch, 25_optional_ncurses, allows not linking against ncurses but
    using the builtin termcap support instead.
  * New patch, 90_autoreconf, run autoreconf for 20_make_ft2_optional,
    29_add_am_prog_cc_c_o_for_buffer_c, and 25_optional_ncurses.
  * Re-enable libvte9-udeb build.
     - Drop libvte-common dep in the udeb.
     - Configure the udeb without pangox and ft2 and with a static ncurses.
  * New patch, 60_termcap-home-end, defines home/end in the builtin termcap
    support file.

  [ Loic Minier ]
  * Drop dup --disable-maintainer-mode flag.
  * Override CFLAGS for udeb during configure.

 -- Loic Minier <lool@dooz.org>  Thu, 26 Jun 2008 20:44:36 +0200

vte (1:0.16.14-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 05 Jun 2008 12:21:06 +0200

vte (1:0.16.13-1) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/control.in:
    - Fix libvte-doc short description, which was refering to
      development files instead of documentation.

  [ Loic Minier ]
  * Drop head -n1 from libvteN computation.

  [ Sebastian Dröge ]
  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 10 Mar 2008 21:51:56 +0100

vte (1:0.16.12-1) unstable; urgency=low

  * New upstream bugfix release.
  * debian/control.in:
    + Update Standards-Version to 3.7.3, no additional changes needed.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 09 Jan 2008 19:42:18 +0100

vte (1:0.16.11-1) unstable; urgency=low

  [ Loic Minier ]
  * Tighten libvte package name extraction.

  [ Sebastian Dröge ]
  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 17 Dec 2007 21:52:05 +0100

vte (1:0.16.10-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 04 Dec 2007 12:13:11 +0100

vte (1:0.16.9-1) unstable; urgency=low

  * New upstream release, with API additions:
    + debian/rules:
      - Bump shlibs to >= 0.16.9 for the API additions.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 18 Sep 2007 10:28:08 +0200

vte (1:0.16.8-1) unstable; urgency=low

  [ Alan Baghumian ]
  * New upstream release:
    - Dropped 60_fix-ctrl-dash.patch and 62_alt-arrows.patch,
      merged upstream
    - Fixes rendering of line-drawing characters; closes: #418699.

  [ Loic Minier ]
  * New upstream stable release; no API change.

 -- Loic Minier <lool@dooz.org>  Mon, 30 Jul 2007 20:25:31 +0200

vte (1:0.16.6-3) unstable; urgency=low

  * Cleanup changelog.
  * Drop patch 61_ctrl-and-shift-arrows as it breaks up/down history;
    closes: #434558, #434560, #434577, #434560.

 -- Loic Minier <lool@dooz.org>  Wed, 25 Jul 2007 09:43:04 +0200

vte (1:0.16.6-2) unstable; urgency=low

  * Drop patch 41_from_upstream_fix_nvi_scrolling; fixed differently upstream
    since 0.16.2; see GNOME #417652.
  * Add xrefs to patches.
  * New patches, 61_ctrl-and-shift-arrows and 62_alt-arrows, should fix
    handling of Ctrl-, Shift-, and Alt- + arrow keys by using xterm's
    sequences; GNOME #310305 and #337252; closes: #421734.

 -- Loic Minier <lool@dooz.org>  Tue, 24 Jul 2007 09:06:47 +0200

vte (1:0.16.6-1) unstable; urgency=low

  * Pass proper configure flags to the udeb.
  * Generate proper shlibs for the udeb.
  * Build against the diretcfb Gtk flavor.
  * Disable udeb for now since it's unlikely to get useful soon.
  * New upstream stable release; no API change.
    - Fixes 24 colors support; GNOME #332606, #372743; closes: #320114.
  * New patch, 60_fix-ctrl-dash, fixes mapping for Ctrl + dash; thanks
    Andrey Melnikov; GNOME #448259; closes: #429260.

 -- Loic Minier <lool@dooz.org>  Tue, 19 Jun 2007 11:08:11 +0200

vte (1:0.16.5-2) experimental; urgency=low

  * Add a new libvte9-udeb package.

 -- Loic Minier <lool@dooz.org>  Mon, 18 Jun 2007 23:10:47 +0200

vte (1:0.16.5-1) unstable; urgency=low

  * New upstream release
  * Dropped 20_fix_strange_lines.patch, merged upstream

 -- Alan Baghumian <alan@technotux.org>  Wed, 06 Jun 2007 11:05:11 +0330

vte (1:0.16.4-1) unstable; urgency=low

  * New upstream release
    + fix ctrl-key combinations yielding just key.
      Closes: #425879, #421734.
    + fix scrollback corruption. Closes: #421092.
  * Added 20_fix_strange_lines.patch, fixed strange lines above the screen;
    from SVN r1904.

 -- Alan Baghumian <alan@technotux.org>  Sun, 03 Jun 2007 17:25:27 +0330

vte (1:0.16.3-1) unstable; urgency=low

  * New upstream release; no API change.

 -- Loic Minier <lool@dooz.org>  Fri, 27 Apr 2007 23:29:59 +0200

vte (1:0.16.2-1) unstable; urgency=low

  * Upload to unstable; drop check-dist include.
  * Wrap build-deps and deps.
  * New upstream stable release; no API change.

 -- Loic Minier <lool@dooz.org>  Tue, 24 Apr 2007 14:55:49 +0200

vte (1:0.16.1-1) experimental; urgency=low

  * New upstream release; no API change.
    - Fixes output of incorrect colours; closes: #416125.
    - Drop patch 40_fix_transparency_bug, fixed differently upstream.
    - Drop patch -and-delayed-redraws-race, merged upstream.
  * Drop debian/pyversions and set XB and XS-Python-Version.

 -- Loic Minier <lool@dooz.org>  Tue, 10 Apr 2007 17:31:28 +0200

vte (1:0.16.0-2) experimental; urgency=low

  * New patch, 50_expose-and-delayed-redraws-race, fixes a race between expose
    and delayed redraws; GNOME #419116; closes: #415730.

 -- Loic Minier <lool@dooz.org>  Wed, 21 Mar 2007 17:44:46 +0100

vte (1:0.16.0-1) experimental; urgency=low

  * New upstream major stable release; API additions.
    - Build-depend on libpango1.0-dev and libxft-dev.
    - Bump shlibs to >= 1:0.16.0.
    - Drop patch 30_pkg-config-private-field-for-freetype, merged upstream.
  * New patch, 40_fix_transparency_bug, workarounds a bug with transparency;
    by Nicolas Bruguier and Chris Wilson; Launchpad #91985; found in the
    Ubuntu package.
  * New patch, 41_from_upstream_fix_nvi_scrolling, fixes scrolling in nvi;
    patch from Chris Wilson; Launchpad: #91017; found in the Ubuntu package.

 -- Loic Minier <lool@dooz.org>  Sun, 18 Mar 2007 11:08:13 +0100

vte (1:0.14.2-1) experimental; urgency=low

  * Add a get-orig-source target to retrieve the upstream tarball.
  * Include the new check-dist Makefile to prevent accidental uploads to
    unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
  * Drop version in the dependency on libvte-common to permit installing two
    libvte shared library packages at the same time; the files in
    libvte-common are translations and a termcap file which didn't change
    since 2002 which is supposedly eternally backward compatible, hence this
    should only result in some untranslated text.
  * Merge 1:0.12.2-5 / SVN revs 7195:8677.
  * New upstream release; no API change.
    - Drop patch 20_gtk-style-attach-crash, merged upstream.

 -- Loic Minier <lool@dooz.org>  Thu,  1 Mar 2007 11:30:40 +0100

vte (1:0.14.1-1) experimental; urgency=low

  * New upstream release.

 -- Josselin Mouette <joss@debian.org>  Tue, 21 Nov 2006 20:37:02 +0100

vte (1:0.14.0-1) experimental; urgency=low

  * New upstream release; no API change.
  * Preemptively fix the 12_python_reaper patch to work with newer codegen,
    thanks Daniel Holbach and Michael Vogt for all the fish.
  * Merge 1:0.12.2-4.

 -- Loic Minier <lool@dooz.org>  Tue,  5 Sep 2006 16:43:37 +0200

vte (1:0.13.7-1) experimental; urgency=low

  * New upstream development release; no API change.

 -- Loic Minier <lool@dooz.org>  Fri, 25 Aug 2006 20:20:03 +0200

vte (1:0.13.6-1) experimental; urgency=low

  * New upstream development release; no API change.
  * Merge 1:0.12.2-3.

 -- Loic Minier <lool@dooz.org>  Wed, 23 Aug 2006 15:56:50 +0200

vte (1:0.13.5-1) experimental; urgency=low

  * New upstream development releases, with API changes.
    - Target at experimental.
    - Rename livte4 to libvte9 for the new SONAME.
    - Bump shlibs to >= 1:0.13.3.
    - Drop 08_set_backspace_to_utf8 patch, merged upstream.
    - Drop 09_multiscreen_safe, fixed upstream.
    - Drop 70_relibtoolize, I'm too lazy to update it for dev releases.
    - Bump up libglib2.0-dev build-dep to > 2.9.0.

 -- Loic Minier <lool@dooz.org>  Wed,  9 Aug 2006 22:45:15 +0200

vte (1:0.12.2-5) unstable; urgency=medium

  * Add a get-orig-source target to retrieve the upstream tarball.
  * New patch, 20_gtk-style-attach-crash, fixes crash in gtk_style_attach when
    changing icon theme; backported from GNOME #399282 / vte 0.14.2; see also
    GNOME #353498.
  * Stop shipping *.a and *.la files for Python modules.

 -- Loic Minier <lool@dooz.org>  Mon, 26 Feb 2007 14:15:57 +0100

vte (1:0.12.2-4) unstable; urgency=medium

  * Remove references to the forgotten hardcoded python2.3 and python2.4
    version from the python-vte.install file, thanks Daniel Holbach.
  * Urgency medium since this will cause FTBFS in the future.

 -- Loic Minier <lool@dooz.org>  Tue,  5 Sep 2006 16:36:09 +0200

vte (1:0.12.2-3) unstable; urgency=medium

  * Drop useless DEB_PYTHON_SYSTEM=pysupport.
  * Rework package build completely to follow pyversions --requested.
  * Set pyversions to "2.3-".
  * Urgency medium since this fixes a FTBFS.

 -- Loic Minier <lool@dooz.org>  Wed, 23 Aug 2006 15:44:03 +0200

vte (1:0.12.2-2) unstable; urgency=low

  [ Loic Minier ]
  * Remove versions in Conflicts/Replaces with python2.X-vte.

  [ Josselin Mouette ]
  * 12_python_reaper.patch: patch from Michael Vogt to add a python
    binding for the reaper object (closes: #364383, #381143).

  [ Loic Minier ]
  * Add ${misc:Depends}.

 -- Loic Minier <lool@dooz.org>  Wed,  9 Aug 2006 22:15:22 +0200

vte (1:0.12.2-1) unstable; urgency=low

  [ Loic Minier ]
  * New upstream release.
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]
  * Fix watch file.

  [ Gustavo Franco ]
  * Python New Policy Transition. (Closes: #373405)
    - debian/control:
      - python-vte now provides Python 2.3 and 2.4 vte Python bindings.
      - Add python-support as Build-Depends.
      - Fix python-vte package description.
    - debian/rules:
      - Add DEB_PYTHON_SYSTEM variable and set to pysupport.
      - Make the needed changes to provide Python 2.3 and 2.4 vte Python
        bindings in the same binary package (python-vte).
      - Remove dh_python call since it's no more needed.
      - Add dh_pysupport call in binary-install/python-vte target.
    - Remove debian/python{2.3,2.4}-vte.install
    - Add debian/python-vte.install
  * Set debhelper compatibility to 5.

 -- Gustavo Franco <stratus@debian.org>  Tue, 11 Jul 2006 01:06:36 -0300

vte (1:0.12.1-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Set fatalerror as the primary maintainer.
  * Make the package binNMU-safe.
    + Build-depend on dpkg-dev 1.13.19.
    + Use ${source:Version} and ${binary:Version}.

  [ Loic Minier ]
  * Stop shipping /usr/lib/*.la files in libvte-dev.
    [debian/libvte-dev.install]
  * New upstream release, with API additions.
    - Bump up libgtk2.0-dev build-dep to >=  2.6.0.
      [debian/control, debian/control.in]
    - Add a libglib2.0-dev build-dep (>  2.6.0).
      [debian/control, debian/control.in]
    - Bump shlibs to >= 1:0.12.1.
      [debian/rules]
    - Drop restricted region adjustment patch as upstream merged it and also
      fixed a couple of issues it had.
      [debian/patches/20_restricted_region_readjustment.patch]
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]
  * Fix clenaup of /debian/tmp-2.3 instead of debian/tmp-2.3 introduced with
    Python 2.4 support.
    [debian/rules]
  * Bump up Standards-Version to 3.7.2.
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Fri, 12 May 2006 16:11:16 +0200

vte (1:0.12.0-2) unstable; urgency=low

  * Drop references to libXcursor.la

 -- Guilherme de S. Pastore <gpastore@debian.org>  Fri, 21 Apr 2006 12:49:11 -0300

vte (1:0.12.0-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/20_restricted_region_readjustment.patch:
    - patch from upstream CVS to fix the famous Blue Screen of
      Death with irssi running inside screen.
  * debian/copyright:
    - updated list of upstream authors
    - updated to use http://download.gnome.org/
  * debian/watch:
    - updated to use http://download.gnome.org/

 -- Guilherme de S. Pastore <guilherme.pastore@terra.com.br>  Sun,  2 Apr 2006 12:15:57 -0300

vte (1:0.11.20-3) unstable; urgency=low

  * Fix Python build-deps, thanks Jan Lübbe.
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Mon, 27 Feb 2006 09:55:30 +0100

vte (1:0.11.20-2) unstable; urgency=low

  * Merge nice patch from Jan Lübbe to build vte's python bindings for python
    2.3 and 2.4. (Closes: #353434)
    [debian/control, debian/control.in, debian/python-vte.install,
    debian/python2.3-vte.install, debian/python2.4-vte.install, debian/rules]
  * Tune up the descriptions slightly.
    [debian/control, debian/control.in]
  * Let python2.3-vte replace previous versions of python-vte.
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Sun, 26 Feb 2006 21:34:54 +0100

vte (1:0.11.20-1) unstable; urgency=low

  * New upstream release.

 -- Loic Minier <lool@dooz.org>  Sun, 26 Feb 2006 11:28:15 +0100

vte (1:0.11.19-1) unstable; urgency=low

  * New upstream release.
    - Shift+Insert pasting works as in the past. (Closes: #354275)

 -- Loic Minier <lool@dooz.org>  Sat, 25 Feb 2006 17:45:13 +0100

vte (1:0.11.18-1) unstable; urgency=low

  * New upstream release.
    - Drop double free() fix (merged upstream).
      [debian/patches/07_remove_doublefree.patch]

 -- Loic Minier <lool@dooz.org>  Sun, 12 Feb 2006 20:55:57 +0100

vte (1:0.11.17-1) unstable; urgency=low

  * New upstream release.
    - This release backs out all changes made to the .pc file in
      debian/patches/30_pkg-config-private-fields.patch, and hence reopens
      #340406, but should include proper -I flags. (Closes: #346039)
    - New patch to move only the libfreetype link flags to Libs.private.
      [debian/patches/30_pkg-config-private-field-for-freetype.patch]
      (Closes: #340406)
    - Drop patch adding console sequesnces to save/restore cursor position
      (merged upstream).
      [debian/patches/05_cursor_position.patch]
    - Drop relibtoolizing patch as the person bootstrapping vte for GNOME was
      visibly running Debian. :)
      [debian/patches/70_relibtoolize.patch]

 -- Loic Minier <lool@dooz.org>  Sun, 29 Jan 2006 18:35:39 +0100

vte (1:0.11.16-1) unstable; urgency=low

  * New upstream release.
    - Drop patch to use .private pkg-config pseudo-headers (included
      upstream).
      [debian/patches/30_pkg-config-private-fields.patch]
    - No need to "rm python/vte.c", this is not distributed upstream anymore.
      [debian/rules]
    - Drop patch to fix gdk warnings (included upstream).
      [debian/patches/20_gdk-warning.patch]
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]

 -- Loic Minier <lool@dooz.org>  Mon, 23 Jan 2006 22:15:53 +0100

vte (1:0.11.15-4) unstable; urgency=low

  * Build-depend on libfreetype6-dev (>= 2.0.2) to match the checks in
    configure.in. (Closes: #340412)
    [debian/control, debian/control.in]
  * Use pkg-config's Libs.private and Requires.private field for libraries and
    packages needed only for static linking instead of the Libs / Requires
    fields; you need to build-depend on pkg-config (>= 0.18) to use these
    fields.  Based on a patch by Steve Langasek.  (Closes: #340406)
    [debian/patches/30_pkg-config-private-fields.patch]

 -- Loic Minier <lool@dooz.org>  Wed, 23 Nov 2005 15:23:11 +0100

vte (1:0.11.15-3) unstable; urgency=high

  * Force regeneration of the python bindings by removing python/vte.c.
    (Closes: #334001, #334668, #338090)
    [debian/rules]

 -- Loic Minier <lool@dooz.org>  Tue,  8 Nov 2005 22:38:50 +0100

vte (1:0.11.15-2) unstable; urgency=high

  * Urgency high for RC bug fix.
  * Add libsm-dev, libice-dev, zlib1g-dev, libncurses5-dev | libncurses-dev,
    libx11-dev, and libfontconfig1-dev deps to vte-dev, according to its .pc
    file. (Closes: #259671) [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Sun, 16 Oct 2005 22:21:33 +0200

vte (1:0.11.15-1) unstable; urgency=low

  [ Sebastien Bacher ]
  * debian/control.in:
    - use ${python:Depends}.
  * debian/python-vte.install:
    - don't use a specific python version.
  * debian/rules:
    - use dh_python.

  [ Loic Minier ]
  * New upstream releases.
    - Fix confusion between py_palette and item in
      _wrap_vte_terminal_set_colors(), doesn't segfault anymore in
      vte.Terminal.set_colors(). (Closes: #319987)
  * Add CDBS' utils.
  * Drop obsolete patches. [debian/patches/02_path_xtra.patch,
    debian/patches/03_path_xtra-2.patch,
    debian/patches/11_hide_pageup_behavior.patch]
  * Temporarily add libxt-dev build-dependency to let
    AC_PATH_X/AC_PATH_XTRA autodetect X development files, see
    <http://bugzilla.gnome.org/show_bug.cgi?id=314669>.
  * Update FSF address. [debian/copyright]

 -- Loic Minier <lool@dooz.org>  Sun, 11 Sep 2005 16:03:32 +0200

vte (1:0.11.13-4) unstable; urgency=high

  * Urgency high for testing targetted RC bugfix.
  * Add dependencies to libvte-dev on libxft-dev, libfreetype6-dev,
    libatk1.0-dev, libpango1.0-dev, libglib2.0-dev to conform with libvte.la's
    dependency_libs. [debian/control, debian/control.in] (Closes: #259671)

 -- Loic Minier <lool@dooz.org>  Sun, 31 Jul 2005 16:01:15 +0200

vte (1:0.11.13-3) unstable; urgency=low

  * Fix Gdk warnings with a patch from upstream. (Closes: #316940, #318549)
    [debian/patches/20_gdk-warning.patch]
  * Bump up Standards Version to 3.6.2.

 -- Loic Minier <lool@dooz.org>  Thu, 21 Jul 2005 20:01:23 +0200

vte (1:0.11.13-2) unstable; urgency=low

  * Rebuild on an unstable box to avoid dependencies in experimental.

 -- Josselin Mouette <joss@debian.org>  Sat, 30 Apr 2005 19:07:20 +0200

vte (1:0.11.13-1) unstable; urgency=low

  * New upstream version
  * Added a new package that contains the documentation (Closes: #300742)
  * debian/patches:
    - 01_vtemodule.patch: applied

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Tue, 19 Apr 2005 23:05:02 +0200

vte (1:0.11.12-1) unstable; urgency=low

  * New upstream version. Lots of patches in Gnome's bugzilla have been
    applied.
  * debian/patches :
    - Merged patches :
        05_performance_boost.patch
        10_redraw_vte_screen.patch 
        12_fix_display_corrption_in_utf8.patch
    - Splitted 02_path_xtra.patch into to patches :
        02_path_xtra.patch contains the configure.in patch
        03_path_xtra-2.patch contains the configure patch
    - Updated 07_remove_doublefree.patch as it's partially applied

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Thu,  3 Mar 2005 23:54:07 +0100

vte (1:0.11.11-6) unstable; urgency=low

  * Added patches from Emil Soleyman-Zomalan <emil@nishra.com>.
  * debian/patches:
    - Balanced performance improvement (Closes: #197797)
        05_performance_boost.patch
        http://bugs.gnome.org/show_bug.cgi?id=143914
    - Resolve double free problem
        07_remove_doublefree.patch
        http://bugs.gnome.org/show_bug.cgi?id=161337
    - Set backspace behavior to utf8 (depends on utf8 locale)
        08_set_backspace_to_utf8.patch
        http://bugs.gnome.org/show_bug.cgi?id=158200
    - Make vte multi-screen safe
        09_multiscreen_safe.patch
        http://bugs.gnome.org/show_bug.cgi?id=160782
    - Redraw vte screen with correct background color
        10_redraw_vte_screen.patch
        http://bugs.gnome.org/show_bug.cgi?id=125364
    - Hide manifestation of PageUp behavior with less (Closes: #285143)
        11_hide_pageup_behavior.patch
        http://bugzilla.gnome.org/show_bug.cgi?id=115149
    - Fix utf8 display cooruption (Closes: #276316)
        12_fix_display_corrption_in_utf8.patch
        http://bugzilla.gnome.org/show_bug.cgi?id=154896

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Wed, 22 Dec 2004 01:32:58 +0100

vte (1:0.11.11-5) unstable; urgency=low

  * debian/patches:
    - Relibtoolized 02_path_xtra.patch (Closes: #259671)
    - Added an updated patch from http://bugs.gnome.org/show_bug.cgi?id=142640
    to display correctly fonts (Closes: #251355)

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Thu, 12 Aug 2004 14:00:51 +0200

vte (1:0.11.11-4) unstable; urgency=low

  * GNOME team upload.
  * debian/rules: add epoch to shlib declaration (closes: #253120).

 -- Jordi Mallach <jordi@debian.org>  Sun, 20 Jun 2004 17:24:12 +0200

vte (1:0.11.11-3) unstable; urgency=low

  * Gnome Team Upload.
  * debian/rules:
    + shlibs version =  0.11.11.

 -- Sebastien Bacher <seb128@debian.org>  Tue,  8 Jun 2004 00:55:25 +0200

vte (1:0.11.11-2) unstable; urgency=low

  * GNOME Team Upload.
  * Upload in unstable.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 27 May 2004 00:15:35 +0200

vte (1:0.11.11-1) experimental; urgency=low

  * New upstream version
    - Removes all former patches, as they're no more needed
    - Add a patch for correcting init_vte typos.
    - This version add more documentation in python-vte module (Closes: #225296)
    - New build dependency on gtk-doc-tools
  * Added a patch for using AC_PATH_XTRA with Debian's enhancements.
  * Added a patch for supporting some save/restore cursor position console
    sequences (Closes: 248896)

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Sun,  2 May 2004 22:37:25 +0200

vte (1:0.11.10-8) unstable; urgency=low

  * debian/patches:
    - Added a patch to support the vte_terminal_fork_pty call coming from
    upstream cvs (Closes: #241485)

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Sun, 18 Apr 2004 14:18:56 +0200

vte (1:0.11.10-7) unstable; urgency=low

  * The gnome-pty-helper didn't have the right permissions, so it couldn't
  update the utmp files. (Closes: #240279)

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Tue, 30 Mar 2004 01:15:47 +0200

vte (1:0.11.10-6) unstable; urgency=low

  * Fixed build-dependencies (Closes: #238470)

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Wed, 17 Mar 2004 19:25:26 +0100

vte (1:0.11.10-5) unstable; urgency=low

  * New maintainer (Closes: #234970)
  * Switched from debhelper to cdbs for the packaging

 -- Arnaud Patard <arnaud.patard@rtp-net.org>  Sun, 29 Feb 2004 19:41:29 +0100

vte (1:0.11.10-4) unstable; urgency=low

  * This package suck more and more, slow, broken and upstream don't care,
    thus orpahned.

 -- Christian Marillat <marillat@debian.org>  Thu, 26 Feb 2004 21:48:39 +0100

vte (1:0.11.10-3) unstable; urgency=low

  * New patch 02_link.dpatch to fix broken linkage (Closes: #220108)

 -- Christian Marillat <marillat@debian.org>  Sun, 30 Nov 2003 17:21:07 +0100

vte (1:0.11.10-2) unstable; urgency=low

  * Add patch for less artifacts (Closes: #218399)
  * NMU aren't walcome when I've tagged this bug pending two days ago. Don't
    touch my packages.

 -- Christian Marillat <marillat@debian.org>  Mon,  3 Nov 2003 19:13:10 +0100

vte (1:0.11.10-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Sun, 19 Oct 2003 11:32:07 +0200

vte (1:0.10.29-6) unstable; urgency=low

  * Re-apply cursor blinking patch (Closes: #186764, #211818)

 -- Christian Marillat <marillat@debian.org>  Tue, 30 Sep 2003 22:50:18 +0200

vte (1:0.10.29-5) unstable; urgency=low

  * Add libxrender-dev in Builde-Depends and Depends for the -dev package (Closes: #208533)

 -- Christian Marillat <marillat@debian.org>  Wed,  3 Sep 2003 18:19:51 +0200

vte (1:0.10.29-4) unstable; urgency=low

  * Fix python dependencies in python-vte (Closes: #206285)
  * New patch to fix a bug with the blinking (Closes: #186764)

 -- Christian Marillat <marillat@debian.org>  Wed, 20 Aug 2003 16:29:34 +0200

vte (1:0.10.29-3) unstable; urgency=low

  * debian/control Add python-gtk2-dev in build-depends
  * python package need to depends on a versioned python-gtk2 (>= 1.99.17-2)
  * Revert bug introduced in 0.10.28 about scrolling page (Closes: #190651, #203049)

 -- Christian Marillat <marillat@debian.org>  Tue, 19 Aug 2003 20:43:43 +0200

vte (1:0.10.29-2) unstable; urgency=low

  * debian/rules remove an old  CC=gcc-3.2 (Closes: #196911)

 -- Christian Marillat <marillat@debian.org>  Tue, 10 Jun 2003 20:33:06 +0200

vte (1:0.10.29-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Mon,  9 Jun 2003 22:26:53 +0200

vte (1:0.10.28-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Tue, 13 May 2003 09:07:26 +0200

vte (1:0.10.27-1) unstable; urgency=low

  * New upstream release.
  * Fix fonts size (Closes: #186705)

 -- Christian Marillat <marillat@debian.org>  Mon,  5 May 2003 13:13:52 +0200

vte (0.11.0-2) unstable; urgency=low

  * Update section
  * Fix crash on exit (Closes: #186593)

 -- Christian Marillat <marillat@debian.org>  Fri,  4 Apr 2003 12:49:57 +0200

vte (0.11.0-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Wed, 26 Mar 2003 21:26:39 +0100

vte (0.10.26-1) unstable; urgency=low

  * New upstream release.
  * Fix text wrapping (Closes: #183337)

 -- Christian Marillat <marillat@debian.org>  Tue,  4 Mar 2003 21:09:31 +0100

vte (0.10.25-1) unstable; urgency=low

  * new upstream release.

 -- Christian Marillat <marillat@debian.org>  Tue, 25 Feb 2003 01:39:37 +0100

vte (0.10.23-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Fri, 21 Feb 2003 20:56:58 +0100

vte (0.10.22-1) unstable; urgency=low

  * New upstream release.
  * Fix tab focus (Closes: #180370)

 -- Christian Marillat <marillat@debian.org>  Thu, 20 Feb 2003 10:17:29 +0100

vte (0.10.20-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Sat, 15 Feb 2003 02:00:29 +0100

vte (0.10.19-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Thu, 13 Feb 2003 10:42:34 +0100

vte (0.10.17-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Mon,  3 Feb 2003 15:56:24 +0100

vte (0.10.16-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Fri, 31 Jan 2003 18:06:35 +0100

vte (0.10.15-1) unstable; urgency=low

  * New upstream release.
  * Fix vim and scroll mouse (Closes: #176952)

 -- Christian Marillat <marillat@debian.org>  Tue, 28 Jan 2003 10:47:06 +0100

vte (0.10.14-1) unstable; urgency=low

  * New upstream release.
  * Workaround to fix undocumented xttitle escape sequence (Closes: #178066)
  * Fix shift+arrows keys (Closes: #177745)
  * Fix DEC graphics characters (Closes: #177977)

 -- Christian Marillat <marillat@debian.org>  Fri, 24 Jan 2003 12:24:18 +0100

vte (0.10.12-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Mon, 20 Jan 2003 22:54:23 +0100

vte (0.10.11-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Sat, 18 Jan 2003 15:57:33 +0100

vte (0.10.10-2) unstable; urgency=low

  * -dev package should depends on libncurses5-dev (Closes: #176684)

 -- Christian Marillat <marillat@debian.org>  Tue, 14 Jan 2003 16:52:06 +0100

vte (0.10.10-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Tue, 14 Jan 2003 12:13:00 +0100

vte (0.10.8-1) unstable; urgency=low

  * New upstream release.
  * Build against libxft2-dev
  * Remove gcc-3.2 build-dependency
  * Bump Standards-Version to 3.5.8

 -- Christian Marillat <marillat@debian.org>  Wed,  8 Jan 2003 16:18:25 +0100

vte (0.10.7-1) unstable; urgency=low

  * new upstream release.

 -- Christian Marillat <marillat@debian.org>  Thu, 12 Dec 2002 15:43:33 +0100

vte (0.10.5-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Wed,  4 Dec 2002 13:19:25 +0100

vte (0.10.4-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Tue, 12 Nov 2002 17:11:26 +0100

vte (0.10.3-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Mon, 11 Nov 2002 18:48:53 +0100

vte (0.10.2-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Thu,  7 Nov 2002 16:09:09 +0100

vte (0.10.1-1) unstable; urgency=low

  * New upstream release.

 -- Christian Marillat <marillat@debian.org>  Tue,  5 Nov 2002 16:39:09 +0100

vte (0.10-1) unstable; urgency=low

  * New upstream release.
  * Bump the libray package to 4

 -- Christian Marillat <marillat@debian.org>  Thu, 31 Oct 2002 19:58:18 +0100

vte (0.9.2-1) unstable; urgency=low

  * New upstream release.
  * Fix build with the python module (Closes: #164440)

 -- Christian Marillat <marillat@debian.org>  Tue, 22 Oct 2002 16:15:17 +0200

vte (0.9.0-2) unstable; urgency=low

  * Should build-depends on gettext (Closes: #163611)

 -- Christian Marillat <marillat@debian.org>  Mon,  7 Oct 2002 09:13:35 +0200

vte (0.9.0-1) unstable; urgency=low

  * New upstream releae.
  * Add build-dependency to python-gtk2 and python-dev
  * Add a python-vte package (Closes: #158588)
  * Bump the libray package to 3
  * Move I18N file in the -common package

 -- Christian Marillat <marillat@debian.org>  Sat,  5 Oct 2002 10:38:12 +0200

vte (0.5.1-2) unstable; urgency=low

  * Build with gcc-3.2
  * Update to standards version 3.5.7

 -- Christian Marillat <marillat@debian.org>  Fri, 13 Sep 2002 21:38:02 +0200

vte (0.5.1-1) unstable; urgency=low

  * Initial Release (Closes: #153740)

 -- Christian Marillat <marillat@debian.org>  Sun, 21 Jul 2002 16:30:57 +0200